George Marques
c6e66a43b0
GDScript: Add lambda syntax parsing
...
Lambda syntax is the same as a the function syntax (using the same
`func` keyword) except that the name is optional and it can be embedded
anywhere an expression is expected. E.g.:
func _ready():
var my_lambda = func(x):
print(x)
my_lambda.call("hello")
2021-04-28 10:56:16 -03:00
..
2021-01-04 14:33:44 +01:00
2021-02-11 15:44:28 -03:00
2020-10-25 10:02:37 +01:00
2021-04-27 16:26:27 +02:00
2021-04-28 10:56:16 -03:00
2020-11-26 21:39:54 -03:00
2021-04-28 10:56:16 -03:00
2021-03-30 08:29:36 -03:00
2021-04-20 17:39:09 +02:00
2021-04-16 12:04:08 -03:00
2021-01-01 20:19:21 +01:00
2021-01-01 20:19:21 +01:00
2021-04-16 12:04:08 -03:00
2021-04-23 16:00:23 -03:00
2021-04-14 14:35:51 -03:00
2021-04-16 12:04:08 -03:00
2021-04-05 16:39:41 +02:00
2021-03-12 19:05:16 +05:30
2021-04-16 12:04:08 -03:00
2021-04-28 10:56:16 -03:00
2021-04-28 10:56:16 -03:00
2021-04-28 10:56:16 -03:00
2021-04-28 10:56:16 -03:00
2021-03-21 10:20:08 +00:00
2021-01-01 20:19:21 +01:00
2021-04-16 12:04:08 -03:00
2021-01-01 20:19:21 +01:00
2021-01-01 20:19:21 +01:00
2021-04-08 09:34:59 -03:00
2021-02-11 15:44:28 -03:00
2021-04-08 09:34:59 -03:00
2021-01-01 20:19:21 +01:00
2020-09-02 01:43:26 +03:00