| 3831 | } |
| 3832 | |
| 3833 | Value::const_iterator Value::begin() const { |
| 3834 | switch (type_) { |
| 3835 | case arrayValue: |
| 3836 | case objectValue: |
| 3837 | if (value_.map_) |
| 3838 | return const_iterator(value_.map_->begin()); |
| 3839 | break; |
| 3840 | default: |
| 3841 | break; |
| 3842 | } |
| 3843 | return const_iterator(); |
| 3844 | } |
| 3845 | |
| 3846 | Value::const_iterator Value::end() const { |
| 3847 | switch (type_) { |
no outgoing calls
no test coverage detected