summaryrefslogtreecommitdiff
path: root/cli/semantics
AgeCommit message (Collapse)AuthorFilesLines
2015-11-16Support specifying documentation variables on command linedocBoris Kolpackov1-0/+1
2015-10-30Implement scope documentation generation in HTMLBoris Kolpackov1-0/+6
2015-10-29Add parsing support for scope-level documentationBoris Kolpackov4-7/+58
2014-10-13Get rid of GCC warningMichael Shepanski1-2/+2
2012-05-11Move lookup to semantic graph from parserBoris Kolpackov2-0/+130
2012-05-10Implement option class inheritanceBoris Kolpackov4-4/+122
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-10/+19
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 Kolpackov12-12/+12
2010-01-01Update copyrightBoris Kolpackov12-12/+12
2009-11-08Implement option documentation support in frontendBoris Kolpackov1-0/+31
2009-10-11Simplify to work around VC++ bugsBoris Kolpackov6-68/+24
2009-10-04Remove unneeded codeBoris Kolpackov1-18/+0
2009-09-20Get rid of the name typedefBoris Kolpackov2-11/+7
Use std::string directly.
2009-09-13Use new path class, add context and generator classesBoris Kolpackov2-6/+11
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-06Call proper base constructors from cli_unitBoris Kolpackov2-1/+5
2009-09-05Add semantic graph and traversal mechanismBoris Kolpackov12-0/+1329
The parser now builds the semantic graph.