updated graphviz exporter

This commit is contained in:
Jindra Petřík
2021-01-25 20:26:46 +01:00
parent eea9063e95
commit 89a1ffb6f9
3 changed files with 1085 additions and 1075 deletions

View File

@@ -100,7 +100,7 @@ ExceptionTarget = "exceptiontarget "{PositiveNumberLiteral}":"
}
{Label} {return token(TokenType.IDENTIFIER,yychar,yylength()); }
{Label} {return token(TokenType.IDENTIFIER); }
":" {return token(TokenType.OPERATOR);}
@@ -127,6 +127,7 @@ ExceptionTarget = "exceptiontarget "{PositiveNumberLiteral}":"
/* identifiers */
{InstructionName} { yybegin(PARAMETERS);
return token(TokenType.KEYWORD); }
{LineTerminator} {return token(TokenType.NEWLINE);}
{Comment} {return token(TokenType.COMMENT);}
}