|
I am trying to run form a query which will return all the attributes of a class with corresponding class name/object. For example Here I want the output to have details about line 11 and 12. The query should be able to tell funcB() called in line 11 and the attribute x in line 12 are from class B, and the test() function called in line 16 is not from any class. I have written the following, which doesn't do the required. Can anyone help with the query? |
Answered by
hvitved
Oct 5, 2021
Replies: 1 comment 7 replies
|
Hi Are you asking for all the functions/attributes defined in a given class, or are you interested in knowing which function/attribute a given call/access may refer to (like the call |
7 replies
Answer selected by
adityasharad
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Hi
Are you asking for all the functions/attributes defined in a given class, or are you interested in knowing which function/attribute a given call/access may refer to (like the call
obj.funcB()on line 11 and the accessobj.xon line 12)?