deno.com

interface Debugger.ScriptFailedToParseEventDataType

Properties #

Identifier of the script parsed.

#url: string

URL or name of the script parsed (if any).

#startLine: number

Line offset of the script within the resource with given URL (for script tags).

#startColumn: number

Column offset of the script within the resource with given URL.

#endLine: number

Last line of the script.

#endColumn: number

Length of the last line of the script.

Specifies script creation context.

#hash: string

Content hash of the script.

#executionContextAuxData: { } | undefined
optional

Embedder-specific auxiliary data.

#sourceMapURL: string | undefined
optional

URL of source map associated with script (if any).

#hasSourceURL: boolean | undefined
optional

True, if this script has sourceURL.

#isModule: boolean | undefined
optional

True, if this script is ES6 module.

#length: number | undefined
optional

This script length.

#stackTrace: Runtime.StackTrace | undefined
optional

JavaScript top stack frame of where the script parsed event was triggered if available.