public
Description: Rubinius, the Ruby VM
Homepage: http://rubini.us
Clone URL: git://github.com/evanphx/rubinius.git
Added stub implementation of 'undef'. undef keyword needs specs.
Wilson Bilkovich (author)
Sat Aug 11 19:15:24 -0700 2007
commit  be906f4c5fd44bfbc7fbb23e97cc1b4b3353cf17
tree    5c06def932fc66fc2136e560e5e0299b9aa429c8
parent  8761af6925b481b6394849d7a359f9127ccbe248
...
552
553
554
 
 
 
 
 
 
555
556
557
...
552
553
554
555
556
557
558
559
560
561
562
563
0
@@ -552,6 +552,12 @@ module Bytecode
0
         restore_condmod(*cm)
0
       end
0
       
0
+ def process_undef(x)
0
+ arg = x.shift
0
+ STDERR.puts "undef called with: #{arg}, but not implemented yet"
0
+ add "push nil"
0
+ end
0
+
0
       def process_until(x)
0
         process_while(x, "git")
0
       end

Comments

    No one has commented yet.