name embedded fragments

This commit is contained in:
BlackMATov
2025-02-24 05:46:55 +07:00
parent 875b9a65e5
commit bac57f3cdc
3 changed files with 31 additions and 0 deletions

View File

@@ -23,6 +23,7 @@
```
TAG :: fragment
NAME :: fragment
DEFAULT :: fragment
CONSTRUCT :: fragment

View File

@@ -3,6 +3,7 @@
## Backlog
- add destroing policies (fragments, phases, systems)
- add debug view for chunks with help of NAME fragment traits
## Known issues

View File

@@ -7056,6 +7056,35 @@ __lua_assert(__evolved_insert(__CONSTRUCT, __ON_REMOVE, __update_fragment_constr
---
---
__lua_assert(__evolved_insert(__TAG, __NAME, 'TAG'))
__lua_assert(__evolved_insert(__NAME, __NAME, 'NAME'))
__lua_assert(__evolved_insert(__DEFAULT, __NAME, 'DEFAULT'))
__lua_assert(__evolved_insert(__CONSTRUCT, __NAME, 'CONSTRUCT'))
__lua_assert(__evolved_insert(__INCLUDES, __NAME, 'INCLUDES'))
__lua_assert(__evolved_insert(__EXCLUDES, __NAME, 'EXCLUDES'))
__lua_assert(__evolved_insert(__ON_SET, __NAME, 'ON_SET'))
__lua_assert(__evolved_insert(__ON_ASSIGN, __NAME, 'ON_ASSIGN'))
__lua_assert(__evolved_insert(__ON_INSERT, __NAME, 'ON_INSERT'))
__lua_assert(__evolved_insert(__ON_REMOVE, __NAME, 'ON_REMOVE'))
__lua_assert(__evolved_insert(__PHASE, __NAME, 'PHASE'))
__lua_assert(__evolved_insert(__AFTER, __NAME, 'AFTER'))
__lua_assert(__evolved_insert(__QUERY, __NAME, 'QUERY'))
__lua_assert(__evolved_insert(__EXECUTE, __NAME, 'EXECUTE'))
__lua_assert(__evolved_insert(__PROLOGUE, __NAME, 'PROLOGUE'))
__lua_assert(__evolved_insert(__EPILOGUE, __NAME, 'EPILOGUE'))
---
---
---
---
---
__lua_assert(__evolved_insert(__TAG, __TAG))
__lua_assert(__evolved_insert(__INCLUDES, __CONSTRUCT, __component_list))