@@ -1650,8 +1650,6 @@ module MakeImplCommon<LocationSig Location, InputSig<Location> Lang> {
1650
1650
*/
1651
1651
class CastingNode extends NodeFinal {
1652
1652
CastingNode ( ) { castingNode ( this ) }
1653
-
1654
- string toString ( ) { result = super .toString ( ) }
1655
1653
}
1656
1654
1657
1655
private predicate readStepWithTypes (
@@ -1800,8 +1798,6 @@ module MakeImplCommon<LocationSig Location, InputSig<Location> Lang> {
1800
1798
class ParamNode extends NodeFinal {
1801
1799
ParamNode ( ) { parameterNode ( this , _, _) }
1802
1800
1803
- string toString ( ) { result = super .toString ( ) }
1804
-
1805
1801
/**
1806
1802
* Holds if this node is the parameter of callable `c` at the specified
1807
1803
* position.
@@ -1815,8 +1811,6 @@ module MakeImplCommon<LocationSig Location, InputSig<Location> Lang> {
1815
1811
class ArgNode extends NodeFinal {
1816
1812
ArgNode ( ) { argumentNode ( this , _, _) }
1817
1813
1818
- string toString ( ) { result = super .toString ( ) }
1819
-
1820
1814
/** Holds if this argument occurs at the given position in the given call. */
1821
1815
final predicate argumentOf ( DataFlowCall call , ArgumentPosition pos ) {
1822
1816
argumentNode ( this , call , pos )
@@ -1830,8 +1824,6 @@ module MakeImplCommon<LocationSig Location, InputSig<Location> Lang> {
1830
1824
class ReturnNodeExt extends NodeFinal {
1831
1825
ReturnNodeExt ( ) { returnNodeExt ( this , _) }
1832
1826
1833
- string toString ( ) { result = super .toString ( ) }
1834
-
1835
1827
/** Gets the kind of this returned value. */
1836
1828
ReturnKindExt getKind ( ) { returnNodeExt ( this , result ) }
1837
1829
}
@@ -1842,8 +1834,6 @@ module MakeImplCommon<LocationSig Location, InputSig<Location> Lang> {
1842
1834
*/
1843
1835
class OutNodeExt extends NodeFinal {
1844
1836
OutNodeExt ( ) { outNodeExt ( this ) }
1845
-
1846
- string toString ( ) { result = super .toString ( ) }
1847
1837
}
1848
1838
1849
1839
/**
0 commit comments