comparison graal/com.oracle.truffle.ruby.runtime/src/com/oracle/truffle/ruby/runtime/subsystems/FeatureManager.java @ 13658:50c11b9a7fdf

Ruby: remove some unimportant debugging flags.
author Chris Seaton <chris.seaton@oracle.com>
date Wed, 15 Jan 2014 19:33:33 +0000
parents 497fada09efb
children
comparison
equal deleted inserted replaced
13646:c318d67d132f 13658:50c11b9a7fdf
32 this.context = context; 32 this.context = context;
33 } 33 }
34 34
35 public boolean require(String feature) throws IOException { 35 public boolean require(String feature) throws IOException {
36 // Some features are handled specially 36 // Some features are handled specially
37
38 if (feature.equals("continuation")) {
39 // We always load continuations
40 return true;
41 }
42 37
43 if (feature.equals("stringio")) { 38 if (feature.equals("stringio")) {
44 context.implementationMessage("stringio not yet implemented"); 39 context.implementationMessage("stringio not yet implemented");
45 return true; 40 return true;
46 } 41 }