class CodeTools::AST::CurrentException

Public Instance Methods

bytecode(g) click to toggle source
# File lib/rubinius/code/ast/variables.rb, line 235
def bytecode(g)
  pos(g)
  g.push_current_exception
end
defined(g) click to toggle source
# File lib/rubinius/code/ast/variables.rb, line 240
def defined(g)
  g.push_literal "global-variable"
end
to_sexp() click to toggle source
# File lib/rubinius/code/ast/variables.rb, line 244
def to_sexp
  [:gvar, :$!]
end