clean up (#7)

This commit is contained in:
Kurt Hutten
2023-01-22 07:43:28 +11:00
committed by GitHub
parent e37f68424b
commit 9540c2fca5
2 changed files with 0 additions and 28 deletions

View File

@ -1,12 +1,6 @@
import { BinaryExpression, Literal, Identifier } from './abstractSyntaxTree'
import { Token } from './tokeniser'
interface Tree {
value: string
left?: Tree
right?: Tree
}
export function reversePolishNotation(
tokens: Token[],
previousPostfix: Token[] = [],