diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-07-26 17:54:22 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-07-29 00:22:39 -0400 |
commit | 4d386e9e1c79d557cae6af58e6df85eb470c1e0c (patch) | |
tree | 2a5bda6620b2d68ea5f06e4c49c9b9a3ad4c76f2 /src/handlers.h | |
parent | 1f093c12f84d269cb68370262d68ff6d515aef2e (diff) |
Implement CodeCache
Diffstat (limited to 'src/handlers.h')
-rw-r--r-- | src/handlers.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/handlers.h b/src/handlers.h index 04aed25ef..067819529 100644 --- a/src/handlers.h +++ b/src/handlers.h @@ -8,5 +8,7 @@ extern "C" { void handle_code_fetch(Deno* d, uint32_t cmd_id, const char* module_specifier, const char* containing_file); +void handle_code_cache(Deno* d, uint32_t cmd_id, const char* filename, + const char* source_code, const char* output_code); } // extern "C" #endif // HANDLERS_H_ |