From 4ae64ef9e34956235f8b5e2b60c1c8efaa7b913f Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Thu, 5 Oct 2017 15:00:01 -0700 Subject: [PATCH] Fixed ternary operator. --- lib/operators.nom | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/operators.nom b/lib/operators.nom index 17d7e34..85332a1 100644 --- a/lib/operators.nom +++ b/lib/operators.nom @@ -16,10 +16,10 @@ compile [%if_expr if %condition else %else_expr] to: ".." #.. Note: this uses a function instead of (condition and if_expr or else_expr) because that breaks if %if_expr is falsey. |(function(nomsu, vars) - | if \(%condition) then; - | return \(%if_expr); + | if \(%condition as lua) then; + | return \(%if_expr as lua); | else; - | return \(%else_expr); + | return \(%else_expr as lua); | end; |end)(nomsu, vars)