Swift: add missing 'overrides'

This commit is contained in:
Alex Denisov 2022-04-26 10:07:41 +02:00
Родитель 906ce34e2f
Коммит 5fc4fab38e
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -2,10 +2,10 @@ private import codeql.swift.generated.File
class File extends FileBase {
/** toString */
string toString() { result = getAbsolutePath() }
override string toString() { result = getAbsolutePath() }
/** Gets the name of this file. */
string getName() { files(this, result) }
override string getName() { files(this, result) }
/** Gets the absolute path of this file. */
string getAbsolutePath() { result = getName() }