summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gdscript_parser.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
|
* Rebrand preambles to RedotSpartan3222024-10-131-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | (cherry picked from commit e8542b06acca3c1bdeee4b528411771f0819f084) 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>
* Rebrand Godot 4.3 to RedotTrashguy2024-10-131-1/+1
|
* Autocompletion: register depended parsers with the main parserHolonProduction2024-07-181-0/+2
|
* GDScript: Fix "Mismatched external parser" for autoloadsDanil Alexeev2024-07-091-1/+1
|
* Fix synchronization of global class nameHilderin2024-06-251-1/+8
|
* Merge pull request #92874 from Chaosus/completion_color_colorRémi Verschelde2024-06-241-1/+12
|\ | | | | | | Add coloring for completion of Color components
| * Add coloring for completion of Color componentsYuri Rubinsky2024-06-071-1/+12
| |
* | GDScript: Fix non-global class exportDanil Alexeev2024-06-201-50/+60
| |
* | Merge pull request #85488 from ↵Rémi Verschelde2024-06-101-1/+1
|\ \ | |/ |/| | | | | | | miv391/fix-expected-indented-block-error-message-lines Moving "Expected indented block" error message's line number back to where the error is
| * Moving 'Expected indented block' error message lines numbers backMika Viskari2023-11-281-1/+1
| |
* | Register the export info correctly when a global class script is used as the ↵PreslavPetrov2024-06-031-10/+26
| | | | | | | | variable type for Node
* | Merge pull request #90716 from dalexeev/gds-fix-export-annotation-issuesRémi Verschelde2024-05-191-9/+34
|\ \ | | | | | | | | | GDScript: Fix some export annotation issues
| * | GDScript: Fix some export annotation issuesDanil Alexeev2024-05-131-9/+34
| | |
* | | GDScript: Fix `STANDALONE_EXPRESSION` warning for `preload()`Danil Alexeev2024-05-171-0/+4
|/ /
* | Merge pull request #84706 from HolonProduction/completion-get-childRémi Verschelde2024-05-071-1/+4
|\ \ | | | | | | | | | Fix autocompletion after DOLLAR token
| * | Fix autocompletion after DOLLAR tokenHolonProduction2024-03-021-1/+4
| | |
* | | Add PackedVector4Array Variant typeK. S. Ernest (iFire) Lee2024-05-031-0/+5
| | | | | | | | | | | | | | | Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
* | | GDScript: invalidate GDScriptParserRef when reloadingrune-scape2024-04-181-11/+25
| | |
* | | Fix multiline array/dictionary match statementsAiden Storey2024-04-121-15/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently array and dictionary expressions cannot be spread over multiple lines in match statements. Adding mutliline push/pop while parsing the pattern for bracket and brace enables the ability for these to be multiline. This enables more complex patterns to be matched without exceeding line limits. Fixes #90372
* | | GDScript: Don't warn on unassigned for builtin-typed variablesGeorge Marques2024-04-101-22/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the type of a variable is a built-in Variant type, then it will automatically be assigned a default value based on the type. This means that the explicit initialization may be unnecessary. Thus this commit removes the warning in such case. This also changes the meaning of the unassigned warning to happen when the variable is used before being assigned, not when it has zero assignments.
* | | Merge pull request #89270 from Repiteo/enforce-typename-in-templatesRémi Verschelde2024-03-141-1/+1
|\ \ \ | | | | | | | | | | | | Enforce template syntax `typename` over `class`
| * | | Enforce template syntax `typename` over `class`Thaddeus Crews2024-03-071-1/+1
| | | |
* | | | GDScript: Fix `@warning_ignore` annotation issuesDanil Alexeev2024-03-121-89/+227
| | | |
* | | | Editor Help: Add syntax highlighting for code blocksDanil Alexeev2024-03-091-5/+19
|/ / /
* | | GDScript: Add @export_custom annotationGeorge Marques2024-03-071-0/+25
| | | | | | | | | | | | | | | | | | 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.
* | | Support Array and PackedArray in @export_*Abel Toy2024-03-061-49/+94
|/ /
* | Merge pull request #82122 from dalexeev/gds-add-export-hidden-annotationRémi Verschelde2024-02-271-6/+15
|\ \ | | | | | | | | | GDScript: Add `@export_storage` annotation
| * | GDScript: Add `@export_storage` annotationDanil Alexeev2023-12-191-6/+15
| | |
* | | GDScript: Canonicalize script path in FQCNDanil Alexeev2024-02-261-2/+2
| | |
* | | Documentation: Add support for deprecated/experimental messagesDanil Alexeev2024-02-151-4/+16
| | |
* | | Replace error checks against `size` with `is_empty`A Thousand Ships2024-02-091-1/+1
| | |
* | | GDScript: Enable compression on exportGeorge Marques2024-02-081-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | Besides the regular option to export GDScript as binary tokens, this also includes a compression option on top of it. The binary format needs to encode some information which generally makes it bigger than the source text. This option reduces that difference by using Zstandard compression on the buffer.
* | | GDScript: Reintroduce binary tokenization on exportGeorge Marques2024-02-081-27/+77
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | Merge pull request #87124 from rsubtil/bugfix-warn_as_errRémi Verschelde2024-02-081-1/+1
|\ \ \ | | | | | | | | | | | | Simplify script paths to ensure proper resource path checks
| * | | Simplify script paths to ensure proper resource path checksRicardo Subtil2024-01-121-1/+1
| |/ /
* | | GDScript: Add `is not` operatorDanil Alexeev2024-02-041-1/+27
| | |
* | | Revert "Add UID support to GDScript files"Rémi Verschelde2024-01-291-35/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-4/+4
| | |
* | | Add UID support to GDScript fileskobewi2024-01-171-3/+35
| | |
* | | Merge pull request #83120 from ↵Rémi Verschelde2024-01-041-3/+7
|\ \ \ | | | | | | | | | | | | | | | | | | | | dalexeev/gds-allow-property-getter-empty-parentheses GDScript: Allow empty parentheses for property getter declaration
| * | | GDScript: Allow empty parentheses for property getter declarationDanil Alexeev2023-10-111-3/+7
| | |/ | |/|
* | | Merge pull request #84445 from Rubonnek/add-const-references-clang-tidyRémi Verschelde2024-01-041-1/+1
|\ \ \ | |_|/ |/| | | | | Add const references detected by clang-tidy
| * | Add const references detected by clang-tidyWilson E. Alvarez2023-12-161-1/+1
| | |
* | | Merge pull request #85487 from vnen/gdscript-static-register-annotationsYuri Sizov2023-12-191-35/+39
|\ \ \ | |/ / |/| | | | | GDScript: Make annotations register statically in parser
| * | GDScript: Make annotations register statically in parserGeorge Marques2023-11-281-35/+39
| |/ | | | | | | | | 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-26/+33
|/
* Merge pull request #83050 from k0T0z/fix-unnecessary-includeRémi Verschelde2023-10-101-4/+0
|\ | | | | | | Deleting unnecessary include in GDScriptParser
| * removing unnecessary include of gdscript_warning.h as it is already included ↵Saif Kandil2023-10-091-4/+0
| | | | | | | | | | | | in the header file Signed-off-by: Saif Kandil <74428638+k0T0z@users.noreply.github.com>
* | Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicableA Thousand Ships2023-10-081-1/+1
|/