summaryrefslogtreecommitdiff
path: root/libdeno/from_snapshot.cc
AgeCommit message (Collapse)Author
2018-10-08Abide by the rules when passing Isolate between c and rustBert 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-08Rename Deno.data to Deno.user_dataBert Belder
Also use the correct rust type for it.
2018-08-19chore: move libdeno files to //libdeno/Yoshiya Hinosawa