AS3 highlight Vector parameters

This commit is contained in:
Jindra Petřík
2025-05-31 21:22:27 +02:00
parent 905ad28304
commit 6b9d9c9eab
2 changed files with 1 additions and 3 deletions

Binary file not shown.

View File

@@ -108,8 +108,6 @@ Path = "/" | "/"? {IdentifierOrParent} ("/" {IdentifierOrParent})* "/"?
IdentifierNs = {Identifier} ":" {Identifier}
TypeNameSpec = ".<" {Identifier} ">"
/* XML */
LetterColon = [:jletter] | ":"
XMLIdentifier = {Identifier} | {IdentifierNs}
@@ -249,6 +247,7 @@ VerbatimString = "@\"" {VerbatimStringCharacter}* "\""
"..." |
"." |
"=" |
".<" |
"<" |
"!" |
"~" |
@@ -330,7 +329,6 @@ VerbatimString = "@\"" {VerbatimStringCharacter}* "\""
/* whitespace */
{WhiteSpace} { }
{TypeNameSpec} { return token(TokenType.IDENTIFIER); }
{XMLBeginOneTag} { yybegin(XML);
tokenStart = yychar;
tokenLength = yylength();