@airpower/transformer 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +2 -0
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -134,8 +134,10 @@ class DecoratorUtil {
|
|
|
134
134
|
if (typeof target !== "object") {
|
|
135
135
|
target = target.prototype;
|
|
136
136
|
}
|
|
137
|
+
console.warn(target, fieldListKey, key);
|
|
137
138
|
const list = Reflect.get(target, fieldListKey) || [];
|
|
138
139
|
list.push(key);
|
|
140
|
+
console.warn(target, fieldListKey, list);
|
|
139
141
|
this.setProperty(target, fieldListKey, list);
|
|
140
142
|
}
|
|
141
143
|
}
|