Browse Source

fix: class attributes don't adhere to es6 spec

Jonathan Kelley 3 years ago
parent
commit
95a6abbfc5
1 changed files with 0 additions and 6 deletions
  1. 0 6
      packages/interpreter/src/interpreter.js

+ 0 - 6
packages/interpreter/src/interpreter.js

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