aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4regexpobject.cpp
Commit message (Expand)AuthorAgeFilesLines
* Small optimization to RegExpLars Knoll2014-03-181-1/+1
* Cleanup our runtime methodsLars Knoll2014-03-111-2/+2
* Use an array of Value's for Object::memberDataLars Knoll2014-03-071-3/+3
* Make the Ref classes not template basedLars Knoll2014-02-071-1/+1
* Rename Referenced to ManagedRefLars Knoll2014-02-071-1/+1
* CleanupsLars Knoll2014-01-311-1/+1
* Merge "Merge remote-tracking branch 'origin/stable' into dev" into refs/stagi...Simon Hausmann2014-01-241-2/+91
|\
| * Merge remote-tracking branch 'origin/stable' into devSimon Hausmann2014-01-241-2/+91
| |\
| | * Add support for deprecated RegExp (constructor) propertiesSimon Hausmann2014-01-201-2/+91
* | | Change virtual methods in ArrayData to take Object pointerLars Knoll2014-01-241-1/+1
|/ /
* | Split ManagedVTable into two classesLars Knoll2014-01-211-5/+5
* | Add a SimpleArrayData classLars Knoll2014-01-201-1/+0
* | Cleanup: change signature of Object::insertMember()Lars Knoll2014-01-091-3/+2
* | Rework array handling for JS objectsLars Knoll2014-01-091-2/+4
* | Move array data into it's own structLars Knoll2014-01-031-2/+2
* | Move Managed::type and some flags into the vtableLars Knoll2014-01-031-1/+1
|/
* 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-2/+2
* Simplify & speed up function callingLars Knoll2013-11-091-4/+4
* Optimise string additionsLars Knoll2013-11-051-3/+5
* Refactor marking GC'ed objectsLars Knoll2013-11-051-3/+3
* Fix various compiler warnings in order to remove warn_off in the near futureErik Verbruggen2013-11-041-10/+11
* Protect write accesses to objectsLars Knoll2013-10-291-0/+4
* Avoid side effects when en exception has been thrown.Lars Knoll2013-10-291-6/+6
* Fix GC issues with usage of raw RegExp pointersLars Knoll2013-10-151-3/+4
* Fix the remaining objects against self destructionLars Knoll2013-10-111-0/+3
* Use SafeValue instead of Value in ScopedValue methodsLars Knoll2013-10-021-5/+6
* Remove more occurrences of QV4::ValueLars Knoll2013-09-301-2/+3
* Fix API for Object::define*PropertyLars Knoll2013-09-281-6/+9
* Remove Value::fromString()Lars Knoll2013-09-281-2/+2
* Remove more direct QV4::Value usageLars Knoll2013-09-281-1/+2
* Move Value::fromBool, ... to a new Primitive classLars Knoll2013-09-281-12/+12
* Fix CallContext to not hold arguments on the C stack anymoreLars Knoll2013-09-281-6/+6
* Fix cases where mark() would access uninitialized memoryLars Knoll2013-09-221-1/+1
* Prevent objects from being collected while in their constructorLars Knoll2013-09-221-1/+3
* Use a StringRef for Managed::get()Lars Knoll2013-09-221-3/+5
* Cleanup Object::define*Property APILars Knoll2013-09-221-12/+12
* Add a Safe<T> class and start using itLars Knoll2013-09-221-2/+3
* Convert more methods to return a Returned<>Lars Knoll2013-09-181-2/+2
* Convert a few more methods in ExecutionEngine to use protected pointersLars Knoll2013-09-181-4/+2
* Convert builtin methods to return a ReturnedValueLars Knoll2013-09-181-11/+12
* Use ReturnedValue for Managed::get().Lars Knoll2013-09-181-1/+2
* Use ReturnedValue for Managed::construct()Lars Knoll2013-09-181-5/+5
* Rename QV4::ValueScope to QV4::ScopeLars Knoll2013-09-181-3/+3
* Require a ValueScope for ScopedCallData as wellLars Knoll2013-09-181-1/+2
* Use a ReturnedValue for Managed::call()Lars Knoll2013-09-181-3/+3
* Continue conversion to using scoped valuesLars Knoll2013-09-111-10/+14
* 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-4/+4
* Optimize String.replace and RegExp.execLars Knoll2013-09-021-9/+10