Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • CallSite

Index

Methods

getColumnNumber

  • getColumnNumber(): number | null
  • Current column number [if this function was defined in a script]

    Returns number | null

getEvalOrigin

  • getEvalOrigin(): string | undefined
  • A call site object representing the location where eval was called [if this function was created using a call to eval]

    Returns string | undefined

getFileName

  • getFileName(): string | null
  • Name of the script [if this function was defined in a script]

    Returns string | null

getFunction

  • getFunction(): Function | undefined
  • Current function

    Returns Function | undefined

getFunctionName

  • getFunctionName(): string | null
  • 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 string | null

getLineNumber

  • getLineNumber(): number | null
  • Current line number [if this function was defined in a script]

    Returns number | null

getMethodName

  • getMethodName(): string | null
  • Name of the property [of "this" or one of its prototypes] that holds the current function

    Returns string | null

getThis

  • getThis(): any
  • Value of "this"

    Returns any

getTypeName

  • getTypeName(): string | null
  • 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 string | null

isConstructor

  • isConstructor(): boolean
  • Is this a constructor call?

    Returns boolean

isEval

  • isEval(): boolean
  • Does this call take place in code defined by a call to eval?

    Returns boolean

isNative

  • isNative(): boolean
  • Is this call in native V8 code?

    Returns boolean

isToplevel

  • isToplevel(): boolean
  • Is this a toplevel invocation, that is, is "this" the global object?

    Returns boolean

Generated using TypeDoc