summaryrefslogtreecommitdiff
path: root/cli/context.cxx
AgeCommit message (Collapse)AuthorFilesLines
2012-06-04Remove unnecessary default: statementBoris Kolpackov1-2/+0
2012-06-04Fix bug in argument formattingBoris Kolpackov1-0/+5
2011-01-04Copyright updateBoris Kolpackov1-1/+1
2010-09-14Implement the --cli-namespace optionBoris Kolpackov1-0/+53
2010-06-02Implement generation of specifier functions (--generate-specifier)Boris Kolpackov1-0/+2
These functions determine whether the option was specified on the command line. New test: specifier.
2010-01-01Update copyrightBoris Kolpackov1-1/+1
2009-11-22Implement option value modifiers generationBoris Kolpackov1-0/+2
2009-11-17Complete the implementation of the option documentationBoris Kolpackov1-5/+74
Add the man page generator. Port CLI usage, HTML documentation and the man page to the auto-generated version. Update examples and documentation.
2009-11-08Implement HTML pages generationBoris Kolpackov1-0/+155
2009-11-08Implement usage generationBoris Kolpackov1-1/+195
Also migrate the CLI compiler usage handling to the auto-generated version.
2009-10-11Remove unneeded header inclusionBoris Kolpackov1-2/+0
2009-10-11Use a set instead of pre-sorted array for keywordsBoris Kolpackov1-31/+34
The pre-sorted array approach depends on the character encoding.
2009-10-04Add --option-{prefix,separator} optionsBoris Kolpackov1-1/+5
2009-10-04Add --reserved-name optionBoris Kolpackov1-1/+1
2009-10-04Add --suppress-inline optionBoris Kolpackov1-5/+4
2009-09-27Add inline qualifier stringBoris Kolpackov1-0/+6
2009-09-20Add definition unit to contextBoris Kolpackov1-1/+4
2009-09-20Add standard namespace traverserBoris Kolpackov1-0/+20
2009-09-19Open output files and generate boilerplate codeBoris Kolpackov1-2/+162
2009-09-13Use new path class, add context and generator classesBoris Kolpackov1-0/+20
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.