@@ -457,15 +457,6 @@ module Configs<LocationSig Location, InputSig<Location> Lang> {
457457 */
458458 default Location getASelectedSourceLocation ( Node source ) { result = source .getLocation ( ) }
459459
460- /**
461- * Like `getASelectedSourceLocation`, but only has to get a location _containing_ the
462- * actual location associated with `source`.
463- *
464- * This prunes fewer sources than `getASelectedSourceLocation` but leaves room for the possibility
465- * that a more precise location can be selected in the query.
466- */
467- default Location getASelectedSourceLocationApprox ( Node source ) { none ( ) }
468-
469460 /**
470461 * Gets a location that will be associated with the given `sink` in a
471462 * diff-informed query that uses this configuration (see
@@ -476,15 +467,6 @@ module Configs<LocationSig Location, InputSig<Location> Lang> {
476467 * report the sink at all, this predicate can be `none()`.
477468 */
478469 default Location getASelectedSinkLocation ( Node sink ) { result = sink .getLocation ( ) }
479-
480- /**
481- * Like `getASelectedSinkLocation`, but only has to get a location _containing_ the
482- * actual location associated with `sink`.
483- *
484- * This prunes fewer sinks than `getASelectedSinkLocation` but leaves room for the possibility
485- * that a more precise location can be selected in the query.
486- */
487- default Location getASelectedSinkLocationApprox ( Node sink ) { none ( ) }
488470 }
489471
490472 /** An input configuration for data flow using flow state. */
@@ -624,15 +606,6 @@ module Configs<LocationSig Location, InputSig<Location> Lang> {
624606 */
625607 default Location getASelectedSourceLocation ( Node source ) { result = source .getLocation ( ) }
626608
627- /**
628- * Like `getASelectedSourceLocation`, but only has to get a location _containing_ the
629- * actual location associated with `source`.
630- *
631- * This prunes fewer sources than `getASelectedSourceLocation` but leaves room for the possibility
632- * that a more precise location can be selected in the query.
633- */
634- default Location getASelectedSourceLocationApprox ( Node source ) { none ( ) }
635-
636609 /**
637610 * Gets a location that will be associated with the given `sink` in a
638611 * diff-informed query that uses this configuration (see
@@ -643,15 +616,6 @@ module Configs<LocationSig Location, InputSig<Location> Lang> {
643616 * report the sink at all, this predicate can be `none()`.
644617 */
645618 default Location getASelectedSinkLocation ( Node sink ) { result = sink .getLocation ( ) }
646-
647- /**
648- * Like `getASelectedSinkLocation`, but only has to get a location _containing_ the
649- * actual location associated with `sink`.
650- *
651- * This prunes fewer sinks than `getASelectedSinkLocation` but leaves room for the possibility
652- * that a more precise location can be selected in the query.
653- */
654- default Location getASelectedSinkLocationApprox ( Node sink ) { none ( ) }
655619 }
656620}
657621
0 commit comments