@tishlang/tish-format 1.0.12 → 1.0.13
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/Cargo.toml +49 -0
- package/LICENSE +13 -0
- package/README.md +138 -0
- package/bin/tish-format +0 -0
- package/crates/js_to_tish/Cargo.toml +11 -0
- package/crates/js_to_tish/README.md +18 -0
- package/crates/js_to_tish/src/error.rs +55 -0
- package/crates/js_to_tish/src/lib.rs +11 -0
- package/crates/js_to_tish/src/span_util.rs +35 -0
- package/crates/js_to_tish/src/transform/expr.rs +610 -0
- package/crates/js_to_tish/src/transform/stmt.rs +503 -0
- package/crates/js_to_tish/src/transform.rs +60 -0
- package/crates/tish/Cargo.toml +54 -0
- package/crates/tish/src/cargo_native_registry.rs +32 -0
- package/crates/tish/src/cli_help.rs +565 -0
- package/crates/tish/src/main.rs +781 -0
- package/crates/tish/src/repl_completion.rs +200 -0
- package/crates/tish/tests/cargo_example_compile.rs +67 -0
- package/crates/tish/tests/fixtures/cargo_example_project/Cargo.toml +3 -0
- package/crates/tish/tests/fixtures/cargo_example_project/crates/demo-shim/Cargo.toml +11 -0
- package/crates/tish/tests/fixtures/cargo_example_project/crates/demo-shim/src/lib.rs +12 -0
- package/crates/tish/tests/fixtures/cargo_example_project/package.json +10 -0
- package/crates/tish/tests/fixtures/cargo_example_project/src/main.tish +3 -0
- package/crates/tish/tests/integration_test.rs +1095 -0
- package/crates/tish/tests/run_optimize_stdout_parity.rs +50 -0
- package/crates/tish/tests/shortcircuit.rs +65 -0
- package/crates/tish_ast/Cargo.toml +9 -0
- package/crates/tish_ast/src/ast.rs +620 -0
- package/crates/tish_ast/src/lib.rs +5 -0
- package/crates/tish_build_utils/Cargo.toml +11 -0
- package/crates/tish_build_utils/src/lib.rs +577 -0
- package/crates/tish_builtins/Cargo.toml +20 -0
- package/crates/tish_builtins/src/array.rs +441 -0
- package/crates/tish_builtins/src/construct.rs +159 -0
- package/crates/tish_builtins/src/globals.rs +213 -0
- package/crates/tish_builtins/src/helpers.rs +35 -0
- package/crates/tish_builtins/src/lib.rs +16 -0
- package/crates/tish_builtins/src/math.rs +89 -0
- package/crates/tish_builtins/src/object.rs +36 -0
- package/crates/tish_builtins/src/string.rs +647 -0
- package/crates/tish_builtins/src/symbol.rs +83 -0
- package/crates/tish_bytecode/Cargo.toml +17 -0
- package/crates/tish_bytecode/src/chunk.rs +96 -0
- package/crates/tish_bytecode/src/compiler.rs +1760 -0
- package/crates/tish_bytecode/src/encoding.rs +100 -0
- package/crates/tish_bytecode/src/lib.rs +19 -0
- package/crates/tish_bytecode/src/opcode.rs +142 -0
- package/crates/tish_bytecode/src/peephole.rs +189 -0
- package/crates/tish_bytecode/src/serialize.rs +163 -0
- package/crates/tish_bytecode/tests/break_continue_bytecode.rs +44 -0
- package/crates/tish_bytecode/tests/constant_folding.rs +84 -0
- package/crates/tish_bytecode/tests/sort_optimization.rs +31 -0
- package/crates/tish_compile/Cargo.toml +26 -0
- package/crates/tish_compile/src/codegen.rs +5332 -0
- package/crates/tish_compile/src/infer.rs +292 -0
- package/crates/tish_compile/src/lib.rs +164 -0
- package/crates/tish_compile/src/resolve.rs +1388 -0
- package/crates/tish_compile/src/types.rs +501 -0
- package/crates/tish_compile_js/Cargo.toml +18 -0
- package/crates/tish_compile_js/examples/jsx_vdom_smoke.tish +8 -0
- package/crates/tish_compile_js/src/codegen.rs +871 -0
- package/crates/tish_compile_js/src/error.rs +20 -0
- package/crates/tish_compile_js/src/lib.rs +26 -0
- package/crates/tish_compile_js/src/tests_jsx.rs +350 -0
- package/crates/tish_compiler_wasm/Cargo.toml +21 -0
- package/crates/tish_compiler_wasm/src/lib.rs +57 -0
- package/crates/tish_compiler_wasm/src/resolve_virtual.rs +473 -0
- package/crates/tish_core/Cargo.toml +26 -0
- package/crates/tish_core/src/console_style.rs +160 -0
- package/crates/tish_core/src/json.rs +387 -0
- package/crates/tish_core/src/lib.rs +17 -0
- package/crates/tish_core/src/macros.rs +36 -0
- package/crates/tish_core/src/uri.rs +118 -0
- package/crates/tish_core/src/value.rs +696 -0
- package/crates/tish_core/src/vmref.rs +178 -0
- package/crates/tish_cranelift/Cargo.toml +19 -0
- package/crates/tish_cranelift/src/lib.rs +43 -0
- package/crates/tish_cranelift/src/link.rs +117 -0
- package/crates/tish_cranelift/src/lower.rs +85 -0
- package/crates/tish_cranelift_runtime/Cargo.toml +25 -0
- package/crates/tish_cranelift_runtime/src/lib.rs +45 -0
- package/crates/tish_eval/Cargo.toml +45 -0
- package/crates/tish_eval/src/eval.rs +3717 -0
- package/crates/tish_eval/src/http.rs +188 -0
- package/crates/tish_eval/src/lib.rs +99 -0
- package/crates/tish_eval/src/natives.rs +399 -0
- package/crates/tish_eval/src/promise.rs +179 -0
- package/crates/tish_eval/src/regex.rs +299 -0
- package/crates/tish_eval/src/timers.rs +120 -0
- package/crates/tish_eval/src/value.rs +318 -0
- package/crates/tish_eval/src/value_convert.rs +111 -0
- package/crates/tish_fmt/Cargo.toml +16 -0
- package/crates/tish_fmt/src/bin/tish-fmt.rs +41 -0
- package/crates/tish_fmt/src/lib.rs +2101 -0
- package/crates/tish_jsx_web/Cargo.toml +9 -0
- package/crates/tish_jsx_web/README.md +5 -0
- package/crates/tish_jsx_web/src/lib.rs +2 -0
- package/crates/tish_lexer/Cargo.toml +9 -0
- package/crates/tish_lexer/src/lib.rs +716 -0
- package/crates/tish_lexer/src/token.rs +163 -0
- package/crates/tish_lint/Cargo.toml +18 -0
- package/crates/tish_lint/src/bin/tish-lint.rs +195 -0
- package/crates/tish_lint/src/lib.rs +289 -0
- package/crates/tish_llvm/Cargo.toml +13 -0
- package/crates/tish_llvm/src/lib.rs +115 -0
- package/crates/tish_lsp/Cargo.toml +25 -0
- package/crates/tish_lsp/README.md +26 -0
- package/crates/tish_lsp/src/builtin_goto.rs +362 -0
- package/crates/tish_lsp/src/import_goto.rs +562 -0
- package/crates/tish_lsp/src/main.rs +1046 -0
- package/crates/tish_native/Cargo.toml +16 -0
- package/crates/tish_native/src/build.rs +427 -0
- package/crates/tish_native/src/config.rs +48 -0
- package/crates/tish_native/src/lib.rs +416 -0
- package/crates/tish_opt/Cargo.toml +13 -0
- package/crates/tish_opt/src/lib.rs +943 -0
- package/crates/tish_parser/Cargo.toml +11 -0
- package/crates/tish_parser/src/lib.rs +332 -0
- package/crates/tish_parser/src/parser.rs +2304 -0
- package/crates/tish_pg/Cargo.toml +34 -0
- package/crates/tish_pg/README.md +38 -0
- package/crates/tish_pg/src/error.rs +52 -0
- package/crates/tish_pg/src/lib.rs +955 -0
- package/crates/tish_resolve/Cargo.toml +13 -0
- package/crates/tish_resolve/src/lib.rs +3561 -0
- package/crates/tish_resolve/src/pos.rs +141 -0
- package/crates/tish_runtime/Cargo.toml +96 -0
- package/crates/tish_runtime/src/http.rs +1298 -0
- package/crates/tish_runtime/src/http_fetch.rs +471 -0
- package/crates/tish_runtime/src/http_hyper.rs +418 -0
- package/crates/tish_runtime/src/http_prefork.rs +189 -0
- package/crates/tish_runtime/src/lib.rs +1192 -0
- package/crates/tish_runtime/src/native_promise.rs +15 -0
- package/crates/tish_runtime/src/promise.rs +248 -0
- package/crates/tish_runtime/src/promise_io.rs +38 -0
- package/crates/tish_runtime/src/timers.rs +166 -0
- package/crates/tish_runtime/src/ws.rs +761 -0
- package/crates/tish_runtime/tests/fetch_readable_stream.rs +102 -0
- package/crates/tish_ui/Cargo.toml +17 -0
- package/crates/tish_ui/src/jsx.rs +682 -0
- package/crates/tish_ui/src/lib.rs +20 -0
- package/crates/tish_ui/src/runtime/hooks.rs +569 -0
- package/crates/tish_ui/src/runtime/mod.rs +180 -0
- package/crates/tish_vm/Cargo.toml +47 -0
- package/crates/tish_vm/src/lib.rs +39 -0
- package/crates/tish_vm/src/vm.rs +2192 -0
- package/crates/tish_vm/tests/fixtures/or_string_cmd.tish +2 -0
- package/crates/tish_vm/tests/lexical_scope_declare.rs +34 -0
- package/crates/tish_vm/tests/peephole_jump_chain_logical_or.rs +150 -0
- package/crates/tish_wasm/Cargo.toml +15 -0
- package/crates/tish_wasm/src/lib.rs +424 -0
- package/crates/tish_wasm_runtime/Cargo.toml +37 -0
- package/crates/tish_wasm_runtime/src/gpu.rs +413 -0
- package/crates/tish_wasm_runtime/src/lib.rs +42 -0
- package/crates/tishlang_cargo_bindgen/Cargo.toml +26 -0
- package/crates/tishlang_cargo_bindgen/src/classify.rs +263 -0
- package/crates/tishlang_cargo_bindgen/src/discover.rs +125 -0
- package/crates/tishlang_cargo_bindgen/src/infer.rs +382 -0
- package/crates/tishlang_cargo_bindgen/src/lib.rs +349 -0
- package/crates/tishlang_cargo_bindgen/src/main.rs +167 -0
- package/crates/tishlang_cargo_bindgen/src/metadata.rs +117 -0
- package/justfile +268 -0
- package/package.json +1 -1
- package/platform/darwin-arm64/tish-fmt +0 -0
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
//! ReadableStream + reader.read() chunk boundaries over local HTTP.
|
|
2
|
+
#![cfg(feature = "http")]
|
|
3
|
+
|
|
4
|
+
use std::io::{Read, Write};
|
|
5
|
+
use std::net::TcpListener;
|
|
6
|
+
use std::thread;
|
|
7
|
+
use std::time::Duration;
|
|
8
|
+
|
|
9
|
+
use tishlang_core::Value;
|
|
10
|
+
use tishlang_runtime::{await_promise, fetch_promise};
|
|
11
|
+
|
|
12
|
+
fn chunked_body_server(listener: TcpListener) {
|
|
13
|
+
let (mut stream, _) = listener.accept().expect("accept");
|
|
14
|
+
let _ = stream.set_read_timeout(Some(Duration::from_secs(2)));
|
|
15
|
+
let mut buf = vec![0u8; 512];
|
|
16
|
+
let _ = stream.read(&mut buf);
|
|
17
|
+
|
|
18
|
+
let _ = stream.write_all(b"HTTP/1.1 200 OK\r\nTransfer-Encoding: chunked\r\n\r\n");
|
|
19
|
+
let _ = stream.write_all(b"3\r\nabc\r\n");
|
|
20
|
+
let _ = stream.flush();
|
|
21
|
+
thread::sleep(Duration::from_millis(40));
|
|
22
|
+
let _ = stream.write_all(b"3\r\ndef\r\n0\r\n\r\n");
|
|
23
|
+
let _ = stream.flush();
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
fn byte_array_to_vec(v: &Value) -> Vec<u8> {
|
|
27
|
+
match v {
|
|
28
|
+
Value::Array(a) => a
|
|
29
|
+
.borrow()
|
|
30
|
+
.iter()
|
|
31
|
+
.filter_map(|x| match x {
|
|
32
|
+
Value::Number(n) => Some(*n as u8),
|
|
33
|
+
_ => None,
|
|
34
|
+
})
|
|
35
|
+
.collect(),
|
|
36
|
+
_ => vec![],
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
#[test]
|
|
41
|
+
fn fetch_readable_stream_read_chunks() {
|
|
42
|
+
let listener = TcpListener::bind("127.0.0.1:0").expect("bind");
|
|
43
|
+
let port = listener.local_addr().unwrap().port();
|
|
44
|
+
let th = thread::spawn(move || chunked_body_server(listener));
|
|
45
|
+
|
|
46
|
+
let url = format!("http://127.0.0.1:{}/c", port);
|
|
47
|
+
let prom = fetch_promise(vec![Value::String(url.into())]);
|
|
48
|
+
let resp = await_promise(prom);
|
|
49
|
+
|
|
50
|
+
let obj = match &resp {
|
|
51
|
+
Value::Object(o) => o.borrow(),
|
|
52
|
+
_ => panic!("expected object response, got {:?}", resp),
|
|
53
|
+
};
|
|
54
|
+
assert!(obj
|
|
55
|
+
.strings
|
|
56
|
+
.get(&std::sync::Arc::from("ok"))
|
|
57
|
+
.map(|v| matches!(v, Value::Bool(true)))
|
|
58
|
+
.unwrap_or(false));
|
|
59
|
+
|
|
60
|
+
let body = obj
|
|
61
|
+
.strings
|
|
62
|
+
.get(&std::sync::Arc::from("body"))
|
|
63
|
+
.expect("body");
|
|
64
|
+
let stream = match body {
|
|
65
|
+
Value::Opaque(s) => s.as_ref(),
|
|
66
|
+
_ => panic!("expected ReadableStream opaque"),
|
|
67
|
+
};
|
|
68
|
+
let reader_val = stream.get_method("getReader").expect("getReader")(&[]);
|
|
69
|
+
let reader = match reader_val {
|
|
70
|
+
Value::Opaque(r) => r,
|
|
71
|
+
_ => panic!("expected reader opaque, got {:?}", reader_val),
|
|
72
|
+
};
|
|
73
|
+
|
|
74
|
+
let mut acc = Vec::new();
|
|
75
|
+
loop {
|
|
76
|
+
let read_p = reader.get_method("read").expect("read")(&[]);
|
|
77
|
+
let chunk = await_promise(read_p);
|
|
78
|
+
let (done, chunk_bytes) = match chunk {
|
|
79
|
+
Value::Object(o) => {
|
|
80
|
+
let m = o.borrow();
|
|
81
|
+
let done = match m.strings.get(&std::sync::Arc::from("done")) {
|
|
82
|
+
Some(Value::Bool(b)) => *b,
|
|
83
|
+
_ => true,
|
|
84
|
+
};
|
|
85
|
+
let bytes = m
|
|
86
|
+
.strings
|
|
87
|
+
.get(&std::sync::Arc::from("value"))
|
|
88
|
+
.map(|v| byte_array_to_vec(v))
|
|
89
|
+
.unwrap_or_default();
|
|
90
|
+
(done, bytes)
|
|
91
|
+
}
|
|
92
|
+
_ => panic!("expected read result object"),
|
|
93
|
+
};
|
|
94
|
+
if done {
|
|
95
|
+
break;
|
|
96
|
+
}
|
|
97
|
+
acc.extend(chunk_bytes);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
th.join().expect("server");
|
|
101
|
+
assert_eq!(acc, b"abcdef");
|
|
102
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
[package]
|
|
2
|
+
name = "tishlang_ui"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
edition = "2021"
|
|
5
|
+
description = "Shared JSX lowering and UI runtime (vnode, hooks, host protocol) for Tish"
|
|
6
|
+
|
|
7
|
+
license-file = { workspace = true }
|
|
8
|
+
repository = { workspace = true }
|
|
9
|
+
|
|
10
|
+
[features]
|
|
11
|
+
default = ["runtime"]
|
|
12
|
+
compiler = ["dep:tishlang_ast"]
|
|
13
|
+
runtime = ["dep:tishlang_core"]
|
|
14
|
+
|
|
15
|
+
[dependencies]
|
|
16
|
+
tishlang_ast = { path = "../tish_ast", version = ">=0.1", optional = true }
|
|
17
|
+
tishlang_core = { path = "../tish_core", version = ">=0.1", optional = true }
|