File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
test/gdscript_tests/lua_files Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -137,8 +137,11 @@ lua.do_string("""
137137- [X] Add support for getting global singletons from Lua
138138- [X] Add support for getting classes from Lua
139139- [ ] Add support for ` res:// ` relative paths in ` require `
140+ - [ ] Add support for ` await ` ing signals
140141- [X] Submit to Asset Library
141- - [ ] Lua ScriptLanguageExtension
142+ - [X] Lua ScriptLanguageExtension
143+ + [ ] Add support for property hints / usage flags (including export)
144+ + [ ] Add support for property getter / setter
142145- [ ] Support for building with LuaJIT
143146- [X] Automated unit tests
144147- [X] Automated build and distribution
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ TestClass.empty_array = property { type = Array }
55TestClass .preinitialized_array = Array { 1 , 2 , 3 }
66
77function TestClass :_init (...)
8- self .init_values = Array { ... }
8+ self .init_values = Array { ... }
99end
1010
1111function TestClass :send_signal (arg1 , arg2 )
You can’t perform that action at this time.
0 commit comments