summaryrefslogtreecommitdiffstats
path: root/src/script/api/qscriptvalue.cpp
Commit message (Expand)AuthorAgeFilesLines
* don't crash when attempting to access properties of a JS Object that belonged...Kent Hansen2009-08-261-24/+23
* fix performance issue with QScriptValue::propertyFlags()Kent Hansen2009-08-261-28/+37
* fix performance issue with QScriptValue::setProperty()Kent Hansen2009-08-241-75/+81
* add an internal QScriptValue ctor to initialize from d-pointerKent Hansen2009-08-241-0/+8
* make some internal qtscript functions inlineKent Hansen2009-08-241-53/+0
* compile fix with namespaced Qthjk2009-08-241-2/+2
* pass engine pointer to QScriptValuePrivateKent Hansen2009-08-241-31/+17
* handle memory management of QScriptValuePrivate in engine if possibleKent Hansen2009-08-241-15/+31
* avoid calling QScriptValue::isFunction() inside call() and construct()Kent Hansen2009-08-241-16/+26
* use QVarLengthArray instead of QVector for holding JS argumentsKent Hansen2009-08-241-4/+3
* QScriptValue: No need to create the activation object for call or constructOlivier Goffart2009-08-241-4/+0
* Fix obsolete license headers.Jason McDonald2009-08-211-1/+1
* compile again after mergeHarald Fernengel2009-08-211-33/+4
* implement registered script values as a doubly linked listKent Hansen2009-08-201-1/+1
* use a list to keep track of registered script valuesKent Hansen2009-08-201-36/+20
* store the engine's d-pointer in QScriptValuePrivateKent Hansen2009-08-201-117/+85
* remove redundant variableKent Hansen2009-08-201-5/+2
* Fix QScriptValue::objectId().Jedrzej Nowacki2009-08-191-2/+2
* Clean upJedrzej Nowacki2009-08-191-1/+0
* Internal API clean up.Jedrzej Nowacki2009-08-191-11/+0
* Clean up.Jedrzej Nowacki2009-08-191-32/+32
* Clean up.Jedrzej Nowacki2009-08-181-11/+9
* Fix compilation on WindowsSimon Hausmann2009-08-141-0/+1
* Lazily construct the QScriptActivationObjectOlivier Goffart2009-08-131-0/+5
* Make simple function getters inlineOlivier Goffart2009-08-121-5/+0
* Refactor the way the JS stack are created for native functionOlivier Goffart2009-08-121-1/+0
* make property flags lookup work for properties in prototype chainKent Hansen2009-08-101-3/+7
* make ResolveScope property lookup work (kind of)Kent Hansen2009-08-101-2/+9
* add configure options for (not) building the QtScript moduleKent Hansen2009-08-071-4/+0
* remove docs that mention QScriptValue::{scope,setScope}()Kent Hansen2009-08-061-2/+2
* adapt to commit 014c4c63066fd3920594e6a58b02f314b5c88cdfKent Hansen2009-08-041-6/+6
* Unify QScriptValue::toObject() and QScriptEngine::toObject()Benjamin Poulain2009-08-031-19/+1
* Move the declaration on some function into qscriptengine_p.hOlivier Goffart2009-07-311-7/+0
* Fix license headersOlivier Goffart2009-07-291-7/+37
* don't allow defining getter/setter for __proto__ propertyKent Hansen2009-07-281-4/+9
* make more tests pass for QScriptValue::setProperty()Kent Hansen2009-07-281-23/+53
* make QScriptEngine::setGlobalObject() work to some extentKent Hansen2009-07-271-4/+5
* don't rely on custom global object to get GC callbackKent Hansen2009-07-271-2/+2
* Remove the uncaughtException, use the JSC exception insteadBenjamin Poulain2009-07-271-16/+7
* Clear the exceptions before calling a function.Olivier Goffart2009-07-241-4/+24
* Implement QScriptString as a wraper around the JSC::IdentifierOlivier Goffart2009-07-231-64/+75
* make QScriptValue::{call,construct}() use JSC::{call,construct}()Kent Hansen2009-07-231-56/+4
* More tests fixed (QScriptValue::toString)Olivier Goffart2009-07-221-0/+8
* Fix the return value of a function call that throws an error.Ariya Hidayat2009-07-171-1/+3
* Fix the return value of a constructor that throws an error.Ariya Hidayat2009-07-171-1/+3
* implement cyclic prototype chain checkKent Hansen2009-07-171-1/+12
* make QScriptValue::toString() et al work when there's an exceptionKent Hansen2009-07-171-11/+75
* We cant rely on property attributes from JavaScriptCore for the setter and ge...Olivier Goffart2009-07-161-3/+3
* Convert the strings or number value to jscvalue when they are used with an en...Olivier Goffart2009-07-161-12/+14
* don't try to be so cleverKent Hansen2009-07-151-7/+4