index
:
redot-engine.git
4.3
master
Redot Engine – Multi-platform 2D and 3D game engine
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
modules
/
gdscript
/
gdscript_disassembler.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Style: Apply `clang-tidy` fixes (superficial)
Thaddeus Crews
2024-11-04
1
-2
/
+4
*
Implement typed dictionaries
Thaddeus Crews
2024-09-04
1
-0
/
+107
*
Add PackedVector4Array Variant type
K. S. Ernest (iFire) Lee
2024-05-03
1
-0
/
+2
*
GDScript: Perform validated calls with static methods
George Marques
2024-04-25
1
-0
/
+44
*
GDScript: Fix uninitialized local variables not being reset
Danil Alexeev
2024-03-30
1
-0
/
+7
*
GDScript: Replace ptrcalls on MethodBind to validated calls
George Marques
2023-10-06
1
-61
/
+21
*
GDScript: Optimize operators by assuming the types
George Marques
2023-07-28
1
-1
/
+2
*
GDScript: Fix `_get_script_name()` function collision for SCU build
Danil Alexeev
2023-06-20
1
-24
/
+8
*
GDScript: Fix crash in disassembler
Danil Alexeev
2023-06-19
1
-25
/
+48
*
GDScript: Fix some bugs with static variables and functions
Danil Alexeev
2023-06-16
1
-0
/
+30
*
Style: Harmonize header includes in modules
Rémi Verschelde
2023-06-15
1
-2
/
+2
*
GDScript: Fix wrong increment for disassembly of lambda
George Marques
2023-02-27
1
-2
/
+2
*
GDScript: Rework type check
Dmitrii Maganov
2023-02-17
1
-8
/
+41
*
GDScript: Fix disassembly of typed array assignment and construction
Dmitrii Maganov
2023-02-01
1
-3
/
+3
*
Fix disassembly of OPCODE_CONSTRUCT_TYPED_ARRAY.
Owen Anderson
2023-01-31
1
-1
/
+1
*
GDScript: Add names for disassembling function pointers
George Marques
2023-01-23
1
-9
/
+12
*
One Copyright Update to rule them all
Rémi Verschelde
2023-01-05
1
-29
/
+29
*
Optimizations for GDScript VM
Juan Linietsky
2023-01-02
1
-5
/
+28
*
Fix MSVC warnings, rename shadowed variables, fix uninitialized values, chang...
bruvzg
2022-10-07
1
-2
/
+2
*
Implement Vector4, Vector4i, Projection
reduz
2022-07-23
1
-0
/
+6
*
GDScript: Fix setter being called in chains for shared types
George Marques
2022-06-27
1
-0
/
+8
*
GDScript: Allow using self in lambdas
George Marques
2022-04-24
1
-0
/
+19
*
GDScript: Rename OPCODE_TYPE_ADJUST_TRANSFORM to have a 3D suffix
Aaron Franke
2022-04-07
1
-1
/
+1
*
GDScript: Add support for static method calls in native types
George Marques
2022-04-06
1
-0
/
+22
*
Update copyright statements to 2022
Rémi Verschelde
2022-01-03
1
-2
/
+2
*
GDScript: Fix loading of interdependent autoloads
George Marques
2021-09-01
1
-0
/
+8
*
Rename Quat to Quaternion
Marcel Admiraal
2021-06-04
1
-2
/
+2
*
Rename Variant TRANSFORM to TRANSFORM3D
Aaron Franke
2021-06-03
1
-1
/
+1
*
Fix typos with codespell
Rémi Verschelde
2021-05-20
1
-2
/
+2
*
GDScript: Add support for builtin static method calls
George Marques
2021-05-16
1
-0
/
+22
*
GDScript: Implement lambdas compilation and runtime
George Marques
2021-04-28
1
-1
/
+20
*
GDScript: Adjust type of temporaries when needed
George Marques
2021-04-16
1
-0
/
+45
*
Reduce number of addressing modes in GDScript VM
George Marques
2021-04-08
1
-23
/
+19
*
Merge pull request #47569 from vnen/gdscript-typed-return
Rémi Verschelde
2021-04-05
1
-0
/
+33
|
\
|
*
GDScript: Properly validate return type
George Marques
2021-04-05
1
-0
/
+33
*
|
Style: Apply clang-tidy's `readability-braces-around-statements`
Rémi Verschelde
2021-04-05
1
-13
/
+26
|
/
*
Add typed arrays to GDScript
George Marques
2021-03-29
1
-0
/
+41
*
Update copyright statements to 2021
Rémi Verschelde
2021-01-01
1
-2
/
+2
*
fixes crash in disassemlber for opcode OPCODE_ASSIGN_TYPED_NATIVE
Jordan Schidlowsky
2020-12-15
1
-4
/
+1
*
Merge pull request #43890 from vnen/gdscript-builtin-functions-refactor
Rémi Verschelde
2020-12-15
1
-4
/
+39
|
\
|
*
GDScript: Refactor builtin functions
George Marques
2020-11-26
1
-4
/
+39
*
|
fixes crash for OPCODE_CAST_TO_NATIVE opcode in gdscript disassemlber
Jordan Schidlowsky
2020-11-25
1
-4
/
+1
|
/
*
GDScript: Add faster instruction for validated constructor
George Marques
2020-11-21
1
-1
/
+18
*
GDScript: Add typed iterate instructions
George Marques
2020-11-21
1
-0
/
+54
*
GDScript: Add faster call instructions for builtin methods
George Marques
2020-11-21
1
-0
/
+21
*
GDScript: Add faster call instructions for native methods
George Marques
2020-11-21
1
-0
/
+106
*
GDScript: Add speficic set/get instructions
George Marques
2020-11-21
1
-4
/
+67
*
GDScript: Add faster operator for known types
George Marques
2020-11-21
1
-0
/
+11
*
GDScript: Gather instructions arguments beforehand
George Marques
2020-11-21
1
-62
/
+63
*
GDScript: Split Function code into multiple files
George Marques
2020-11-21
1
-0
/
+540