Last update introduced "unexpected function" bug

Got an update of Defold this morning (now in 1.11.1), and now the following line make the code crashe :

go.property(“pressed_time”, socket.gettime())

Error message :

unexpected function

This line is BEFORE any function.
Trying to put :

local temps = socket.gettime()
go.property("pressed_time", temps)

Give me :

expecting a function

Not a bug. Script properties are parsed when the project is built. You can only use basic Lua and Defold types. No expressions and no function calls.

Haw. Okay.