Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Primitives for in-process JAST => JVM bytecode.
- Loading branch information
Showing
4 changed files
with
64 additions
and
1 deletion.
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.perl6.nqp.runtime; | ||
|
|
||
| public class ByteClassLoader extends ClassLoader { | ||
| private byte[] bytes; | ||
|
|
||
| public ByteClassLoader(byte[] bytes) { | ||
| this.bytes = bytes; | ||
| } | ||
|
|
||
| public Class<?> findClass(String name) { | ||
| return defineClass(name, this.bytes, 0, this.bytes.length); | ||
| } | ||
| } |
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,9 @@ | ||
| package org.perl6.nqp.runtime; | ||
|
|
||
| import org.perl6.nqp.sixmodel.SixModelObject; | ||
| import org.apache.bcel.classfile.JavaClass; | ||
|
|
||
| public class EvalResult extends SixModelObject { | ||
| public JavaClass jc; | ||
| public CompilationUnit cu; | ||
| } |
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