summaryrefslogtreecommitdiffstats
path: root/cli/lexer.cxx
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright yearKaren Arutyunov2019-01-161-1/+1
|
* Update copyright yearKaren Arutyunov2018-05-211-1/+1
|
* Update copyright yearBoris Kolpackov2017-01-031-1/+1
|
* Start switch to build2Boris Kolpackov2016-11-151-1/+1
|
* Implement support for sourcing .cli filesBoris Kolpackov2016-01-261-1/+2
| | | | | | | | | | The idea is that the file is "read in" as if its content was copy-n-pasted. For example: "\h|Installation|" source "INSTALL.cli" // Also used to generate plain text INSTALL. Unlike include, source can appear anywhere in the file.
* Implement option class inheritanceBoris Kolpackov2012-05-101-1/+2
| | | | | | | For now multiple, non-virtual inheritance is supported. An option class can now also be declared abstract using the class c = 0 {...}; syntax. New option, --exclude-base, controls whether base class information is present in usage and documentation.
* Add support for options file inclusionBoris Kolpackov2012-05-101-1/+26
| | | | | | | | | | | | | | New include-path prefixes, c++: and cli:, are now recognized (e.g., include <cli:foo>;). Without a prefix, the include declarations is considered to be c++-include unless the path ends with the .cli extension. The cli-included files are loaded and parsed. Currently, only inclusion relative to the current file is supported. Duplicate inclusions are detected and ignored based on the absolute filesystem path. If a file cli-includes another file, then the runtime code is assumed to come from the included file and is not generated.
* Copyright updateBoris Kolpackov2011-01-041-1/+1
|
* Update copyrightBoris Kolpackov2010-01-011-1/+1
|
* Implement usage generationBoris Kolpackov2009-11-081-4/+4
| | | | Also migrate the CLI compiler usage handling to the auto-generated version.
* Add support for option name aliases and string literalsBoris Kolpackov2009-10-041-1/+1
|
* Convert to the lower case naming conventionBoris Kolpackov2009-08-221-76/+76
|
* Return proper token type for string literalsBoris Kolpackov2009-08-221-1/+1
|
* Add support for C and C++-style commentsBoris Kolpackov2009-08-221-28/+110
|
* Add call and template expressionsBoris Kolpackov2009-08-221-15/+98
| | | | Also add support for querying the lexer failure state.
* Implement lexical analyzer for the CLI languageBoris Kolpackov2009-08-091-0/+413