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 f7ec06a commit d77136fCopy full SHA for d77136f
javascript/ql/lib/semmle/javascript/ApiGraphs.qll
@@ -616,6 +616,11 @@ module API {
616
override string toString() { result = "def " + this.getInducingNode().toString() }
617
}
618
619
+ /** A node corresponding to a definition of an API component. */
620
+ class ClassInstanceNode extends Definition, Impl::MkClassInstance {
621
+ override string toString() { result = "instance of " + this.getInducingNode().toString() }
622
+ }
623
+
624
/** A node corresponding to the use of an API component. */
625
class Use extends Node, Impl::TUse {
626
override string toString() { result = "use " + this.getInducingNode().toString() }
0 commit comments