summaryrefslogtreecommitdiffstats
path: root/cli
Commit message (Collapse)AuthorAgeFilesLines
* Remove unneeded codeBoris Kolpackov2009-10-041-18/+0
|
* Add support for option name aliases and string literalsBoris Kolpackov2009-10-045-7/+29
|
* Add --reserved-name optionBoris Kolpackov2009-10-046-8/+86
|
* Add a parser for std::mapBoris Kolpackov2009-10-041-1/+58
|
* Add options for various include settingsBoris Kolpackov2009-10-046-14/+78
| | | | | | --include-with-brackets --include-prefix --guard-prefix
* Add --{hxx,ixx,cxx}-suffix optionsBoris Kolpackov2009-10-045-20/+69
|
* Add --suppress-inline optionBoris Kolpackov2009-10-047-37/+61
|
* Add option file for the CLI compiler itselfBoris Kolpackov2009-09-277-13/+612
|
* Cosmetic changesBoris Kolpackov2009-09-271-2/+2
|
* Generate parsing constructors and parsing codeBoris Kolpackov2009-09-278-4/+725
| | | | | Also generate some runtime support code such exceptions, value parsers, etc.
* Generate accessor implementationsBoris Kolpackov2009-09-271-1/+53
|
* Add inline qualifier stringBoris Kolpackov2009-09-272-0/+10
|
* Traverse classes in global scopeBoris Kolpackov2009-09-271-3/+6
|
* Use the path string from the invalid_path exceptionBoris Kolpackov2009-09-271-2/+2
|
* Generate classes, accessors and data membersBoris Kolpackov2009-09-201-0/+76
|
* Add name processorBoris Kolpackov2009-09-205-2/+194
| | | | | Name processor is a separate pass over the semantics graph that assigns names to various constructs while making sure there are no name clashes.
* Add header, inline, and source generatorsBoris Kolpackov2009-09-206-0/+126
| | | | | All they currently do is output the namespace structure plus the included C++ files for header.
* Add definition unit to contextBoris Kolpackov2009-09-204-11/+28
|
* Add standard namespace traverserBoris Kolpackov2009-09-202-0/+36
|
* Get rid of the name typedefBoris Kolpackov2009-09-202-11/+7
| | | | Use std::string directly.
* Open output files and generate boilerplate codeBoris Kolpackov2009-09-195-6/+383
|
* Use new path class, add context and generator classesBoris Kolpackov2009-09-1310-36/+158
| | | | | | 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-0528-12/+2137
| | | | The parser now builds the semantic graph.
* Link to the libcutl libraryBoris Kolpackov2009-08-301-1/+8
|
* Convert to the lower case naming conventionBoris Kolpackov2009-08-228-314/+313
|
* Add support for long long intBoris Kolpackov2009-08-221-2/+118
|
* Allow string literals for option namesBoris Kolpackov2009-08-221-4/+12
|
* Return proper token type for string literalsBoris Kolpackov2009-08-221-1/+1
|
* Add support for C and C++-style commentsBoris Kolpackov2009-08-222-30/+118
|
* Change the compiler driver to call the parserBoris Kolpackov2009-08-221-2/+35
|
* Implement the CLI language parserBoris Kolpackov2009-08-223-1/+674
|
* Add call and template expressionsBoris Kolpackov2009-08-225-25/+145
| | | | Also add support for querying the lexer failure state.
* Inline file for the Token classBoris Kolpackov2009-08-102-45/+83
|
* Tests for the lexerBoris Kolpackov2009-08-091-1/+1
|
* Implement lexical analyzer for the CLI languageBoris Kolpackov2009-08-093-0/+626
|
* Add the rest of the keywordsBoris Kolpackov2009-08-091-11/+21
| | | | Also replace size_t with std::size_t.
* Add Token classBoris Kolpackov2009-08-071-0/+141
|
* Add the LICENSE file and update licensing informationBoris Kolpackov2009-08-022-2/+2
|
* Initialize the build systemBoris Kolpackov2009-08-021-0/+73
|
* Add compiler driver stubBoris Kolpackov2009-08-021-0/+13