We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38e906f commit f7a1a4aCopy full SHA for f7a1a4a
csharp/ql/lib/semmle/code/asp/AspNet.qll
@@ -215,7 +215,7 @@ class PageDirective extends AspDirective {
215
*/
216
class CodeBehindFile extends File {
217
CodeBehindFile() {
218
- getExtension() = "aspx" and
+ this.getExtension() = "aspx" and
219
exists(PageDirective pageDir | pageDir.getLocation().getFile() = this)
220
}
221
@@ -227,5 +227,5 @@ class CodeBehindFile extends File {
227
/**
228
* Gets the 'CodeBehind' class from which this page inherits.
229
230
- ValueOrRefType getInheritedType() { result = getPageDirective().getInheritedType() }
+ ValueOrRefType getInheritedType() { result = this.getPageDirective().getInheritedType() }
231
0 commit comments