We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4306f65 + 760132a commit b95ce08Copy full SHA for b95ce08
src/verilog/parser.y
@@ -432,6 +432,7 @@ int yyverilogerror(const char *error)
432
%token TOK_LESSLESSLESSEQUAL "<<<="
433
%token TOK_GREATERGREATERGREATEREQUAL ">>>="
434
%token TOK_HASHHASH "##"
435
+%token TOK_COLONCOLON "::"
436
437
/* System Verilog Keywords */
438
%token TOK_ACCEPT_ON "accept_on"
src/verilog/scanner.l
@@ -247,6 +247,7 @@ void verilog_scanner_init()
247
"<->" { SYSTEM_VERILOG_OPERATOR(TOK_LESSMINUSGREATER, "<->"); }
248
"->" { SYSTEM_VERILOG_OPERATOR(TOK_MINUSGREATER, "->"); }
249
"'" { SYSTEM_VERILOG_OPERATOR('\'', "'"); }
250
+"::" { SYSTEM_VERILOG_OPERATOR(TOK_COLONCOLON, "::"); }
251
252
/* Verilog 1364-1995 keywords */
253
0 commit comments