diff options
Diffstat (limited to 'core/runtime.rs')
-rw-r--r-- | core/runtime.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/runtime.rs b/core/runtime.rs index ecac588ca..0f09926f8 100644 --- a/core/runtime.rs +++ b/core/runtime.rs @@ -329,6 +329,9 @@ impl JsRuntime { self .execute("deno:core/core.js", include_str!("core.js")) .unwrap(); + self + .execute("deno:core/error.js", include_str!("error.js")) + .unwrap(); } } |