Method: Crokus::Transformer#visitLabeledStmt
- Defined in:
- lib/crokus/transformer.rb
#visitLabeledStmt(lstmt, args = nil) ⇒ Object
.….……stmts.….….……
117 118 119 120 121 |
# File 'lib/crokus/transformer.rb', line 117 def visitLabeledStmt lstmt,args=nil label=lstmt.label.accept(self) stmt=lstmt.stmt.accept(self) LabeledStmt.new(label,stmt) end |