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