(json string, i int)
| 743 | } |
| 744 | |
| 745 | func parseLiteral(json string, i int) (int, string) { |
| 746 | var s = i |
| 747 | i++ |
| 748 | for ; i < len(json); i++ { |
| 749 | if json[i] < 'a' || json[i] > 'z' { |
| 750 | return i, json[s:i] |
| 751 | } |
| 752 | } |
| 753 | return i, json[s:] |
| 754 | } |
| 755 | |
| 756 | type arrayPathResult struct { |
| 757 | part string |
no outgoing calls
no test coverage detected
searching dependent graphs…