public static Object constructRubyRegexp(final Constructor ctor, final Node node) {
final Ruby runtime = ((JRubyConstructor)ctor).runtime;
String s1 = ctor.constructScalar(node).toString();
// This should be fixed in some way
return runtime.evalScriptlet(s1);
}
public static Object constructRubyRange(final Constructor ctor, final Node node) {
final Ruby runtime = ((JRubyConstructor)ctor).runtime;
ThreadContext context = runtime.getCurrentContext();