| 754 | } |
| 755 | |
| 756 | type arrayPathResult struct { |
| 757 | part string |
| 758 | path string |
| 759 | pipe string |
| 760 | piped bool |
| 761 | more bool |
| 762 | alogok bool |
| 763 | arrch bool |
| 764 | alogkey string |
| 765 | query struct { |
| 766 | on bool |
| 767 | all bool |
| 768 | path string |
| 769 | op string |
| 770 | value string |
| 771 | } |
| 772 | } |
| 773 | |
| 774 | func parseArrayPath(path string) (r arrayPathResult) { |
| 775 | for i := 0; i < len(path); i++ { |
nothing calls this directly
no outgoing calls
no test coverage detected