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