github.com/jmespath/go-jmespath.Parser.match (method)

19 uses

	github.com/jmespath/go-jmespath (current package)
		parser.go#L176: 	if err := p.match(tRbracket); err != nil {
		parser.go#L203: 	if err := p.match(tRbracket); err != nil {
		parser.go#L212: func (p *Parser) match(tokenType tokType) error {
		parser.go#L254: 				if err := p.match(tComma); err != nil {
		parser.go#L260: 		if err := p.match(tRparen); err != nil {
		parser.go#L299: 		if err := p.match(tStar); err != nil {
		parser.go#L302: 		if err := p.match(tRbracket); err != nil {
		parser.go#L405: 		if err := p.match(tRparen); err != nil {
		parser.go#L427: 		err = p.match(tComma)
		parser.go#L432: 	err := p.match(tRbracket)
		parser.go#L446: 		if err := p.match(tUnquotedIdentifier); err != nil {
		parser.go#L447: 			if err := p.match(tQuotedIdentifier); err != nil {
		parser.go#L452: 		err := p.match(tColon)
		parser.go#L467: 			err := p.match(tComma)
		parser.go#L472: 			err := p.match(tRbrace)
		parser.go#L506: 	if err := p.match(tRbracket); err != nil {
		parser.go#L529: 		if err := p.match(tLbracket); err != nil {
		parser.go#L534: 		if err := p.match(tLbrace); err != nil {
		parser.go#L551: 		err := p.match(tDot)