aboutsummaryrefslogtreecommitdiff
path: root/test/snippets/multiple-var.js (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2022-11-02Fix $PATH on dev container (#1439)Gravatar João Paquim 2-3/+5
* Fix $PATH for bun on devcontainer * Use cat in dev container postCreateCommand
2022-11-02FixupGravatar Jarred Sumner 1-1/+1
2022-11-02Fix memory leakGravatar Jarred Sumner 3-5/+9
2022-11-02Update ffi.exports.jsGravatar Jarred Sumner 1-2/+2
2022-11-02Add way to know if JSCallback is threadsafeGravatar Jarred Sumner 1-3/+8
2022-11-02[bun:ffi] Add `threadsafe` option to callbacksGravatar Jarred Sumner 4-14/+73
2022-11-02Update ffi.zig (#1449)Gravatar Bram Wasti 1-1/+1
2022-11-02Update README.mdGravatar Jarred Sumner 1-1/+1
2022-11-02Update README.mdGravatar Jarred Sumner 1-2/+2
2022-11-02Update README.mdGravatar Jarred Sumner 1-1/+1
2022-11-02Flip the callback orderGravatar Jarred Sumner 2-32/+20
2022-11-02[bun:ffi] Implement `JSCallback` so C can call into JSGravatar Jarred Sumner 9-231/+659
2022-11-02Improve async function handling code in setTimeout and setIntervalGravatar Jarred Sumner 2-19/+86
Should fix
2022-11-01typescript decorators round 2 (#1445)Gravatar Dylan Conway 12-4/+1123
* __decorateClass, __decorateParam, lit test, wiptest test * decorator factories test * parameter decorator test * test for decorators with constructor parameter properties * Fix issue with `CryptoKey` and `SubtleCrypto` constructors * Limit concurrency for GitHub Actions due to issues with cache poisoning If multiple actions are running, sometimes the cache is poisoned from another action. We need to fix this, but this is an interim measure to make actions less flaky * Make these tests better * Move this to dependencies so the .a files upload * Fixup * temporary fix * Limit concurrency for MacOS Object actions * try againn * againn * Make `"tls"` an explicit object we pass instead of implicit top-level options cc @Electroid @colinhacks * Update server.zig * Prefer `BUN_PORT` over `PORT` * Fix typo in homebrew action * Run homebrew action when release is edited * Check published_at instead of draft in GitHub action * Implement `process.release` * Add missing dependencies to `make devcontainer` * Allow overriding node polyfills via `BUN_OVERRIDE_MODULE_PATH` * Add a stub for io_darwin on linux cc @sno2 hopefully this helps but i'm not sure * Add missing `break` * Download more RAM * feat(core): optimize zig slice (#1408) * feat(core): optimize zig slice * address concerns * Remove webcrypto from vendor-without-check * Update default tsconfig (#1418) Co-authored-by: Colin McDonnell <colinmcd@alum.mit.edu> * Enable `BUN_OVERRIDE_MODULE_PATH` in `bun wiptest` * Upgrade WebKit * space * Support getting cached values and pending activity in the bindings generator * Remove :scissors: function * constructor creation, initializers, handle static and computed fields with decorators * Updating libuwebsockets C API (#1423) * fix for repeated regex match calls and fix for '^' in character classes (#1419) * tests and formatting * fix for ^ in character class * formatting * test for repeated match and exec calls * create oniguruma regex for each exec/test * check errorCode from creating oniguruma regexp and always return {} on failure * oops * call onig_initialize once * fix incorrect escaping, removed unnecessary oniguruma settings * tests for "-" and "^" in character classes * free regex object before returns * force gc for some tests * Update React fizz server (#1432) * Update fizz server * Use production build Co-authored-by: Colin McDonnell <colinmcd@alum.mit.edu> * more decorator tests * optional setup function for loading elements, simulate clicks in lit test * fix createWriteStream (#1433) * fix createWriteStream * remove comment * Update build docs and commands for dev containers (#1438) * Update build documentation for dev containers * Add devcontainer-rebuild make target * Add make devcontainer-sh target * Fix missing .PHONY for vendor-without-check (#1437) * Fix check for ninja on Debian/Ubuntu (#1436) Even though the package is named ninja-build, the ninja binary is still named ninja, so use `which ninja` to check for it * Fix #1410 woops * await on DOMContentLoaded for elements instead of setup function * avoid lowering class if no decorators Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Co-authored-by: Ashcon Partovi <ashcon@partovi.net> Co-authored-by: Carter Snook <cartersnook04@gmail.com> Co-authored-by: Colin McDonnell <colinmcd94@gmail.com> Co-authored-by: Colin McDonnell <colinmcd@alum.mit.edu> Co-authored-by: Ciro Spaciari <ciro.spaciari@gmail.com> Co-authored-by: Lawrence Chen <54008264+lawrencecchen@users.noreply.github.com> Co-authored-by: João Paquim <jpaquim@users.noreply.github.com>
2022-11-01Delete labeler.ymlGravatar Ashcon Partovi 1-14/+0
2022-11-01Delete label-sync.ymlGravatar Ashcon Partovi 1-24/+0
2022-11-01Fix #1410Gravatar Jarred Sumner 1-6/+0
woops
2022-11-01Fix check for ninja on Debian/Ubuntu (#1436)Gravatar João Paquim 1-1/+1
Even though the package is named ninja-build, the ninja binary is still named ninja, so use `which ninja` to check for it
2022-11-01Fix missing .PHONY for vendor-without-check (#1437)Gravatar João Paquim 1-1/+1
2022-11-01Update build docs and commands for dev containers (#1438)Gravatar João Paquim 4-22/+55
* Update build documentation for dev containers * Add devcontainer-rebuild make target * Add make devcontainer-sh target
2022-11-01fix createWriteStream (#1433)Gravatar Lawrence Chen 2-9/+104
* fix createWriteStream * remove comment
2022-10-31Update React fizz server (#1432)Gravatar Colin McDonnell 3-1752/+6688
* Update fizz server * Use production build Co-authored-by: Colin McDonnell <colinmcd@alum.mit.edu>
2022-10-31fix for repeated regex match calls and fix for '^' in character classes (#1419)Gravatar Dylan Conway 3-159/+353
* tests and formatting * fix for ^ in character class * formatting * test for repeated match and exec calls * create oniguruma regex for each exec/test * check errorCode from creating oniguruma regexp and always return {} on failure * oops * call onig_initialize once * fix incorrect escaping, removed unnecessary oniguruma settings * tests for "-" and "^" in character classes * free regex object before returns * force gc for some tests
2022-10-30Updating libuwebsockets C API (#1423)Gravatar Ciro Spaciari 4-1008/+1436
2022-10-28Remove :scissors: functionGravatar Jarred Sumner 1-1/+0
2022-10-28Support getting cached values and pending activity in the bindings generatorGravatar Jarred Sumner 1-19/+368
2022-10-28spaceGravatar Jarred Sumner 3-3/+260
2022-10-28Upgrade WebKitGravatar Jarred Sumner 16-205/+348
2022-10-28Enable `BUN_OVERRIDE_MODULE_PATH` in `bun wiptest`Gravatar Jarred Sumner 1-0/+7
2022-10-28Update default tsconfig (#1418)Gravatar Colin McDonnell 1-5/+10
Co-authored-by: Colin McDonnell <colinmcd@alum.mit.edu>
2022-10-28Remove webcrypto from vendor-without-checkGravatar Jarred Sumner 1-2/+2
2022-10-27feat(core): optimize zig slice (#1408)Gravatar Carter Snook 9-75/+96
* feat(core): optimize zig slice * address concerns
2022-10-27Download more RAMGravatar Jarred Sumner 3-3/+0
2022-10-27Add missing `break`Gravatar Jarred Sumner 1-0/+1
2022-10-27Add a stub for io_darwin on linuxGravatar Jarred Sumner 1-0/+12
cc @sno2 hopefully this helps but i'm not sure
2022-10-27Allow overriding node polyfills via `BUN_OVERRIDE_MODULE_PATH`Gravatar Jarred Sumner 5-35/+169
2022-10-27Add missing dependencies to `make devcontainer`Gravatar Jarred Sumner 1-2/+2
2022-10-27Implement `process.release`Gravatar Jarred Sumner 3-0/+49
2022-10-27Check published_at instead of draft in GitHub actionGravatar Ashcon Partovi 1-1/+1
2022-10-27Run homebrew action when release is editedGravatar Ashcon Partovi 1-1/+2
2022-10-27Fix typo in homebrew actionGravatar Ashcon Partovi 1-1/+1
2022-10-26Prefer `BUN_PORT` over `PORT`bun-v0.2.2Gravatar Jarred Sumner 1-1/+1
2022-10-26Update server.zigGravatar Jarred Sumner 1-1/+1
2022-10-26Make `"tls"` an explicit object we pass instead of implicit top-level optionsGravatar Jarred Sumner 2-9/+25
cc @Electroid @colinhacks
2022-10-26againnGravatar Jarred Sumner 3-6/+6
2022-10-26try againnGravatar Jarred Sumner 2-3/+2
2022-10-26Limit concurrency for MacOS Object actionsGravatar Ashcon Partovi 3-0/+3
2022-10-26temporary fixGravatar Jarred Sumner 4-4/+0
2022-10-26FixupGravatar Jarred Sumner 4-5/+5
2022-10-26Move this to dependencies so the .a files uploadGravatar Jarred Sumner 3-6/+4