@@ -1299,7 +1299,7 @@ class TokenType {
12991299 isOperator: true ,
13001300 isBinaryOperator: true );
13011301
1302- // This is not yet part of the language and not supported by fasta
1302+ // This is not yet part of the language and not supported by the scanner.
13031303 static const TokenType AMPERSAND_AMPERSAND_EQ = const TokenType (
13041304 /* index = */ 14 ,
13051305 '&&=' ,
@@ -1336,7 +1336,7 @@ class TokenType {
13361336 /* index = */ 21 , '||' , 'BAR_BAR' , LOGICAL_OR_PRECEDENCE , BAR_BAR_TOKEN ,
13371337 isOperator: true , isBinaryOperator: true );
13381338
1339- // This is not yet part of the language and not supported by fasta
1339+ // This is not yet part of the language and not supported by the scanner.
13401340 static const TokenType BAR_BAR_EQ = const TokenType (/* index = */ 22 , '||=' ,
13411341 'BAR_BAR_EQ' , ASSIGNMENT_PRECEDENCE , BAR_BAR_EQ_TOKEN ,
13421342 binaryOperatorOfCompoundAssignment: TokenType .BAR_BAR , isOperator: true );
@@ -1686,11 +1686,11 @@ class TokenType {
16861686 //TokenType.IS,
16871687 //TokenType.AS,
16881688
1689- // These are not yet part of the language and not supported by fasta
1689+ // These are not yet part of the language and not supported by the scanner:
16901690 //TokenType.AMPERSAND_AMPERSAND_EQ,
16911691 //TokenType.BAR_BAR_EQ,
16921692
1693- // Supported by fasta but not part of the language
1693+ // Supported by the scanner but not part of the language
16941694 //TokenType.BANG_EQ_EQ,
16951695 //TokenType.EQ_EQ_EQ,
16961696
0 commit comments