diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-10-13 13:35:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-13 13:35:35 +0200 |
commit | 0bd3cea0ff6d2d4840c0df2938b5ae5c5d7cc4bd (patch) | |
tree | fa9a635db4d34e0a30e13d37f40a0d7a4f92f44a /cli/ops/runtime.rs | |
parent | 000ac5c40b71c38cc26a36e579fbb0936f0573d7 (diff) |
refactor(cli): rename GlobalState to ProgramState (#7914)
Diffstat (limited to 'cli/ops/runtime.rs')
-rw-r--r-- | cli/ops/runtime.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/ops/runtime.rs b/cli/ops/runtime.rs index 3f7398479..3d7350361 100644 --- a/cli/ops/runtime.rs +++ b/cli/ops/runtime.rs @@ -29,7 +29,7 @@ fn op_start( _args: Value, _zero_copy: &mut [ZeroCopyBuf], ) -> Result<Value, AnyError> { - let gs = &super::global_state(state); + let gs = &super::program_state(state); Ok(json!({ // TODO(bartlomieju): `cwd` field is not used in JS, remove? |