Bun

interface

vm.CompileFunctionOptions

interface CompileFunctionOptions

  • cachedData?: Buffer<ArrayBufferLike> | ArrayBufferView<ArrayBufferLike>

    Provides an optional data with V8's code cache data for the supplied source.

  • columnOffset?: number

    Specifies the column number offset that is displayed in stack traces produced by this script.

  • contextExtensions?: Object[]

    An array containing a collection of context extensions (objects wrapping the current scope) to be applied while compiling

  • filename?: string

    Specifies the filename used in stack traces produced by this script.

  • lineOffset?: number

    Specifies the line number offset that is displayed in stack traces produced by this script.

  • parsingContext?: Context

    The sandbox/context in which the said function should be compiled in.

  • produceCachedData?: boolean

    Specifies whether to produce new cache data.