From fc56af5936a2ebfdfa0871ca6a68ccf7ecc7dbf0 Mon Sep 17 00:00:00 2001 From: Azat Alimov <32402726+mkslanc@users.noreply.github.com> Date: Sat, 15 Oct 2022 14:44:01 +0400 Subject: [PATCH] fix: change lua version to 5.3 (#4954) --- lib/ace/mode/lua/luaparse.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ace/mode/lua/luaparse.js b/lib/ace/mode/lua/luaparse.js index d36f9fadd14..c4e644c80f0 100644 --- a/lib/ace/mode/lua/luaparse.js +++ b/lib/ace/mode/lua/luaparse.js @@ -38,7 +38,7 @@ define(function(require, exports, module) { , onLocalDeclaration: null // The version of Lua targeted by the parser (string; allowed values are // '5.1', '5.2', '5.3'). - , luaVersion: '5.1' + , luaVersion: '5.3' // Encoding mode: how to interpret code units higher than U+007F in input , encodingMode: 'none' };