| 3845 | } |
| 3846 | |
| 3847 | Value::const_iterator Value::end() const { |
| 3848 | switch (type_) { |
| 3849 | case arrayValue: |
| 3850 | case objectValue: |
| 3851 | if (value_.map_) |
| 3852 | return const_iterator(value_.map_->end()); |
| 3853 | break; |
| 3854 | default: |
| 3855 | break; |
| 3856 | } |
| 3857 | return const_iterator(); |
| 3858 | } |
| 3859 | |
| 3860 | Value::iterator Value::begin() { |
| 3861 | switch (type_) { |
no outgoing calls
no test coverage detected