Class: Crokus::Goto

Inherits:
CtrlStmt show all
Defined in:
lib/crokus/ast.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Ast

#accept, #str

Constructor Details

#initialize(label) ⇒ Goto

Returns a new instance of Goto.



329
330
331
# File 'lib/crokus/ast.rb', line 329

def initialize label
  @label=label
end

Instance Attribute Details

#labelObject

Returns the value of attribute label.



328
329
330
# File 'lib/crokus/ast.rb', line 328

def label
  @label
end