Back to Trilium

Interface CallSite

docs/Script API/interfaces/Backend_Script_API._internal_.CallSite.html

0.102.25.6 KB
Original Source

Interface CallSite

interface CallSite {
getColumnNumber(): null | number;
getEnclosingColumnNumber(): number;
getEnclosingLineNumber(): number;
getEvalOrigin(): undefined | string;
getFileName(): undefined | string;
getFunction(): undefined | Function;
getFunctionName(): null | string;
getLineNumber(): null | number;
getMethodName(): null | string;
getPosition(): number;
getPromiseIndex(): null | number;
getScriptHash(): string;
getScriptNameOrSourceURL(): string;
getThis(): unknown;
getTypeName(): null | string;
isAsync(): boolean;
isConstructor(): boolean;
isEval(): boolean;
isNative(): boolean;
isPromiseAll(): boolean;
isToplevel(): boolean;
toString(): string;
}

Index

Methods

getColumnNumbergetEnclosingColumnNumbergetEnclosingLineNumbergetEvalOrigingetFileNamegetFunctiongetFunctionNamegetLineNumbergetMethodNamegetPositiongetPromiseIndexgetScriptHashgetScriptNameOrSourceURLgetThisgetTypeNameisAsyncisConstructorisEvalisNativeisPromiseAllisTopleveltoString

Methods

getColumnNumber

getColumnNumber(): null | number

Current column number [if this function was defined in a script]

Returns null | number

getEnclosingColumnNumber

getEnclosingColumnNumber(): number

Returns number

getEnclosingLineNumber

getEnclosingLineNumber(): number

Returns number

getEvalOrigin

getEvalOrigin(): undefined | string

A call site object representing the location where eval was called [if this function was created using a call to eval]

Returns undefined | string

getFileName

getFileName(): undefined | string

Name of the script [if this function was defined in a script]

Returns undefined | string

getFunction

getFunction(): undefined | Function

Current function

Returns undefined | Function

getFunctionName

getFunctionName(): null | string

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

getLineNumber

getLineNumber(): null | number

Current line number [if this function was defined in a script]

Returns null | number

getMethodName

getMethodName(): null | string

Name of the property [of "this" or one of its prototypes] that holds the current function

Returns null | string

getPosition

getPosition(): number

Returns number

getPromiseIndex

getPromiseIndex(): null | number

returns the index of the promise element that was followed in Promise.all() or Promise.any() for async stack traces, or null if the CallSite is not an async

Returns null | number

getScriptHash

getScriptHash(): string

Returns string

getScriptNameOrSourceURL

getScriptNameOrSourceURL(): string

Returns string

getThis

getThis(): unknown

Value of "this"

Returns unknown

getTypeName

getTypeName(): null | string

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

isAsync

isAsync(): boolean

is this an async call (i.e. await, Promise.all(), or Promise.any())?

Returns boolean

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

isPromiseAll

isPromiseAll(): boolean

is this an async call to Promise.all()?

Returns boolean

isToplevel

isToplevel(): boolean

Is this a toplevel invocation, that is, is "this" the global object?

Returns boolean

toString

toString(): string

Returns string

Settings

Member Visibility

  • Protected
  • Inherited
  • External

ThemeOSLightDark

On This Page

Methods getColumnNumbergetEnclosingColumnNumbergetEnclosingLineNumbergetEvalOrigingetFileNamegetFunctiongetFunctionNamegetLineNumbergetMethodNamegetPositiongetPromiseIndexgetScriptHashgetScriptNameOrSourceURLgetThisgetTypeNameisAsyncisConstructorisEvalisNativeisPromiseAllisTopleveltoString