1. 17 4月, 2019 2 次提交
  2. 11 4月, 2019 1 次提交
  3. 10 4月, 2019 2 次提交
  4. 09 4月, 2019 2 次提交
  5. 08 4月, 2019 2 次提交
    • R
      core: snapshot improvements (#2052) · f7fdb90f
      Ryan Dahl 提交于
      * Moves how snapshots are supplied to the Isolate. Previously they were
        given by Behavior::startup_data() but it was only called once at
        startup. It makes more sense (and simplifies Behavior) to pass it to the
        constructor of Isolate.
      * Adds new libdeno type deno_snapshot instead of overloading
        deno_buf.
      * Adds new libdeno method to delete snapshot deno_snapshot_delete().
      * Renames deno_get_snapshot() to deno_snapshot_new().
      * Makes StartupData hold references to snapshots. This was implicit when
        it previously held a deno_buf but is made explicit now. Note that
        include_bytes!() returns a &'static [u8] and we want to avoid
        copying that.
      f7fdb90f
    • K
      1746a3ac
  6. 03 4月, 2019 1 次提交
  7. 02 4月, 2019 1 次提交
    • A
      Add web worker JS API (#1993) · b0a23beb
      andy finch 提交于
      * Refactored the way worker polling is scheduled and errors are handled.
      * Share the worker future as a Shared
      b0a23beb
  8. 31 3月, 2019 1 次提交
  9. 29 3月, 2019 1 次提交
  10. 28 3月, 2019 1 次提交
  11. 26 3月, 2019 1 次提交
  12. 22 3月, 2019 1 次提交
  13. 21 3月, 2019 1 次提交
  14. 20 3月, 2019 4 次提交
  15. 19 3月, 2019 4 次提交
  16. 14 3月, 2019 1 次提交
  17. 13 3月, 2019 2 次提交
  18. 05 3月, 2019 2 次提交
  19. 04 3月, 2019 1 次提交
  20. 02 3月, 2019 1 次提交
    • A
      Permissions refactor (#1864) · 8c310d3d
      andy finch 提交于
      Refactored permissions to be assignable on a per-isolate 
      basis, and added a fix for #1858 to op_fetch_module_meta_data.
      8c310d3d
  21. 01 3月, 2019 1 次提交
  22. 19 2月, 2019 2 次提交
    • R
      Add window.location · 42408feb
      Ryan Dahl 提交于
      42408feb
    • K
      Add `seek` and implement `Seeker` on `File` (#1797) · 077af20c
      Kevin (Kun) "Kassimo" Qian 提交于
      This patch contains a special hack that circumvents the current tokio
      seek problem.
      
      tokio `seek` is implemented to take ownership of the original File and
      emit a new one in its future, which conflicts with the design of
      ResourceTable.
      
      To avoid the problem, the current hack makes the FsFile resource
      an Option which we could `take` the value ownership out of it. We then
      convert the tokio File into a Rust std File, perform the seek, and then
      put it back into the resource.
      
      This might be able to drop this hack after
      https://github.com/tokio-rs/tokio/pull/785 lands.
      077af20c
  23. 18 2月, 2019 1 次提交
  24. 16 2月, 2019 1 次提交
  25. 15 2月, 2019 1 次提交
  26. 10 2月, 2019 1 次提交
  27. 09 2月, 2019 1 次提交