CallSite
Methods
getColumnNumber
Current column number [if this function was defined in a script]
Returns
null \| number
null | numbergetEvalOrigin
A call site object representing the location where eval was called [if this function was created using a call to eval]
Returns
undefined \| string
undefined | stringgetFileName
Name of the script [if this function was defined in a script]
Returns
undefined \| string
undefined | stringgetFunction
Current function
Returns
undefined \| Function
undefined | FunctiongetFunctionName
Name of the current function, typically its name property. If a name property is not available an attempt will be made to try to infer a name from the function's context.
Returns
null \| string
null | stringgetLineNumber
Current line number [if this function was defined in a script]
Returns
null \| number
null | numbergetMethodName
Name of the property [of "this" or one of its prototypes] that holds the current function
Returns
null \| string
null | stringgetThis
Value of "this"
Returns
unknown
unknowngetTypeName
Type of "this" as a string. This is the name of the function stored in the constructor field of "this", if available. Otherwise the object's [[Class]] internal property.
Returns
null \| string
null | stringisConstructor
Is this a constructor call?
Returns
boolean
booleanisEval
Does this call take place in code defined by a call to eval?
Returns
boolean
booleanisNative
Is this call in native V8 code?
Returns
boolean
booleanisToplevel
Is this a toplevel invocation, that is, is "this" the global object?
Returns
boolean
boolean