File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
javascript/ql/lib/semmle/javascript/internal/paths Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -18,16 +18,16 @@ abstract class PathMapping extends Locatable {
1818 * Holds if imports paths exactly matching `pattern` should be redirected to `newPath`
1919 * resolved relative to `newContext`.
2020 */
21- abstract predicate hasExactPathMapping ( string pattern , Container newContext , string newPath ) ;
21+ predicate hasExactPathMapping ( string pattern , Container newContext , string newPath ) { none ( ) }
2222
2323 /**
2424 * Holds if imports paths starting with `pattern` should have the matched prefix replaced by `newPath`
2525 * and then resolved relative to `newContext`.
2626 */
27- abstract predicate hasPrefixPathMapping ( string pattern , Container newContext , string newPath ) ;
27+ predicate hasPrefixPathMapping ( string pattern , Container newContext , string newPath ) { none ( ) }
2828
2929 /** Holds if non-relative paths in affected files should be resolved relative to `base`. */
30- abstract predicate hasBaseUrl ( Container base ) ;
30+ predicate hasBaseUrl ( Container base ) { none ( ) }
3131}
3232
3333/**
You can’t perform that action at this time.
0 commit comments