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.
789 790 791 792 |
# File 'lib/racc/grammar.rb', line 789 def initialize(symbol, lineno) @symbol = symbol @lineno = lineno end |
Instance Attribute Details
#lineno ⇒ Object (readonly)
Returns the value of attribute lineno.
801 802 803 |
# File 'lib/racc/grammar.rb', line 801 def lineno @lineno end |
#symbol ⇒ Object (readonly)
Returns the value of attribute symbol.
800 801 802 |
# File 'lib/racc/grammar.rb', line 800 def symbol @symbol end |
Instance Method Details
#name ⇒ Object Also known as: inspect
794 795 796 |
# File 'lib/racc/grammar.rb', line 794 def name "=#{@symbol}" end |