Skip to content

Commit e45e16f

Browse files
committed
Update PathMapping.qll
1 parent a8a0b69 commit e45e16f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

javascript/ql/lib/semmle/javascript/internal/paths/PathMapping.qll

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
/**

0 commit comments

Comments
 (0)