mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-06-23 19:51:47 +00:00
Progress
This commit is contained in:
@ -30,6 +30,10 @@ const files: Map<string,string> = new Map([
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
import { sub } from "../other";
|
||||
export function what(): void {
|
||||
sub(1,2);
|
||||
}
|
||||
`],
|
||||
|
||||
["../other",
|
||||
@ -54,6 +58,7 @@ do {
|
||||
const program = parser.finish();
|
||||
const compiler = new Compiler(program);
|
||||
const module = compiler.compile();
|
||||
console.log(program.elements.keys());
|
||||
|
||||
// module.optimize();
|
||||
module.validate();
|
||||
|
Reference in New Issue
Block a user