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 906ce34 commit 5fc4fabCopy full SHA for 5fc4fab
swift/ql/lib/codeql/swift/elements/File.qll
@@ -2,10 +2,10 @@ private import codeql.swift.generated.File
2
3
class File extends FileBase {
4
/** toString */
5
- string toString() { result = getAbsolutePath() }
+ override string toString() { result = getAbsolutePath() }
6
7
/** Gets the name of this file. */
8
- string getName() { files(this, result) }
+ override string getName() { files(this, result) }
9
10
/** Gets the absolute path of this file. */
11
string getAbsolutePath() { result = getName() }
0 commit comments