From c4116d43e1f7a97e90df6797814c91fb5d8485c8 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Tue, 4 Nov 2014 21:42:39 -0500 Subject: [PATCH] CLI - Moved ID and UUID parsing earlier in the sequence. --- src/CLI.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/CLI.cpp b/src/CLI.cpp index 674191a4b..105409f05 100644 --- a/src/CLI.cpp +++ b/src/CLI.cpp @@ -345,13 +345,13 @@ void CLI::analyze (bool parse /* = true */) if (parse) { // Remove all the syntactic sugar for FILTERs. + findIDs (); + findUUIDs (); + insertIDExpr (); desugarTags (); desugarAttributes (); desugarAttributeModifiers (); desugarPatterns (); - findIDs (); - findUUIDs (); - insertIDExpr (); findOperators (); findAttributes (); insertJunctions ();