github.com/jmespath/go-jmespath.Lexer.peek (method)

4 uses

	github.com/jmespath/go-jmespath (current package)
		lexer.go#L137: func (lexer *Lexer) peek() rune {
		lexer.go#L227: 		if current == '\\' && lexer.peek() != eof {
		lexer.go#L263: 	for current != '\'' && lexer.peek() != eof {
		lexer.go#L264: 		if current == '\\' && lexer.peek() == '\'' {