-
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? |
Beta Was this translation helpful? Give feedback.
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 |
Beta Was this translation helpful? Give feedback.
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.x
on line 12)?