2019-02-26 13:05:15 +04:00
|
|
|
package jsonpath
|
|
|
|
|
|
|
|
const (
|
2019-10-19 01:17:00 +04:00
|
|
|
BadStructure = "bad structure"
|
|
|
|
NoMoreResults = "no more results"
|
|
|
|
UnexpectedToken = "unexpected token in evaluation"
|
|
|
|
AbruptTokenStreamEnd = "token reader is not sending anymore tokens"
|
2019-02-26 13:05:15 +04:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
bytesTrue = []byte{'t', 'r', 'u', 'e'}
|
|
|
|
bytesFalse = []byte{'f', 'a', 'l', 's', 'e'}
|
|
|
|
bytesNull = []byte{'n', 'u', 'l', 'l'}
|
|
|
|
)
|