Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-05-11 | Add support for -I option | Boris Kolpackov | 1 | -1/+2 | |
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-11 | Fix lookup bug | Boris Kolpackov | 1 | -3/+4 | |
2012-05-10 | Implement option class inheritance | Boris Kolpackov | 17 | -10/+211 | |
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-10 | Add support for options file inclusion | Boris Kolpackov | 6 | -4/+23 | |
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-04 | Copyright update | Boris Kolpackov | 17 | -17/+17 | |
2010-06-04 | Add support for single quotes in option files | Boris Kolpackov | 13 | -16/+45 | |
2010-06-02 | Add support for quoting in option file scanner | Boris Kolpackov | 9 | -1/+41 | |
2010-06-02 | Implement generation of specifier functions (--generate-specifier) | Boris Kolpackov | 4 | -1/+117 | |
These functions determine whether the option was specified on the command line. New test: specifier. | |||||
2010-06-02 | Add cli options instead of overriding them | Boris Kolpackov | 3 | -3/+1 | |
2010-01-01 | Update copyright | Boris Kolpackov | 14 | -14/+14 | |
2009-12-13 | Get rid of absolute paths in output | Boris Kolpackov | 3 | -5/+4 | |
2009-12-10 | Scanner-based parsing with support for element erasing | Boris Kolpackov | 19 | -1/+472 | |
Also implement argv_file_scanner which provides support for reading command line arguments from the argv array as well as files specified with command line options. New examples: file. New tests: ctor, erase, file. | |||||
2009-12-10 | Cosmetic changes | Boris Kolpackov | 2 | -2/+4 | |
2009-11-08 | Implement option documentation support in frontend | Boris Kolpackov | 3 | -1/+17 | |
2009-11-08 | Add a test for multi-line string literal | Boris Kolpackov | 2 | -0/+9 | |
2009-10-28 | Fix test output | Boris Kolpackov | 2 | -3/+3 | |
2009-10-11 | Add install target | Boris Kolpackov | 3 | -25/+0 | |
2009-09-27 | Pass file name as path | Boris Kolpackov | 1 | -2/+10 | |
2009-09-05 | Add semantic graph and traversal mechanism | Boris Kolpackov | 4 | -7/+39 | |
The parser now builds the semantic graph. | |||||
2009-08-24 | Remove support for install target | Boris Kolpackov | 2 | -2/+0 | |
2009-08-22 | Convert to the lower case naming convention | Boris Kolpackov | 2 | -17/+17 | |
2009-08-22 | Add support for long long int | Boris Kolpackov | 1 | -0/+12 | |
2009-08-22 | Document rules of the language covered by each test | Boris Kolpackov | 9 | -71/+72 | |
2009-08-22 | Add support for C and C++-style comments | Boris Kolpackov | 3 | -1/+22 | |
2009-08-22 | Add a test for the parser | Boris Kolpackov | 17 | -1/+213 | |
2009-08-22 | Add call and template expressions | Boris Kolpackov | 4 | -2/+17 | |
Also add support for querying the lexer failure state. | |||||
2009-08-09 | Minor build system fixes | Boris Kolpackov | 1 | -1/+1 | |
Restore .gitignore generation. Add the default and clean targets for the tests/ directory to the top level makefile. | |||||
2009-08-09 | Remove test executable that was accidently added | Boris Kolpackov | 1 | -0/+0 | |
2009-08-09 | Tests for the lexer | Boris Kolpackov | 14 | -0/+295 | |