Class: Racc::Prec
Instance Attribute Summary collapse
-
#lineno ⇒ Object
readonly
Returns the value of attribute lineno.
-
#symbol ⇒ Object
readonly
Returns the value of attribute symbol.
Instance Method Summary collapse
-
#initialize(symbol, lineno) ⇒ Prec
constructor
A new instance of Prec.
- #name ⇒ Object (also: #inspect)
Constructor Details
#initialize(symbol, lineno) ⇒ Prec
Returns a new instance of Prec.
788 789 790 791 |
# File 'lib/racc/grammar.rb', line 788 def initialize(symbol, lineno) @symbol = symbol @lineno = lineno end |
Instance Attribute Details
#lineno ⇒ Object (readonly)
Returns the value of attribute lineno.
800 801 802 |
# File 'lib/racc/grammar.rb', line 800 def lineno @lineno end |
#symbol ⇒ Object (readonly)
Returns the value of attribute symbol.
799 800 801 |
# File 'lib/racc/grammar.rb', line 799 def symbol @symbol end |
Instance Method Details
#name ⇒ Object Also known as: inspect
793 794 795 |
# File 'lib/racc/grammar.rb', line 793 def name "=#{@symbol}" end |