@@ -5041,31 +5041,6 @@ export class TryBlockStatementAST extends StatementAST {
5041
5041
}
5042
5042
}
5043
5043
5044
- /**
5045
- * GeneratedLiteralExpressionAST node.
5046
- */
5047
- export class GeneratedLiteralExpressionAST extends ExpressionAST {
5048
- /**
5049
- * Traverse this node using the given visitor.
5050
- * @param visitor the visitor.
5051
- * @param context the context.
5052
- * @returns the result of the visit.
5053
- */
5054
- accept < Context , Result > (
5055
- visitor : ASTVisitor < Context , Result > ,
5056
- context : Context ,
5057
- ) : Result {
5058
- return visitor . visitGeneratedLiteralExpression ( this , context ) ;
5059
- }
5060
-
5061
- /**
5062
- * Returns the location of the literal token in this node
5063
- */
5064
- getLiteralToken ( ) : Token | undefined {
5065
- return Token . from ( cxx . getASTSlot ( this . getHandle ( ) , 0 ) , this . parser ) ;
5066
- }
5067
- }
5068
-
5069
5044
/**
5070
5045
* CharLiteralExpressionAST node.
5071
5046
*/
@@ -7012,9 +6987,9 @@ export class GlobalScopeReflectExpressionAST extends ExpressionAST {
7012
6987
}
7013
6988
7014
6989
/**
7015
- * Returns the location of the caret token in this node
6990
+ * Returns the location of the caretCaret token in this node
7016
6991
*/
7017
- getCaretToken ( ) : Token | undefined {
6992
+ getCaretCaretToken ( ) : Token | undefined {
7018
6993
return Token . from ( cxx . getASTSlot ( this . getHandle ( ) , 0 ) , this . parser ) ;
7019
6994
}
7020
6995
@@ -7044,9 +7019,9 @@ export class NamespaceReflectExpressionAST extends ExpressionAST {
7044
7019
}
7045
7020
7046
7021
/**
7047
- * Returns the location of the caret token in this node
7022
+ * Returns the location of the caretCaret token in this node
7048
7023
*/
7049
- getCaretToken ( ) : Token | undefined {
7024
+ getCaretCaretToken ( ) : Token | undefined {
7050
7025
return Token . from ( cxx . getASTSlot ( this . getHandle ( ) , 0 ) , this . parser ) ;
7051
7026
}
7052
7027
@@ -7084,9 +7059,9 @@ export class TypeIdReflectExpressionAST extends ExpressionAST {
7084
7059
}
7085
7060
7086
7061
/**
7087
- * Returns the location of the caret token in this node
7062
+ * Returns the location of the caretCaret token in this node
7088
7063
*/
7089
- getCaretToken ( ) : Token | undefined {
7064
+ getCaretCaretToken ( ) : Token | undefined {
7090
7065
return Token . from ( cxx . getASTSlot ( this . getHandle ( ) , 0 ) , this . parser ) ;
7091
7066
}
7092
7067
@@ -7119,9 +7094,9 @@ export class ReflectExpressionAST extends ExpressionAST {
7119
7094
}
7120
7095
7121
7096
/**
7122
- * Returns the location of the caret token in this node
7097
+ * Returns the location of the caretCaret token in this node
7123
7098
*/
7124
- getCaretToken ( ) : Token | undefined {
7099
+ getCaretCaretToken ( ) : Token | undefined {
7125
7100
return Token . from ( cxx . getASTSlot ( this . getHandle ( ) , 0 ) , this . parser ) ;
7126
7101
}
7127
7102
@@ -8922,31 +8897,6 @@ export class ConstraintTypeParameterAST extends TemplateParameterAST {
8922
8897
}
8923
8898
}
8924
8899
8925
- /**
8926
- * GeneratedTypeSpecifierAST node.
8927
- */
8928
- export class GeneratedTypeSpecifierAST extends SpecifierAST {
8929
- /**
8930
- * Traverse this node using the given visitor.
8931
- * @param visitor the visitor.
8932
- * @param context the context.
8933
- * @returns the result of the visit.
8934
- */
8935
- accept < Context , Result > (
8936
- visitor : ASTVisitor < Context , Result > ,
8937
- context : Context ,
8938
- ) : Result {
8939
- return visitor . visitGeneratedTypeSpecifier ( this , context ) ;
8940
- }
8941
-
8942
- /**
8943
- * Returns the location of the type token in this node
8944
- */
8945
- getTypeToken ( ) : Token | undefined {
8946
- return Token . from ( cxx . getASTSlot ( this . getHandle ( ) , 0 ) , this . parser ) ;
8947
- }
8948
- }
8949
-
8950
8900
/**
8951
8901
* TypedefSpecifierAST node.
8952
8902
*/
@@ -9461,9 +9411,9 @@ export class SignTypeSpecifierAST extends SpecifierAST {
9461
9411
}
9462
9412
9463
9413
/**
9464
- * VaListTypeSpecifierAST node.
9414
+ * BuiltinTypeSpecifierAST node.
9465
9415
*/
9466
- export class VaListTypeSpecifierAST extends SpecifierAST {
9416
+ export class BuiltinTypeSpecifierAST extends SpecifierAST {
9467
9417
/**
9468
9418
* Traverse this node using the given visitor.
9469
9419
* @param visitor the visitor.
@@ -9474,7 +9424,7 @@ export class VaListTypeSpecifierAST extends SpecifierAST {
9474
9424
visitor : ASTVisitor < Context , Result > ,
9475
9425
context : Context ,
9476
9426
) : Result {
9477
- return visitor . visitVaListTypeSpecifier ( this , context ) ;
9427
+ return visitor . visitBuiltinTypeSpecifier ( this , context ) ;
9478
9428
}
9479
9429
9480
9430
/**
@@ -13404,7 +13354,6 @@ const AST_CONSTRUCTORS: Array<
13404
13354
GotoStatementAST ,
13405
13355
DeclarationStatementAST ,
13406
13356
TryBlockStatementAST ,
13407
- GeneratedLiteralExpressionAST ,
13408
13357
CharLiteralExpressionAST ,
13409
13358
BoolLiteralExpressionAST ,
13410
13359
IntLiteralExpressionAST ,
@@ -13475,7 +13424,6 @@ const AST_CONSTRUCTORS: Array<
13475
13424
NonTypeTemplateParameterAST ,
13476
13425
TypenameTypeParameterAST ,
13477
13426
ConstraintTypeParameterAST ,
13478
- GeneratedTypeSpecifierAST ,
13479
13427
TypedefSpecifierAST ,
13480
13428
FriendSpecifierAST ,
13481
13429
ConstevalSpecifierAST ,
@@ -13495,7 +13443,7 @@ const AST_CONSTRUCTORS: Array<
13495
13443
VoidTypeSpecifierAST ,
13496
13444
SizeTypeSpecifierAST ,
13497
13445
SignTypeSpecifierAST ,
13498
- VaListTypeSpecifierAST ,
13446
+ BuiltinTypeSpecifierAST ,
13499
13447
IntegralTypeSpecifierAST ,
13500
13448
FloatingPointTypeSpecifierAST ,
13501
13449
ComplexTypeSpecifierAST ,
0 commit comments