@@ -3216,6 +3216,20 @@ abstract class AbstractParserAstListener implements Listener {
32163216 new DotShorthandHeadHandle (ParserAstType .HANDLE , token: token);
32173217 seen (data);
32183218 }
3219+
3220+ @override
3221+ void beginConstDotShorthand (Token token) {
3222+ ConstDotShorthandBegin data =
3223+ new ConstDotShorthandBegin (ParserAstType .BEGIN , token: token);
3224+ seen (data);
3225+ }
3226+
3227+ @override
3228+ void endConstDotShorthand (Token token) {
3229+ ConstDotShorthandEnd data =
3230+ new ConstDotShorthandEnd (ParserAstType .END , token: token);
3231+ seen (data);
3232+ }
32193233}
32203234
32213235class ArgumentsBegin extends ParserAstNode {
@@ -10156,6 +10170,36 @@ class DotShorthandHeadHandle extends ParserAstNode {
1015610170 R accept <R >(ParserAstVisitor <R > v) => v.visitDotShorthandHeadHandle (this );
1015710171}
1015810172
10173+ class ConstDotShorthandBegin extends ParserAstNode {
10174+ final Token token;
10175+
10176+ ConstDotShorthandBegin (ParserAstType type, {required this .token})
10177+ : super ("ConstDotShorthand" , type);
10178+
10179+ @override
10180+ Map <String , Object ?> get deprecatedArguments => {
10181+ "token" : token,
10182+ };
10183+
10184+ @override
10185+ R accept <R >(ParserAstVisitor <R > v) => v.visitConstDotShorthandBegin (this );
10186+ }
10187+
10188+ class ConstDotShorthandEnd extends ParserAstNode {
10189+ final Token token;
10190+
10191+ ConstDotShorthandEnd (ParserAstType type, {required this .token})
10192+ : super ("ConstDotShorthand" , type);
10193+
10194+ @override
10195+ Map <String , Object ?> get deprecatedArguments => {
10196+ "token" : token,
10197+ };
10198+
10199+ @override
10200+ R accept <R >(ParserAstVisitor <R > v) => v.visitConstDotShorthandEnd (this );
10201+ }
10202+
1015910203abstract class ParserAstVisitor <R > {
1016010204 R visitArgumentsBegin (ArgumentsBegin node);
1016110205 R visitArgumentsEnd (ArgumentsEnd node);
@@ -10552,6 +10596,8 @@ abstract class ParserAstVisitor<R> {
1055210596 R visitPatternAssignmentHandle (PatternAssignmentHandle node);
1055310597 R visitDotShorthandContextHandle (DotShorthandContextHandle node);
1055410598 R visitDotShorthandHeadHandle (DotShorthandHeadHandle node);
10599+ R visitConstDotShorthandBegin (ConstDotShorthandBegin node);
10600+ R visitConstDotShorthandEnd (ConstDotShorthandEnd node);
1055510601}
1055610602
1055710603class RecursiveParserAstVisitor implements ParserAstVisitor <void > {
@@ -11970,6 +12016,14 @@ class RecursiveParserAstVisitor implements ParserAstVisitor<void> {
1197012016 @override
1197112017 void visitDotShorthandHeadHandle (DotShorthandHeadHandle node) =>
1197212018 node.visitChildren (this );
12019+
12020+ @override
12021+ void visitConstDotShorthandBegin (ConstDotShorthandBegin node) =>
12022+ node.visitChildren (this );
12023+
12024+ @override
12025+ void visitConstDotShorthandEnd (ConstDotShorthandEnd node) =>
12026+ node.visitChildren (this );
1197312027}
1197412028
1197512029class RecursiveParserAstVisitorWithDefaultNodeAsync
@@ -13466,4 +13520,12 @@ class RecursiveParserAstVisitorWithDefaultNodeAsync
1346613520 @override
1346713521 Future <void > visitDotShorthandHeadHandle (DotShorthandHeadHandle node) =>
1346813522 defaultNode (node);
13523+
13524+ @override
13525+ Future <void > visitConstDotShorthandBegin (ConstDotShorthandBegin node) =>
13526+ defaultNode (node);
13527+
13528+ @override
13529+ Future <void > visitConstDotShorthandEnd (ConstDotShorthandEnd node) =>
13530+ defaultNode (node);
1346913531}
0 commit comments