(String m)
| 482 | |
| 483 | return ret; |
| 484 | } |
| 485 | |
| 486 | @HiddenInAutocomplete |
| 487 | public Object asMap_get_find(String m) { |
| 488 | Dict.Prop canon = new Dict.Prop(m).toCanon(); |
| 489 | |
| 490 | Object ret = null; |
| 491 | |
| 492 | if (!properties.has(canon) && canon.autoConstructor != null) { |
| 493 | ret = canon.autoConstructor.get(); |
| 494 | if (ret != null) properties.put(canon, ret); |
| 495 | |
| 496 | } |
| 497 | if (ret == null) ret = Missing.findFrom(this, canon); |
| 498 | return ret; |
| 499 | } |
| 500 |