summaryrefslogtreecommitdiffstats
path: root/cli/parser.hxx
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright yearKaren Arutyunov2018-05-211-1/+1
|
* Update copyright yearBoris Kolpackov2017-01-031-1/+1
|
* Start switch to build2Boris Kolpackov2016-11-151-4/+4
|
* Implement support for sourcing .cli filesBoris Kolpackov2016-01-261-0/+3
| | | | | | | | | | 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.
* Parse and enter documentation variablesBoris Kolpackov2015-10-311-1/+1
|
* Add parsing support for scope-level documentationBoris Kolpackov2015-10-291-1/+10
|
* Move lookup to semantic graph from parserBoris Kolpackov2012-05-111-19/+0
|
* Add support for -I optionBoris Kolpackov2012-05-111-0/+7
| | | | | | 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.
* Implement option class inheritanceBoris Kolpackov2012-05-101-0/+19
| | | | | | | 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/+6
| | | | | | | | | | | | | | 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
|
* Cosmetic changesBoris Kolpackov2009-09-271-2/+2
|
* Use new path class, add context and generator classesBoris Kolpackov2009-09-131-2/+2
| | | | | | Use cutl::fs::path instead of std::string in the semantic graph. Add context and generator stubs, to be filled next. Connect everything in the compiler driver.
* Add semantic graph and traversal mechanismBoris Kolpackov2009-09-051-4/+12
| | | | The parser now builds the semantic graph.
* Convert to the lower case naming conventionBoris Kolpackov2009-08-221-11/+11
|
* Implement the CLI language parserBoris Kolpackov2009-08-221-0/+60