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 20cbab9 commit cfd08f2Copy full SHA for cfd08f2
shared/util/codeql/util/FileSystem.qll
@@ -11,11 +11,15 @@ signature module InputSig {
11
/**
12
* Gets the absolute path of this container.
13
*
14
- * Typically `containerparent(result, this)`.
+ * Typically `folders(this, result) or files(this, result)`.
15
*/
16
string getAbsolutePath();
17
18
- /** Gets the parent container of this container, if any. */
+ /**
19
+ * Gets the parent container of this container, if any.
20
+ *
21
+ * Typically `containerparent(result, this)`.
22
+ */
23
ContainerBase getParentContainer();
24
}
25
0 commit comments