summaryrefslogtreecommitdiff
path: root/src/core/parser
AgeCommit message (Collapse)Author
2015-01-30stuffAndreas Stöckel
2015-01-29Unified signature of resolve functions, passing the "owner" to the callback ↵Andreas Stöckel
functions in ParserScope::resolve
2015-01-29ParserScope now stores the nodes for which the resolution was triggered and ↵Andreas Stöckel
first executes those resolutions that depend on not currently resolving nodes (this behaviour is needed for the resolution of constants).
2015-01-28Implemented select<T> functionAndreas Stöckel
2015-01-28Printing error messages for deferred resolution at the correct locationAndreas Stöckel
2015-01-28Returning again a single node as result of the import function (as this is ↵Andreas Stöckel
already explicitly checked for).
2015-01-28Added select method and repair of some Doxygen commentsAndreas Stöckel
2015-01-27Renamed "link" to "import"Andreas Stöckel
2015-01-27Introduced notion of "flags" that can be set at a certain level of the ↵Andreas Stöckel
ParserScope in order to store data that should be available between parser instances, but cannot be stored in the object graph.
2015-01-27Parsers do no longer return the node they have parsed (as this may be ↵Andreas Stöckel
ill-defined -- if a parser only parses a partial document via include, there may be many to no nodes that are returned). Parsers should just use the ParserScope.push funciton. All nodes pushed onto the top-level of the ParserScope are added treated as the nodes the parser has parsed. Adapted all code and all tests accordingly.
2015-01-27Removed no longer needed variant of the clone functionAndreas Stöckel
2015-01-27Added fork, join, checkUnwound and getTopLevelNodes functionality to ↵Andreas Stöckel
ParserScope and using it in the Manager
2015-01-27Removed dependency between "Project" model class and parser/resources. This ↵Andreas Stöckel
reduces coupling and was stupid beforehand.
2015-01-26Improving logger output ParserScope for ambigous resolutionAndreas Stöckel
2015-01-25Added forward declarationAndreas Stöckel
2015-01-25Restructures parser classes a little, removed Registry from ParserContext, ↵Andreas Stöckel
gave a ResourceManager instance to the Project, using ResourceRequest when including or linking files, thought through how "including" and "linking" are handled
2015-01-23Ability to add user data to ParserStack (this is just a hack, there should ↵Andreas Stöckel
be a better solution, e.g. to derive from ParserStack)
2015-01-22BackupAndreas Stöckel
2015-01-21Some further refactoring -- renamed Scope to ParserScope, got rid of parser ↵Andreas Stöckel
namespace, added new functionality to RegistryClass, wrote documentation, added function for extracting file extensions to Utils
2015-01-19XML-Parsing for Typesystem structs works so farAndreas Stöckel
2015-01-18Fixed bugs in definition of Project, added reference to Project to ParserContextAndreas Stöckel
2015-01-18Renamed RttiType to RttiAndreas Stöckel
2015-01-18Parsing struct attributes, added ability to reference other typesystems from ↵Andreas Stöckel
a typesystem
2015-01-18Implemented storing locations in the ParserStack, improved parsing typesystemsAndreas Stöckel
2015-01-16Allowing deferred resolution of NodesAndreas Stöckel
2015-01-16Working on XMLParser (still lot work in progress)Andreas Stöckel
2015-01-15allow to retrieve writeable refrence to ParserContextAndreas Stöckel
2015-01-15Using Arguments class in ParserStack for validationAndreas Stöckel
2015-01-11Renamed RttiBase to RttiTypeAndreas Stöckel
2015-01-09Implemented resolve function in Scope classAndreas Stöckel
2015-01-02Moved Node class to model folderAndreas Stöckel
2015-01-02Added argument validation to parser stackAndreas Stöckel
2015-01-02Moved StandaloneParserContext to test folderAndreas Stöckel
2015-01-01Using CharReader instead of inputstream in Parser functionAndreas Stöckel
2015-01-01Replaced ParserException with more generic LoggerExceptionAndreas Stöckel
2014-12-11moved to CharReader everywhereAndreas Stöckel
2014-12-05Made the CSSParser a valid subclass of Parser.Benjamin Paassen
2014-12-03continued work on XML parser and underlying ParserStack classAndreas Stöckel
2014-12-02continued working on the xml parser classAndreas Stöckel
2014-12-01working version of the ParserStack class plus unit testsAndreas Stöckel
2014-12-01first version of the ParserStack classAndreas Stöckel
2014-11-30backupAndreas Stöckel
2014-11-28moved some filesAndreas Stöckel
2014-11-27started to implement xml parser as part of a very generic parser framework ↵Andreas Stöckel
which can be used for all Ousia format parsers