summaryrefslogtreecommitdiff
path: root/src/core/parser/stack/Handler.hpp
AgeCommit message (Collapse)Author
2016-04-25Pass "isImplicit" flag to Handler::fieldStartAndreas Stöckel
2016-04-25Reimplement closeToken handlingAndreas Stöckel
Idea: Only start unrolling anything on the parser stack if an element that matches the given close token is found. This requires the endToken method in DocumentChildHandler to search for the given descriptor that might be ended. While performing this search, only a specified number of "explicit" structures/fields opened by the Stack class may be skipped (those with implicit default fields). Added an integration test ("python_code") which requires this new (hopefully sane) behaviour.
2016-04-25Some small formatting and comment changes, introduce more anonymous ↵Andreas Stöckel
namespaces in cpp
2016-04-25Add tokenStack depth guard to Handler classAndreas Stöckel
2016-04-25Remove "inherit" flag in TokenStack, add tiny unit test for TokenStack, ↵Andreas Stöckel
temporarily remove pushTokens and popTokens calls from DocumentChildHandler
2016-04-25Add not yet implemented "inherit" flag to the Stack classAndreas Stöckel
2015-03-03Implemented annotation handlingAndreas Stöckel
2015-03-02Merge branch 'astoecke_tokens' of ssh://somweyr.de/var/local/git/ousia into ↵Andreas Stöckel
astoecke_tokens Conflicts: application/src/core/parser/stack/Handler.hpp
2015-03-02Implemented new "start" methods in the Handler instancesAndreas Stöckel
2015-03-02Merge branch 'astoecke_tokens' of somweyr.de:ousia into astoecke_tokensBenjamin Paassen
Conflicts: application/src/core/parser/stack/Callbacks.hpp application/src/core/parser/stack/Handler.hpp
2015-03-02refactored SyntaxDescriptor to Token.hpp and added TokenDescriptor class.Benjamin Paassen
2015-03-02Got Stack compiling againAndreas Stöckel
2015-03-02Got all handlers compling againAndreas Stöckel
2015-03-02Adapted Callbacks interface and HandlersAndreas Stöckel
2015-02-25start of branch, commit log will be rewrittenAndreas Stöckel
2015-02-15Slightly adapted Handler instances to new Handler, once again passing ↵Andreas Stöckel
non-const references to data and start, using "parseGenericString" in DocumentHandler for resolving non-string values, added unit test for testing whether "end()" is not called if "start()" fails.
2015-02-15Commented out Callbacks in Handler, this is not implemented yetAndreas Stöckel
2015-02-15Implemented StaticFieldHandler and EmptyHandler default handler classesAndreas Stöckel
2015-02-15Renamed parser/generic to parser/stack and made filenames much shorterAndreas Stöckel