@@ -784,19 +784,6 @@ private module DataFlowMakeCore<LocationSig Location, InputSig<Location> Lang> {
784784
785785 /** Gets the location of this node. */
786786 Location getLocation ( ) { result = this .getNode ( ) .getLocation ( ) }
787-
788- /**
789- * Holds if this element is at the specified location.
790- * The location spans column `startcolumn` of line `startline` to
791- * column `endcolumn` of line `endline` in file `filepath`.
792- * For more information, see
793- * [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
794- */
795- deprecated predicate hasLocationInfo (
796- string filepath , int startline , int startcolumn , int endline , int endcolumn
797- ) {
798- this .getLocation ( ) .hasLocationInfo ( filepath , startline , startcolumn , endline , endcolumn )
799- }
800787 }
801788
802789 /**
@@ -853,19 +840,6 @@ private module DataFlowMakeCore<LocationSig Location, InputSig<Location> Lang> {
853840 /** Gets a textual representation of this element. */
854841 string toString ( ) { result = super .toString ( ) }
855842
856- /**
857- * Holds if this element is at the specified location.
858- * The location spans column `startcolumn` of line `startline` to
859- * column `endcolumn` of line `endline` in file `filepath`.
860- * For more information, see
861- * [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
862- */
863- deprecated predicate hasLocationInfo (
864- string filepath , int startline , int startcolumn , int endline , int endcolumn
865- ) {
866- super .hasLocationInfo ( filepath , startline , startcolumn , endline , endcolumn )
867- }
868-
869843 /** Gets the underlying `Node`. */
870844 Node getNode ( ) { result = super .getNode ( ) }
871845
0 commit comments