@ball-lang/engine 1.60.1 → 1.60.3
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/package.json
CHANGED
package/src/compiled_engine.ts
CHANGED
|
@@ -4192,6 +4192,9 @@ export class BallEngine {
|
|
|
4192
4192
|
if (__ball_eq(typeName, null)) {
|
|
4193
4193
|
return _sentinel;
|
|
4194
4194
|
}
|
|
4195
|
+
if (__ball_map_has(object, 'map_contains_key', fieldName)) {
|
|
4196
|
+
return _sentinel;
|
|
4197
|
+
}
|
|
4195
4198
|
let colonIdx = typeName.indexOf(':');
|
|
4196
4199
|
let modPart = (__ball_ge(colonIdx, 0) ? typeName.substring(0, colonIdx) : this._currentModule);
|
|
4197
4200
|
let setterKey = (((((__ball_to_string(modPart) + '.') + __ball_to_string(typeName)) + '.') + __ball_to_string(fieldName)) + '=');
|