Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update copyright year | Karen Arutyunov | 2019-01-16 | 15 | -15/+15 |
| | |||||
* | Update copyright year | Karen Arutyunov | 2018-05-21 | 15 | -15/+15 |
| | |||||
* | Update copyright year | Boris Kolpackov | 2017-01-03 | 15 | -15/+15 |
| | |||||
* | Start switch to build2 | Boris Kolpackov | 2016-11-15 | 13 | -15/+15 |
| | |||||
* | Support specifying documentation variables on command line | Boris Kolpackov | 2015-11-16 | 1 | -0/+1 |
| | |||||
* | Implement scope documentation generation in HTML | Boris Kolpackov | 2015-10-30 | 1 | -0/+6 |
| | |||||
* | Add parsing support for scope-level documentation | Boris Kolpackov | 2015-10-29 | 4 | -7/+58 |
| | |||||
* | Get rid of GCC warning | Michael Shepanski | 2014-10-13 | 1 | -2/+2 |
| | |||||
* | Move lookup to semantic graph from parser | Boris Kolpackov | 2012-05-11 | 2 | -0/+130 |
| | |||||
* | Implement option class inheritance | Boris Kolpackov | 2012-05-10 | 4 | -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 inclusion | Boris Kolpackov | 2012-05-10 | 1 | -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 update | Boris Kolpackov | 2011-01-04 | 12 | -12/+12 |
| | |||||
* | Update copyright | Boris Kolpackov | 2010-01-01 | 12 | -12/+12 |
| | |||||
* | Implement option documentation support in frontend | Boris Kolpackov | 2009-11-08 | 1 | -0/+31 |
| | |||||
* | Simplify to work around VC++ bugs | Boris Kolpackov | 2009-10-11 | 6 | -68/+24 |
| | |||||
* | Remove unneeded code | Boris Kolpackov | 2009-10-04 | 1 | -18/+0 |
| | |||||
* | Get rid of the name typedef | Boris Kolpackov | 2009-09-20 | 2 | -11/+7 |
| | | | | Use std::string directly. | ||||
* | Use new path class, add context and generator classes | Boris Kolpackov | 2009-09-13 | 2 | -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_unit | Boris Kolpackov | 2009-09-06 | 2 | -1/+5 |
| | |||||
* | Add semantic graph and traversal mechanism | Boris Kolpackov | 2009-09-05 | 12 | -0/+1329 |
The parser now builds the semantic graph. |