class Tracksperanto::ShakeGrammar::Catcher::At
Attributes
at[RW]
value[RW]
Public Class Methods
new(a, v)
click to toggle source
# File lib/import/shake_grammar/catcher.rb, line 7 def initialize(a, v) @at, @value = a, v end
Public Instance Methods
<=>(o)
click to toggle source
# File lib/import/shake_grammar/catcher.rb, line 11 def <=>(o) [@at, @value] <=> [o.at, o.value] end
inspect()
click to toggle source
# File lib/import/shake_grammar/catcher.rb, line 15 def inspect "(#{@value.inspect}@#{@at.inspect})" end