Class: Vertigo::Wait

Inherits:
AstNode show all
Defined in:
lib/vertigo/ast_vertigo_rkgen.rb

Instance Attribute Summary collapse

Attributes inherited from AstNode

#label, #pos

Instance Method Summary collapse

Methods inherited from AstNode

#accept, #str

Constructor Details

#initialize(until_ = nil, for_ = nil) ⇒ Wait

Returns a new instance of Wait.



225
226
227
# File 'lib/vertigo/ast_vertigo_rkgen.rb', line 225

def initialize until_=nil,for_=nil
  @until_,@for_=until_,for_
end

Instance Attribute Details

#for_Object

Returns the value of attribute for_.



224
225
226
# File 'lib/vertigo/ast_vertigo_rkgen.rb', line 224

def for_
  @for_
end

#until_Object

Returns the value of attribute until_.



224
225
226
# File 'lib/vertigo/ast_vertigo_rkgen.rb', line 224

def until_
  @until_
end