aboutsummaryrefslogtreecommitdiff
path: root/src/lobject.js
Commit message (Expand)AuthorAge
* src/lobject.js: lua_tojsstring now uses unicode replacement character by defaultdaurnimator2018-03-04
* src/luaconf.js: Add LUA_COMPAT_FLOATSTRINGdaurnimator2018-03-04
* src/lobject.js: Fix %p printing two idsdaurnimator2018-02-28
* Merge remote-tracking branch 'daurnimator/optimise-ljstype'daurnimator2018-02-04
|\
| * src/lobject.js: Check string length before indexingdaurnimator2018-01-02
* | src/lobject.js: Use a switch/case over `typeof` when getting object idsdaurnimator2018-01-29
* | src/: Upvalues are now just TValues (possibly referencing on-stack)daurnimator2018-01-29
* | src/lobject.js: Consistently use null in a nil TValuedaurnimator2018-01-29
* | src/{luaconf,lobject,lstrlib}.js: lua_getlocaledecpoint now returns char code...daurnimator2018-01-29
* | src/l{lex,object,parser}: Hardcode character codesdaurnimator2018-01-29
* | src/lobject.js: Use raw char code ops in luaO_hexavaluedaurnimator2018-01-28
* | src/lobject.js: Use destructuring assignment where sensibledaurnimator2018-01-18
* | src/: Destructure when requiring lstring.jsdaurnimator2018-01-18
* | src/lobject.js: Use destructuring assignment for defs.jsdaurnimator2018-01-18
* | src/lobject.js: Use lua_assert instead of assertdaurnimator2018-01-18
* | src/lobject.js: Use destructuring assignment for llimits.jsdaurnimator2018-01-18
* | src/lvm.js: Add Math.imul shim; export new luaV_imul functiondaurnimator2018-01-07
* | src/lobject.js: Optimise l_str2d + removing use of spread operator (IE compat)daurnimator2018-01-07
* | Avoid Uint8Array.slice (IE compat)daurnimator2018-01-07
* | Introduce luastring_indexOf as Uint8Array.indexOf doesn't exist everywheredaurnimator2018-01-07
* | Avoid String.fromCodePoint (IE compat)daurnimator2018-01-07
* | Expose lua.luastring_of to construct a lua 'string' from raw byte valuesdaurnimator2018-01-06
|/
* src/: Add defs.from_userstring function to take string from apidaurnimator2017-12-29
* src/lobject.js: Refactor luaO_chunkid to use Uint8Array.setdaurnimator2017-12-15
* src/: Use .subarray instead of .slice (optimisation)daurnimator2017-12-13
* Use Uint8Array to back stringsdaurnimator2017-12-13
* Introduce defs.string_of to create string from bytesdaurnimator2017-12-13
* src/lobject.js: Build string in js rather than appending to lua stringdaurnimator2017-12-13
* src/: Use to_luastring more often instead of manually creating arraysdaurnimator2017-12-13
* src/: Have luaO_str2num fill in passed TValue and return lengthdaurnimator2017-12-12
* src/lobject.js: Have luaO_pushvfstring respect null as terminator for %sdaurnimator2017-12-12
* src/{llex,lobject}.js: Fix luaO_utf8esc/luaO_utf8desc confusiondaurnimator2017-12-11
* Merge branch 'object-ids'daurnimator2017-12-10
|\
| * src/lobject.js: Add undefined as pointer form of void 0daurnimator2017-12-10
| * src/lobject.js: Give functions and objects idsdaurnimator2017-12-10
| * src/lobject.js: Add ids in the form of JS constructors for primitivesdaurnimator2017-12-10
* | src/: Fix some linter complaintsdaurnimator2017-12-10
|/
* src/lobject.js: Add try/catch around to_jsstring call in number coercionsdaurnimator2017-11-12
* Removed incorrect use of llimits.MAX/MIN_INTBenoit Giannangeli2017-11-09
* Move jshint config to package.jsondaurnimator2017-08-18
* src/lobject.js: Remove .slice operations from lua_strx2numberdaurnimator2017-06-01
* src/lobject.js: Remove .slice operations from l_str2intdaurnimator2017-06-01
* long source chunkid must be truncated from the endBenoit Giannangeli2017-05-31
* src/lfunc.js: Give UpVals an id fielddaurnimator2017-05-29
* luaO_tostring should modify TValuedaurnimator2017-05-29
* Merge remote-tracking branch 'daurnimator/stack-modification-work' into test-...Benoit Giannangeli2017-05-28
|\
| * Modify stack values up to L.top instead of replacingdaurnimator2017-05-27
| * src/lobject.js: Introduce TValue.set*value for missing typesdaurnimator2017-05-27
| * Introduce chgfltvalue and chgivaluedaurnimator2017-05-27
| * Introduce setsvalue2sdaurnimator2017-05-27