summaryrefslogtreecommitdiff
path: root/cli/token.hxx
AgeCommit message (Collapse)AuthorFilesLines
2017-01-03Update copyright yearBoris Kolpackov1-1/+1
2016-11-15Start switch to build2Boris Kolpackov1-1/+1
2016-01-26Implement support for sourcing .cli filesBoris Kolpackov1-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.
2012-05-10Implement option class inheritanceBoris Kolpackov1-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.
2012-05-10Add support for options file inclusionBoris Kolpackov1-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.
2011-01-04Copyright updateBoris Kolpackov1-1/+1
2010-01-01Update copyrightBoris Kolpackov1-1/+1
2009-08-22Convert to the lower case naming conventionBoris Kolpackov1-15/+14
2009-08-22Add call and template expressionsBoris Kolpackov1-7/+22
Also add support for querying the lexer failure state.
2009-08-10Inline file for the Token classBoris Kolpackov1-45/+13
2009-08-09Add the rest of the keywordsBoris Kolpackov1-11/+21
Also replace size_t with std::size_t.
2009-08-07Add Token classBoris Kolpackov1-0/+141