Sha256: 823e1fb5a60a21611231d477a47a6e09538550f2448fd8e50a10c6719cd8068b

Contents?: true

Size: 196 Bytes

Versions: 5

Compression:

Stored size: 196 Bytes

Contents

%language <ruby>

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

%%

e: l EQUALS r
 | r
 | nothing

l: IDENT
 | STAR r

r: l

%%

class SimpleParser
  %{write}
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
antelope-0.3.2 spec/fixtures/simple.ace
antelope-0.3.0 spec/fixtures/simple.ace
antelope-0.2.4 spec/fixtures/simple.ace
antelope-0.2.3 spec/fixtures/simple.ace
antelope-0.2.2 spec/fixtures/simple.ace