-
The use of the keyword
undefined, which was deprecated in LiveCode 8.0.0, has been removed. Usenothinginstead.- Use
returns nothingwhen defining a handler which returns no value. - Use
nothingto indicate no value when manipulating optionally type variables
- Use
-
The
is defined,is undefined,is not defined, andis not undefinedsyntax, which was deprecated in LiveCode 8.0.0, has been removed. Useisandis notwithnothinginstead.- Use
<expr> is nothingand<expr> is not nothingto test whether an expression has a value or not - The expression
<left> is <right>will now evaluate totrueif<left>and<right>are both nothing - The expression
<left> is not <right>will now evaluate totrueif one of<left>or<right>are nothing (but not both).
- Use
This repository was archived by the owner on Aug 31, 2021. It is now read-only.