mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
13 lines
254 B
Plaintext
13 lines
254 B
Plaintext
/**
|
|
* The default C# QL library.
|
|
*/
|
|
|
|
import semmle.code.csharp.internal.csharp
|
|
|
|
private class FileAdjusted extends File {
|
|
override predicate fromSource() {
|
|
super.fromSource() and
|
|
not this.getAbsolutePath().matches("%resources/stubs/%")
|
|
}
|
|
}
|