| 1475 | } |
| 1476 | |
| 1477 | Value::const_iterator Value::end() const { |
| 1478 | switch (type_) { |
| 1479 | case arrayValue: |
| 1480 | case objectValue: |
| 1481 | if (value_.map_) |
| 1482 | return const_iterator(value_.map_->end()); |
| 1483 | break; |
| 1484 | default: |
| 1485 | break; |
| 1486 | } |
| 1487 | return const_iterator(); |
| 1488 | } |
| 1489 | |
| 1490 | Value::iterator Value::begin() { |
| 1491 | switch (type_) { |
no outgoing calls