diff options
author | 2021-08-27 18:15:37 -0700 | |
---|---|---|
committer | 2021-08-27 18:15:37 -0700 | |
commit | 476bcfdae32b237300faeea6f78e50cf245957e3 (patch) | |
tree | 2971bb96ea201fa5596c1489caca12e26e7cb0de /src | |
parent | 0510d63ee59f334cd16d56a6df5406aee9d7b0e3 (diff) | |
download | bun-476bcfdae32b237300faeea6f78e50cf245957e3.tar.gz bun-476bcfdae32b237300faeea6f78e50cf245957e3.tar.zst bun-476bcfdae32b237300faeea6f78e50cf245957e3.zip |
const
Former-commit-id: 4366e33712174036de02e0446c09abeeb89aec83
Diffstat (limited to 'src')
-rw-r--r-- | src/js_printer.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js_printer.zig b/src/js_printer.zig index 0b546ae09..82c849df9 100644 --- a/src/js_printer.zig +++ b/src/js_printer.zig @@ -176,7 +176,7 @@ const ImportVariant = enum { }; } - pub fn determine(record: *const importRecord.ImportRecord, namespace: Symbol, s_import: *const S.Import) ImportVariant { + pub fn determine(record: *const importRecord.ImportRecord, namespace: *const Symbol, s_import: *const S.Import) ImportVariant { var variant = ImportVariant.path_only; if (record.contains_import_star) { |