| Commit message (Collapse) | Author | Age | Files | Lines |
|\ |
|
| |\
| | |
| | |
| | | |
POT Generator: Add support for `TRANSLATORS:` and `NO_TRANSLATE` comments
|
| | | |
|
|\ \ \
| | | |
| | | | |
Fix copyright headers referring to Godot
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| / /
| |/ / |
|
| |/ |
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Credits:
Co-authored-by: Skogi <skogi.b@gmail.com>
Co-authored-by: Spartan322 <Megacake1234@gmail.com>
Co-authored-by: swashberry <swashdev@pm.me>
Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se>
Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com>
Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com>
Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com>
Co-authored-by: radenthefolf <radenthefolf@gmail.com>
Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com>
Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com>
Co-authored-by: decryptedchaos <nixgod@gmail.com>
Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com>
Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com>
Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com>
Co-authored-by: Mister Puma <MisterPuma80@gmail.com>
Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com>
Co-authored-by: SingleError <isaaconeoneone@gmail.com>
Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
|
|
|
|
|
|
| |
Co-authored-by: jordi <creptthrust@gmail.com>
Co-authored-by: K. S. Ernest (iFire) Lee <ernest.lee@chibifire.com>
Co-authored-by: Mack <86566939+Macksaur@users.noreply.github.com>
|
|\
| |
| |
| | |
Implement typed dictionaries
|
| | |
|
|/ |
|
|\
| |
| |
| | |
GDScriptParser: Avoid `const_cast` of `AnnotationNode`
|
| | |
|
|\ \
| |/
|/|
| | |
Autocompletion: Rework argument options string literal completion
|
| | |
|
|/ |
|
| |
|
|\
| |
| |
| | |
GDScript: Fix some export annotation issues
|
| | |
|
|/
|
|
|
|
|
|
|
|
|
|
|
| |
This reverts commit dc73440f899e6f32de748787e946ad762771fda0.
This commit in some form is needed to fix handling of dependencies on
export, but as it's also used for import, it's exposing some pre-existing
issues which we need to solve first.
So reverting for now to give ourselves time to iron this out for a future
Godot release.
Fixes #91726.
|
| |
|
|\
| |
| |
| | |
GDScript: Implement `get_dependencies()`
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The parser and analyzer now track the dependencies of the script and
return the list when the resource loader ask for them.
What is considered a dependency:
- Any `preload()` call.
- The base script this one extends.
- Any identifier, including types, that refers to global scripts.
- Any autoload singleton reference.
|
|/ |
|
| |
|
|\
| |
| |
| | |
Enforce template syntax `typename` over `class`
|
| | |
|
|/ |
|
|
|
|
|
|
| |
Allows setting any arbitrary hint, hint string, and usage flags.
Useful for more complex hints or potential future hints not
available as a dedicated annotation.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This adds back a function available in 3.x: exporting the GDScript
files in a binary form by converting the tokens recognized by the
tokenizer into a data format.
It is enabled by default on export but can be manually disabled. The
format helps with loading times since, the tokens are easily
reconstructed, and with hiding the source code, since recovering it
would require a specialized tool. Code comments are not stored in this
format.
The `--test` command can also include a `--use-binary-tokens` flag
which will run the GDScript tests with the binary format instead of the
regular source code by converting them in-memory before the test runs.
|
|
|
|
|
|
|
|
|
|
|
| |
This reverts commit c7f68a27ec4b825302998eeb5a400f869cd21cf7.
We still think GDScript files need UIDs to allow safe refactoring,
but we're still debating what form those should take exactly.
So far there seems to be agreement that it shouldn't be done via an
annotation as implemented here, so we're reverting this one for now,
to revisit the feature in a future PR.
|
| |
|
| |
|
|\
| |
| |
| | |
GDScript: Make annotations register statically in parser
|
| |
| |
| |
| |
| | |
So it only register the annotations once per run instead of doing it
every time a script is parsed.
|
|/ |
|
| |
|
| |
|
| |
|
|\
| |
| |
| | |
GDScript: Implement pattern guards for match statement
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Within a match statement, it is now possible to add guards in each
branch:
var a = 0
match a:
0 when false: print("does not run")
0 when true: print("but this does")
This allows more complex logic for deciding which branch to take.
|
|\ \
| |/
|/|
| | |
GDScript: Improve call analysis
|
| |
| |
| |
| |
| |
| | |
* Add missing `UNSAFE_CALL_ARGUMENT` warning.
* Fix `Object` constructor.
* Display an error for non-existent static methods.
|
|/ |
|
| |
|
|\
| |
| |
| | |
GDScript: Fix `get_*_list()` methods return incorrect info
|
| | |
|
|/ |
|