948 Commits

Author SHA1 Message Date
01ceecd7df Add minimal HTTP server and shared network type packages 2026-04-26 10:09:25 +03:00
79b015ee56 Fix callable return inference regressions 2026-04-25 19:07:10 +03:00
eba7158330 Fix SPA sample links and sample doc publishing 2026-04-25 16:46:51 +03:00
66b8806b11 Add runnable DB serialization example 2026-04-25 16:23:08 +03:00
92e9325f40 Add SQL object expansion serialization support 2026-04-25 16:09:30 +03:00
50e34e520e Add DB decode annotations and preserved declaration metadata 2026-04-25 13:36:33 +03:00
2abe7e2f96 Add typed canonical JSON encoding 2026-04-25 00:36:18 +03:00
2bedaa0969 Add canonical Json format and external format binding 2026-04-25 00:03:00 +03:00
9735774efd v1.5.5 release 1.5.5 2026-04-23 15:18:47 +03:00
14214e91e1 Fix escaping immutable closure captures 2026-04-22 18:50:49 +03:00
0f5343fa17 Add VPS deployment target and Ansible provisioning for lynglang.com
- deploy_site now defaults to new VPS (94.130.36.94, /var/www/lynglang);
  use --old to deploy to d.lynglang.com as before
- infra/setup_vps.yml: Ansible playbook installs nginx + certbot, obtains
  SSL cert for lynglang.com, fixes Debian buster EOL apt sources
- infra/inventory.ini and infra/templates/nginx_lynglang.conf.j2 included

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-22 12:31:01 +03:00
d0f51928de fixed wrong error message in val ++/-- 2026-04-22 08:56:02 +03:00
0973a6afeb Fix JVM import caching and class/object bytecode dispatch 2026-04-21 23:25:07 +03:00
953f237ca3 Optimize primitive list fill capacity and append 2026-04-21 21:37:04 +03:00
fbb5688696 Drive higher-order lambda inlining from call metadata 2026-04-21 20:51:16 +03:00
f4ab2ebab4 Extend lambda inlining to getOrPut and implicit it calls 2026-04-21 19:20:25 +03:00
0c3242cbd8 Generalize higher-order lambda inlining 2026-04-21 19:12:16 +03:00
1d5caaa836 Broaden lambda method inlining with captures 2026-04-21 19:07:05 +03:00
3be2892025 Use fast compiled callbacks in dynamic and flow helpers 2026-04-21 18:06:31 +03:00
c80900c503 Prevent cross-script module slot aliasing 2026-04-21 17:34:00 +03:00
ee634c8dff Extend generic fast callable entry points 2026-04-21 17:26:53 +03:00
6c91b77a85 Use fast lambda calls in scope facade 2026-04-21 16:43:02 +03:00
3721ee8332 Fast-path compiled lambda calls with args 2026-04-21 16:04:04 +03:00
97990f00ce Cover when-based exact callable fast paths 2026-04-21 14:37:27 +03:00
80693e7690 Inline exact lambdas through wrapper expressions 2026-04-21 14:36:18 +03:00
029fe874fa Propagate exact callable refs across expressions 2026-04-21 14:33:23 +03:00
ffa64d691b Use direct calls for constant constructors 2026-04-21 13:30:09 +03:00
30c9a5a565 Propagate exact lambda refs across bytecode slots 2026-04-21 13:20:27 +03:00
db3a780645 Generalize bytecode fast-call dispatch 2026-04-21 13:09:50 +03:00
fc7d26ee4b Fast-path bytecode statement execution 2026-04-21 11:39:47 +03:00
a61b5a31be Add non-suspending fast calls for bytecode callables 2026-04-21 11:35:20 +03:00
33d170f525 Optimize fast-path bytecode lambda invocation 2026-04-21 11:29:14 +03:00
f72cdfdf83 Inline simple lambdas in bytecode fast paths 2026-04-21 09:05:18 +03:00
10fa4de4fa regression fix 2026-04-20 18:48:28 +03:00
4acee56de8 small optimization of List.fill 2026-04-20 14:09:09 +03:00
87060c7eb7 +inference bugs
+List.ensureCapacity
optimized List.fill
2026-04-20 13:56:47 +03:00
6ba128f7ba fixed some more inference bugs 2026-04-20 12:23:17 +03:00
a8f73dc8bd added LaunchPool 2026-04-18 23:37:21 +03:00
145c3ae34a Add completeExceptionally, cancelAndJoin, and refine LaunchPool spec
- CompletableDeferred.completeExceptionally(exception): fails the deferred
  with a Lyng exception; the original exception object is preserved as
  errorObject so assertThrows/catch see the correct class (works for both
  built-in ObjException and user-declared class instances)
- LaunchPool: add maxQueueSize parameter (suspends launch when full),
  add cancelAndJoin() for graceful shutdown that waits for running tasks,
  clarify all semantics in the extern declaration comments
- Two tests for completeExceptionally (built-in and user-defined exception)
- Fix parallelism.md channel doc-test to be illustration-only (avoid
  flakiness from coroutine scheduling in the doc-test runner)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-18 03:00:40 +03:00
f9a07f176a Add Channel primitive for coroutine inter-task communication
Exposes Kotlin's Channel<Obj> to Lyng scripts as a first-class type
with rendezvous, buffered, and unlimited capacity modes. Supports
suspending send/receive, non-suspending tryReceive, close/drain
semantics, and isClosedForSend/isClosedForReceive properties.

Also fixes a pre-existing typo in BookTest.kt that blocked JVM test
compilation, and adds Channel reference docs and a parallelism.md section.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-18 02:28:55 +03:00
30e56946a0 improved JDBC provider for lyng.io.db 2026-04-18 02:06:29 +03:00
49fc700233 Detach materialized SQL rows from transaction lifetime 2026-04-17 20:38:40 +03:00
07cb5a519c Add JDBC and websocket/native follow-up changes 2026-04-16 23:35:15 +03:00
8f66cd7680 Fix lynglib binding regressions and green test suite 2026-04-16 23:34:45 +03:00
bb2119b1d1 ignores 2026-04-16 22:12:19 +03:00
64273ac60a Add JDBC database provider for JVM 2026-04-16 22:10:36 +03:00
ee392daa13 another sample 2026-04-16 13:35:12 +03:00
0affa92674 better SQL example 2026-04-16 01:08:31 +03:00
a2e3f80ab6 better sql exaple, some inference bugs fixed 2026-04-16 00:54:00 +03:00
f8d2533b48 Make SQLite native linker lookup portable 2026-04-15 23:47:38 +03:00