Преглед на файлове

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

fix: class attributes don't adhere to es6 spec
Jonathan Kelley преди 3 години
родител
ревизия
0bf14fa7e1
променени са 1 файла, в които са добавени 0 реда и са изтрити 6 реда
  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];