Przeglądaj źródła

Merge pull request #219 from DioxusLabs/jk/js-ecma

fix: class attributes don't adhere to es6 spec
Jonathan Kelley 3 lat temu
rodzic
commit
0bf14fa7e1
1 zmienionych plików z 0 dodań i 6 usunięć
  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];