IgniteEngine-iOS
IgniteEngine-iOS copied to clipboard
Support for if/else-if/else conditionals
Not sure how we're going to implement this yet, but the mutually exclusive if-statements are a bit of a challenge at times. Should support the following syntaxes:
if :: condition :: responseIfTrue // this exists already
if :: condition :: responseIfTrue :: responseIfFalse // new
and
if :: condition :: responseIfTrue
elseif :: condition :: responseIfTrue
elseif :: condition :: responseIfTrue
else :: defaultResponse
Added the following syntax in 920b830:
if :: condition :: responseIfTrue :: responseIfFalse