@@ -459,15 +459,6 @@ module Configs<LocationSig Location, InputSig<Location> Lang> {
459459 */
460460 default Location getASelectedSourceLocation ( Node source ) { result = source .getLocation ( ) }
461461
462- /**
463- * Like `getASelectedSourceLocation`, but only has to get a location _containing_ the
464- * actual location associated with `source`.
465- *
466- * This prunes fewer sources than `getASelectedSourceLocation` but leaves room for the possibility
467- * that a more precise location can be selected in the query.
468- */
469- default Location getASelectedSourceLocationApprox ( Node source ) { none ( ) }
470-
471462 /**
472463 * Gets a location that will be associated with the given `sink` in a
473464 * diff-informed query that uses this configuration (see
@@ -478,15 +469,6 @@ module Configs<LocationSig Location, InputSig<Location> Lang> {
478469 * report the sink at all, this predicate can be `none()`.
479470 */
480471 default Location getASelectedSinkLocation ( Node sink ) { result = sink .getLocation ( ) }
481-
482- /**
483- * Like `getASelectedSinkLocation`, but only has to get a location _containing_ the
484- * actual location associated with `sink`.
485- *
486- * This prunes fewer sinks than `getASelectedSinkLocation` but leaves room for the possibility
487- * that a more precise location can be selected in the query.
488- */
489- default Location getASelectedSinkLocationApprox ( Node sink ) { none ( ) }
490472 }
491473
492474 /** An input configuration for data flow using flow state. */
@@ -626,15 +608,6 @@ module Configs<LocationSig Location, InputSig<Location> Lang> {
626608 */
627609 default Location getASelectedSourceLocation ( Node source ) { result = source .getLocation ( ) }
628610
629- /**
630- * Like `getASelectedSourceLocation`, but only has to get a location _containing_ the
631- * actual location associated with `source`.
632- *
633- * This prunes fewer sources than `getASelectedSourceLocation` but leaves room for the possibility
634- * that a more precise location can be selected in the query.
635- */
636- default Location getASelectedSourceLocationApprox ( Node source ) { none ( ) }
637-
638611 /**
639612 * Gets a location that will be associated with the given `sink` in a
640613 * diff-informed query that uses this configuration (see
@@ -645,15 +618,6 @@ module Configs<LocationSig Location, InputSig<Location> Lang> {
645618 * report the sink at all, this predicate can be `none()`.
646619 */
647620 default Location getASelectedSinkLocation ( Node sink ) { result = sink .getLocation ( ) }
648-
649- /**
650- * Like `getASelectedSinkLocation`, but only has to get a location _containing_ the
651- * actual location associated with `sink`.
652- *
653- * This prunes fewer sinks than `getASelectedSinkLocation` but leaves room for the possibility
654- * that a more precise location can be selected in the query.
655- */
656- default Location getASelectedSinkLocationApprox ( Node sink ) { none ( ) }
657621 }
658622}
659623
0 commit comments