diff options
| author | nodist <kevin.comas.git@gmail.com> | 2026-06-26 11:46:36 -0400 |
|---|---|---|
| committer | nodist <kevin.comas.git@gmail.com> | 2026-06-26 11:46:36 -0400 |
| commit | 6f507405ac3b0a128c63134997849203e3493a91 (patch) | |
| tree | 2804d44834ee4f9bb452f5458a871eb04ebb1910 /docs/type_system | |
| parent | 88646efb1c2615e6d8ff0a2eae047a5ed2a31dd4 (diff) | |
remove global name tree
Diffstat (limited to 'docs/type_system')
| -rw-r--r-- | docs/type_system/index.md | 4 | ||||
| -rw-r--r-- | docs/type_system/list.md | 2 | ||||
| -rw-r--r-- | docs/type_system/name.md | 2 | ||||
| -rw-r--r-- | docs/type_system/symbol.md | 2 | ||||
| -rw-r--r-- | docs/type_system/var.md | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/docs/type_system/index.md b/docs/type_system/index.md index 2d9e9c2..07b9c69 100644 --- a/docs/type_system/index.md +++ b/docs/type_system/index.md @@ -86,8 +86,6 @@ Denotes that a field that does not resolve to anything ## Function Templates -* #### [Var](./var.md) - * #### [Function](./function.md) * #### [Task](./task.md) @@ -104,6 +102,8 @@ Denotes that a field that does not resolve to anything * #### [Op](./op.md) +* #### [Var](./var.md) + * #### [List](./list.md) * #### [Lock](./lock.md) diff --git a/docs/type_system/list.md b/docs/type_system/list.md index 27f3a6e..be4a004 100644 --- a/docs/type_system/list.md +++ b/docs/type_system/list.md @@ -3,5 +3,5 @@ --- ```text -List[[STATEMENT | DEFINE | ACTION | LOOP | IF | MATCH | MUTATION] Parent; VARS; TARGET; STATEMENTS ...] +List[[STATEMENT | DEFINE | ACTION | LOOP | IF | MATCH | MUTATION] Parent; VAR_TREE; TARGET; STATEMENTS ...] ``` diff --git a/docs/type_system/name.md b/docs/type_system/name.md index 10a6ac3..1faeb3c 100644 --- a/docs/type_system/name.md +++ b/docs/type_system/name.md @@ -3,5 +3,5 @@ --- ```text -Name[[UNKNOWN | IS_TYPE | ALIAS_TYPE | UNIQUE_TYPE] TYPE; NAME_IDENTIFIER] +Name[[UNKNOWN | IS_TYPE | ALIAS_TYPE | UNIQUE_TYPE] TYPE] ``` diff --git a/docs/type_system/symbol.md b/docs/type_system/symbol.md index 7906852..5fb1c5e 100644 --- a/docs/type_system/symbol.md +++ b/docs/type_system/symbol.md @@ -3,5 +3,5 @@ --- ```text -Symbol[[] TARGET; TYPE; NAME_IDENTIFIER] +Symbol[[] TARGET; TYPE] ``` diff --git a/docs/type_system/var.md b/docs/type_system/var.md index 206b890..77e312c 100644 --- a/docs/type_system/var.md +++ b/docs/type_system/var.md @@ -3,5 +3,5 @@ --- ```text -Var[[ARG | LOCAL | LOOP | IF | MATCH | MUTATE] TYPE; Parent; VAR_IDENTIFIER] +Var[[SCOPE | ARG | LOCAL | LOOP | IF | MATCH | MUTATE] TYPE; HASH; ID; LEFT_VAR; RIGHT_VAR] ``` |
