Version 16 by komaz
on Nov 25, 2010 21:13.

compared with
Version 17 by komaz
on Nov 25, 2010 21:16.

Key
This line was removed.
This word was removed. This word was added.
This line was added.

Changes (2)

View Page History
# Changes getter and setter to AST equivalents of this code:
{noformat}
get { Actor.locals.containsKey("fieldName") ? Actor.locals["fieldName"] : (initExpr ?: fieldType.defVal) }
get
{
Actor.locals.containsKey("fieldName") ?
Actor.locals["fieldName"] :
(initExpr ?: fieldType.defVal)
}
set { Actor.locals["fieldName"] = it }
{noformat}