From 602aacf8d81c03b71229ce3dd38121f559f231bc Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Wed, 9 May 2018 20:35:29 -0700 Subject: Renamed "export" to "external" --- core/operators.nom | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'core/operators.nom') diff --git a/core/operators.nom b/core/operators.nom index fca56d5..706909c 100644 --- a/core/operators.nom +++ b/core/operators.nom @@ -84,16 +84,16 @@ immediately return Lua(tree.source, lhs, " = ", rhs, ";"); immediately - compile [export %var <- %value] to + compile [external %var <- %value] to %var_lua <- (%var as lua) assume %var_lua.is_value or barf "Invalid target for assignment: \(%var's source code)" %value_lua <- (%value as lua) assume %value_lua.is_value or barf "Invalid value for assignment: \(%value's source code)" return: Lua "\(%var_lua) = \(%value_lua);" - compile [exporting %exported %body] to + compile [with external %externs %body] to %body_lua <- (%body as lua statements) - lua> "\%body_lua:remove_free_vars(\(%exported.value));" + lua> "\%body_lua:remove_free_vars(\(%externs.value));" return %body_lua compile [with %assignments %body] to -- cgit v1.2.3