Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | uservalue should be a TValue | Benoit Giannangeli | 2017-05-11 |
| | |||
* | src/lapi.js: Add extensions 'lua_toproxy' and 'lua_isproxy' | daurnimator | 2017-05-11 |
| | |||
* | src/lapi.js: Use luaH_delete when rawset-ing nil | daurnimator | 2017-05-11 |
| | |||
* | src/lapi.js: lobject.luaO_str2num returns false if string is not a number | daurnimator | 2017-05-09 |
| | |||
* | src/lapi.js: Delete unwanted stack items | daurnimator | 2017-05-09 |
| | |||
* | Use 'delete' instead of setting to undefined | daurnimator | 2017-05-09 |
| | |||
* | Initialise CClosure upvalues TValues in constructor | daurnimator | 2017-05-09 |
| | |||
* | Introduce a TString class | daurnimator | 2017-05-08 |
| | |||
* | src/lapi.js: Use .svalue() getter for lua_todataview | daurnimator | 2017-05-08 |
| | |||
* | src/lapi.js: Be consistent with aux_upvalue return type | daurnimator | 2017-05-08 |
| | |||
* | Add accessors to TValue for TString values | daurnimator | 2017-05-08 |
| | |||
* | Move string functions to centralised lstring.js | daurnimator | 2017-05-08 |
| | |||
* | src/lundump.js: .readString should return a lua string, not a js string | daurnimator | 2017-05-08 |
| | | | | This also reverts commit b1a8a4b0435199982d26de4a183600c155619a5a. | ||
* | Sometimes upvalues have js string names | Benoit Giannangeli | 2017-05-07 |
| | |||
* | Flatten CallInfo union member | daurnimator | 2017-05-05 |
| | |||
* | Simplify UpVal structure | daurnimator | 2017-05-05 |
| | | | | | | | No longer follows C api as closely (it is the way it is because C has unions) Instead, have a flat object. Also remove the 'setval' method, as it wasn't used from all call-sites and couldn't be extended to them (setval's body only worked with source TValue on a stack) | ||
* | An open upvalue already knows which lua_State it comes from | daurnimator | 2017-05-05 |
| | |||
* | Add a FIXME, remove a TODO, edit a comment | daurnimator | 2017-05-05 |
| | |||
* | Don't wrap lexer/parser strings in a TValue | daurnimator | 2017-05-05 |
| | | | | Fixes issue where internal TValues get exposed via lua_Debug structure | ||
* | Add lua_pushfstring and lua_pushvstring | daurnimator | 2017-05-04 |
| | |||
* | src/lapi.js: Add missing call to get type | daurnimator | 2017-05-04 |
| | |||
* | Add more/correct validation around integers | daurnimator | 2017-05-04 |
| | |||
* | Remove lua_pushtvalue | daurnimator | 2017-05-03 |
| | | | | Will probably be required again soon; but in a different form (e.g. should validate that TValue comes from same lua state) | ||
* | src/lapi.js: Remove now unused lua_compare_ function | daurnimator | 2017-05-03 |
| | |||
* | Move .id field from TValue to values themselves | daurnimator | 2017-05-03 |
| | |||
* | Add lua_rawseti | daurnimator | 2017-05-03 |
| | |||
* | Refactor table implementation | daurnimator | 2017-05-03 |
| | |||
* | src/lapi.js: Fix typo in aux_upvalue | daurnimator | 2017-05-03 |
| | |||
* | Corrected lua_isnumber bad use of lvm.tonumber | Benoit Giannangeli | 2017-05-02 |
| | |||
* | os.exit | Benoit Giannangeli | 2017-04-28 |
| | |||
* | lua_State shouldn't subclass TValue | daurnimator | 2017-04-28 |
| | |||
* | LClosure and CClosure shouldn't subclass TValue | daurnimator | 2017-04-28 |
| | |||
* | Userdata needs to be boxed so it can have uservalue+metatable | daurnimator | 2017-04-28 |
| | | | | metatable should not be on the TValue | ||
* | Add table construction function | daurnimator | 2017-04-28 |
| | |||
* | src/lapi.js: Ignore size argument to lua_newuserdata | daurnimator | 2017-04-26 |
| | |||
* | Remove lightuserdata object subtype | daurnimator | 2017-04-26 |
| | |||
* | src/lapi.js: return box directly without fetching via stack | daurnimator | 2017-04-26 |
| | |||
* | src/lapi.js: If no size is passed to lua_newuserdata, then create an empty ↵ | daurnimator | 2017-04-26 |
| | | | | object that isn't an ArrayBuffer | ||
* | Remove unused require()s | daurnimator | 2017-04-26 |
| | |||
* | All core files reference defs.js instead of lua.js | daurnimator | 2017-04-26 |
| | |||
* | Force 32bit integer with |0 | Benoit Giannangeli | 2017-04-24 |
| | |||
* | Handle when no upvalue found | Benoit Giannangeli | 2017-04-23 |
| | |||
* | No more Table, just TValue with table type and Map value | Benoit Giannangeli | 2017-04-18 |
| | |||
* | Fixed _ENV upvalue which was the same for all closures | Benoit Giannangeli | 2017-04-18 |
| | |||
* | luaH_next and luaH_getn are not Table member functions | Benoit Giannangeli | 2017-04-18 |
| | |||
* | Cache all to_luastring of internal literals | Benoit Giannangeli | 2017-04-18 |
| | |||
* | hooks | Benoit Giannangeli | 2017-04-14 |
| | |||
* | debug.upvaluejoin | Benoit Giannangeli | 2017-04-14 |
| | |||
* | debug.getuservalue, debug.setuservalue, debug.setlocal | Benoit Giannangeli | 2017-04-14 |
| | |||
* | Table indexes are also starting at 1 internally | Benoit Giannangeli | 2017-04-13 |
| | | | | Since we use a Map we don't have to care about indexes starting at 0 |