diff options
| author | Bruce Hill <bitbucket@bruce-hill.com> | 2018-02-13 15:17:45 -0800 |
|---|---|---|
| committer | Bruce Hill <bitbucket@bruce-hill.com> | 2018-02-13 15:18:00 -0800 |
| commit | a9c4b78074d1cf4399e9e2bc9e98d6d0c772ec29 (patch) | |
| tree | 879c3741533247dd19aac7bcf836eefb2618b111 /core | |
| parent | da65c91cb62a29e74c00bdd8b8f8066fc1f61489 (diff) | |
Initial branch of switching to using immutable types.
Diffstat (limited to 'core')
| -rw-r--r-- | core/control_flow.nom | 2 | ||||
| -rw-r--r-- | core/operators.nom | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/control_flow.nom b/core/control_flow.nom index 4066a97..d40c349 100644 --- a/core/control_flow.nom +++ b/core/control_flow.nom @@ -88,7 +88,7 @@ immediately: locals: %body_lua's "locals" statements:".." for \(%subtree as lua expr) in coroutine.wrap(function() nomsu:walk_tree(\(%tree as lua expr)) end) do - if type(\(%subtree as lua expr)) == 'table' and \(%subtree as lua expr).type then + if Types.is_node(\(%subtree as lua expr)) then if \(%condition as lua expr) then \%body_statements break; diff --git a/core/operators.nom b/core/operators.nom index d2929bf..7a6f535 100644 --- a/core/operators.nom +++ b/core/operators.nom @@ -79,7 +79,7 @@ immediately: Expected a Dict for the assignments part of '<- %' statement, not \(%assignments' source code) lua> ".." for i, item in ipairs(\%assignments.value) do - local target, value = item.dict_key, item.dict_value; + local target, value = item.key, item.value; local target_lua = nomsu:tree_to_lua(target); if not target_lua.expr then error("Invalid target for assignment: "..target:get_src()); end local value_lua = nomsu:tree_to_lua(value); |
