Merge luaML.love

This commit is contained in:
Kartik K. Agaram 2023-12-07 09:14:41 -08:00
commit 140f5d1c78
1 changed files with 4 additions and 1 deletions

View File

@ -17,7 +17,10 @@ Editor_state = {}
-- called both in tests and real run
function App.initialize_globals()
Supported_versions = {'11.5', '11.4', '11.3', '11.2', '11.1', '11.0', '12.0'} -- put the recommended version first
-- Mode initialized elsewhere. Available modes: run, error
-- Available modes: run, error
if Mode == nil then -- might have already been initialized elsewhere
Mode = 'run'
end
Error_count = 0
-- tests currently mostly clear their own state