summaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)AuthorFilesLines
2012-05-11Add support for -I optionBoris Kolpackov1-1/+2
Now quote-included ("") option files are searched for relative to the including file while bracket-included (<>) ones are search in the directories specified with -I.
2012-05-11Fix lookup bugBoris Kolpackov1-3/+4
2012-05-10Implement option class inheritanceBoris Kolpackov17-10/+211
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 Kolpackov6-4/+23
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 Kolpackov17-17/+17
2010-06-04Add support for single quotes in option filesBoris Kolpackov13-16/+45
2010-06-02Add support for quoting in option file scannerBoris Kolpackov9-1/+41
2010-06-02Implement generation of specifier functions (--generate-specifier)Boris Kolpackov4-1/+117
These functions determine whether the option was specified on the command line. New test: specifier.
2010-06-02Add cli options instead of overriding themBoris Kolpackov3-3/+1
2010-01-01Update copyrightBoris Kolpackov14-14/+14
2009-12-13Get rid of absolute paths in outputBoris Kolpackov3-5/+4
2009-12-10Scanner-based parsing with support for element erasingBoris Kolpackov19-1/+472
Also implement argv_file_scanner which provides support for reading command line arguments from the argv array as well as files specified with command line options. New examples: file. New tests: ctor, erase, file.
2009-12-10Cosmetic changesBoris Kolpackov2-2/+4
2009-11-08Implement option documentation support in frontendBoris Kolpackov3-1/+17
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 Kolpackov3-25/+0
2009-09-27Pass file name as pathBoris Kolpackov1-2/+10
2009-09-05Add semantic graph and traversal mechanismBoris Kolpackov4-7/+39
The parser now builds the semantic graph.
2009-08-24Remove support for install targetBoris Kolpackov2-2/+0
2009-08-22Convert to the lower case naming conventionBoris Kolpackov2-17/+17
2009-08-22Add support for long long intBoris Kolpackov1-0/+12
2009-08-22Document rules of the language covered by each testBoris Kolpackov9-71/+72
2009-08-22Add support for C and C++-style commentsBoris Kolpackov3-1/+22
2009-08-22Add a test for the parserBoris Kolpackov17-1/+213
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 Kolpackov14-0/+295