occam-parsers 23.0.138 → 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.
Files changed (105) hide show
  1. package/example.js +147 -22
  2. package/lib/basic/parser.js +1 -1
  3. package/lib/definition/callAheadModifierRule.js +1 -1
  4. package/lib/definition/choiceOfParts.js +1 -1
  5. package/lib/definition/definition.js +1 -1
  6. package/lib/definition/definitions.js +1 -1
  7. package/lib/definition/document.js +1 -1
  8. package/lib/definition/error.js +1 -1
  9. package/lib/definition/name.js +1 -1
  10. package/lib/definition/noWhitespacePart.js +1 -1
  11. package/lib/definition/opacityModifierRule.js +1 -1
  12. package/lib/definition/partChoice.js +1 -1
  13. package/lib/definition/partRule/nonTerminal/ruleName.js +1 -1
  14. package/lib/definition/partRule/nonTerminal.js +1 -1
  15. package/lib/definition/partRule/terminal.js +1 -1
  16. package/lib/definition/precedence.js +1 -1
  17. package/lib/definition/quantifierRule.js +1 -1
  18. package/lib/definition/rule.js +1 -1
  19. package/lib/definition/ruleName.js +1 -1
  20. package/lib/definition/sequenceOfParts.js +1 -1
  21. package/lib/definition/significantTokenType.js +1 -1
  22. package/lib/definition/startOfContentPart.js +1 -1
  23. package/lib/definition/terminalSymbol.js +1 -1
  24. package/lib/example/basic/lexer.js +2 -3
  25. package/lib/example/basic/parser.js +1 -1
  26. package/lib/example/view/basic.js +1 -1
  27. package/lib/example/view/bnf.js +2 -3
  28. package/lib/example/view/input/ruleName.js +1 -1
  29. package/lib/example/view/textarea/bnf.js +1 -1
  30. package/lib/example/view/textarea/content.js +1 -1
  31. package/lib/example/view/textarea/lexicalEntries.js +1 -1
  32. package/lib/example/view/textarea/parseTree.js +1 -1
  33. package/lib/example/view/textarea/tokens.js +1 -1
  34. package/lib/example/view.js +1 -1
  35. package/lib/node/bnf/callAheadModifier.js +1 -1
  36. package/lib/node/bnf/choiceOfParts.js +1 -1
  37. package/lib/node/bnf/definition.js +1 -1
  38. package/lib/node/bnf/definitions.js +1 -1
  39. package/lib/node/bnf/document.js +1 -1
  40. package/lib/node/bnf/endOfLine.js +1 -1
  41. package/lib/node/bnf/epsilon.js +1 -1
  42. package/lib/node/bnf/error.js +1 -1
  43. package/lib/node/bnf/name.js +1 -1
  44. package/lib/node/bnf/noWhitespacePart.js +1 -1
  45. package/lib/node/bnf/opacityModifier.js +1 -1
  46. package/lib/node/bnf/part/nonTerminal.js +1 -1
  47. package/lib/node/bnf/part/terminal.js +1 -1
  48. package/lib/node/bnf/part.js +1 -1
  49. package/lib/node/bnf/partChoice.js +1 -1
  50. package/lib/node/bnf/precedence.js +1 -1
  51. package/lib/node/bnf/quantifier.js +1 -1
  52. package/lib/node/bnf/rule.js +1 -1
  53. package/lib/node/bnf/ruleName.js +1 -1
  54. package/lib/node/bnf/sequenceOfParts.js +1 -1
  55. package/lib/node/bnf/startOfContentPart.js +1 -1
  56. package/lib/node/bnf/wildcard.js +1 -1
  57. package/lib/node/nonTerminal.js +1 -1
  58. package/lib/node/terminal/endOfLine.js +1 -1
  59. package/lib/node/terminal/epsilon.js +1 -1
  60. package/lib/node/terminal/noWhitespace.js +1 -1
  61. package/lib/node/terminal/startOfContent.js +1 -1
  62. package/lib/node/terminal.js +1 -1
  63. package/lib/parseTree/childNodes.js +1 -1
  64. package/lib/parseTree/endOfLineNode.js +1 -1
  65. package/lib/parseTree/epsilonNode.js +1 -1
  66. package/lib/parseTree/horizontalBranch.js +1 -1
  67. package/lib/parseTree/noWhitespaceNode.js +1 -1
  68. package/lib/parseTree/nonTerminalNode.js +1 -1
  69. package/lib/parseTree/ruleName.js +1 -1
  70. package/lib/parseTree/startOfContentNode.js +1 -1
  71. package/lib/parseTree/terminalNode.js +1 -1
  72. package/lib/part/terminal/endOfLine.js +1 -1
  73. package/lib/part/terminal/epsilon.js +1 -1
  74. package/lib/part/terminal/noWhitespace.js +1 -1
  75. package/lib/part/terminal/startOfContent.js +1 -1
  76. package/lib/part/terminal/wildcard.js +1 -1
  77. package/lib/rule/bnf/callAheadModifier.js +1 -1
  78. package/lib/rule/bnf/choiceOfParts.js +1 -1
  79. package/lib/rule/bnf/definition.js +1 -1
  80. package/lib/rule/bnf/definitions.js +1 -1
  81. package/lib/rule/bnf/document.js +1 -1
  82. package/lib/rule/bnf/endOfLine.js +1 -1
  83. package/lib/rule/bnf/epsilon.js +1 -1
  84. package/lib/rule/bnf/error.js +1 -1
  85. package/lib/rule/bnf/name.js +1 -1
  86. package/lib/rule/bnf/noWhitespacePart.js +1 -1
  87. package/lib/rule/bnf/nonTerminalPart.js +1 -1
  88. package/lib/rule/bnf/oneOrMoreQuantifier.js +1 -1
  89. package/lib/rule/bnf/opacityModifier.js +1 -1
  90. package/lib/rule/bnf/optionalQuantifier.js +1 -1
  91. package/lib/rule/bnf/part.js +1 -1
  92. package/lib/rule/bnf/partChoice.js +1 -1
  93. package/lib/rule/bnf/precedence.js +1 -1
  94. package/lib/rule/bnf/quantifier.js +1 -1
  95. package/lib/rule/bnf/regularExpression.js +1 -1
  96. package/lib/rule/bnf/rule.js +1 -1
  97. package/lib/rule/bnf/ruleName.js +1 -1
  98. package/lib/rule/bnf/sequenceOfParts.js +1 -1
  99. package/lib/rule/bnf/significantTokenType.js +1 -1
  100. package/lib/rule/bnf/startOfContentPart.js +1 -1
  101. package/lib/rule/bnf/terminalPart.js +1 -1
  102. package/lib/rule/bnf/terminalSymbol.js +1 -1
  103. package/lib/rule/bnf/wildcard.js +1 -1
  104. package/lib/rule/bnf/zeroOrMoreQuantifier.js +1 -1
  105. 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.