summaryrefslogtreecommitdiffstats
path: root/cli/semantics
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright yearKaren Arutyunov2019-01-1615-15/+15
|
* Update copyright yearKaren Arutyunov2018-05-2115-15/+15
|
* Update copyright yearBoris Kolpackov2017-01-0315-15/+15
|
* Start switch to build2Boris Kolpackov2016-11-1513-15/+15
|
* Support specifying documentation variables on command lineBoris Kolpackov2015-11-161-0/+1
|
* Implement scope documentation generation in HTMLBoris Kolpackov2015-10-301-0/+6
|
* Add parsing support for scope-level documentationBoris Kolpackov2015-10-294-7/+58
|
* Get rid of GCC warningMichael Shepanski2014-10-131-2/+2
|
* Move lookup to semantic graph from parserBoris Kolpackov2012-05-112-0/+130
|
* Implement option class inheritanceBoris Kolpackov2012-05-104-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.
* Add support for options file inclusionBoris Kolpackov2012-05-101-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.
* Copyright updateBoris Kolpackov2011-01-0412-12/+12
|
* Update copyrightBoris Kolpackov2010-01-0112-12/+12
|
* Implement option documentation support in frontendBoris Kolpackov2009-11-081-0/+31
|
* Simplify to work around VC++ bugsBoris Kolpackov2009-10-116-68/+24
|
* Remove unneeded codeBoris Kolpackov2009-10-041-18/+0
|
* Get rid of the name typedefBoris Kolpackov2009-09-202-11/+7
| | | | Use std::string directly.
* Use new path class, add context and generator classesBoris Kolpackov2009-09-132-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.
* Call proper base constructors from cli_unitBoris Kolpackov2009-09-062-1/+5
|
* Add semantic graph and traversal mechanismBoris Kolpackov2009-09-0512-0/+1329
The parser now builds the semantic graph.