raiseParserException("Content does not match inner!",linenumber)
raiseParserException("Dies ist kein valider Tag! (mögliche Tags sind: {})",linenumber,", ".join(Tag.KNOWN_TAGS))
returnContent(children,linenumber)
# v1: has problems with missing semicolons
...
...
@@ -513,7 +513,7 @@ def parse(source):
ifnotfound:
raiseParserException("No matching syntax element found!",linenumber,tree=tree)
ifcurrentisnottree:
raiseParserException("Source ended within fork! (started at line {})".format(current.linenumber),linenumber=current.linenumber,tree=tree)
raiseParserException("Du hast vergessen, Klammern zu schließen! (die öffnende ist in Zeile {})".format(current.linenumber),linenumber=current.linenumber,tree=tree)