From daeddc461166692743368eb9e68aa041f3994714 Mon Sep 17 00:00:00 2001 From: daurnimator Date: Mon, 22 Jan 2018 11:28:02 +1100 Subject: src/l*lib.js: Use lualib.lua_assert from standard library --- src/lstrlib.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/lstrlib.js') diff --git a/src/lstrlib.js b/src/lstrlib.js index 5477750..33076ef 100644 --- a/src/lstrlib.js +++ b/src/lstrlib.js @@ -1,11 +1,11 @@ "use strict"; -const assert = require('assert'); const sprintf = require('sprintf-js').sprintf; const lauxlib = require('./lauxlib.js'); const lua = require('./lua.js'); const luaconf = require('./luaconf.js'); +const lualib = require('./lualib.js'); const {luastring_indexOf, to_jsstring, to_luastring} = require("./fengaricore.js"); const sL_ESC = '%'; @@ -724,7 +724,7 @@ const unpackint = function(L, str, islittle, size, issigned) { }; const unpacknum = function(L, b, islittle, size) { - assert(b.length >= size); + lualib.lua_assert(b.length >= size); let dv = new DataView(new ArrayBuffer(size)); for (let i = 0; i < size; i++) @@ -1148,7 +1148,7 @@ const prepstate = function(ms, L, s, ls, p, lp) { const reprepstate = function(ms) { ms.level = 0; - assert(ms.matchdepth === MAXCCALLS); + lualib.lua_assert(ms.matchdepth === MAXCCALLS); }; const find_subarray = function(arr, subarr, from_index) { -- cgit v1.2.3-54-g00ecf