aboutsummaryrefslogtreecommitdiff
path: root/src/lobject.js
diff options
context:
space:
mode:
authorBenoit Giannangeli <benoit.giannangeli@boursorama.fr>2017-02-28 11:56:00 +0100
committerBenoit Giannangeli <benoit.giannangeli@boursorama.fr>2017-02-28 15:49:13 +0100
commitdfac155a3f8b650222fa784303e599f4e50abe67 (patch)
treee6eb2b1040e79991fbd2d6b4ff0a92ededc36275 /src/lobject.js
parent8d576081a53ee1a866491b423c5373951aa6a7c4 (diff)
downloadfengari-dfac155a3f8b650222fa784303e599f4e50abe67.tar.gz
fengari-dfac155a3f8b650222fa784303e599f4e50abe67.tar.bz2
fengari-dfac155a3f8b650222fa784303e599f4e50abe67.zip
grammar
Diffstat (limited to 'src/lobject.js')
-rw-r--r--src/lobject.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lobject.js b/src/lobject.js
index 4974373..1a0df1c 100644
--- a/src/lobject.js
+++ b/src/lobject.js
@@ -333,7 +333,7 @@ const luaO_str2num = function(s) {
let i = s2i[1];
if (e !== null) { /* try as an integer */
- return new TValue(CT.LUA_TNUMINT, i);;
+ return new TValue(CT.LUA_TNUMINT, i);
} else { /* else try as a float */
s2i = l_str2d(s);
e = s2i[0];
@@ -351,8 +351,8 @@ const luaO_str2num = function(s) {
** (eeeeexxx), where the real value is (1xxx) * 2^(eeeee - 1) if
** eeeee != 0 and (xxx) otherwise.
*/
-int luaO_int2fb (unsigned int x) {
- int e = 0; /* exponent */
+const luaO_int2fb = function(x) {
+ let e = 0; /* exponent */
if (x < 8) return x;
while (x >= (8 << 4)) { /* coarse steps */
x = (x + 0xf) >> 4; /* x = ceil(x / 16) */
@@ -363,7 +363,7 @@ int luaO_int2fb (unsigned int x) {
e++;
}
return ((e+1) << 3) | (x - 8);
-}
+};
module.exports.CClosure = CClosure;
module.exports.LClosure = LClosure;