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