Sha256: 9799cefc57cfde800854d755626aa8e81f7dc4caab191794f44c8b245a14e99b

Contents?: true

Size: 201 Bytes

Versions: 6

Compression:

Stored size: 201 Bytes

Contents

%require "~> 0.1"
%generator "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

6 entries across 6 versions & 1 rubygems

Version Path
antelope-0.4.1 examples/simple.ace
antelope-0.4.0 examples/simple.ace
antelope-0.2.0 examples/simple.ace
antelope-0.1.11 examples/simple.ace
antelope-0.1.10 examples/simple.ace
antelope-0.1.9 examples/simple.ace