import { define } from "./scripts/class-definitions"; export default [ define({ name: "ResolveMessage", construct: true, finalize: true, configurable: false, klass: {}, JSType: "0b11101110", proto: { message: { getter: "getMessage", cache: true, }, code: { getter: "getCode", cache: true, }, name: { value: "ResolveMessage", }, level: { getter: "getLevel", cache: true, }, referrer: { getter: "getReferrer", cache: true, }, specifier: { getter: "getSpecifier", cache: true, }, importKind: { getter: "getImportKind", cache: true, }, position: { getter: "getPosition", cache: true, }, ["@@toPrimitive"]: { fn: "toPrimitive", length: 1, }, ["toString"]: { fn: "toString", length: 0, }, ["toJSON"]: { fn: "toJSON", length: 0, }, }, }), define({ name: "BuildMessage", construct: true, finalize: true, configurable: false, klass: {}, JSType: "0b11101110", proto: { message: { getter: "getMessage", cache: true, }, name: { value: "BuildMessage", }, level: { getter: "getLevel", cache: true, }, position: { getter: "getPosition", cache: true, }, ["@@toPrimitive"]: { fn: "toPrimitive", length: 1, }, ["toString"]: { fn: "toString", length: 0, }, ["toJSON"]: { fn: "toJSON", length: 0, }, }, }), ]; rt-signal-rebased'>ciro/spawn-abort-signal-rebased Unnamed repository; edit this file 'description' to name the repository.
aboutsummaryrefslogtreecommitdiff
path: root/src/linker.lds (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2023-02-13fix(FormData): make String explicit, thanks @dylan-conway (#2065)Gravatar Derrick Farris 1-1/+1
2023-02-13fix(FormData): add string literal operator (#2064)Gravatar Derrick Farris 1-2/+2
2023-02-13Add pretty printer for FormDataGravatar Jarred Sumner 5-1/+101
2023-02-13Add dynamic port assigning to Bun.serve (#2062)Gravatar MichaƂ Warda 3-5/+40
2023-02-13feat(napi): add `napi_get_value_bigint_words` (#2061)Gravatar Derrick Farris 3-0/+44
* feat(napi): add `napi_get_value_bigint_words` * fix(napi): handle `napi_get_value_bigint_words` arr too small
2023-02-13Fixes https://github.com/oven-sh/bun/issues/1456Gravatar Jarred Sumner 8-1/+148