Explorar o código

fix: Better escape sequence parsing for GraphQL parser

Matthias Ladkau %!s(int64=2) %!d(string=hai) anos
pai
achega
14e1981b54
Modificáronse 1 ficheiros con 6 adicións e 0 borrados
  1. 6 0
      lang/graphql/parser/lexer.go

+ 6 - 0
lang/graphql/parser/lexer.go

@@ -385,6 +385,12 @@ func (l *lexer) lexStringValue() lexFunc {
 		if r == RuneEOF {
 			l.emitToken(TokenError, "EOF inside quotes")
 			return nil
+		} else if r == '\\' {
+
+			// Consume escaped characters
+
+			r = l.next(-1)
+			r = l.next(-1)
 		}
 	}