diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-09-14 23:49:12 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-14 23:49:12 -0400 |
commit | 055dfe2ff437099aef105fe4beab0f0c8cc53506 (patch) | |
tree | 5a3ea8f59d665b8e5d6ec87c3f8f6f26039b1021 /core/bindings.rs | |
parent | 85b98f6dd8aaf63acef58fea904dd81f6e5cbaf6 (diff) |
Make JsRuntimeState private (#7484)
Diffstat (limited to 'core/bindings.rs')
-rw-r--r-- | core/bindings.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/bindings.rs b/core/bindings.rs index 03212f356..782c98bd1 100644 --- a/core/bindings.rs +++ b/core/bindings.rs @@ -2,8 +2,8 @@ use crate::error::AnyError; use crate::error::JsError; +use crate::runtime::JsRuntimeState; use crate::JsRuntime; -use crate::JsRuntimeState; use crate::Op; use crate::OpId; use crate::OpTable; |