* added reference for JS Client * added reference for JS Client * added reference for JS Client
3.1 KiB
displayed_sidebar
| displayed_sidebar |
|---|
| jsClientSidebar |
Interface: CallSite
internal.CallSite
Methods
getColumnNumber
▸ getColumnNumber(): null | number
Current column number [if this function was defined in a script]
Returns
null | number
Defined in
node_modules/@types/node/globals.d.ts:154
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
Defined in
node_modules/@types/node/globals.d.ts:160
getFileName
▸ getFileName(): null | string
Name of the script [if this function was defined in a script]
Returns
null | string
Defined in
node_modules/@types/node/globals.d.ts:144
getFunction
▸ getFunction(): undefined | Function
Current function
Returns
undefined | Function
Defined in
node_modules/@types/node/globals.d.ts:126
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
Defined in
node_modules/@types/node/globals.d.ts:133
getLineNumber
▸ getLineNumber(): null | number
Current line number [if this function was defined in a script]
Returns
null | number
Defined in
node_modules/@types/node/globals.d.ts:149
getMethodName
▸ getMethodName(): null | string
Name of the property [of "this" or one of its prototypes] that holds the current function
Returns
null | string
Defined in
node_modules/@types/node/globals.d.ts:139
getThis
▸ getThis(): unknown
Value of "this"
Returns
unknown
Defined in
node_modules/@types/node/globals.d.ts:113
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
Defined in
node_modules/@types/node/globals.d.ts:121
isConstructor
▸ isConstructor(): boolean
Is this a constructor call?
Returns
boolean
Defined in
node_modules/@types/node/globals.d.ts:180
isEval
▸ isEval(): boolean
Does this call take place in code defined by a call to eval?
Returns
boolean
Defined in
node_modules/@types/node/globals.d.ts:170
isNative
▸ isNative(): boolean
Is this call in native V8 code?
Returns
boolean
Defined in
node_modules/@types/node/globals.d.ts:175
isToplevel
▸ isToplevel(): boolean
Is this a toplevel invocation, that is, is "this" the global object?
Returns
boolean
Defined in
node_modules/@types/node/globals.d.ts:165