Skip to content

Commit 4574505

Browse files
author
dandrei
committed
Support else if (...)
1 parent 78e4f1b commit 4574505

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

src/__tests__/if-then-else-spec.js

+13
Original file line numberDiff line numberDiff line change
@@ -55,3 +55,16 @@ test("ternary", t =>
5555
export function test(): i32 {
5656
return 1 ? 42 : 24;
5757
}`).then(outputIs(t, 42)));
58+
59+
test("else if statement", t =>
60+
compileAndRun(`
61+
export function test(x: i32): i32 {
62+
if (x == 0) {
63+
return 2;
64+
} else if (x == 1) {
65+
return 4;
66+
} else {
67+
return 1;
68+
}
69+
test(1);
70+
}`).then(outputIs(t, 4)));

src/parser/if-then-else.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,12 @@ const ifThenElse = (ctx: Context) => {
2626

2727
ctx.expect(["}"]);
2828

29-
if (ctx.eat(["else"])) {
29+
while (ctx.eat(["else"])) {
30+
if (ctx.eat(["if"])) {
31+
ctx.expect(["("]);
32+
node.expr = expression(ctx, "i32");
33+
ctx.expect([")"]);
34+
}
3035
ctx.expect(["{"]);
3136
while (ctx.token && ctx.token.value !== "}") {
3237
stmt = statement(ctx);

0 commit comments

Comments
 (0)