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