File tree Expand file tree Collapse file tree 5 files changed +2
-28
lines changed
spec/truffle/tags/core/random
truffle/src/main/java/org/jruby/truffle Expand file tree Collapse file tree 5 files changed +2
-28
lines changed Original file line number Diff line number Diff line change 1+ fails:Random.new returns a new instance of Random
12fails:Random.new uses a random seed value if none is supplied
23fails:Random.new returns Random instances initialized with different seeds
34fails:Random.new accepts an Integer seed value as an argument
Original file line number Diff line number Diff line change 5353 RubyEncoding .class , //
5454 RubySymbol .class , //
5555 RubyThread .class , //
56- RubyTime .class ,
57- RubyRandom .class , //
56+ RubyTime .class , //
5857 RubyEncodingConverter .class , //
5958 RubyMethod .class , //
6059 RubyUnboundMethod .class , //
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -98,7 +98,6 @@ public class CoreLibrary {
9898 private final RubyClass securityErrorClass ;
9999 private final RubyClass standardErrorClass ;
100100 private final RubyClass stringClass ;
101- private final RubyClass randomClass ;
102101 private final RubyClass stringDataClass ;
103102 private final RubyClass symbolClass ;
104103 private final RubyClass syntaxErrorClass ;
@@ -285,7 +284,6 @@ public CoreLibrary(RubyContext context) {
285284 rangeClass = defineClass ("Range" , new RubyRange .RangeAllocator ());
286285 regexpClass = defineClass ("Regexp" , new RubyRegexp .RegexpAllocator ());
287286 stringClass = defineClass ("String" , new RubyString .StringAllocator ());
288- randomClass = defineClass ("Random" );
289287 symbolClass = defineClass ("Symbol" );
290288 threadClass = defineClass ("Thread" , new RubyThread .ThreadAllocator ());
291289 timeClass = defineClass ("Time" , new RubyTime .TimeAllocator ());
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments