Skip to content

Commit

Permalink
Compliance to removal of BigInt in AST.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed Apr 27, 2024
1 parent 00c385c commit 388de7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/yttria.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function llvmTest() {
);

const expr1: ExprASTString = new ExprASTString(nullToken, "What");
const expr2: ExprASTInt = new ExprASTInt(nullToken, BigInt('99'), 32);
const expr2: ExprASTInt = new ExprASTInt(nullToken, 99, 32);

const cmp: ExprASTBinary = new ExprASTBinary(nullToken, '+', expr1, expr2);
const body: StmtASTRender = new StmtASTRender(nullToken, new ExprASTBinary(nullToken, '+', new ExprASTString(nullToken, "The output is "), cmp));
Expand Down

0 comments on commit 388de7d

Please sign in to comment.