index
:
qt/qtdeclarative.git
5.10
5.11
5.12
5.13
5.14
5.15
5.3
5.4
5.5
5.6
5.7
5.8
5.9
6.0
6.1
6.2
6.2.0
6.2.4
6.3
6.4
6.4.0
6.4.1
6.4.2
6.4.3
6.5
6.5.0
6.5.1
6.5.2
6.5.3
6.6
6.6.0
6.6.1
6.6.2
6.6.3
6.7
6.7.0
6.7.1
6.7.2
6.7.3
6.8
6.8.0
6.8.1
6.8.2
6.8.3
6.9
6.9.0
6.9.1
dev
old/5.0
old/5.1
old/5.2
r2d-5.5
r2d-5.6
r2d-5.6.0
r2d-dev
wip/animation-refactor
wip/cmake
wip/dbus
wip/figmastyle
wip/gc
wip/iosstyle
wip/itemviews
wip/material3
wip/nacl
wip/nativemenus
wip/new-backend
wip/pointerhandler
wip/propertycache-refactor
wip/qquickdeliveryagent
wip/qtquickcontrols2
wip/scenegraphng
wip/statemachine
wip/textng
wip/tizen
wip/visuallistmodel
wip/webassembly
Qt Declarative (Quick 2)
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
qml
/
jsruntime
/
qv4arrayobject.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Rework the sort implementation for Sequences
Luca Di Sera
2024-06-06
1
-3
/
+56
*
V4: Slim down FunctionObject
Ulf Hermann
2024-05-14
1
-2
/
+2
*
V4: Eliminate "done" from iterators
Ulf Hermann
2023-09-08
1
-7
/
+4
*
Replace CallElement with separate instructions
Ulf Hermann
2022-11-07
1
-1
/
+15
*
QtQml: Remove unused includes in qml, first part
Semih Yavuz
2022-09-14
1
-5
/
+0
*
Implement array methods for QQmlListProperty
Ulf Hermann
2022-07-16
1
-16
/
+23
*
Use SPDX license identifiers
Lucie Gérard
2022-06-11
1
-39
/
+3
*
Use QV4::Scope::hasException() where applicable
Ulf Hermann
2021-06-30
1
-3
/
+3
*
Assert that pointer is non-null
Fabian Kosmale
2021-03-18
1
-0
/
+2
*
Merge remote-tracking branch 'origin/5.14' into 5.15
Qt Forward Merge Bot
2020-01-29
1
-1
/
+7
|
\
|
*
V4: Check for exceptions before we use the result of a JS call
Ulf Hermann
2020-01-23
1
-1
/
+6
|
*
ArrayPrototype::method_filter: Check for exception after callback
Ulf Hermann
2020-01-23
1
-0
/
+1
*
|
Merge remote-tracking branch 'origin/5.14' into 5.15
Qt Forward Merge Bot
2020-01-09
1
-1
/
+2
|
\
|
|
*
QV4: Array.includes: Support large arrays
Fabian Kosmale
2020-01-07
1
-1
/
+2
*
|
Clean up ArrayPrototype::method_join
Ulf Hermann
2019-10-21
1
-37
/
+35
|
/
*
Split QV4::Value into a static and a dynamic part
Ulf Hermann
2019-05-31
1
-1
/
+2
*
Merge remote-tracking branch 'origin/5.13' into dev
Qt Forward Merge Bot
2019-03-29
1
-1
/
+3
|
\
|
*
Scope intermediate values when allocating objects
Ulf Hermann
2019-03-27
1
-1
/
+3
*
|
V4: Clean up the runtime functions declarations
Erik Verbruggen
2019-02-05
1
-6
/
+6
|
/
*
Ensure our builtin constructors are subclassable
Lars Knoll
2018-11-22
1
-1
/
+3
*
Get rid of ArrayData::Complex
Lars Knoll
2018-09-27
1
-1
/
+1
*
Cleanups in Value/Primitive
Lars Knoll
2018-09-17
1
-51
/
+51
*
Fix remaining test failures for Array.isArray
Lars Knoll
2018-08-29
1
-3
/
+5
*
Implement IsConstructor for Function objects
Lars Knoll
2018-08-23
1
-13
/
+3
*
Fix toLocaleString implementations in (Typed)Array.prototype
Lars Knoll
2018-08-23
1
-3
/
+30
*
Implement TypedArray.prototype.copyWithin
Lars Knoll
2018-08-23
1
-1
/
+1
*
Add support for @@unscopables
Lars Knoll
2018-07-30
1
-8
/
+27
*
Make Array.prototype.concat comply better with the spec
Lars Knoll
2018-07-30
1
-10
/
+19
*
Implement support for new.target
Lars Knoll
2018-07-03
1
-2
/
+2
*
Prefix vtable methods with virtual
Lars Knoll
2018-07-03
1
-3
/
+3
*
Replace Identifier by PropertyKey
Lars Knoll
2018-07-02
1
-13
/
+13
*
Unify the get and getIndexed vtable functions of QV4::Object
Lars Knoll
2018-07-02
1
-29
/
+29
*
Unify put and putIndexed
Lars Knoll
2018-07-02
1
-10
/
+10
*
Unify deleteProperty and deleteIndexedProperty vtable methods
Lars Knoll
2018-06-26
1
-10
/
+10
*
Implement a virtual interface for getOwnProperty
Lars Knoll
2018-06-25
1
-3
/
+3
*
Add the start of a Set from ES7
Robin Burchell
2018-05-30
1
-3
/
+3
*
qv4arrayobject: Implement Array.from from ES7
Robin Burchell
2018-05-30
1
-15
/
+167
*
qv4arrayobject: Implement Array.prototype.copyWithin as per ES7
Robin Burchell
2018-05-30
1
-0
/
+71
*
qv4arrayobject: Implement Array.of from ES7
Robin Burchell
2018-05-27
1
-0
/
+45
*
qv4arrayobject: Implement Array.prototype.includes from ES7
Robin Burchell
2018-05-25
1
-0
/
+40
*
qv4arrayobject: Implement Array.prototype.fill according to ES7
Robin Burchell
2018-05-25
1
-0
/
+37
*
Fix the length property of various functions
Lars Knoll
2018-05-24
1
-1
/
+1
*
Implement Symbol.species getter functions
Lars Knoll
2018-05-15
1
-0
/
+7
*
Implement support for arguments[Symbol.iterator]
Lars Knoll
2018-05-02
1
-2
/
+5
*
Add Array Iterator objects from ES6 (22.1.5)
Robin Burchell
2018-05-02
1
-0
/
+42
*
Fixes when using getLength()
Lars Knoll
2018-05-02
1
-3
/
+6
*
Correctly check length limit in Array.push()
Lars Knoll
2018-05-02
1
-2
/
+2
*
The length of array like objects can in some cases be 2^53 -1 in ES7
Lars Knoll
2018-05-02
1
-9
/
+23
*
Convert methods of Array to new calling convention
Lars Knoll
2017-11-13
1
-178
/
+163
*
Convert runtime methods of Object to new calling convention
Lars Knoll
2017-11-13
1
-1
/
+1
[next]