We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d52f956 commit 5a4aaeeCopy full SHA for 5a4aaee
src/wasm-compiler/builderGenerator.ts
@@ -579,6 +579,10 @@ ${args.map(
579
.then(...body);
580
}
581
582
+ visitPassStmt(stmt: StmtNS.Pass): WasmInstruction {
583
+ return wasm.nop();
584
+ }
585
+
586
// UNIMPLEMENTED PYTHON CONSTRUCTS
587
visitMultiLambdaExpr(expr: ExprNS.MultiLambda): WasmNumeric {
588
throw new Error("Method not implemented.");
@@ -589,9 +593,6 @@ ${args.map(
589
593
visitDedentCreation(stmt: StmtNS.Dedent): WasmInstruction {
590
594
591
595
592
- visitPassStmt(stmt: StmtNS.Pass): WasmInstruction {
- throw new Error("Method not implemented.");
- }
596
visitAnnAssignStmt(stmt: StmtNS.AnnAssign): WasmInstruction {
597
598
0 commit comments