| 3947 | } |
| 3948 | |
| 3949 | Value::const_iterator Value::begin() const { |
| 3950 | switch (type_) { |
| 3951 | case arrayValue: |
| 3952 | case objectValue: |
| 3953 | if (value_.map_) |
| 3954 | return const_iterator(value_.map_->begin()); |
| 3955 | break; |
| 3956 | default: |
| 3957 | break; |
| 3958 | } |
| 3959 | return const_iterator(); |
| 3960 | } |
| 3961 | |
| 3962 | Value::const_iterator Value::end() const { |
| 3963 | switch (type_) { |
no outgoing calls
no test coverage detected