aboutsummaryrefslogtreecommitdiff
path: root/src/lua.js
Commit message (Collapse)AuthorAge
* src/{defs,luaconf}.js: Move path config to expected location in luaconf.jsdaurnimator2018-03-29
| | | | Had to move some export statements around, as there is now a circular dependency
* src/defs.js: LUA_VERSUFFIX should only be defined in lualibdaurnimator2018-03-29
|
* src/{defs,lua}.js: LUA_INIT_VAR and LUA_INITVARVERSION are not normal exportsdaurnimator2018-03-29
|
* src/lapi.js: Remove lua_toljsstringdaurnimator2018-03-04
| | | | It doesn't return length as a seperate thing: js strings implicitly have a length already
* Rename cpath to jspathdaurnimator2018-02-17
|
* src/lua.js: Fix missing LUA_NUMTAGSdaurnimator2018-01-18
|
* Remove defs.CT alias for defs.constant_typesdaurnimator2018-01-11
|
* Move fengari specific things to src/fengaricore.jsdaurnimator2018-01-11
| | | | String manipulation functions now get exposed on 'fengari' object itself at top level
* Introduce luastring_indexOf as Uint8Array.indexOf doesn't exist everywheredaurnimator2018-01-07
|
* src/lauxlib.js: Export luastring_eqdaurnimator2018-01-07
|
* Expose lua.luastring_of to construct a lua 'string' from raw byte valuesdaurnimator2018-01-06
|
* Add lua.to_uristringdaurnimator2017-11-12
|
* Move jshint config to package.jsondaurnimator2017-08-18
|
* lua_tonumberxBenoit Giannangeli2017-05-28
| | | | | | | | lua_tonumber should return 0 if argument is not convertible to a number. But luaL_checknumber uses lua_tonumberx and tests isnum. -> lua_tonumberx return false if argument is not convertible to a number.
* Fixed bad lua_tocfunction exportBenoit Giannangeli2017-05-27
|
* Add facility for a user provided (state-global) native error handlerdaurnimator2017-05-15
|
* lua_arith, lua_islightuserdata, lua_register, lua_setallocf, lua_tocfunctionBenoit Giannangeli2017-05-14
|
* lua_arith, moved luaO_arith to lobject.jsBenoit Giannangeli2017-05-14
|
* src/lapi.js: Add extensions 'lua_toproxy' and 'lua_isproxy'daurnimator2017-05-11
|
* Add lua_pushfstring and lua_pushvstringdaurnimator2017-05-04
|
* requireBenoit Giannangeli2017-05-03
|
* loadlib.jsBenoit Giannangeli2017-05-03
|
* Remove lua_pushtvaluedaurnimator2017-05-03
| | | | Will probably be required again soon; but in a different form (e.g. should validate that TValue comes from same lua state)
* os.exitBenoit Giannangeli2017-04-28
|
* Move jsstring() from lobject.js to defs.js; export from lua.jsdaurnimator2017-04-26
|
* Remove lightuserdata object subtypedaurnimator2017-04-26
|
* Export ldo.js functions from lua.jsdaurnimator2017-04-26
|
* Export ldebug.js functions from lua.jsdaurnimator2017-04-26
|
* Export lstate.js functions from lua.jsdaurnimator2017-04-26
|
* Export lapi.js functions from lua.jsdaurnimator2017-04-26
|
* Remove lua.chardaurnimator2017-04-26
|
* Remove lua.thread_statusdaurnimator2017-04-26
|
* Remove print_versiondaurnimator2017-04-26
|
* Remove lua.CT and lua.constant_types (still available from defs)daurnimator2017-04-26
|
* Move lua.js contents to defs.jsdaurnimator2017-04-26
|
* Use maximum 32bit number instead of Number.MAX_SAFE_INTEGERBenoit Giannangeli2017-04-24
|
* Cache all to_luastring of internal literalsBenoit Giannangeli2017-04-18
|
* hooksBenoit Giannangeli2017-04-14
|
* 8-bit only in lstrlibBenoit Giannangeli2017-03-30
|
* 8-bit string internally testsBenoit Giannangeli2017-03-30
| | | | Lexing/Parsing is done on byte rather than js strings
* Never use js strings internallyBenoit Giannangeli2017-03-29
|
* lualib: export various librariesdaurnimator2017-03-23
|
* Userdata are ArrayBuffers, new lightuserdata subtype for js objectsBenoit Giannangeli2017-03-21
|
* Use emscripten's utf8tojs string functionBenoit Giannangeli2017-03-14
|
* Testing 8-bit stringsBenoit Giannangeli2017-03-13
|
* [Strings] ldebug.js, ldo.js, lfunc.jsBenoit Giannangeli2017-03-13
|
* String are represented by Array of 8-bit numbersBenoit Giannangeli2017-03-13
|
* [Parsing tests] SETTABUP, GETTABUPBenoit Giannangeli2017-03-02
|
* Loading tests (binary/text)Benoit Giannangeli2017-03-01
|
* lua_load will load both binary and textBenoit Giannangeli2017-03-01
|