summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gdscript_parser.h
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@6c05ec3d6732cac44cf85c91db7d3fd1075bcb23Spartan3222024-11-151-0/+2
|\
| * Merge pull request #98099 from dalexeev/pot-gen-add-comment-supportThaddeus Crews2024-11-151-0/+2
| |\ | | | | | | | | | POT Generator: Add support for `TRANSLATORS:` and `NO_TRANSLATE` comments
| | * POT Generator: Add support for `TRANSLATORS:` and `NO_TRANSLATE` commentsDanil Alexeev2024-10-131-0/+2
| | |
* | | Merge pull request #818 from Spartan322/fixup/copyright-headersGeorge L. Albany2024-10-271-2/+2
|\ \ \ | | | | | | | | Fix copyright headers referring to Godot
| * | | Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
| | | |
* | | | Merge commit godotengine/godot@61accf060515416da07d913580419fd8c8490f7bSpartan3222024-10-261-0/+4
|\ \ \ \ | |/ / / |/| / / | |/ /
| * / GDScript: Fix cached parser error when using typed Dictionariesrune-scape2024-10-221-0/+4
| |/
* / Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
|/ | | | | | | | | | | | | | | | | | | | | | 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>
* Add `@export_tool_button` annotation for easily creating inspector buttonsDanil Alexeev2024-09-271-0/+1
| | | | | | 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>
* Merge pull request #78656 from Repiteo/typed-dictionaryRémi Verschelde2024-09-061-0/+2
|\ | | | | | | Implement typed dictionaries
| * Implement typed dictionariesThaddeus Crews2024-09-041-0/+2
| |
* | Autocompletion: reintroduce enum options on assignmentHolonProduction2024-08-301-2/+5
|/
* Merge pull request #94888 from rune-scape/no-const-cast-gdscript-parserRémi Verschelde2024-08-281-11/+11
|\ | | | | | | GDScriptParser: Avoid `const_cast` of `AnnotationNode`
| * Avoid const_cast in GDScriptParserrune-scape2024-07-281-11/+11
| |
* | Merge pull request #94082 from HolonProduction/completion-forceRémi Verschelde2024-08-201-3/+5
|\ \ | |/ |/| | | Autocompletion: Rework argument options string literal completion
| * Autocompletion: rework argument options string literal completionHolonProduction2024-07-081-3/+5
| |
* | Autocompletion: register depended parsers with the main parserHolonProduction2024-07-181-1/+1
|/
* Fix synchronization of global class nameHilderin2024-06-251-1/+2
|
* Merge pull request #90716 from dalexeev/gds-fix-export-annotation-issuesRémi Verschelde2024-05-191-0/+1
|\ | | | | | | GDScript: Fix some export annotation issues
| * GDScript: Fix some export annotation issuesDanil Alexeev2024-05-131-0/+1
| |
* | Revert "GDScript: Implement get_dependencies()"Rémi Verschelde2024-05-131-7/+3
|/ | | | | | | | | | | | | 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: Fix access non-static members in static contextDanil Alexeev2024-05-011-1/+4
|
* Merge pull request #90860 from vnen/gdscript-get-dependenciesRémi Verschelde2024-04-291-3/+7
|\ | | | | | | GDScript: Implement `get_dependencies()`
| * GDScript: Implement get_dependencies()George Marques2024-04-181-3/+7
| | | | | | | | | | | | | | | | | | | | | | | | 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.
* | GDScript: invalidate GDScriptParserRef when reloadingrune-scape2024-04-181-0/+4
|/
* Don't pass `self` when calling a static function from a non-static contextJamie Hill-Daniel2024-04-041-0/+1
|
* Merge pull request #89270 from Repiteo/enforce-typename-in-templatesRémi Verschelde2024-03-141-4/+4
|\ | | | | | | Enforce template syntax `typename` over `class`
| * Enforce template syntax `typename` over `class`Thaddeus Crews2024-03-071-4/+4
| |
* | GDScript: Fix `@warning_ignore` annotation issuesDanil Alexeev2024-03-121-7/+16
|/
* GDScript: Add @export_custom annotationGeorge Marques2024-03-071-0/+1
| | | | | | 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.
* Documentation: Add support for deprecated/experimental messagesDanil Alexeev2024-02-151-0/+4
|
* GDScript: Reintroduce binary tokenization on exportGeorge Marques2024-02-081-1/+2
| | | | | | | | | | | | | | | | 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.
* Revert "Add UID support to GDScript files"Rémi Verschelde2024-01-291-4/+0
| | | | | | | | | | | 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.
* Remove unnecessary `this->` expressionsA Thousand Ships2024-01-291-1/+1
|
* Add UID support to GDScript fileskobewi2024-01-171-0/+4
|
* Merge pull request #85487 from vnen/gdscript-static-register-annotationsYuri Sizov2023-12-191-2/+2
|\ | | | | | | GDScript: Make annotations register statically in parser
| * GDScript: Make annotations register statically in parserGeorge Marques2023-11-281-2/+2
| | | | | | | | | | So it only register the annotations once per run instead of doing it every time a script is parsed.
* | Change container_element_type to vector containerThaddeus Crews2023-12-051-24/+36
|/
* Fix typo in gdscript_parser.h and gdscript_translation_parser_plugin.cppryanabx2023-10-231-2/+2
|
* GDScript: Fix non-static call is allowed in static var lambda bodyDanil Alexeev2023-10-201-1/+1
|
* GDScript: Add error when exporting node in non [Node]-derived classesDanil Alexeev2023-10-051-10/+10
|
* Merge pull request #80085 from vnen/gdscript-pattern-guardsYuri Sizov2023-09-281-0/+1
|\ | | | | | | GDScript: Implement pattern guards for match statement
| * GDScript: Implement pattern guards for match statementGeorge Marques2023-09-271-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Merge pull request #75988 from dalexeev/gds-unsafe-call-argumentYuri Sizov2023-09-271-1/+2
|\ \ | |/ |/| | | GDScript: Improve call analysis
| * GDScript: Improve call analysisDanil Alexeev2023-09-211-1/+2
| | | | | | | | | | | | * Add missing `UNSAFE_CALL_ARGUMENT` warning. * Fix `Object` constructor. * Display an error for non-existent static methods.
* | [Modules] Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicableA Thousand Ships2023-09-261-1/+1
|/
* GDScript: Fix and improve doc comment parsingDanil Alexeev2023-09-161-2/+3
|
* Merge pull request #81079 from dalexeev/gds-fix-get-method-listRémi Verschelde2023-09-111-1/+8
|\ | | | | | | GDScript: Fix `get_*_list()` methods return incorrect info
| * GDScript: Fix `get_*_list()` methods return incorrect infoDanil Alexeev2023-09-041-1/+8
| |
* | Add coloring for completion of vector componentsYuri Rubinsky2023-08-301-0/+4
|/