Skip to content

Commit 144ee1a

Browse files
committed
Fix compilation for UI5.qll ManifestJson
1 parent dafc39a commit 144ee1a

File tree

1 file changed

+2
-2
lines changed
  • javascript/frameworks/ui5/lib/advanced_security/javascript/frameworks/ui5

1 file changed

+2
-2
lines changed

javascript/frameworks/ui5/lib/advanced_security/javascript/frameworks/ui5/UI5.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1034,7 +1034,7 @@ module ManifestJson {
10341034
/* This data source can be found in the "dataSources" property of the same manifest */
10351035
exists(DataSourceManifest dataSource |
10361036
dataSource.getName() = dataSourceName and
1037-
dataSource.getManifestJson() = this.getJsonFile()
1037+
dataSource.getParentManifestJson() = this.getJsonFile()
10381038
)
10391039
)
10401040
}
@@ -1046,7 +1046,7 @@ module ManifestJson {
10461046
/** Gets the data source for this external model from the same manifest file. */
10471047
DataSourceManifest getDataSource() {
10481048
result.getName() = dataSourceName and
1049-
result.getManifestJson() = this.getJsonFile()
1049+
result.getParentManifestJson() = this.getJsonFile()
10501050
}
10511051
}
10521052

0 commit comments

Comments
 (0)