summaryrefslogtreecommitdiff
path: root/cli/semantics/unit.hxx
AgeCommit message (Collapse)AuthorFilesLines
2012-05-11Move lookup to semantic graph from parserBoris Kolpackov1-0/+21
2012-05-10Add support for options file inclusionBoris Kolpackov1-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.
2011-01-04Copyright updateBoris Kolpackov1-1/+1
2010-01-01Update copyrightBoris Kolpackov1-1/+1
2009-10-11Simplify to work around VC++ bugsBoris Kolpackov1-31/+13
2009-09-13Use new path class, add context and generator classesBoris Kolpackov1-5/+5
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.
2009-09-06Call proper base constructors from cli_unitBoris Kolpackov1-1/+1
2009-09-05Add semantic graph and traversal mechanismBoris Kolpackov1-0/+298
The parser now builds the semantic graph.