| Commit message (Expand) | Author | Age |
* | Support environments without a Uint8Array.from | daurnimator | 2018-01-06 |
* | src/lauxlib.js: Use luaL_Buffer to implement luaL_gsub | daurnimator | 2018-01-06 |
* | src/lauxlib.js: Use a Uint8Array backed structure for luaL_Buffer | daurnimator | 2018-01-06 |
* | src/ltablib.js: Pass length to luaL_addlstring | daurnimator | 2018-01-06 |
* | src/lstrlib.js: Pass byte offsets to DataView constructor | daurnimator | 2018-01-06 |
* | src/lauxlib.js: Remove unrequired Uint8Array.from call | daurnimator | 2018-01-06 |
* | src/defs.js: Fallback for when Uint8Array.of doesn't exist | daurnimator | 2018-01-06 |
* | Expose lua.luastring_of to construct a lua 'string' from raw byte values | daurnimator | 2018-01-06 |
* | src/lbaselib.js: Fallback for when TextDecoder doesn't exist | daurnimator | 2018-01-06 |
* | src/defs.js: Avoid for..of, as generated code uses Symbol.iterator, which mig... | daurnimator | 2018-01-06 |
* | src/defs.lua,LICENSE: Update copyright year for fengari code | daurnimator | 2018-01-02 |
* | src/luaconf.js: Fix bug introduced in c260105662e28778fe129a3a4500c1baf40ea109 | daurnimator | 2017-12-30 |
* | src/ldblib.js: Fix incorrect argument type to luaL_argerror | daurnimator | 2017-12-29 |
* | src/lauxlib.js: Don't use 'cache' option to to_luastring, keep strings cached... | daurnimator | 2017-12-29 |
* | src/lvm.js: Optimise lua_integer2str and lua_number2str | daurnimator | 2017-12-29 |
* | src/lbaselib.js: Buffer console output as JS strings rather than in Array of ... | daurnimator | 2017-12-29 |
* | src/: Add defs.from_userstring function to take string from api | daurnimator | 2017-12-29 |
* | src/ldblib.js: Use window.prompt to get input in browser | daurnimator | 2017-12-28 |
* | src/lauxlib.js: lua_writestringerror gets a console.error invocation per newline | daurnimator | 2017-12-28 |
* | src/{laux,ldb}lib.js: lua_writestringerror now only takes JS strings | daurnimator | 2017-12-28 |
* | src/{load,los}lib.js: Remove extraneous Uint8Array.from calls | daurnimator | 2017-12-28 |
* | src/loslib.js: fix os.execute(nil) case | daurnimator | 2017-12-28 |
* | src/lauxlib.js: synchronous xhr is allowed in workers. use arraybuffer repons... | daurnimator | 2017-12-28 |
* | src/loadlib.js: Add support for web worker global env | daurnimator | 2017-12-28 |
* | src/loadlib.js: Use non-strict mode to find global env in unknown environments | daurnimator | 2017-12-28 |
* | Merge branch 'Uint8Array' | daurnimator | 2017-12-15 |
|\ |
|
| * | src/lapi.js: Have lua_todataview return view over actual underlying Uint8Array | daurnimator | 2017-12-15 |
| * | src/lobject.js: Refactor luaO_chunkid to use Uint8Array.set | daurnimator | 2017-12-15 |
| * | src/lauxlib.js: Use a Uint8Array for luaL_loadfilex in both browser and node | daurnimator | 2017-12-15 |
| * | src/lzio.js: Don't permit DataView returned from a lua_load reader any more | daurnimator | 2017-12-15 |
| * | src/: Use .subarray instead of .slice (optimisation) | daurnimator | 2017-12-13 |
| * | Use Uint8Array to back strings | daurnimator | 2017-12-13 |
* | | src/lstrlib.js: Optimise array_cmp | daurnimator | 2017-12-14 |
* | | src/lstrlib.js: Remove .slice from end of string check | daurnimator | 2017-12-14 |
* | | src/lstrlib.js: Optimise nospecials, js .indexOf has no issues with a null byte | daurnimator | 2017-12-14 |
* | | src/lstrlib.js: Optimise find_subarray using .indexOf | daurnimator | 2017-12-14 |
|/ |
|
* | Introduce defs.string_of to create string from bytes | daurnimator | 2017-12-13 |
* | src/lbaselib.js: Use TextDecoder in lua_writeline | daurnimator | 2017-12-13 |
* | src/llex.js: Use luaZ_buffer when not using .slice | daurnimator | 2017-12-13 |
* | src/lapi.js: Remove emptystring: rely on internal string cache instead | daurnimator | 2017-12-13 |
* | src/llex.js: Fix incorrect slice length | daurnimator | 2017-12-13 |
* | src/lstrlib.js: Replace adddigit function with call to .toString(16) | daurnimator | 2017-12-13 |
* | src/lstrlib.js: Reimplement using luaL_Buffer | daurnimator | 2017-12-13 |
* | src/lauxlib.js: Implement luaL_prepbuffsize using a Uint8Array | daurnimator | 2017-12-13 |
* | src/ldump.js: Keep LUAC_DATA in array form | daurnimator | 2017-12-13 |
* | src/lobject.js: Build string in js rather than appending to lua string | daurnimator | 2017-12-13 |
* | src/loadlib.js: Do a concatenation in js string form rather than concating ar... | daurnimator | 2017-12-13 |
* | src/: Use to_luastring more often instead of manually creating arrays | daurnimator | 2017-12-13 |
* | src/: Have luaO_str2num fill in passed TValue and return length | daurnimator | 2017-12-12 |
* | src/lobject.js: Have luaO_pushvfstring respect null as terminator for %s | daurnimator | 2017-12-12 |