ilya.gorbunov
02/14/2018, 3:44 AMset
function invocation. There are two ways to overcome this:
- surround lambda with parentheses: ({ refreshRightText.set("") })
- place ;
between set
and the lambda:
refreshRightText.set(refreshText);
{ refreshRightText.set("") }
trent
02/14/2018, 5:26 AMset
function. Are there technical difficulties for this being not parsed as expected?ilya.gorbunov
02/14/2018, 6:11 AMilya.gorbunov
02/14/2018, 6:14 AMset
with the second parameter of type Any
. Would you expect that the lambda after set
with one parameter now changes its meaning?trent
02/14/2018, 6:44 AM