diff options
author | daurnimator <quae@daurnimator.com> | 2017-04-26 21:54:03 +1000 |
---|---|---|
committer | Benoit Giannangeli <giann008@gmail.com> | 2017-04-26 14:00:02 +0200 |
commit | e691ea1911cf1d070ad7c6c256ce4558e2846cc9 (patch) | |
tree | 4942424ba37fa60cd6c06fbd5f43d17ef4e3e6e0 /tests/lmathlib.js | |
parent | 6fdfa3b88c043b124eca4f91c4d1e7e3cc7046b2 (diff) | |
download | fengari-e691ea1911cf1d070ad7c6c256ce4558e2846cc9.tar.gz fengari-e691ea1911cf1d070ad7c6c256ce4558e2846cc9.tar.bz2 fengari-e691ea1911cf1d070ad7c6c256ce4558e2846cc9.zip |
Remove unused variables
Diffstat (limited to 'tests/lmathlib.js')
-rw-r--r-- | tests/lmathlib.js | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/lmathlib.js b/tests/lmathlib.js index 42f5925..f894348 100644 --- a/tests/lmathlib.js +++ b/tests/lmathlib.js @@ -1,16 +1,12 @@ "use strict"; const test = require('tape'); -const beautify = require('js-beautify').js_beautify; const tests = require("./tests.js"); -const getState = tests.getState; const toByteCode = tests.toByteCode; -const VM = require("../src/lvm.js"); const lauxlib = require("../src/lauxlib.js"); const lua = require('../src/lua.js'); -const lstate = require('../src/lstate.js'); test('math.abs, math.sin, math.cos, math.tan, math.asin, math.acos, math.atan', function (t) { |