class Bpl::AST::GotoStatement

Public Instance Methods

show() click to toggle source
# File lib/bpl/ast/statement.rb, line 46
def show
  "#{yield :goto} #{@identifiers.map{|a| yield a} * ", "};"
end