diff options
author | 2021-10-29 23:36:55 -0700 | |
---|---|---|
committer | 2021-10-29 23:36:55 -0700 | |
commit | 25ac773cf34ae4744225eca48877bfc8c74f5a43 (patch) | |
tree | 1ed0746cdbce2b67498cc18fbbb8182b5c748f4d | |
parent | ecb069ac85c02b3ce251c6680d91697fe9da8cce (diff) | |
download | bun-25ac773cf34ae4744225eca48877bfc8c74f5a43.tar.gz bun-25ac773cf34ae4744225eca48877bfc8c74f5a43.tar.zst bun-25ac773cf34ae4744225eca48877bfc8c74f5a43.zip |
[Bun.js] Add support for Top Level Await!
-rw-r--r-- | src/runtime.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/runtime.zig b/src/runtime.zig index e0dd3bab7..ef4910afd 100644 --- a/src/runtime.zig +++ b/src/runtime.zig @@ -206,6 +206,7 @@ pub const Runtime = struct { hot_module_reloading_entry: bool = false, keep_names_for_arrow_functions: bool = true, is_macro_runtime: bool = false, + top_level_await: bool = false, }; pub const Names = struct { |