virtualx-engine/modules/gdscript/tests
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
..
scripts Add runner for GDScript testing 2021-04-08 09:34:59 -03:00
gdscript_test_runner.cpp Remove uses of auto for better readability and online code reviews 2021-04-26 14:59:28 +02:00
gdscript_test_runner.h Add runner for GDScript testing 2021-04-08 09:34:59 -03:00
gdscript_test_runner_suite.h Add runner for GDScript testing 2021-04-08 09:34:59 -03:00
test_gdscript.cpp GDScript: Add lambda syntax parsing 2021-04-28 10:56:16 -03:00
test_gdscript.h Add runner for GDScript testing 2021-04-08 09:34:59 -03:00