summaryrefslogtreecommitdiff
path: root/grammar.rb
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2014-06-04 20:32:43 +0200
committerPatrick Simianer <p@simianer.de>2014-06-04 20:32:43 +0200
commitbc71d67647ac9b124cc666a43fc819cad20cfe06 (patch)
tree9a795836390bdcb5436e638ef750ad0324490f19 /grammar.rb
parenta10db22ce00bd004682a00322b4d177b694082b7 (diff)
pretty
Diffstat (limited to 'grammar.rb')
-rw-r--r--grammar.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/grammar.rb b/grammar.rb
index 7bc6c9b..70e8fda 100644
--- a/grammar.rb
+++ b/grammar.rb
@@ -17,9 +17,9 @@ class NT
def initialize symbol=nil, index=nil, left=nil, right=nil
@symbol = symbol
- @index = index
- @left = left
- @right = right
+ @index = index
+ @left = left
+ @right = right
end
def from_s s
@@ -47,19 +47,19 @@ class Rule
attr_accessor :lhs, :rhs, :target, :map
def initialize lhs=nil, rhs=[], target=[]
- @lhs = lhs
- @rhs = rhs
+ @lhs = lhs
+ @rhs = rhs
@target = target
@arity_ = nil
end
def to_s
- "#{@lhs} -> #{@rhs.map{ |i| i.to_s }.join ' '} ||| #{@target.map{ |i| i.to_s }.join ' '} [arity=#{arity}]" #FIXME
+ "#{@lhs} -> #{@rhs.map{ |i| i.to_s }.join ' '} ||| #{@target.map{ |i| i.to_s }.join ' '} [arity=#{arity}]"
end
def arity
- return @arity_ if @arity_
- rhs.select { |i| i.class == NT }.size
+ @arity_ = rhs.select { |i| i.class == NT }.size if !@arity_
+ return @arity_
end
def read_right_ s