(all bool, keys []Value)
| 283 | } |
| 284 | |
| 285 | func (o *templatedObject) stringKeys(all bool, keys []Value) []Value { |
| 286 | if all { |
| 287 | o.materialisePropNames() |
| 288 | } else { |
| 289 | o.materialiseProps() |
| 290 | } |
| 291 | return o.baseObject.stringKeys(all, keys) |
| 292 | } |
| 293 | |
| 294 | func (o *templatedObject) symbols(all bool, accum []Value) []Value { |
| 295 | o.materialiseSymbols() |
no test coverage detected