Sha256: 07a5d864229f468eca65bcabf6819bd87a318e5f00f8ec8f5ce7a530f7b22d4c

Contents?: true

Size: 170 Bytes

Versions: 8

Compression:

Stored size: 170 Bytes

Contents

%type "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

8 entries across 8 versions & 1 rubygems

Version Path
antelope-0.1.9 spec/fixtures/simple.ace
antelope-0.1.8 spec/fixtures/simple.ace
antelope-0.1.7 spec/fixtures/simple.ace
antelope-0.1.6 spec/fixtures/simple.ace
antelope-0.1.5 spec/fixtures/simple.ace
antelope-0.1.4 spec/fixtures/simple.ace
antelope-0.1.3 spec/fixtures/simple.ace
antelope-0.1.2 spec/fixtures/simple.ace