Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Kruhlmann committed Dec 8, 2023
1 parent fceb666 commit c02c569
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lexer/symbol/int_literal_resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export class IntegerLiteralSymbolResolver implements SymbolResolver {
try {
const parsed = BigInt(symbol.toString());
return new PushIntInstruction(parsed);
} catch {
}
// eslint-disable-next-line no-empty
} catch {}
}
}

0 comments on commit c02c569

Please sign in to comment.