Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-10-24 | libdeno: deno_new should take a snapshot parameter. | Ryan Dahl | |
2018-10-23 | Switch to getopts for flag parsing (#1080) | Kevin (Kun) "Kassimo" Qian | |
2018-10-19 | format | Bert Belder | |
2018-10-18 | add test case for metrics | Bartek Iwańczuk | |
2018-10-18 | fix metrics logic | Bartek Iwańczuk | |
2018-10-16 | Format | Ryan Dahl | |
2018-10-15 | Exit cleanly on unrecognized arguments (#990) | Andy Hayden | |
Refactor set_flags to return a Result | |||
2018-10-15 | Specify deno_dir location with env var DENO_DIR (#970) | Amos Lim | |
(Use C:\deno instead of c:\deno in appveyor config because it's cloned to c:\ by clone_folder variable in .appveyor.yml. On the other hand, build directory is pointed to C:\ by $(APPVEYOR_BUILD_FOLDER) so that test targets are placed on separated partitions.) | |||
2018-10-12 | Fix promise reject issue (#936) | Kevin (Kun) "Kassimo" Qian | |
2018-10-11 | Add support for --types | Kitson Kelly | |
2018-10-11 | Fix metrics() race condition. (#965) | Ryan Dahl | |
2018-10-11 | Add deno.metrics() | Bartek Iwańczuk | |
2018-10-10 | Clean up Isolate::event_loop with utility function. | Ryan Dahl | |
2018-10-08 | Remove deno_get_data() | Bert Belder | |
Instead, pass the isolate data to the dispatch callback directly. | |||
2018-10-08 | Abide by the rules when passing Isolate between c and rust | Bert Belder | |
Ensure that at most one mutable Isolate reference exists at a time. `deno_execute()` and `deno_respond()` now borrow a reference to the rust-side isolate from the caller. When we need a reference to the isolate while one of these functions is on the stack, `deno_get_data()` can be used to borrow back that reference. | |||
2018-10-08 | Remove ntasks aliasing workaround | Bert Belder | |
2018-10-08 | Rename Deno.data to Deno.user_data | Bert Belder | |
Also use the correct rust type for it. | |||
2018-10-08 | Rename Isolate.ptr to Isolate.libdeno_isolate | Bert Belder | |
2018-10-06 | Make ntasks an atomic counter. | Ryan Dahl | |
Fixes #919. | |||
2018-10-03 | isolate: work around a rust compiler bug | Bert Belder | |
2018-10-03 | timers: remove the old timer implementation | Bert Belder | |
Fixes #878. | |||
2018-10-03 | timers: implement timers in javascript | Bert Belder | |
2018-09-27 | Support zero-copy data in libdeno.send(). (#838) | Ryan Dahl | |
This is a large API refactor of deno.h which replaces deno_send() and deno_set_response() with deno_respond(). It also adds a req_id parameter to the deno_recv_cb. Make writeFile/writeFileSync use it. | |||
2018-09-25 | Add SetGlobalTimeout(). | Ryan Dahl | |
To be used for a timers implementation soon. | |||
2018-09-25 | Make Deno multithreaded. | Ryan Dahl | |
By using the tokio default runtime. This patch makes all of the ops thread safe. Adds libdeno to JS globals to make for easier testing. Preliminary work for #733. | |||
2018-09-22 | Rename deno.argv, libdeno::DenoC and deno_set_flags (#796) | ztplz | |
2018-09-17 | Isolate::execute doesn't need mutability. | Ryan Dahl | |
2018-09-17 | Rename Deno to Isolate and move to own file. | Ryan Dahl | |