(String m)
| 437 | |
| 438 | return r; |
| 439 | } |
| 440 | |
| 441 | @Override |
| 442 | @HiddenInAutocomplete |
| 443 | public Object asMap_get(String m) { |
| 444 | |
| 445 | if (m == null) return null; |
| 446 | |
| 447 | if (m.equals("_")) return new Subscope(this); |
| 448 | |
| 449 | if (m.equals("children")) return new BoxChildHelper(children); |
| 450 | if (m.equals("parents")) return new BoxChildHelper(parents); |
| 451 | |
| 452 | Object ret = asMap_get_find(m); |
| 453 | |
| 454 | return asMap_get_interpret(ret); |
| 455 | } |
| 456 |
no test coverage detected