Sha256: 2ce9aa28b11ad543b48ec363afac4869698a8b09032ec4f4d736a0467b254089

Contents?: true

Size: 694 Bytes

Versions: 4

Compression:

Stored size: 694 Bytes

Contents

Before talk?
------------
- non node-instantiating expressions extend their results with inline modules
- allow load_grammar and require statements at the top of treetop files
- deal with facets versioning issue



Function application... the left-recursion problem
--------------------------------------------------
f g x

rule expression
  application / function / variable
end

rule application
  expression space expression
end

Function application... how can we avoid left recursion?
--------------------------------------------------------
rule expression
  application / function / variable
end

rule application
  operator space expression
end

rule operator
  function / variable
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
treetop-1.1.0 examples/TALK
treetop-1.1.1 examples/TALK
treetop-1.1.2 examples/TALK
treetop-1.1.4 examples/TALK