summaryrefslogtreecommitdiff
path: root/doc/language.txt
AgeCommit message (Collapse)AuthorFilesLines
2016-01-26Implement support for sourcing .cli filesBoris Kolpackov1-0/+5
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-11-26Don't require ';' after option documentation blockBoris Kolpackov1-1/+5
2015-11-24Implement support for documentation inside classesBoris Kolpackov1-3/+7
2015-10-29Add parsing support for scope-level documentationBoris Kolpackov1-1/+6
2012-05-10Implement option class inheritanceBoris Kolpackov1-1/+11
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-3/+8
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.
2012-05-10Cosmetic changesBoris Kolpackov1-2/+2
2009-11-08Implement option documentation support in frontendBoris Kolpackov1-3/+10
2009-08-22Update language grammarBoris Kolpackov1-17/+20
2009-08-09Clarify language grammarBoris Kolpackov1-8/+5
2009-08-07Add formal language spec for the first iterationBoris Kolpackov1-0/+88