summaryrefslogtreecommitdiff
path: root/cli/parser.hxx
AgeCommit message (Collapse)AuthorFilesLines
2020-02-13Drop copyright notice from source codeKaren Arutyunov1-1/+0
2019-01-16Update copyright yearKaren Arutyunov1-1/+1
2018-05-21Update copyright yearKaren Arutyunov1-1/+1
2017-01-03Update copyright yearBoris Kolpackov1-1/+1
2016-11-15Start switch to build2Boris Kolpackov1-4/+4
2016-01-26Implement support for sourcing .cli filesBoris Kolpackov1-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.
2015-10-31Parse and enter documentation variablesBoris Kolpackov1-1/+1
2015-10-29Add parsing support for scope-level documentationBoris Kolpackov1-1/+10
2012-05-11Move lookup to semantic graph from parserBoris Kolpackov1-19/+0
2012-05-11Add support for -I optionBoris Kolpackov1-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.
2012-05-10Implement option class inheritanceBoris Kolpackov1-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.
2012-05-10Add support for options file inclusionBoris Kolpackov1-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.
2011-01-04Copyright updateBoris Kolpackov1-1/+1
2010-01-01Update copyrightBoris Kolpackov1-1/+1
2009-09-27Cosmetic changesBoris Kolpackov1-2/+2
2009-09-13Use new path class, add context and generator classesBoris Kolpackov1-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.
2009-09-05Add semantic graph and traversal mechanismBoris Kolpackov1-4/+12
The parser now builds the semantic graph.
2009-08-22Convert to the lower case naming conventionBoris Kolpackov1-11/+11
2009-08-22Implement the CLI language parserBoris Kolpackov1-0/+60