Fix python compiler implementation

Closes #1847
This commit is contained in:
Austin Morton
2020-02-25 02:42:33 -05:00
parent ab0f557f02
commit fabbbdee51

View File

@@ -61,7 +61,7 @@ class PythonCompiler extends BaseCompiler {
bytecodeResult.push({text: line, source: sourceLoc});
});
return bytecodeResult;
return {asm: bytecodeResult};
}
getDisasmScriptPath() {