refactored action engine into individual files

This commit is contained in:
Thaum Rystra
2024-02-15 22:30:50 +02:00
parent 19f7d40386
commit aee9d6b8cb
63 changed files with 1854 additions and 2898 deletions

View File

@@ -93,7 +93,7 @@ const accessor = {
}
},
toString(node) {
if (!node.path) return `${node.name}`;
if (!node.path?.length) return `${node.name}`;
return `${node.name}.${node.path.join('.')}`;
}
}