| 3931 | } |
| 3932 | |
| 3933 | Value::const_iterator Value::begin() const { |
| 3934 | switch (type_) { |
| 3935 | case arrayValue: |
| 3936 | case objectValue: |
| 3937 | if (value_.map_) |
| 3938 | return const_iterator(value_.map_->begin()); |
| 3939 | break; |
| 3940 | default: |
| 3941 | break; |
| 3942 | } |
| 3943 | return const_iterator(); |
| 3944 | } |
| 3945 | |
| 3946 | Value::const_iterator Value::end() const { |
| 3947 | switch (type_) { |
no outgoing calls
no test coverage detected