Sha256: bbea17df0c1a8bf63d50fcf5f671aaed2fdbdfc3392d712878fc9ce7a3325195
Contents?: true
Size: 672 Bytes
Versions: 25
Compression:
Stored size: 672 Bytes
Contents
class Binding # Evaluate a Ruby source code string (or block) in the binding context def eval( str ) #='', &blk ) #if block_given? # Kernel.eval( self, &blk ) #elsif str Kernel.eval( str, self ) #end 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_eval assert_equal( "hello", @bind.eval("x") ) end end =end
Version data entries
25 entries across 25 versions & 1 rubygems