-
-
Notifications
You must be signed in to change notification settings - Fork 925
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First step in making packaging the copiler optional.
Showing
3 changed files
with
64 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package org.jruby.compiler; | ||
|
||
import org.jruby.Ruby; | ||
import org.jruby.ast.Node; | ||
import org.jruby.ast.executable.ScriptAndCode; | ||
import org.jruby.util.ClassDefiningClassLoader; | ||
|
||
/** | ||
* Created by uwe on 20/5/15. | ||
*/ | ||
public interface Compiler { | ||
ScriptAndCode tryCompile(Node node, ClassDefiningClassLoader classLoader, Ruby ruby); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters