Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
To help people porting code, it gives a hint to use "await" instead of a
generic error.
|
|
Incidentally, allow multiple statements in single line functions when
using semicolon as a terminator.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This also fixes a typo in the `bitwise_float_right_operand.gd` test.
|
|
GDScript: Show error when missing expression after ternary else
|
|
|
|
|
|
Which is useful when the key isn't a valid identifier, such as keys with
spaces or numeric keys.
|
|
This also ignores `.out` files in the file format static checks.
|
|
|
|
|
|
GDScript: Allow access to outer constant and enum values
|
|
Fix parse error on statement-less files with only newlines, add a warning for empty files.
|
|
add an empty file warning,
add relevant tests.
|
|
Variable->assignment needs to be incremented when assigned a value.
Also fixed and improved unit test 'variable_declaration.gd'.
Fixes #52551
|
|
|
|
Fix gdscript pattern matching expressions
|
|
|
|
GDScript test style fix
|
|
Use sorted map for autoloads in ProjectSettings to preserve order.
|
|
|
|
Correct null and boolean values being capitalised by the str command
|
|
|
|
|
|
|
|
Resolves #51620.
|
|
This makes the documentation about creating and running GDScript
integration tests more discoverable.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
File handling APIs are typically considered part of I/O, and we did have most
`FileAccess` implementations in `core/io` already.
|
|
GDScript: Fix function signature check for self calls
|
|
|
|
|