fix: class attributes don't adhere to es6 spec

This commit is contained in:
Jonathan Kelley 2022-02-08 00:35:06 -05:00
parent ec2fb84d96
commit 95a6abbfc5

View file

@ -6,12 +6,6 @@ export function main() {
}
}
export class Interpreter {
root;
stack;
listeners;
handlers;
lastNodeWasText;
nodes;
constructor(root) {
this.root = root;
this.stack = [root];