diff options
author | Benoit Giannangeli <giann008@gmail.com> | 2017-04-24 15:11:12 +0200 |
---|---|---|
committer | Benoit Giannangeli <giann008@gmail.com> | 2017-04-24 15:11:12 +0200 |
commit | 31dcd12f5a9cd6a45e8ad9d1213a8a25d88fe885 (patch) | |
tree | 18fae5b71f40278e64ac8733827d2bea7e58d588 /tests/ldebug.js | |
parent | b9f9cde1c18ace3930be4cb7f6d9527178544d8b (diff) | |
download | fengari-31dcd12f5a9cd6a45e8ad9d1213a8a25d88fe885.tar.gz fengari-31dcd12f5a9cd6a45e8ad9d1213a8a25d88fe885.tar.bz2 fengari-31dcd12f5a9cd6a45e8ad9d1213a8a25d88fe885.zip |
Removed useless luac -l from tests
Diffstat (limited to 'tests/ldebug.js')
-rw-r--r-- | tests/ldebug.js | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/ldebug.js b/tests/ldebug.js index e24b584..0256465 100644 --- a/tests/ldebug.js +++ b/tests/ldebug.js @@ -24,7 +24,7 @@ test('luaG_typeerror', function (t) { t.doesNotThrow(function () { - let bc = toByteCode(luaCode).dataView; + let bc = toByteCode(luaCode); L = lauxlib.luaL_newstate(); @@ -54,7 +54,7 @@ test('luaG_typeerror', function (t) { t.doesNotThrow(function () { - let bc = toByteCode(luaCode).dataView; + let bc = toByteCode(luaCode); L = lauxlib.luaL_newstate(); @@ -83,7 +83,7 @@ test('luaG_typeerror', function (t) { t.doesNotThrow(function () { - let bc = toByteCode(luaCode).dataView; + let bc = toByteCode(luaCode); L = lauxlib.luaL_newstate(); @@ -112,7 +112,7 @@ test('luaG_typeerror', function (t) { t.doesNotThrow(function () { - let bc = toByteCode(luaCode).dataView; + let bc = toByteCode(luaCode); L = lauxlib.luaL_newstate(); @@ -140,7 +140,7 @@ test('luaG_concaterror', function (t) { t.doesNotThrow(function () { - let bc = toByteCode(luaCode).dataView; + let bc = toByteCode(luaCode); L = lauxlib.luaL_newstate(); @@ -168,7 +168,7 @@ test('luaG_opinterror', function (t) { t.doesNotThrow(function () { - let bc = toByteCode(luaCode).dataView; + let bc = toByteCode(luaCode); L = lauxlib.luaL_newstate(); @@ -196,7 +196,7 @@ test('luaG_tointerror', function (t) { t.doesNotThrow(function () { - let bc = toByteCode(luaCode).dataView; + let bc = toByteCode(luaCode); L = lauxlib.luaL_newstate(); |