diff options
author | Kevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com> | 2019-01-15 09:19:58 -0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-01-15 12:19:58 -0500 |
commit | c870cf40823a4900278f8ddf03489338c169878b (patch) | |
tree | 80c171f7bb36c988f459a4d0ee248a40d3feb34b /libdeno/internal.h | |
parent | ac6ac5037ff53f4e7b9693aeed24f1e3ef1339ad (diff) |
Add --prefetch flag for deps prefetch without running (#1475)
Diffstat (limited to 'libdeno/internal.h')
-rw-r--r-- | libdeno/internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdeno/internal.h b/libdeno/internal.h index ee783d998..3019bc364 100644 --- a/libdeno/internal.h +++ b/libdeno/internal.h @@ -145,7 +145,7 @@ void DeleteDataRef(DenoIsolate* d, int32_t req_id); bool Execute(v8::Local<v8::Context> context, const char* js_filename, const char* js_source); bool ExecuteMod(v8::Local<v8::Context> context, const char* js_filename, - const char* js_source); + const char* js_source, bool resolve_only); } // namespace deno |