Sha256: 21fbe522455a3da5b685fea99a20f7fb70da3f32d62e1adb8c5594f4d0aeed25

Contents?: true

Size: 208 Bytes

Versions: 6

Compression:

Stored size: 208 Bytes

Contents

module Target
  class Bar < Treetop::Runtime::SyntaxNode
    
  end

  grammar Foo
    rule foo
      'a' ('b' 'c' / 'b' 'd')+ 'e' <Bar> {
        def foo
          'foo'
        end
      }
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
treetop-1.1.2 test/compilation_target/target.treetop
treetop-1.0.1 test/compilation_target/target.treetop
treetop-1.1.1 test/compilation_target/target.treetop
treetop-1.0.0 test/compilation_target/target.treetop
treetop-1.0.2 test/compilation_target/target.treetop
treetop-1.1.0 test/compilation_target/target.treetop