Class: Dhaka::Production

Inherits:
Object
  • Object
show all
Defined in:
lib/grammar/production.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(symbol, expansion, name, precedence = nil) ⇒ Production

Returns a new instance of Production.



7
8
9
10
11
12
# File 'lib/grammar/production.rb', line 7

def initialize(symbol, expansion, name, precedence = nil)
  @symbol = symbol
  @expansion = expansion
  @name = name
  @precedence = precedence
end

Instance Attribute Details

#expansionObject (readonly)

Returns the value of attribute expansion.



5
6
7
# File 'lib/grammar/production.rb', line 5

def expansion
  @expansion
end

#nameObject (readonly)

Returns the value of attribute name.



5
6
7
# File 'lib/grammar/production.rb', line 5

def name
  @name
end

#symbolObject (readonly)

Returns the value of attribute symbol.



5
6
7
# File 'lib/grammar/production.rb', line 5

def symbol
  @symbol
end

Instance Method Details

#precedenceObject



14
15
16
17
18
19
20
21
22
23
24
# File 'lib/grammar/production.rb', line 14

def precedence
  unless @precedence
    @expansion.reverse_each do |symbol|
      if symbol.terminal
        @precedence = symbol.precedence
        break
      end
    end 
  end
  @precedence
end

#to_sObject

:nodoc:



26
27
28
# File 'lib/grammar/production.rb', line 26

def to_s #:nodoc:
  "#{@name} #{@symbol} ::= #{@expansion.join(' ')}"
end