summaryrefslogtreecommitdiffstats
path: root/tests/lexer
Commit message (Collapse)AuthorAgeFilesLines
* Add support for build2 for tests and examplesKaren Arutyunov2016-11-2216-337/+0
|
* 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-103-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.
* Add support for options file inclusionBoris Kolpackov2012-05-103-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.
* Copyright updateBoris Kolpackov2011-01-042-2/+2
|
* Update copyrightBoris Kolpackov2010-01-012-2/+2
|
* Cosmetic changesBoris Kolpackov2009-12-101-1/+2
|
* Add a test for multi-line string literalBoris Kolpackov2009-11-082-0/+9
|
* Fix test outputBoris Kolpackov2009-10-282-3/+3
|
* Add install targetBoris Kolpackov2009-10-111-11/+0
|
* Add semantic graph and traversal mechanismBoris Kolpackov2009-09-052-4/+10
| | | | The parser now builds the semantic graph.
* Remove support for install targetBoris Kolpackov2009-08-241-1/+0
|
* Convert to the lower case naming conventionBoris Kolpackov2009-08-221-14/+14
|
* Add support for C and C++-style commentsBoris Kolpackov2009-08-223-1/+22
|
* Add call and template expressionsBoris Kolpackov2009-08-224-2/+17
| | | | Also add support for querying the lexer failure state.
* Minor build system fixesBoris Kolpackov2009-08-091-1/+1
| | | | | Restore .gitignore generation. Add the default and clean targets for the tests/ directory to the top level makefile.
* Remove test executable that was accidently addedBoris Kolpackov2009-08-091-0/+0
|
* Tests for the lexerBoris Kolpackov2009-08-0913-0/+275