mirror of
https://github.com/oven-sh/bun
synced 2026-02-15 05:12:29 +00:00
12 lines
309 B
Zig
12 lines
309 B
Zig
const std = @import("std");
|
|
const fs = @import("fs.zig");
|
|
usingnamespace @import("ast/base.zig");
|
|
|
|
pub const Linker = struct {
|
|
// fs: fs.FileSystem,
|
|
// TODO:
|
|
pub fn requireOrImportMetaForSource(c: Linker, source_index: Ref.Int) RequireOrImportMeta {
|
|
return RequireOrImportMeta{};
|
|
}
|
|
};
|