Created
March 10, 2019 21:43
-
-
Save pramoth/7dac6274aba7b1589049d2e3fc3fd642 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| export class Thread { | |
| ... | |
| constructor() { | |
| let bytecode = [ | |
| Opcode.ICONST_0, | |
| Opcode.ISTORE_1, | |
| Opcode.ILOAD_1, | |
| Opcode.BIPUSH, | |
| 10, | |
| Opcode.IF_ICMPGE, | |
| 0, | |
| 16, | |
| Opcode.ILOAD_1, | |
| Opcode.PRINT, | |
| Opcode.IINC, | |
| 1, | |
| 1, | |
| Opcode.GOTO, | |
| 0, | |
| 2, | |
| Opcode.RETURN] | |
| this.stackFrame.push(new StackFrame([], bytecode)) | |
| } | |
| ... | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment