| Commit message (Expand) | Author | Age | Files | Lines |
| * | Merge remote-tracking branch 'origin/5.13' into dev | Qt Forward Merge Bot | 2019-04-18 | 1 | -2/+1 |
| |\ |
|
| | * | Fix string replacement with invalid captures | Ulf Hermann | 2019-04-15 | 1 | -2/+1 |
| * | | Don't use UINT_MAX as invalid array index in PropertyKey | Ulf Hermann | 2019-04-16 | 1 | -7/+8 |
| |/ |
|
| * | Don't keep raw pointers to SparseArrayNode | Ulf Hermann | 2019-03-14 | 1 | -1/+1 |
| * | Bring behavior of String.replace() in line with other engines | Lars Knoll | 2019-01-25 | 1 | -14/+25 |
| * | Ensure our builtin constructors are subclassable | Lars Knoll | 2018-11-22 | 1 | -2/+8 |
| * | INTEGRITY: Fix build failures on 64-bit ARM | Pasi Petäjäjärvi | 2018-10-22 | 1 | -2/+2 |
| * | Make Object::getOwnProperty() const | Lars Knoll | 2018-09-23 | 1 | -3/+3 |
| * | Cleanups in Value/Primitive | Lars Knoll | 2018-09-17 | 1 | -22/+22 |
| * | Fix ownKey iteration over Proxy objects | Lars Knoll | 2018-09-09 | 1 | -1/+2 |
| * | Fix some details in RegExp handling | Lars Knoll | 2018-08-15 | 1 | -1/+4 |
| * | Implement String.prototype.match as per ES7 spec | Lars Knoll | 2018-08-15 | 1 | -29/+17 |
| * | Implement String.raw | Lars Knoll | 2018-08-06 | 1 | -0/+42 |
| * | Implement ObjectIterator using the new iteration mechanism | Lars Knoll | 2018-08-02 | 1 | -29/+0 |
| * | Introduce a new mechanism to iterate over object properties | Lars Knoll | 2018-08-02 | 1 | -11/+45 |
| * | Implement support for new.target | Lars Knoll | 2018-07-03 | 1 | -2/+2 |
| * | Prefix vtable methods with virtual | Lars Knoll | 2018-07-03 | 1 | -9/+9 |
| * | Replace Identifier by PropertyKey | Lars Knoll | 2018-07-02 | 1 | -3/+3 |
| * | Unify deleteProperty and deleteIndexedProperty vtable methods | Lars Knoll | 2018-06-26 | 1 | -9/+9 |
| * | Move special handling of getOwnProperty for StringObject where it belongs | Lars Knoll | 2018-06-26 | 1 | -0/+20 |
| * | Fix length properties of global constructors | Lars Knoll | 2018-06-25 | 1 | -1/+1 |
| * | Implement a virtual interface for getOwnProperty | Lars Knoll | 2018-06-25 | 1 | -2/+1 |
| * | Implement String.prototype.padEnd/padStart | Lars Knoll | 2018-05-23 | 1 | -0/+84 |
| * | Implement String.prototype.normalize | Lars Knoll | 2018-05-23 | 1 | -0/+28 |
| * | Implement String.fromCodePoint | Lars Knoll | 2018-05-15 | 1 | -12/+42 |
| * | Implement String.prototype.codePointAt | Lars Knoll | 2018-05-15 | 1 | -0/+24 |
| * | Avoid accessing an object with this == nullptr | Lars Knoll | 2018-05-04 | 1 | -0/+1 |
| * | Implement StringIterator | Lars Knoll | 2018-05-02 | 1 | -0/+15 |
| * | Fixes to symbol handling in StringObject and toString() | Lars Knoll | 2018-05-02 | 1 | -24/+21 |
| * | Partial Symbol support | Lars Knoll | 2018-05-02 | 1 | -3/+11 |
| * | Fix JIT build on INTEGRITY ARM64 | Kimmo Ollila | 2018-04-26 | 1 | -2/+2 |
| * | use nullptr consistently (clang-tidy) | Shawn Rutledge | 2018-02-26 | 1 | -3/+3 |
| * | Fix a couple of places where we'd free used objects | Lars Knoll | 2018-01-26 | 1 | -3/+4 |
| * | Introduce a SubString String type | Lars Knoll | 2018-01-19 | 1 | -3/+13 |
| * | Split up String type into a regular and a ComplexString | Lars Knoll | 2018-01-19 | 1 | -1/+1 |
| * | Convert String methods to new calling convention | Lars Knoll | 2017-11-13 | 1 | -139/+123 |
| * | Convert methods of RegExp to new calling convention | Lars Knoll | 2017-11-13 | 1 | -2/+2 |
| * | Change signature for call/callAsConstructor | Lars Knoll | 2017-11-07 | 1 | -8/+8 |
| * | Rename the construct 'virtual' method to callAsConstructor | Lars Knoll | 2017-11-07 | 1 | -2/+2 |
| * | Further cleanup JSCallData | Lars Knoll | 2017-11-07 | 1 | -1/+1 |
| * | Simplify JSCallData construction | Lars Knoll | 2017-11-07 | 1 | -4/+4 |
| * | Get rid of JSCallData::call() | Lars Knoll | 2017-11-07 | 1 | -9/+9 |
| * | Get rid of JSCallData::callAsConstructor() | Lars Knoll | 2017-11-07 | 1 | -3/+3 |
| * | Rename JSCall to JSCallData | Lars Knoll | 2017-11-07 | 1 | -2/+2 |
| * | Refactor Call/Construct instructions | Lars Knoll | 2017-11-07 | 1 | -3/+6 |
| * | Merge remote-tracking branch 'origin/dev' into HEAD | Lars Knoll | 2017-10-22 | 1 | -1/+1 |
| |\ |
|
| | * | Merge remote-tracking branch 'origin/5.9' into 5.10 | Lars Knoll | 2017-09-20 | 1 | -1/+1 |
| | |\ |
|
| | | * | Fix reuse of regexp objects by regexp literals | Allan Sandfeld Jensen | 2017-09-08 | 1 | -1/+1 |
| * | | | Change CallData::argc to be a QV4::Value | Erik Verbruggen | 2017-09-19 | 1 | -26/+26 |
| * | | | Optimize String.match() | Lars Knoll | 2017-09-15 | 1 | -41/+30 |