Skip to content

Commit

Permalink
removed unnecessary logs
Browse files Browse the repository at this point in the history
  • Loading branch information
pacifiquem committed Feb 3, 2024
1 parent 97de967 commit ae4f56b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser/parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default class Parser {

private expect(type: TokenType, err: string) {
const prev = this.eat();
console.log(prev);

if (!prev || prev.type != type) {
LogError(`On line ${prev.line}: Kin Error: ${err}`);
process.exit(1);
Expand Down

0 comments on commit ae4f56b

Please sign in to comment.