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 78125a7 commit c54743cCopy full SHA for c54743c
ruby/ql/src/utils/modeleditor/ModelEditor.qll
@@ -41,7 +41,10 @@ class Endpoint extends DataFlow::MethodNode {
41
string getTypeName() {
42
result =
43
any(DataFlow::ModuleNode m | m.getOwnInstanceMethod(this.getMethodName()) = this)
44
- .getQualifiedName()
+ .getQualifiedName() or
45
+ result =
46
+ any(DataFlow::ModuleNode m | m.getOwnSingletonMethod(this.getMethodName()) = this)
47
+ .getQualifiedName() + "!"
48
}
49
50
/**
0 commit comments