summaryrefslogtreecommitdiff
path: root/tests/lexer
AgeCommit message (Collapse)AuthorFilesLines
2012-05-10Implement option class inheritanceBoris Kolpackov3-2/+7
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 Kolpackov3-4/+20
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 Kolpackov2-2/+2
2010-01-01Update copyrightBoris Kolpackov2-2/+2
2009-12-10Cosmetic changesBoris Kolpackov1-1/+2
2009-11-08Add a test for multi-line string literalBoris Kolpackov2-0/+9
2009-10-28Fix test outputBoris Kolpackov2-3/+3
2009-10-11Add install targetBoris Kolpackov1-11/+0
2009-09-05Add semantic graph and traversal mechanismBoris Kolpackov2-4/+10
The parser now builds the semantic graph.
2009-08-24Remove support for install targetBoris Kolpackov1-1/+0
2009-08-22Convert to the lower case naming conventionBoris Kolpackov1-14/+14
2009-08-22Add support for C and C++-style commentsBoris Kolpackov3-1/+22
2009-08-22Add call and template expressionsBoris Kolpackov4-2/+17
Also add support for querying the lexer failure state.
2009-08-09Minor build system fixesBoris Kolpackov1-1/+1
Restore .gitignore generation. Add the default and clean targets for the tests/ directory to the top level makefile.
2009-08-09Remove test executable that was accidently addedBoris Kolpackov1-0/+0
2009-08-09Tests for the lexerBoris Kolpackov13-0/+275