occam-parsers 23.0.139 → 23.0.140
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/example.js +1 -1
- package/lib/basic/parser.js +1 -1
- package/lib/definition/callAheadModifierRule.js +1 -1
- package/lib/definition/choiceOfParts.js +1 -1
- package/lib/definition/definition.js +1 -1
- package/lib/definition/definitions.js +1 -1
- package/lib/definition/document.js +1 -1
- package/lib/definition/error.js +1 -1
- package/lib/definition/name.js +1 -1
- package/lib/definition/noWhitespacePart.js +1 -1
- package/lib/definition/opacityModifierRule.js +1 -1
- package/lib/definition/partChoice.js +1 -1
- package/lib/definition/partRule/nonTerminal/ruleName.js +1 -1
- package/lib/definition/partRule/nonTerminal.js +1 -1
- package/lib/definition/partRule/terminal.js +1 -1
- package/lib/definition/precedence.js +1 -1
- package/lib/definition/quantifierRule.js +1 -1
- package/lib/definition/rule.js +1 -1
- package/lib/definition/ruleName.js +1 -1
- package/lib/definition/sequenceOfParts.js +1 -1
- package/lib/definition/significantTokenType.js +1 -1
- package/lib/definition/startOfContentPart.js +1 -1
- package/lib/definition/terminalSymbol.js +1 -1
- package/lib/example/basic/lexer.js +2 -3
- package/lib/example/basic/parser.js +1 -1
- package/lib/example/view/basic.js +1 -1
- package/lib/example/view/bnf.js +2 -3
- package/lib/example/view/input/ruleName.js +1 -1
- package/lib/example/view/textarea/bnf.js +1 -1
- package/lib/example/view/textarea/content.js +1 -1
- package/lib/example/view/textarea/lexicalEntries.js +1 -1
- package/lib/example/view/textarea/parseTree.js +1 -1
- package/lib/example/view/textarea/tokens.js +1 -1
- package/lib/example/view.js +1 -1
- package/lib/node/bnf/callAheadModifier.js +1 -1
- package/lib/node/bnf/choiceOfParts.js +1 -1
- package/lib/node/bnf/definition.js +1 -1
- package/lib/node/bnf/definitions.js +1 -1
- package/lib/node/bnf/document.js +1 -1
- package/lib/node/bnf/endOfLine.js +1 -1
- package/lib/node/bnf/epsilon.js +1 -1
- package/lib/node/bnf/error.js +1 -1
- package/lib/node/bnf/name.js +1 -1
- package/lib/node/bnf/noWhitespacePart.js +1 -1
- package/lib/node/bnf/opacityModifier.js +1 -1
- package/lib/node/bnf/part/nonTerminal.js +1 -1
- package/lib/node/bnf/part/terminal.js +1 -1
- package/lib/node/bnf/part.js +1 -1
- package/lib/node/bnf/partChoice.js +1 -1
- package/lib/node/bnf/precedence.js +1 -1
- package/lib/node/bnf/quantifier.js +1 -1
- package/lib/node/bnf/rule.js +1 -1
- package/lib/node/bnf/ruleName.js +1 -1
- package/lib/node/bnf/sequenceOfParts.js +1 -1
- package/lib/node/bnf/startOfContentPart.js +1 -1
- package/lib/node/bnf/wildcard.js +1 -1
- package/lib/node/nonTerminal.js +1 -1
- package/lib/node/terminal/endOfLine.js +1 -1
- package/lib/node/terminal/epsilon.js +1 -1
- package/lib/node/terminal/noWhitespace.js +1 -1
- package/lib/node/terminal/startOfContent.js +1 -1
- package/lib/node/terminal.js +1 -1
- package/lib/parseTree/childNodes.js +1 -1
- package/lib/parseTree/endOfLineNode.js +1 -1
- package/lib/parseTree/epsilonNode.js +1 -1
- package/lib/parseTree/horizontalBranch.js +1 -1
- package/lib/parseTree/noWhitespaceNode.js +1 -1
- package/lib/parseTree/nonTerminalNode.js +1 -1
- package/lib/parseTree/ruleName.js +1 -1
- package/lib/parseTree/startOfContentNode.js +1 -1
- package/lib/parseTree/terminalNode.js +1 -1
- package/lib/part/terminal/endOfLine.js +1 -1
- package/lib/part/terminal/epsilon.js +1 -1
- package/lib/part/terminal/noWhitespace.js +1 -1
- package/lib/part/terminal/startOfContent.js +1 -1
- package/lib/part/terminal/wildcard.js +1 -1
- package/lib/rule/bnf/callAheadModifier.js +1 -1
- package/lib/rule/bnf/choiceOfParts.js +1 -1
- package/lib/rule/bnf/definition.js +1 -1
- package/lib/rule/bnf/definitions.js +1 -1
- package/lib/rule/bnf/document.js +1 -1
- package/lib/rule/bnf/endOfLine.js +1 -1
- package/lib/rule/bnf/epsilon.js +1 -1
- package/lib/rule/bnf/error.js +1 -1
- package/lib/rule/bnf/name.js +1 -1
- package/lib/rule/bnf/noWhitespacePart.js +1 -1
- package/lib/rule/bnf/nonTerminalPart.js +1 -1
- package/lib/rule/bnf/oneOrMoreQuantifier.js +1 -1
- package/lib/rule/bnf/opacityModifier.js +1 -1
- package/lib/rule/bnf/optionalQuantifier.js +1 -1
- package/lib/rule/bnf/part.js +1 -1
- package/lib/rule/bnf/partChoice.js +1 -1
- package/lib/rule/bnf/precedence.js +1 -1
- package/lib/rule/bnf/quantifier.js +1 -1
- package/lib/rule/bnf/regularExpression.js +1 -1
- package/lib/rule/bnf/rule.js +1 -1
- package/lib/rule/bnf/ruleName.js +1 -1
- package/lib/rule/bnf/sequenceOfParts.js +1 -1
- package/lib/rule/bnf/significantTokenType.js +1 -1
- package/lib/rule/bnf/startOfContentPart.js +1 -1
- package/lib/rule/bnf/terminalPart.js +1 -1
- package/lib/rule/bnf/terminalSymbol.js +1 -1
- package/lib/rule/bnf/wildcard.js +1 -1
- package/lib/rule/bnf/zeroOrMoreQuantifier.js +1 -1
- package/package.json +3 -3
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.