aboutsummaryrefslogtreecommitdiff
path: root/src/llex.js
Commit message (Collapse)AuthorAge
* src/llex.js: Use SemInfo constructordaurnimator2017-06-19
|
* src/llex.js: Fix isreserved (it is passed a TString, not a JS string)daurnimator2017-06-09
|
* src/lzio.js: Introduce luaZ_buffremovedaurnimator2017-06-09
|
* src/lzio.js: Introduce luaZ_resetbufferdaurnimator2017-06-09
|
* src/llex.js: Use luaO_pushfstring instead of javascript string interpolationdaurnimator2017-06-09
|
* src/llex.js: Avoid a .slice operationdaurnimator2017-06-01
|
* Fix some warnings found by closure-compilerdaurnimator2017-05-29
|
* Checks for nil and NaN table keysdaurnimator2017-05-22
|
* src/lobject.js: Check that there is no trailing junk from lua_strx2numberdaurnimator2017-05-21
| | | | Also stop adding trailing null byte in llex.js
* src/llex.js: Compare against lzio.EOZ instead of -1daurnimator2017-05-15
|
* Separate ZIO and MBuffer data structuresdaurnimator2017-05-15
| | | | - lua_load no longer takes a null reader function
* Removed useless save(0) in llexBenoit Giannangeli2017-05-13
|
* Cache string hashes in TStringdaurnimator2017-05-09
|
* Introduce a TString classdaurnimator2017-05-08
|
* Add accessors to TValue for TString valuesdaurnimator2017-05-08
|
* src/llex.js: Cache tokens in ls.hdaurnimator2017-05-08
|
* src/llex.js: Fix missing extention in requiredaurnimator2017-05-08
|
* src/llex.js: Add luaX_newstringdaurnimator2017-05-08
|
* Move string functions to centralised lstring.jsdaurnimator2017-05-08
|
* BytecodeParser consumes a MBuffer (== ZIO) instead of a DataViewBenoit Giannangeli2017-05-06
| | | | So we can read binary code with a user reader function
* Add a FIXME, remove a TODO, edit a commentdaurnimator2017-05-05
|
* Don't wrap lexer/parser strings in a TValuedaurnimator2017-05-05
| | | | Fixes issue where internal TValues get exposed via lua_Debug structure
* src/llex.js: getc should return -1 if no more inputdaurnimator2017-04-27
| | | | If the buffer was exhausted, the previous implementation could return undefined
* Add a couple of asserts to catch common errorsdaurnimator2017-04-27
|
* Move jsstring() from lobject.js to defs.js; export from lua.jsdaurnimator2017-04-26
|
* Remove unused require()sdaurnimator2017-04-26
|
* All core files reference defs.js instead of lua.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
|
* 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
|
* luaO_utf8escBenoit Giannangeli2017-03-28
|
* Fixed bad \n parsingBenoit Giannangeli2017-03-24
|
* Fixed bad long string parsingBenoit Giannangeli2017-03-24
|
* \x escape sequence must store byte as is, in resulting stringBenoit Giannangeli2017-03-24
|
* string.formatBenoit Giannangeli2017-03-16
|
* Testing 8-bit stringsBenoit Giannangeli2017-03-13
|
* [Strings] lapi.js, lcode.js, llex.js, lparser.jsBenoit Giannangeli2017-03-13
|
* Remove use of 'buffer-dataview' librarydaurnimator2017-03-03
|
* lua_load use reader functionBenoit Giannangeli2017-03-02
|
* [Parsing tests] SETLISTBenoit Giannangeli2017-03-02
|
* [Parsing tests] SETTABLE, GETTABLEBenoit Giannangeli2017-03-02
|
* Loading tests (binary/text)Benoit Giannangeli2017-03-01
|
* lua_load will load both binary and textBenoit Giannangeli2017-03-01
|
* jshintBenoit Giannangeli2017-02-28
|
* parsingBenoit Giannangeli2017-02-28
|
* TK_LOCAL, TK_NAME, TK_INTBenoit Giannangeli2017-02-27
|
* Basic lexing testsBenoit Giannangeli2017-02-27
|
* lexingBenoit Giannangeli2017-02-27