aboutsummaryrefslogtreecommitdiff
path: root/core/operators.nom
diff options
context:
space:
mode:
Diffstat (limited to 'core/operators.nom')
-rw-r--r--core/operators.nom4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/operators.nom b/core/operators.nom
index c3b56c6..9b6b68a 100644
--- a/core/operators.nom
+++ b/core/operators.nom
@@ -51,7 +51,7 @@ immediately
assume %var_lua.is_value or barf "Invalid target for assignment: \%var"
lua> ".."
\%value = \%value:map(function(t)
- if Action:is_instance(t) and t:get_stub() == "?" then
+ if Action:is_instance(t) and t.stub == "?" then
return \%var
end
end)
@@ -75,7 +75,7 @@ immediately
for i, item in ipairs(\%assignments.value) do
local \%target, \%value = item.value[1], item.value[2]
\%value = \%value:map(function(t)
- if Action:is_instance(t) and t:get_stub() == "?" then
+ if Action:is_instance(t) and t.stub == "?" then
return \%target
end
end)