class Ikra::AST::BreakNode
Public Instance Methods
accept(visitor)
click to toggle source
# File lib/ast/visitor.rb, line 158 def accept(visitor) return visitor.visit_break_node(self) end
to_s()
click to toggle source
# File lib/ast/printer.rb, line 150 def to_s return "[BreakNode]" end