aboutsummaryrefslogtreecommitdiff
path: root/src/ldebug.js
diff options
context:
space:
mode:
authordaurnimator <quae@daurnimator.com>2017-05-29 17:15:28 +1000
committerdaurnimator <quae@daurnimator.com>2017-05-29 17:15:28 +1000
commit0006432890dd0135152d6334155ef4c1b860b717 (patch)
treeba8826430a86a54b764c0e5f387dfa1b6e7170f2 /src/ldebug.js
parent490e035f97ace73b3ee1c1033fb412b5d1433ce2 (diff)
downloadfengari-0006432890dd0135152d6334155ef4c1b860b717.tar.gz
fengari-0006432890dd0135152d6334155ef4c1b860b717.tar.bz2
fengari-0006432890dd0135152d6334155ef4c1b860b717.zip
src/ldebug.js: Don't pass user input as format string to luaG_runerror.
Fixes #65
Diffstat (limited to 'src/ldebug.js')
-rw-r--r--src/ldebug.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ldebug.js b/src/ldebug.js
index 510221f..4019413 100644
--- a/src/ldebug.js
+++ b/src/ldebug.js
@@ -544,7 +544,7 @@ const varinfo = function(L, o) {
const luaG_typeerror = function(L, o, op) {
let t = ltm.luaT_objtypename(L, o);
- luaG_runerror(L, defs.to_luastring(`attempt to ${defs.to_jsstring(op)} a ${defs.to_jsstring(t)} value${defs.to_jsstring(varinfo(L, o))}`));
+ luaG_runerror(L, defs.to_luastring("attempt to %s a %s value%s", true), op, t, varinfo(L, o));
};
const luaG_concaterror = function(L, p1, p2) {
@@ -565,9 +565,9 @@ const luaG_ordererror = function(L, p1, p2) {
let t1 = ltm.luaT_objtypename(L, p1);
let t2 = ltm.luaT_objtypename(L, p2);
if (t1.join() === t2.join())
- luaG_runerror(L, defs.to_luastring(`attempt to compare two ${defs.to_jsstring(t1)} values`));
+ luaG_runerror(L, defs.to_luastring("attempt to compare two %s values", true), t1);
else
- luaG_runerror(L, defs.to_luastring(`attempt to compare ${defs.to_jsstring(t1)} with ${defs.to_jsstring(t2)}`));
+ luaG_runerror(L, defs.to_luastring("attempt to compare %s with %s", true), t1, t2);
};
/* add src:line information to 'msg' */
@@ -607,7 +607,7 @@ const luaG_tointerror = function(L, p1, p2) {
let temp = lvm.tointeger(p1);
if (temp === false)
p2 = p1;
- luaG_runerror(L, defs.to_luastring(`number${defs.to_jsstring(varinfo(L, p2))} has no integer representation`));
+ luaG_runerror(L, defs.to_luastring("number%s has no integer representation", true), varinfo(L, p2));
};
const luaG_traceexec = function(L) {