The following code is syntactically correct but I believe the compiler cannot parse the 3rd line. Likes is a collection of users that each have a uid. With this line uncommented the code is not being compiled, changes in the 2nd line cannot be seen. After commenting the 3rd line the application compiles as normal. There are no warnings in the IDE that the code was not compiled.

script {
log(“Testing”);
log(status.likes[0].uid);
}

Submitted by Niels Egberts on 6 April 2011 at 14:34

On 6 April 2011 at 14:35 Zef Hemel commented:

Right, the bla[...] notation is not currently supported, use likes.get(0).uid instead.


On 11 April 2011 at 10:58 Zef Hemel commented:

Will be fixed in 0.4.3.


On 11 April 2011 at 10:58 Zef Hemel closed this issue.

On 11 April 2011 at 10:58 Zef Hemel tagged 0.4.3

Log in to post comments