Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix variable scoping bug with loops #269

Merged
merged 3 commits into from
Apr 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Empty inherited trait lists after `with` keyword are now disallowed: PR [#246](https://github.com/tact-lang/tact/pull/246)
- Allow chaining method calls with `!!`, for instance, `map.asCell()!!.hash()` is grammatically correct now: PR [#257](ttps://github.com/tact-lang/tact/pull/257)
- Operation precendence for bitwise operators, equality and comparisons now matches common languages, like JavaScript: PR [#265](https://github.com/tact-lang/tact/pull/265)
- Incorrect variable scoping in `repeat`, `while` and `until` loops: PR [#269](https://github.com/tact-lang/tact/pull/269)

## [1.2.0] - 2024-02-29

Expand Down
2 changes: 1 addition & 1 deletion src/generator/writers/writeFunction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export function writeStatement(
ctx.append(`} until (${writeExpression(f.condition, ctx)});`);
return;
} else if (f.kind === "statement_repeat") {
ctx.append(`repeat (${writeExpression(f.condition, ctx)}) {`);
ctx.append(`repeat (${writeExpression(f.iterations, ctx)}) {`);
ctx.inIndent(() => {
for (const s of f.statements) {
writeStatement(s, self, returns, ctx);
Expand Down
4 changes: 2 additions & 2 deletions src/grammar/__snapshots__/grammar.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -1953,13 +1953,13 @@ exports[`grammar should parse case-15 1`] = `
],
},
{
"condition": {
"id": 17,
"iterations": {
"id": 11,
"kind": "number",
"ref": 10,
"value": 10n,
},
"id": 17,
"kind": "statement_repeat",
"ref": repeat(10) {
i = i * 10;
Expand Down
4 changes: 2 additions & 2 deletions src/grammar/ast.ts
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ export type ASTStatementUntil = {
export type ASTStatementRepeat = {
kind: "statement_repeat";
id: number;
condition: ASTExpression;
iterations: ASTExpression;
statements: ASTStatement[];
ref: ASTRef;
};
Expand Down Expand Up @@ -723,7 +723,7 @@ export function traverse(node: ASTNode, callback: (node: ASTNode) => void) {
}
}
if (node.kind === "statement_repeat") {
traverse(node.condition, callback);
traverse(node.iterations, callback);
for (const e of node.statements) {
traverse(e, callback);
}
Expand Down
2 changes: 1 addition & 1 deletion src/grammar/clone.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export function cloneNode<T extends ASTNode>(src: T): T {
} else if (src.kind === "statement_repeat") {
return cloneASTNode({
...src,
condition: cloneNode(src.condition),
iterations: cloneNode(src.iterations),
statements: src.statements.map(cloneNode),
});
} else if (src.kind === "statement_until") {
Expand Down
2 changes: 1 addition & 1 deletion src/grammar/grammar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -800,7 +800,7 @@ semantics.addOperation<ASTNode>("resolve_statement", {
StatementRepeat(_arg0, _arg1, arg2, _arg3, _arg4, arg5, _arg6) {
return createNode({
kind: "statement_repeat",
condition: arg2.resolve_expression(),
iterations: arg2.resolve_expression(),
statements: arg5.children.map((v) => v.resolve_statement()),
ref: createRef(this),
});
Expand Down
3 changes: 2 additions & 1 deletion src/test/bugs/bugs.tact
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import "./issue42.tact";
import "./issue43.tact";
import "./issue53.tact";
import "./issue53.tact";
import "./issue117.tact";
27 changes: 27 additions & 0 deletions src/test/bugs/issue117.tact
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
fun scopeUntil() {
do {
let a: Int = 0;
} until (true);
let a: String = "abc";
}

fun scopeRepeat() {
repeat (1) {
let a: Int = 0;
}
let a: String = "abc";
}

fun scopeWhile() {
while (true) {
let a: Int = 0;
}
let a: String = "abc";
}

fun scopeIf() {
if (true) {
let a: Int = 0;
}
let a: String = "abc";
}
88 changes: 88 additions & 0 deletions src/types/__snapshots__/resolveStatements.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,16 @@ Line 7, col 9:
"
`;

exports[`resolveStatements should fail statements for case-31 1`] = `
"<unknown>:9:12: Unable to resolve id c
Line 9, col 12:
8 | }
> 9 | return c;
^
10 | }
"
`;

exports[`resolveStatements should resolve statements for case-0 1`] = `
[
[
Expand Down Expand Up @@ -889,3 +899,81 @@ exports[`resolveStatements should resolve statements for case-12 1`] = `
],
]
`;

exports[`resolveStatements should resolve statements for case-13 1`] = `
[
[
"123",
"Int",
],
[
"456",
"Int",
],
[
"a",
"Int",
],
[
"a",
"Int",
],
[
"b",
"Int",
],
[
"a + b",
"Int",
],
[
"a",
"Int",
],
[
"b",
"Int",
],
[
"a + b",
"Int",
],
]
`;

exports[`resolveStatements should resolve statements for case-14 1`] = `
[
[
"123",
"Int",
],
[
"456",
"Int",
],
[
"a",
"Int",
],
[
"b",
"Int",
],
[
"a",
"Int",
],
[
"b",
"Int",
],
[
"a + b",
"Int",
],
[
"b",
"Int",
],
]
`;
31 changes: 14 additions & 17 deletions src/types/resolveStatements.ts
Original file line number Diff line number Diff line change
Expand Up @@ -277,10 +277,14 @@ function processStatements(
exited = true;
} else if (s.kind === "statement_repeat") {
// Process expression
ctx = resolveExpression(s.condition, sctx, ctx);
ctx = resolveExpression(s.iterations, sctx, ctx);

// Process statements
const r = processStatements(s.statements, sctx, ctx);
ctx = r.ctx;

// Check type
const expressionType = getExpType(ctx, s.condition);
const expressionType = getExpType(ctx, s.iterations);
if (
expressionType.kind !== "ref" ||
expressionType.name !== "Int" ||
Expand All @@ -291,15 +295,14 @@ function processStatements(
s.ref,
);
}

// Process inner statements
const r = processStatements(s.statements, sctx, ctx);
ctx = r.ctx;
sctx = r.sctx;
} else if (s.kind === "statement_until") {
// Process expression
ctx = resolveExpression(s.condition, sctx, ctx);

// Process statements
const r = processStatements(s.statements, sctx, ctx);
ctx = r.ctx;

// Check type
const expressionType = getExpType(ctx, s.condition);
if (
Expand All @@ -312,15 +315,14 @@ function processStatements(
s.ref,
);
}

// Process inner statements
const r = processStatements(s.statements, sctx, ctx);
ctx = r.ctx;
sctx = r.sctx;
} else if (s.kind === "statement_while") {
// Process expression
ctx = resolveExpression(s.condition, sctx, ctx);

// Process statements
const r = processStatements(s.statements, sctx, ctx);
ctx = r.ctx;

// Check type
const expressionType = getExpType(ctx, s.condition);
if (
Expand All @@ -333,11 +335,6 @@ function processStatements(
s.ref,
);
}

// Process inner statements
const r = processStatements(s.statements, sctx, ctx);
ctx = r.ctx;
sctx = r.sctx;
} else {
throw Error("Unknown statement");
}
Expand Down
10 changes: 10 additions & 0 deletions src/types/stmts-failed/case-31.tact
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
primitive Int;

fun testFunction(): Int {
let a: Int = 123;
let b: Int = 456;
repeat (a) {
let c: Int = a + b;
}
return c;
}
10 changes: 10 additions & 0 deletions src/types/stmts/case-13.tact
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
primitive Int;

fun testFunction(): Int {
let a: Int = 123;
let b: Int = 456;
repeat (a) {
let c: Int = a + b;
}
return a + b;
}
10 changes: 10 additions & 0 deletions src/types/stmts/case-14.tact
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
primitive Int;

fun testFunction(): Int {
let a: Int = 123;
let b: Int = 456;
repeat (a) {
b = a + b;
}
return b;
}
Loading