| 3972 | } |
| 3973 | |
| 3974 | Value::const_iterator Value::end() const { |
| 3975 | switch (type_) { |
| 3976 | case arrayValue: |
| 3977 | case objectValue: |
| 3978 | if (value_.map_) |
| 3979 | return const_iterator(value_.map_->end()); |
| 3980 | break; |
| 3981 | default: |
| 3982 | break; |
| 3983 | } |
| 3984 | return const_iterator(); |
| 3985 | } |
| 3986 | |
| 3987 | Value::iterator Value::begin() { |
| 3988 | switch (type_) { |
no outgoing calls
no test coverage detected