| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | Minor cleanup | Lars Knoll | 2018-08-01 | 1 | -3/+2 |
| * | Fix a bunch of test failures for Function.prototype.toString() | Lars Knoll | 2018-08-01 | 1 | -1/+1 |
| * | Add support for super calls | Lars Knoll | 2018-07-03 | 1 | -9/+88 |
| * | Refactor initialization code for JS stack frames | Lars Knoll | 2018-07-03 | 1 | -2/+28 |
| * | Implement support for new.target | Lars Knoll | 2018-07-03 | 1 | -8/+8 |
| * | Prefix vtable methods with virtual | Lars Knoll | 2018-07-03 | 1 | -15/+15 |
| * | Unify the managed and object vtables | Lars Knoll | 2018-07-03 | 1 | -7/+7 |
| * | Clean up the property key API in StringOrSymbol | Lars Knoll | 2018-07-02 | 1 | -4/+4 |
| * | Unify the get and getIndexed vtable functions of QV4::Object | Lars Knoll | 2018-07-02 | 1 | -1/+1 |
| * | Cleanups in FunctionObject | Lars Knoll | 2018-06-27 | 1 | -21/+23 |
| * | Add a MemberFunction function object | Lars Knoll | 2018-06-26 | 1 | -9/+26 |
| * | Various fixes for class support | Lars Knoll | 2018-06-26 | 1 | -0/+16 |
| * | Add basic support for EcmaScript classes | Yulong Bai | 2018-06-26 | 1 | -0/+12 |
| * | Remove unused QV4::Function::code member | Simon Hausmann | 2018-05-28 | 1 | -1/+0 |
| * | Cleanup JS stack allocations | Lars Knoll | 2018-05-26 | 1 | -1/+1 |
| * | Remove spurious qDebug() | Lars Knoll | 2018-05-24 | 1 | -2/+0 |
| * | Fix Function.prototype.name | Lars Knoll | 2018-05-24 | 1 | -0/+1 |
| * | Fix some corner cases when parsing Function(...) | Lars Knoll | 2018-05-24 | 1 | -1/+3 |
| * | Print function identifier when calling toString() on a function | Mitch Curtis | 2018-05-23 | 1 | -1/+13 |
| * | Ensure we have a lexical scope for global code | Lars Knoll | 2018-05-11 | 1 | -1/+1 |
| * | name anonymous functions that way | Lars Knoll | 2018-05-03 | 1 | -1/+1 |
| * | Add Generator support | Lars Knoll | 2018-05-03 | 1 | -20/+31 |
| * | Cleanup creation code for builtin functions | Lars Knoll | 2018-05-02 | 1 | -0/+12 |
| * | Make instanceOf compliant with the ES7 spec | Lars Knoll | 2018-05-02 | 1 | -0/+13 |
| * | Fix crash in Function.prototype.bind | Lars Knoll | 2018-05-02 | 1 | -7/+9 |
| * | Remove String dependency from InternalClass | Lars Knoll | 2018-05-02 | 1 | -4/+4 |
| * | Fix length property of Function objects | Lars Knoll | 2018-04-26 | 1 | -1/+1 |
| * | Clean up handling of the 'caller' property | Lars Knoll | 2018-04-26 | 1 | -9/+0 |
| * | Correctly check for duplicate parameter names | Lars Knoll | 2018-04-25 | 1 | -0/+3 |
| * | Merge remote-tracking branch 'origin/5.11' into dev | Qt Forward Merge Bot | 2018-04-18 | 1 | -15/+32 |
| |\ |
|
| | * | Fix calling Qt.binding() on bound functions | Lars Knoll | 2018-04-16 | 1 | -15/+32 |
| * | | garbage collect InternalClass | Lars Knoll | 2018-04-12 | 1 | -9/+8 |
| * | | Better encapsulation for EngineBase::internalClass | Lars Knoll | 2018-04-12 | 1 | -3/+3 |
| * | | Clean up Engine::newObject/newArrayObject | Lars Knoll | 2018-04-12 | 1 | -1/+1 |
| * | | Disambiguate different allocation functions in the memory manager | Lars Knoll | 2018-04-12 | 1 | -1/+1 |
| |/ |
|
| * | use nullptr consistently (clang-tidy) | Shawn Rutledge | 2018-02-26 | 1 | -3/+3 |
| * | Get rid of BuiltinFunction | Lars Knoll | 2018-01-15 | 1 | -21/+0 |
| * | Bring back markObjects(), this time generated | Lars Knoll | 2017-11-14 | 1 | -2/+0 |
| * | Convert more builtin methods to new calling convention | Lars Knoll | 2017-11-13 | 1 | -10/+10 |
| * | Introduce new calling convention for builtin functions | Lars Knoll | 2017-11-13 | 1 | -52/+58 |
| * | Cut out one more C++ layer when doing JS function calls | Lars Knoll | 2017-11-13 | 1 | -18/+4 |
| * | Remove one indirection when doing JS calls | Lars Knoll | 2017-11-07 | 1 | -17/+6 |
| * | Change signature for call/callAsConstructor | Lars Knoll | 2017-11-07 | 1 | -60/+68 |
| * | Rename the construct 'virtual' method to callAsConstructor | Lars Knoll | 2017-11-07 | 1 | -7/+7 |
| * | Simplify JSCallData construction | Lars Knoll | 2017-11-07 | 1 | -2/+2 |
| * | Get rid of the implicit cast operator to a CallData | Lars Knoll | 2017-11-07 | 1 | -2/+2 |
| * | Rename JSCall to JSCallData | Lars Knoll | 2017-11-07 | 1 | -5/+6 |
| * | Change signature of call/construct | Lars Knoll | 2017-11-07 | 1 | -11/+13 |
| * | Add functions pointers for call/construct to FunctionObject | Lars Knoll | 2017-11-07 | 1 | -4/+22 |
| * | Refactor Call/Construct instructions | Lars Knoll | 2017-11-07 | 1 | -5/+9 |