@ball-lang/engine 1.60.1 → 1.60.2

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ball-lang/engine",
3
- "version": "1.60.1",
3
+ "version": "1.60.2",
4
4
  "description": "Ball language engine — interprets Ball programs in TypeScript/JavaScript. Runs in Node.js and browsers.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -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)) + '=');