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.