diff options
author | Aaron O'Mullan <aaron.omullan@gmail.com> | 2021-10-04 12:34:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-04 12:34:53 +0200 |
commit | ea7a63cd5aafcb20374688a2c7918fdc821ab113 (patch) | |
tree | 933b4dcad3eca9f2dc6e56c30112ad37220fc668 /core/runtime.rs | |
parent | 4a1300edde424f134bd2298d8f30ba3ceb159c16 (diff) |
refactor(core): split opcall into sync/async (#12312)
Diffstat (limited to 'core/runtime.rs')
-rw-r--r-- | core/runtime.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/runtime.rs b/core/runtime.rs index 304ca68db..305052e9a 100644 --- a/core/runtime.rs +++ b/core/runtime.rs @@ -1861,7 +1861,7 @@ pub mod tests { r#" let thrown; try { - Deno.core.opcall(100, null, null, null); + Deno.core.opcallSync(100, null, null); } catch (e) { thrown = e; } |