Merge luaML.love

This commit is contained in:
Kartik K. Agaram 2023-12-07 01:27:37 -08:00
commit 076f6badda
2 changed files with 7 additions and 2 deletions

View File

@ -12,8 +12,8 @@ Initializing settings:
- run app using LÖVE v12. Ensure cursor is on correct node and visible.
Paste in a new thread using `ctrl+v`. Ensure cursor is on correct node and visible.
- run with an untested version. Error message pops up and waits for a key. The app attempts to continue, and doesn't receive the key.
- create a couple of spuriously failing tests. Run with an untested version. Error message includes message about untested version.
- run with an untested version of LÖVE. Error message pops up and waits for a key. The app attempts to continue, and doesn't receive the key.
- create a couple of spuriously failing tests. Run with an untested version of LÖVE. Error message includes message about untested version.
Code loading:
* run love with directory; text editor runs

View File

@ -264,3 +264,8 @@ for handler_name in pairs(love.handlers) do
end
end
end
function warning_message()
assert(type(Current_app) == 'table')
return Current_app.message
end