summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gdscript_function.cpp
Commit message (Expand)AuthorAgeFilesLines
* Fix expected argument count for `Callable` call errorsDanil Alexeev2023-09-291-1/+1
* [Modules] Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicableA Thousand Ships2023-09-261-1/+1
* GDScript: Fix `get_*_list()` methods return incorrect infoDanil Alexeev2023-09-041-36/+0
* Merge pull request #65910 from KoBeWi/gdsusRémi Verschelde2023-02-031-0/+9
|\
| * Cleanup function state connections when destroying instancekobewi2022-12-021-0/+9
* | One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
|/
* Fix cyclic references in GDScript 2.0Adam Scott2022-11-181-0/+7
* Fix MSVC warnings, rename shadowed variables, fix uninitialized values, chang...bruvzg2022-10-071-5/+5
* GDScript: Fix stack overflow when using multiple `await`George Marques2022-05-271-0/+2
* Merge pull request #61003 from vnen/gdscript-await-stack-fixRémi Verschelde2022-05-161-3/+2
|\
| * GDScript: Fix stack manipulation for `await`George Marques2022-05-131-3/+2
* | Replace most uses of Map by HashMapreduz2022-05-161-1/+1
|/
* Fix local variables not showing when breaking on final lineSaracenOne2022-02-161-1/+1
* Rename Variant::is_ref() to is_ref_counted()Pedro J. Estébanez2022-01-201-1/+1
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
* Use range iterators for `Map`Lightning_A2021-09-301-4/+4
* Use C++ iterators for Lists in many situationsAaron Franke2021-07-231-5/+4
* Optimize StringName usagereduz2021-07-181-2/+2
* GDScript: Implement lambdas compilation and runtimeGeorge Marques2021-04-281-0/+4
* Fixes small typos and grammar correctionAnshul7sp12021-03-121-1/+1
* Initialize class/struct variables with default values in modules/Rafał Mikrut2021-02-081-4/+3
* Update copyright statements to 2021Rémi Verschelde2021-01-011-2/+2
* Rename empty() to is_empty()Marcel Admiraal2020-12-281-1/+1
* GDScript: Gather instructions arguments beforehandGeorge Marques2020-11-211-19/+1
* GDScript: Split Function code into multiple filesGeorge Marques2020-11-211-2070/+0
* Refactor variant built-in methods yet again.reduz2020-11-111-2/+3
* Refactored variant constructor logicreduz2020-11-091-4/+5
* Reorganized core/ directory, it was too fatty alreadyreduz2020-11-071-1/+1
* Refactored variant setters/gettersreduz2020-11-071-3/+3
* Fixes the misleading error message for call_recursive method for TreeItemsUmang Kalra2020-10-171-0/+7
* null pointer dereference at GDScriptFunction::call fixThakee Nathees2020-09-041-1/+1
* Add GDScript disassemblerGeorge Marques2020-09-011-10/+511
* New GDScript tokenizer and parserGeorge Marques2020-07-201-91/+103
* Actually set GDScript static referenceGeorge Marques2020-05-291-0/+2
* Merge pull request #39074 from vnen/gdscript-assert-messageRémi Verschelde2020-05-271-2/+5
|\
| * GDScript: Fix assert message when no custom message is setGeorge Marques2020-05-261-2/+5
* | Fix too eager GDScriptFunctionState stack cleanupPedro J. Estébanez2020-05-191-2/+0
|/
* Style: Enforce braces around if blocks and loopsRémi Verschelde2020-05-141-19/+36
* Style: Enforce separation line between function definitionsRémi Verschelde2020-05-141-0/+2
* Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocksRémi Verschelde2020-05-141-106/+0
* Modernize remaining uses of 0/NULL instead of nullptr (C++11)Rémi Verschelde2020-05-141-1/+1
* Fix object leaks caused by unfulfilled yieldsPedro J. Estébanez2020-05-051-28/+55
* Fix leaked objects when game ends with yields in progressPedro J. Estébanez2020-04-291-9/+21
* Merge pull request #37318 from ttencate/fix/argument_nulled_37312Rémi Verschelde2020-04-221-9/+4
|\
| * Revert "Allow parameters passed to GDScript functions to be nulled"Thomas ten Cate2020-03-261-9/+4
* | Replace NULL with nullptrlupoDharkael2020-04-021-29/+29
|/
* Style: Set clang-format Standard to Cpp11Rémi Verschelde2020-03-171-1/+1
* Refactor ScriptDebugger.Fabio Alessandrelli2020-03-081-11/+11
* Reimplement Mutex with C++'s <mutex>Pedro J. Estébanez2020-02-261-13/+6
* Reworked signal connection system, added support for Callable and Signal obje...Juan Linietsky2020-02-201-36/+36