Skip to content

Commit

Permalink
chore(irBuilder): Mention the typed AST issue: tact-lang/tact#289
Browse files Browse the repository at this point in the history
This will allow to implement the interprocedural logic w/o introducing
an additional dataflow analysis on the IR building step.
  • Loading branch information
byakuren-hijiri committed May 24, 2024
1 parent 73be863 commit 45ae62b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/internals/tactIRBuilder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -431,13 +431,17 @@ export class TactIRBuilder {
);
}
} else {
this.ctx.logger.warn(
// TODO: This could be trivially implemented after introducing typed
// AST in Tact: https://github.com/tact-lang/tact/issues/289.
this.ctx.logger.debug(
`Accessing an unknown contract: ${expr.src.value}`,
expr.src.ref,
);
}
} else {
this.ctx.logger.warn(
// TODO: This could be trivially implemented after introducing typed
// AST in Tact: https://github.com/tact-lang/tact/issues/289.
this.ctx.logger.debug(
`Unsupported contract method access: ${expr.src.kind}`,
expr.src.ref,
);
Expand Down

0 comments on commit 45ae62b

Please sign in to comment.