Skip to content

Commit

Permalink
[Truffle] Remove old 'truffelized' method.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisseaton committed Jan 3, 2015
1 parent 0fc33ac commit cf723ce
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 61 deletions.
6 changes: 0 additions & 6 deletions core/src/main/java/org/jruby/TruffleBridge.java
Expand Up @@ -10,11 +10,7 @@
package org.jruby;

import com.oracle.truffle.api.frame.MaterializedFrame;
import org.jruby.ast.ArgsNode;
import org.jruby.ast.Node;
import org.jruby.internal.runtime.methods.DynamicMethod;
import org.jruby.runtime.builtin.IRubyObject;
import org.jruby.truffle.TruffleMethod;
import org.jruby.truffle.translator.TranslatorDriver;

public interface TruffleBridge {
Expand All @@ -29,8 +25,6 @@ enum BacktraceFormatter {

Object execute(TranslatorDriver.ParserContext parserContext, Object self, MaterializedFrame parentFrame, org.jruby.ast.RootNode rootNode);

IRubyObject toJRuby(Object object);

Object toTruffle(IRubyObject object);

void shutdown();
Expand Down
5 changes: 0 additions & 5 deletions core/src/main/java/org/jruby/truffle/TruffleBridgeImpl.java
Expand Up @@ -184,11 +184,6 @@ public RubyNode wrap(RubyNode node) {
return truffleContext.getCoreLibrary().getNilObject();
}

@Override
public IRubyObject toJRuby(Object object) {
return truffleContext.toJRuby(object);
}

@Override
public Object toTruffle(IRubyObject object) {
return truffleContext.toTruffle(object);
Expand Down
50 changes: 0 additions & 50 deletions core/src/main/java/org/jruby/truffle/TruffleMethod.java

This file was deleted.

0 comments on commit cf723ce

Please sign in to comment.