diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2019-02-26 19:29:45 +0100 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-02-26 13:29:45 -0500 |
commit | 5dfbbbb07a8f484dca27bbe0d7a3bafb0bdb91fd (patch) | |
tree | c4fc86d16e5747733e9d7a18652e791b9a255766 /libdeno/deno.h | |
parent | 8dee6ea454deb05e69bfaed39a230950c9100c37 (diff) |
Add import.meta.main (#1835)
Diffstat (limited to 'libdeno/deno.h')
-rw-r--r-- | libdeno/deno.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdeno/deno.h b/libdeno/deno.h index e48dd8cbe..6be0b5625 100644 --- a/libdeno/deno.h +++ b/libdeno/deno.h @@ -83,7 +83,7 @@ void deno_terminate_execution(Deno* d); typedef int deno_mod; // Returns zero on error - check deno_last_exception(). -deno_mod deno_mod_new(Deno* d, const char* name, const char* source); +deno_mod deno_mod_new(Deno* d, bool main, const char* name, const char* source); size_t deno_mod_imports_len(Deno* d, deno_mod id); |