aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4arrayobject.cpp
Commit message (Expand)AuthorAgeFilesLines
...
* | Split ManagedVTable into two classesLars Knoll2014-01-211-2/+2
* | Add a SimpleArrayData classLars Knoll2014-01-201-5/+4
* | Save memory on array dataLars Knoll2014-01-201-19/+10
* | Rework array handling for JS objectsLars Knoll2014-01-091-97/+98
* | Merge remote-tracking branch 'origin/stable' into devSimon Hausmann2014-01-081-1/+1
|\|
| * [ChangeLog][QtQml] Fix JavaScript Array.pop() not updating the internal array...Simon Hausmann2014-01-071-1/+1
* | Move array data into it's own structLars Knoll2014-01-031-39/+39
|/
* Fix regression in QML string list concatenationsSimon Hausmann2013-12-111-2/+12
* Encapsulate the current context and fix it's usageLars Knoll2013-12-041-1/+1
* Move the vtable pointer from the object to the internal classLars Knoll2013-12-041-1/+1
* Fix interaction between head room and appending in arraysLars Knoll2013-11-181-0/+1
* Simplify & speed up function callingLars Knoll2013-11-091-22/+22
* Fix various compiler warnings in order to remove warn_off in the near futureErik Verbruggen2013-11-041-7/+7
* Protect write accesses to objectsLars Knoll2013-10-291-10/+44
* Avoid side effects when en exception has been thrown.Lars Knoll2013-10-291-12/+50
* Avoid creating array attributes if possibleLars Knoll2013-10-141-1/+1
* Use SafeValue instead of Value in ScopedValue methodsLars Knoll2013-10-021-2/+2
* V4: fix ArrayPrototype::method_isArray() build breakJ-P Nurmi2013-10-011-1/+1
* Remove some uses of raw Object pointersLars Knoll2013-09-301-20/+20
* Remove more occurrences of QV4::ValueLars Knoll2013-09-301-5/+5
* Fix API for Object::define*PropertyLars Knoll2013-09-281-5/+7
* Fix Value usage in ErrorObjectsLars Knoll2013-09-281-2/+4
* Remove more direct QV4::Value usageLars Knoll2013-09-281-4/+5
* Move Value::fromBool, ... to a new Primitive classLars Knoll2013-09-281-28/+28
* Fix CallContext to not hold arguments on the C stack anymoreLars Knoll2013-09-281-56/+56
* Fix cases where mark() would access uninitialized memoryLars Knoll2013-09-221-47/+35
* Prevent objects from being collected while in their constructorLars Knoll2013-09-221-1/+1
* Convert the last methods in qv4object_p.hLars Knoll2013-09-221-1/+1
* Fix some more methods to take ValueRef'sLars Knoll2013-09-221-5/+3
* Fix some smaller spec incompliances in Array.concatLars Knoll2013-09-221-11/+5
* convert Managed::put() API to be GC safeLars Knoll2013-09-221-13/+15
* Use a StringRef for Managed::get()Lars Knoll2013-09-221-8/+9
* Cleanup Object::define*Property APILars Knoll2013-09-221-26/+26
* Further work towards an exact GCLars Knoll2013-09-221-74/+67
* Convert more methods to return a Returned<>Lars Knoll2013-09-181-13/+15
* Convert most remaining return values from Value to ReturnedValueLars Knoll2013-09-181-1/+1
* Convert builtin methods to return a ReturnedValueLars Knoll2013-09-181-58/+58
* Use a ReturnedValue for Managed::getIndexed()Lars Knoll2013-09-181-21/+43
* Use ReturnedValue for Managed::get().Lars Knoll2013-09-181-18/+23
* Use ReturnedValue for Managed::construct()Lars Knoll2013-09-181-3/+3
* Rename QV4::ValueScope to QV4::ScopeLars Knoll2013-09-181-10/+10
* Require a ValueScope for ScopedCallData as wellLars Knoll2013-09-181-18/+22
* Use a ReturnedValue for Managed::call()Lars Knoll2013-09-181-22/+33
* Continue conversion to using scoped valuesLars Knoll2013-09-111-4/+10
* Change signature of call/construct() to take a pointer to a CallDataLars Knoll2013-09-111-8/+8
* Move CallData onto the JS stackLars Knoll2013-09-111-46/+47
* Move prototype pointer into QV4::InternalClassLars Knoll2013-09-021-2/+2
* Fix incorrect implementation of Array.toString()Lars Knoll2013-09-021-1/+9
* change calling convention for JS function callsLars Knoll2013-09-021-45/+52
* Factor out protoHasArray and hasAccessorPropertyPeter Varga2013-08-171-21/+3