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