Sha256: 126f8a3844731ce56a86c5321c94b1efab01041c5250a0a2d93956c1ee933335

Contents?: true

Size: 196 Bytes

Versions: 8

Compression:

Stored size: 196 Bytes

Contents

%require "~> 0.1"
%type "ruby"

%terminal IDENT
%terminal STAR "*"
%terminal EQUALS "="

%%

e: l EQUALS r
 | r

l: IDENT
 | STAR r

r: l

%%

class SimpleParser < Antelope::Parser
  %{write}
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
antelope-0.1.8 examples/simple.ace
antelope-0.1.7 examples/simple.ace
antelope-0.1.6 examples/simple.ace
antelope-0.1.5 examples/simple.ace
antelope-0.1.4 examples/simple.ace
antelope-0.1.3 examples/simple.ace
antelope-0.1.2 examples/simple.ace
antelope-0.1.1 examples/simple.ace