summaryrefslogtreecommitdiffstats
path: root/cli/token.hxx
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-0/+1
| | | | | | | | | | 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-0/+1
| | | | | | | 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/+2
| | | | | | | | | | | | | | 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
|
* Convert to the lower case naming conventionBoris Kolpackov2009-08-221-15/+14
|
* Add call and template expressionsBoris Kolpackov2009-08-221-7/+22
| | | | Also add support for querying the lexer failure state.
* Inline file for the Token classBoris Kolpackov2009-08-101-45/+13
|
* Add the rest of the keywordsBoris Kolpackov2009-08-091-11/+21
| | | | Also replace size_t with std::size_t.
* Add Token classBoris Kolpackov2009-08-071-0/+141