public
Description: Rubinius, the Ruby VM
Homepage: http://rubini.us
Clone URL: git://github.com/evanphx/rubinius.git
Made primitive calls more consistent
zenspider (author)
Mon Apr 07 20:43:19 -0700 2008
commit  2e58fe8c4e0322e6e4d2d17d7432619b71af2f64
tree    246ebf03e24403caee85c38ceca72388c83481d0
parent  ec9a149b2e1b2b0479718fcc51347876d16ebc93
...
10
11
12
13
 
14
15
16
...
10
11
12
 
13
14
15
16
0
@@ -10,7 +10,7 @@ class Process
0
   end
0
 
0
   def self.fork_prim
0
- Ruby.primitive(:fork_process)
0
+ Ruby.primitive :fork_process
0
     raise PrimitiveFailure, "primitive failed"
0
   end
0
 
...
167
168
169
170
 
171
172
173
...
167
168
169
 
170
171
172
173
0
@@ -167,7 +167,7 @@ class Numeric
0
   #++
0
 
0
   def coerce(other)
0
- Ruby.primitive(:numeric_coerce)
0
+ Ruby.primitive :numeric_coerce
0
     [Float(other), Float(self)]
0
   end
0
 

Comments

    No one has commented yet.