From d6f977e2ddfced0e9c85adc3ff2acfde7febf115 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 19 Jul 2015 23:27:27 -0400 Subject: [PATCH] Lexer: Boosted precedence of UUID detection --- src/Lexer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Lexer.cpp b/src/Lexer.cpp index 3a48e04f9..90a439186 100644 --- a/src/Lexer.cpp +++ b/src/Lexer.cpp @@ -79,9 +79,9 @@ bool Lexer::token (std::string& token, Lexer::Type& type) isDuration (token, type) || isURL (token, type) || isPair (token, type) || + isUUID (token, type) || isSet (token, type) || isDOM (token, type) || - isUUID (token, type) || isHexNumber (token, type) || isNumber (token, type) || isSeparator (token, type) ||