We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4adc469 commit 035c02aCopy full SHA for 035c02a
1 file changed
src/core/Base.mjs
@@ -1,7 +1,7 @@
1
import IdGenerator from './IdGenerator.mjs'
2
3
-const afterSetQueue = Symbol('afterSetQueue'),
4
- isInstance = Symbol('isInstance');
+const configSymbol = Symbol('configSymbol'),
+ isInstance = Symbol('isInstance');
5
6
/**
7
* The base class for all classes inside the Neo namespace
@@ -66,12 +66,6 @@ class Base {
66
let me = this;
67
68
Object.defineProperties(me, {
69
- [afterSetQueue]: {
70
- configurable: true,
71
- enumerable : false,
72
- value : [],
73
- writable : true
74
- },
75
[isInstance]: {
76
enumerable: false,
77
value : true
@@ -262,8 +256,6 @@ class Base {
262
256
me.isConfigUpdating = true;
263
257
Object.assign(me, values);
264
258
me.isConfigUpdating = false;
265
-
266
- me.processAfterSetQueue();
267
259
}
268
260
269
261
0 commit comments