Technical_Reference
SCHEMA_SPEC.
The formal specification for the SyncLangs DSL. Our grammar is defined using LALR(1) principles for deterministic parsing and optimal performance.
Primitive_Mapping
| SyncLangs | Python_Target | TypeScript_Target |
|---|---|---|
| string | str | string |
| int | int | number |
| float | float | number |
| bool | bool | boolean |
| any | Any | any |
Collections_&_Generics
List_Syntax
list<string>
Maps to list[str] in Python and string[] in TS.
Map_Syntax
map<string, int>
Maps to dict[str, int] in Python and Record<string, number> in TS.
Integrity_Control
Every SyncLangs node undergoes semantic validation. We enforce strict naming conventions and resolve all internal pointers before codegen activation.
Global_Watch
The watch daemon utilizes native OS events (Inotify/FSEvents) to maintain a real-time mirror of your type system.