From c277f89d99fc31ee6504fedd8a8b56a7aa6a9e5b Mon Sep 17 00:00:00 2001 From: Ethan Davidson <31261035+EthanThatOneKid@users.noreply.github.com> Date: Thu, 23 Dec 2021 11:54:10 -0800 Subject: [PATCH] Update transpile.ts --- lib/transpile/transpile.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/transpile/transpile.ts b/lib/transpile/transpile.ts index 5da3d9e..198e860 100644 --- a/lib/transpile/transpile.ts +++ b/lib/transpile/transpile.ts @@ -63,9 +63,9 @@ export class TranspilationContext { } case Lexicon.TupleOpener: { - const results = + const results = this.nextTuple(); + break; } - } mod = this.cartridge.getMod(this.nextToken()?.value); } @@ -181,7 +181,7 @@ export class TranspilationContext { /** * @todo implement */ - public nextTuple(): PropertyDefinition["tuple"]{ + public nextTuple(): PropertyDefinition["tuple"] { return []; } }