]> git.rm.cloudns.org Git - xonotic/gmqcc.git/commitdiff
Added another diagnostic for unexpected tokens
authorDale Weiler <killfieldengine@gmail.com>
Fri, 31 May 2013 07:04:06 +0000 (07:04 +0000)
committerDale Weiler <killfieldengine@gmail.com>
Fri, 31 May 2013 07:04:06 +0000 (07:04 +0000)
diag.c
gmqcc.h
parser.c
tests/diag/unexptok.qc [new file with mode: 0644]
tests/diag/unexptok.tmpl [new file with mode: 0644]

diff --git a/diag.c b/diag.c
index 81c831ed7011bcd174896671b4ff87d69ceb3548..78ad7a75a177a264e71ef27a30b8f00852a11fa5 100644 (file)
--- a/diag.c
+++ b/diag.c
@@ -139,7 +139,7 @@ static void diagnostic_feed(const char *file, size_t line, size_t column, size_t
                 case TOKEN_EOL:
                     /* ignore */
                     break;
-                    
+
                 default:
                     con_err("%s", read[feed]->values[itr]);
                     break;
@@ -149,26 +149,26 @@ static void diagnostic_feed(const char *file, size_t line, size_t column, size_t
         itr = 0;
         con_err("\n");
     }
-    
+
     switch (diagnostic) {
         case DIAGNOSTIC_EXPECTED_END:
             for (; len < vec_size(vec_last(read)->values); len++)
                 space += strlen(vec_last(read)->values[len]);
-            
+
             /* +/- 1 because of the ^ */
             len   = space  - column - 1;
             space = column          + 1;
             break;
-            
+
         case DIAGNOSTIC_EXPRESSION_CASE:
         case DIAGNOSTIC_SEMICOLON:
             for (; len < vec_size(vec_last(read)->values); len++)
                 space += strlen(vec_last(read)->values[len]);
-                
+
             len    = 1;
             space -= beg - end;
             break;
-            
+
         case DIAGNOSTIC_EXPECTED:
             /*
              * use the column number here, it's the EASIEST method yet
@@ -177,7 +177,11 @@ static void diagnostic_feed(const char *file, size_t line, size_t column, size_t
             space += column;
             len    = 0;
             break;
-            
+
+        case DIAGNOSTIC_UNEXPECTED_TOKEN:
+            len = column;
+            break;
+
         case DIAGNOSTIC_UNEXPECTED_IDENT:
             /*
              * TODO: better way to determine the identifier. So far we
@@ -257,7 +261,11 @@ void diagnostic_calculate(const char *file, size_t line, size_t column, size_t d
             linebeg++;
             marker = true;
             break;
-        
+
+        case DIAGNOSTIC_UNEXPECTED_TOKEN:
+            marker = false;
+            break;
+
         case DIAGNOSTIC_UNEXPECTED_IDENT:
         case DIAGNOSTIC_EXPECTED:
             marker = true;
diff --git a/gmqcc.h b/gmqcc.h
index 622f3033553e4b1875dab65c1ccf164af661e32d..99d2555b6309e3f1920a7f4bac59ce89ffbe4a9a 100644 (file)
--- a/gmqcc.h
+++ b/gmqcc.h
@@ -1035,6 +1035,7 @@ enum {
     DIAGNOSTIC_SEMICOLON,
     DIAGNOSTIC_EXPRESSION_CASE,
     DIAGNOSTIC_UNEXPECTED_IDENT,
+    DIAGNOSTIC_UNEXPECTED_TOKEN,
     DIAGNOSTIC_EXPECTED,
     DIAGNOSTIC_EXPECTED_END
 };
index a4abb0eddaef290862d57abb2651cf10c794bb99..592562a748291716c5384585e24cecb901222141 100644 (file)
--- a/parser.c
+++ b/parser.c
@@ -1987,7 +1987,8 @@ static bool parse_sya_operand(parser_t *parser, shunt *sy, bool with_labels)
         vec_push(sy->out, syexp(parser_ctx(parser), var));
         return true;
     }
-    parseerror(parser, "unexpected token `%s`", parser_tokval(parser));
+    parser->diagnostic = DIAGNOSTIC_UNEXPECTED_TOKEN;
+    parseerror(parser, "unexpected token: `%s`", parser_tokval(parser));
     return false;
 }
 
@@ -6011,6 +6012,7 @@ static bool parser_global_statement(parser_t *parser)
     }
     else
     {
+        parser->diagnostic = DIAGNOSTIC_UNEXPECTED_TOKEN;
         parseerror(parser, "unexpected token: `%s`", parser->lex->tok.value);
         return false;
     }
diff --git a/tests/diag/unexptok.qc b/tests/diag/unexptok.qc
new file mode 100644 (file)
index 0000000..8202487
--- /dev/null
@@ -0,0 +1 @@
+inte foo;
diff --git a/tests/diag/unexptok.tmpl b/tests/diag/unexptok.tmpl
new file mode 100644 (file)
index 0000000..878f4eb
--- /dev/null
@@ -0,0 +1,8 @@
+I: unexptok.qc
+D: unexpected token
+T: -diagnostic
+C: -std=gmqcc
+M: unexpected token: `inte`
+M:     1: inte foo;
+M:        ~~~~
+