@tishlang/tish 1.0.19 → 1.0.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/crates/tish/Cargo.toml
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
//! Verify && and || short-circuit (JumpIfFalse before evaluating right side).
|
|
2
|
+
//! Moved from tish_bytecode to break publish cycle (bytecode dev-depends on vm, vm depends on bytecode).
|
|
2
3
|
use std::path::Path;
|
|
3
4
|
use tishlang_bytecode::{compile, compile_unoptimized, Opcode};
|
|
4
5
|
use tishlang_compile::{merge_modules, resolve_project};
|
|
5
|
-
use tishlang_parser::parse;
|
|
6
6
|
use tishlang_opt;
|
|
7
|
+
use tishlang_parser::parse;
|
|
7
8
|
use tishlang_vm;
|
|
8
9
|
|
|
9
10
|
#[test]
|
|
@@ -14,4 +14,3 @@ tishlang_core = { path = "../tish_core", version = ">=0.1" }
|
|
|
14
14
|
tishlang_compile = { path = "../tish_compile", version = ">=0.1" }
|
|
15
15
|
tishlang_parser = { path = "../tish_parser", version = ">=0.1" }
|
|
16
16
|
tishlang_opt = { path = "../tish_opt", version = ">=0.1" }
|
|
17
|
-
tishlang_vm = { path = "../tish_vm", version = ">=0.1" }
|
package/package.json
CHANGED
|
Binary file
|