| 3960 | } |
| 3961 | |
| 3962 | Value::const_iterator Value::end() const { |
| 3963 | switch (type_) { |
| 3964 | case arrayValue: |
| 3965 | case objectValue: |
| 3966 | if (value_.map_) |
| 3967 | return const_iterator(value_.map_->end()); |
| 3968 | break; |
| 3969 | default: |
| 3970 | break; |
| 3971 | } |
| 3972 | return const_iterator(); |
| 3973 | } |
| 3974 | |
| 3975 | Value::iterator Value::begin() { |
| 3976 | switch (type_) { |
no outgoing calls
no test coverage detected