examples/simple.ace in antelope-0.2.0 vs examples/simple.ace in antelope-0.2.2
- old
+ new
@@ -1,22 +1,22 @@
-%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
+%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