You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I expect the CALL node name on line 13 to be MyClass::bar(), but the name is foo->bar(). Further, an internal METHOD node is correctly created for MyClass::bar(), but there is also one created for an external function called foo->bar().
Is this expected/correct? If yes, is there a way to determine that CALL foo->bar() node is referring to type MyClass, or would one need to implement some type propagation atop the graph to arrive at that?
Thanks!
The text was updated successfully, but these errors were encountered:
Parsing this code:
I expect the CALL node name on line 13 to be
MyClass::bar()
, but the name isfoo->bar()
. Further, aninternal
METHOD node is correctly created forMyClass::bar()
, but there is also one created for anexternal
function calledfoo->bar()
.Is this expected/correct? If yes, is there a way to determine that
CALL foo->bar()
node is referring to typeMyClass
, or would one need to implement some type propagation atop the graph to arrive at that?Thanks!
The text was updated successfully, but these errors were encountered: