Class CallableValue
A callable in the Python program. Callables include Python functions, built-in functions and bound-methods, but not classes.
Import path
import python
Direct supertypes
Indirect supertypes
Known direct subtypes
Predicates
getArgumentForCall |
Gets the argument in |
getNamedArgumentForCall |
Gets the argument in |
getParameter |
Gets the |
getParameterByName |
Gets the |
getScope |
Gets the scope for this function, provided that it is a Python function. |
neverReturns |
Holds if this callable never returns once called. For example, |
Inherited predicates
attr |
Gets a |
from Value |
getABooleanValue |
Gets the boolean interpretation of this value. Could be both |
from Value |
getACall |
Gets a call to this object |
from Value |
getACall |
Gets a call to this object with the given |
from Value |
getAReference |
Gets a |
from Value |
getClass |
Gets the class of this object. Strictly, the |
from Value |
getDefiniteBooleanValue |
Gets the boolean interpretation of this value, only if we can determine the result precisely. The result can be |
from Value |
getName |
Gets the name of this value, if it has one. Note this is the innate name of the object, not necessarily all the names by which it can be called. |
from Value |
getOrigin |
Gets the origin CFG node for this value. |
from Value |
hasAttribute |
Holds if this value has the attribute |
from Value |
hasLocationInfo |
Holds if this element is at the specified location. The location spans column |
from Value |
isAbsent |
Whether this value is absent from the database, but has been inferred to likely exist |
from Value |
isBuiltin |
Holds if this value is builtin. Applies to built-in functions and methods, but also integers and strings. |
from Value |
overrides |
Whether this overrides v. In this context, “overrides” means that this object is a named attribute of a some class C and |
from Value |
toString |
Gets a textual representation of this element. |
from Value |