Use three-argument hasQualifiedName

This commit is contained in:
Michael B. Gale
2022-12-08 11:22:39 +00:00
parent 07041bb659
commit 3f446bc76e

View File

@@ -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") }
}
/**