1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-03 12:58:54 -05:00
This commit is contained in:
Nikola Ristic 2019-05-11 22:10:19 +02:00 committed by Ryan Dahl
parent aba952397a
commit 551b56dd85

View file

@ -1,7 +1,7 @@
# Deno Core
This Rust crate contains the essential V8 bindings for Deno's command-line
interface (Deno CLI). The main abstraction here is the Isolate which proivdes a
interface (Deno CLI). The main abstraction here is the Isolate which provides a
way to execute JavaScript. The Isolate is modeled as a
`Future<Item=(), Error=JSError>` which completes once all of its ops have
completed. The user must define what an Op is by implementing the `Dispatch`