@@ -645,7 +645,7 @@ class ConceptIdExprArgumentsNode extends PrintAstNode, TConceptIdExprArgumentsNo
645
645
646
646
override string getChildAccessorPredicateInternal ( int childIndex ) {
647
647
exists ( this .getChildInternal ( childIndex ) ) and
648
- result = "getTemplateArgument(" + childIndex . toString ( ) + ")"
648
+ result = "getTemplateArgument(" + childIndex + ")"
649
649
}
650
650
651
651
/**
@@ -698,7 +698,7 @@ class FunctionParametersNode extends PrintAstNode, TFunctionParametersNode {
698
698
699
699
override string getChildAccessorPredicateInternal ( int childIndex ) {
700
700
exists ( this .getChildInternal ( childIndex ) ) and
701
- result = "getParameter(" + childIndex . toString ( ) + ")"
701
+ result = "getParameter(" + childIndex + ")"
702
702
}
703
703
704
704
/**
@@ -725,7 +725,7 @@ class RequiresExprParametersNode extends PrintAstNode, TRequiresExprParametersNo
725
725
726
726
override string getChildAccessorPredicateInternal ( int childIndex ) {
727
727
exists ( this .getChildInternal ( childIndex ) ) and
728
- result = "getParameter(" + childIndex . toString ( ) + ")"
728
+ result = "getParameter(" + childIndex + ")"
729
729
}
730
730
731
731
/**
@@ -752,7 +752,7 @@ class ConstructorInitializersNode extends PrintAstNode, TConstructorInitializers
752
752
753
753
final override string getChildAccessorPredicateInternal ( int childIndex ) {
754
754
exists ( this .getChildInternal ( childIndex ) ) and
755
- result = "getInitializer(" + childIndex . toString ( ) + ")"
755
+ result = "getInitializer(" + childIndex + ")"
756
756
}
757
757
758
758
/**
@@ -779,7 +779,7 @@ class DestructorDestructionsNode extends PrintAstNode, TDestructorDestructionsNo
779
779
780
780
final override string getChildAccessorPredicateInternal ( int childIndex ) {
781
781
exists ( this .getChildInternal ( childIndex ) ) and
782
- result = "getDestruction(" + childIndex . toString ( ) + ")"
782
+ result = "getDestruction(" + childIndex + ")"
783
783
}
784
784
785
785
/**
0 commit comments