Merge branch 'develop' into feature-nested-sets

This commit is contained in:
ThaumRystra
2023-11-11 10:01:34 +02:00
40 changed files with 562 additions and 394 deletions

View File

@@ -10,7 +10,6 @@ import operator from './operator';
import parenthesis from './parenthesis';
import roll from './roll';
import rollArray from './rollArray';
import symbol from './symbol';
import unaryOperator from './unaryOperator';
export default Object.freeze({
@@ -26,6 +25,7 @@ export default Object.freeze({
parenthesis,
roll,
rollArray,
symbol,
// What used to be symbols are now just treated as accessors without a path
symbol: accessor,
unaryOperator,
});