Compile AS3 @identifier asdoc tag as identifier replacement

This commit is contained in:
Jindra Petřík
2025-07-25 19:08:38 +02:00
parent 90a82a538a
commit e44e2eaa2b
20 changed files with 2674 additions and 898 deletions

View File

@@ -111,11 +111,11 @@ InputCharacter = [^\r\n]
WhiteSpace = {LineTerminator} | [ \t\f]+
/* comments */
Comment = {TraditionalComment} | {EndOfLineComment}
Comment = {TraditionalComment} | {EndOfLineComment} | {AsDocComment}
TraditionalComment = "/*" [^*] ~"*/" | "/*" "*"+ "/"
EndOfLineComment = "//" {InputCharacter}* {LineTerminator}?
AsDocComment = "/**" ~"*/"
/* identifiers */