summaryrefslogtreecommitdiff
path: root/src/core
AgeCommit message (Collapse)Author
2015-02-03Throwing an Exception in RttiScope.select if no node is found. This is much ↵Andreas Stöckel
cleaner.
2015-02-03Fixed commentAndreas Stöckel
2015-02-03Using correct "isa" provided by TypeAndreas Stöckel
2015-02-03Added "checkIsa" function to Type that allows to check for an isa relationship.Andreas Stöckel
2015-02-03Improved error messageAndreas Stöckel
2015-02-03Attatching position information to error messages in Typesystem.buildAndreas Stöckel
2015-02-03Changed behaviour of log exception with addition source location: exception ↵Andreas Stöckel
has now precedence
2015-02-03Implemented storing SourceLocation of parsed VariantsAndreas Stöckel
2015-02-03Fixed imports when ParserTypes are set to more general nodes.Andreas Stöckel
2015-02-03Got rid of warnings when including filesAndreas Stöckel
2015-02-03Added "deduceState" functionAndreas Stöckel
2015-02-03Some refactoring, added function for extracting current type signatureAndreas Stöckel
2015-02-03Implemented ParserStateDeductor which is used to deduce the current ↵Andreas Stöckel
ParserState given the Type signature extracted from a ParserScope.
2015-02-02Importing files works nowAndreas Stöckel
2015-02-02Removed "supportedTypes" from ParserState.Andreas Stöckel
2015-02-02Added function giving Handlers access to the ParserContext (for import, include)Andreas Stöckel
2015-02-02Introduced RootNode class from which Document, Domain and Typesystem should ↵Andreas Stöckel
derive. This class is needed for the "import" handler.
2015-02-02Allowing to store SourceLocation from which a Variant was parsed along with ↵Andreas Stöckel
the Variant
2015-02-01Improved ParserStack state descriptionAndreas Stöckel
2015-02-01Made Argument and Arguments copyableAndreas Stöckel
2015-01-30Beautify error messageAndreas Stöckel
2015-01-30Fixed setIntersection in ResourceRequestAndreas Stöckel
2015-01-30Added Argument::Cardinality named constructor to ArgumentAndreas Stöckel
2015-01-30Fixed conversion to cardinalitiesAndreas Stöckel
2015-01-30Added parsing of cardinalities to parseGenericAndreas Stöckel
2015-01-30Added "Cardinality" type and AnyCardinality constant to RangeSetAndreas Stöckel
2015-01-30Finished implementing constant importingAndreas Stöckel
2015-01-30cycle detection for imports as well.Benjamin Paassen
2015-01-30some formatting stuff and cycle detection in include as well as repeated ↵Benjamin Paassen
import detection.
2015-01-30corrected CharReader handling in VariantReader and added a new testcase.Benjamin Paassen
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-29Improved error messageAndreas Stöckel
2015-01-29Removed unneeded function stubAndreas Stöckel
2015-01-29Supporting templace version for suppling locations in log exception method ↵Andreas Stöckel
and GuardedLogger
2015-01-28Implemented select<T> functionAndreas Stöckel
2015-01-28Printing error messages for deferred resolution at the correct locationAndreas Stöckel
2015-01-28Implemented setters for constantsAndreas 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-28Checking parentStructure for being acyclicAndreas Stöckel
2015-01-28Added methods for checking a property for acyclicity (or however this is ↵Andreas Stöckel
supposed to be called)
2015-01-28Validating nodes after they have been parsedAndreas Stöckel
2015-01-28AutoformatAndreas Stöckel
2015-01-28Renamed add* and include* methods for referencing another Typesystem/Domain ↵Andreas Stöckel
description to "reference*" to have a consistent nomenclature
2015-01-27Renamed "link" to "import"Andreas Stöckel
2015-01-27Fixed context not being shown when an exception was thrown in the parserAndreas 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.