require 'nano/binding/eval' class Binding # Returns the local variables defined in the binding context # # a = 2 # binding.local_variables #=> ["a"] # def local_variables() eval( "local_variables" ) end end # _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # =begin test require 'test/unit' class TCBinding < Test::Unit::TestCase def setup a = 1 b = 2 x = "hello" # the line number must be updated if it moves @bind = binding; @this_line_no = 25 end def test_local_variables assert_equal( ["a","b","x"], @bind.local_variables ) end end =end