aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* src/lundump.js: Fix mixed indentationHEADmasterdaurnimator2018-07-09
|
* src/lundump.js: Rename+reorganise functions to be more like C sourcedaurnimator2018-07-07
|
* src/lundump.js: Fix reading empty string constantsdaurnimator2018-07-07
| | | | Closes https://github.com/fengari-lua/fengari-interop/issues/42
* Release v0.1.2v0.1.2daurnimator2018-04-23
|
* src/lauxlib.js: Use from_userstring in luaL_add(l)stringdaurnimator2018-04-23
|
* src/loslib.js: Use our own strftime implementation; removes dependencydaurnimator2018-04-23
|
* src/loslib.js: cc shouldn't get reassigneddaurnimator2018-04-22
|
* src/loslib.js: Avoid luaL_opt when default case is complex expressiondaurnimator2018-04-22
| | | | In C its a macro and won't evaluate the arg, but JavaScript will always evaluate
* src/loslib.js: Remove unreachable branchdaurnimator2018-04-22
|
* src/loslib.js: Calculate yday of passed in Date, not the current datedaurnimator2018-04-22
|
* src/loslib.js: Fix wday off-by-one errordaurnimator2018-04-22
|
* src/loslib.js: invert ternariesdaurnimator2018-04-22
|
* src/loslib.js: Fix off-by-one error in month field of os.time()daurnimator2018-04-22
|
* src/loslib.js: Add missing semicolondaurnimator2018-04-22
|
* src/l{str,os}lib.js: Use luastring_eq where sensibledaurnimator2018-04-20
|
* src/loslib.js: Skip Date creation in os.difftimedaurnimator2018-04-20
|
* src/l*lib.js: Remove some uses of caching to_luastringdaurnimator2018-04-20
|
* src/loslib.js: Fix os.time() with out-of-range valuesdaurnimator2018-04-20
| | | | Fixes #126
* Merge branch 'test-with-jest'daurnimator2018-04-20
|\
| * .travis.yml: Remove travis_waitdaurnimator2018-04-20
| |
| * .travis.yml: Use nproc to limit number of jest workersdaurnimator2018-04-20
| | | | | | | | See https://github.com/facebook/jest/issues/5989
| * test/test-suite: Remove print callsdaurnimator2018-04-15
| |
| * test/test-suite: Move ported PUC-Rio test suite to jestdaurnimator2018-04-14
| |
| * Start moving test suite from tape => jestdaurnimator2018-04-14
| |
* | src/loadlib.js: Use indirect eval for getting reference to global envdaurnimator2018-04-08
| |
* | src/liolib.js: Pass buffer length to fs.writeSync to workaround node 6.11 bugdaurnimator2018-04-08
| |
* | src/lauxlib.js: e argument is not compulsorydaurnimator2018-04-08
| | | | | | | | e.g. when file:write fails due to short write
* | README.md: Add npm badgedaurnimator2018-04-06
| |
* | src/loslib.js: In os.remove, try unlink and on EISDIR try rmdirdaurnimator2018-04-06
| | | | | | | | This is what glibc does, it's better than trying to stat beforehand
* | src/liolib.js: fs.writeSync in node 6 doesn't take a Uint8Arraydaurnimator2018-04-06
| |
* | Release v0.1.1v0.1.1daurnimator2018-04-03
| |
* | yarn.lock: Upgrade dependenciesdaurnimator2018-04-03
| |
* | src/defs.js: Hoist to_jsstring error messagedaurnimator2018-04-03
| | | | | | | | Should save on final bundled size
* | src/luaconf.js: Remove duplicate entries from LUA_PATH_DEFAULTdaurnimator2018-04-03
| | | | | | | | Closes #123
* | src/lauxlib.js: Improve commentsdaurnimator2018-04-03
|/
* NEWS: Add node 6 compatdaurnimator2018-04-02
|
* tests/lmathlib.js: Skip failing test in node <= 6daurnimator2018-04-02
|
* .travis.yml: Add node 6 to test matrixdaurnimator2018-04-02
|
* src/lauxlib.js: Use a Buffer in luaL_loadfilex for node 6 compatdaurnimator2018-04-02
|
* tests/load.js: assert loadfile result for correct error messagesdaurnimator2018-04-02
|
* src/lauxlib.js: Use non-deprecated Buffer constructordaurnimator2018-04-02
|
* Release v0.1.0v0.1.0daurnimator2018-03-31
|
* package.json: Add prepublishOnly script to catch last-minute issuesdaurnimator2018-03-31
|
* src/lcorolib.js: Remove unused requiredaurnimator2018-03-31
|
* Merge branch 'accept-jsstrings'daurnimator2018-03-30
|\
| * src/: Pass js strings to auxlib functions such as luaL_argcheckdaurnimator2017-12-29
| |
| * src/: Pass js string to luaL_opt(l)stringdaurnimator2017-12-29
| |
| * src/lauxlib.js: Convert default argument to luaL_optlstring on demanddaurnimator2017-12-29
| |
| * src/lauxlib.js: luaL_checkstring is just luaL_checklstringdaurnimator2017-12-29
| |
| * src/defs.js: Automatically convert js stringsdaurnimator2017-12-29
| |