get the slice of bytes from the savepoint start to the current position.
(start savepoint)
| 25070 | |
| 25071 | // get the slice of bytes from the savepoint start to the current position. |
| 25072 | func (p *parser) sliceFrom(start savepoint) []byte { |
| 25073 | return p.data[start.position.offset:p.pt.position.offset] |
| 25074 | } |
| 25075 | |
| 25076 | func (p *parser) getMemoized(node any) (resultTuple, bool) { |
| 25077 | if len(p.memo) == 0 { |
no outgoing calls
no test coverage detected