mirror of
https://github.com/github/codeql.git
synced 2026-08-05 09:53:29 +02:00
Use three-argument hasQualifiedName
This commit is contained in:
@@ -43,14 +43,14 @@ class OpenFileFun extends Function {
|
||||
* The `os.File.Close` function.
|
||||
*/
|
||||
class CloseFileFun extends Method {
|
||||
CloseFileFun() { this.hasQualifiedName("os.File", "Close") }
|
||||
CloseFileFun() { this.hasQualifiedName("os", "File", "Close") }
|
||||
}
|
||||
|
||||
/**
|
||||
* The `os.File.Sync` function.
|
||||
*/
|
||||
class SyncFileFun extends Method {
|
||||
SyncFileFun() { this.hasQualifiedName("os.File", "Sync") }
|
||||
SyncFileFun() { this.hasQualifiedName("os", "File", "Sync") }
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user