| Commit message (Expand) | Author | Age | Files | Lines |
* | Basic implementation of QScriptValueIterator with JSC | Benjamin Poulain | 2009-07-31 | 1 | -15/+30 |
|
|
* | implement QScriptContext::activationObject() | Kent Hansen | 2009-07-30 | 1 | -9/+38 |
|
|
* | Add missing file | Olivier Goffart | 2009-07-30 | 1 | -0/+88 |
|
|
* | attempt to return something sensible in uncaughtExceptionBacktrace() | Kent Hansen | 2009-07-30 | 1 | -4/+10 |
|
|
* | Implement QScriptEngine::pushContext end popContext | Olivier Goffart | 2009-07-30 | 2 | -4/+28 |
|
|
* | Move QScriptActivationObject to his own file | Olivier Goffart | 2009-07-30 | 3 | -37/+100 |
|
|
* | set calledAsConstructor to true when function is called as constructor | Kent Hansen | 2009-07-29 | 4 | -0/+11 |
|
|
* | initialize calledAsConstructor member | Kent Hansen | 2009-07-29 | 1 | -0/+1 |
|
|
* | Fix license headers | Olivier Goffart | 2009-07-29 | 36 | -151/+1231 |
|
|
* | Compile in release mode. | Olivier Goffart | 2009-07-29 | 1 | -0/+1 |
|
|
* | Enter a scope when enterning a native function. | Olivier Goffart | 2009-07-29 | 2 | -13/+90 |
|
|
* | Memory leak. | Olivier Goffart | 2009-07-29 | 1 | -1/+1 |
|
|
* | Set the this object on the global context sets the global object | Olivier Goffart | 2009-07-28 | 1 | -1/+1 |
|
|
* | don't allow defining getter/setter for __proto__ property | Kent Hansen | 2009-07-28 | 1 | -4/+9 |
|
|
* | make more tests pass for QScriptValue::setProperty() | Kent Hansen | 2009-07-28 | 1 | -23/+53 |
|
|
* | Fix tst_QScriptEngine::uncaughtException | Olivier Goffart | 2009-07-28 | 1 | -1/+0 |
|
|
* | Fix tst_QScriptEngine::nestedEvaluate | Olivier Goffart | 2009-07-28 | 3 | -8/+18 |
|
|
* | Make the 'arguments' object working when calling eval from native functions | Olivier Goffart | 2009-07-28 | 1 | -2/+7 |
|
|
* | Change JavaScriptCore so it throw error when passing invalid regexp flag | Olivier Goffart | 2009-07-28 | 1 | -1/+8 |
|
|
* | compile | Kent Hansen | 2009-07-27 | 1 | -3/+3 |
|
|
* | make QScriptEngine::setGlobalObject() work to some extent | Kent Hansen | 2009-07-27 | 5 | -34/+165 |
|
|
* | use engine's globalObject() instead of exec's lexicalGlobalObject() | Kent Hansen | 2009-07-27 | 1 | -7/+7 |
|
|
* | don't rely on custom global object to get GC callback | Kent Hansen | 2009-07-27 | 6 | -45/+42 |
|
|
* | The line number is correctly reported for exception | Benjamin Poulain | 2009-07-27 | 1 | -0/+1 |
|
|
* | Remove the uncaughtException, use the JSC exception instead | Benjamin Poulain | 2009-07-27 | 4 | -29/+14 |
|
|
* | Fix tst_QScriptExtQObject::objectDeleted() | Benjamin Poulain | 2009-07-27 | 1 | -1/+2 |
|
|
* | Fix tst_QScriptValue::call | Olivier Goffart | 2009-07-27 | 1 | -2/+5 |
|
|
* | Fix tst_QScriptContext::arguments | Olivier Goffart | 2009-07-27 | 1 | -2/+3 |
|
|
* | use custom JSGlobalData clientdata to keep pointer to script engine | Kent Hansen | 2009-07-27 | 1 | -1/+11 |
|
|
* | move engine-specific GC marking to QScriptEnginePrivate | Kent Hansen | 2009-07-27 | 2 | -40/+45 |
|
|
* | use scriptEngineFromExec() in a few more places | Kent Hansen | 2009-07-27 | 1 | -3/+3 |
|
|
* | introduce scriptEngineFromExec() helper function | Kent Hansen | 2009-07-27 | 4 | -45/+47 |
|
|
* | Clear the exceptions before calling a function. | Olivier Goffart | 2009-07-24 | 1 | -4/+24 |
|
|
* | Implement QScriptString as a wraper around the JSC::Identifier | Olivier Goffart | 2009-07-23 | 6 | -91/+114 |
|
|
* | Try best to convert a regexp to a ECMAScript expression | Olivier Goffart | 2009-07-23 | 1 | -1/+40 |
|
|
* | make QScriptValue::{call,construct}() use JSC::{call,construct}() | Kent Hansen | 2009-07-23 | 1 | -56/+4 |
|
|
* | More tests fixed (QScriptValue::toString) | Olivier Goffart | 2009-07-22 | 1 | -0/+8 |
|
|
* | Implement qobjectProtoFuncFindChildren() | Benjamin Poulain | 2009-07-22 | 1 | -1/+50 |
|
|
* | Fix the return value of a function call that throws an error. | Ariya Hidayat | 2009-07-17 | 1 | -1/+3 |
|
|
* | Fix the return value of a constructor that throws an error. | Ariya Hidayat | 2009-07-17 | 1 | -1/+3 |
|
|
* | implement cyclic prototype chain check | Kent Hansen | 2009-07-17 | 1 | -1/+12 |
|
|
* | make QScriptValue::toString() et al work when there's an exception | Kent Hansen | 2009-07-17 | 2 | -11/+78 |
|
|
* | set correct property flags in newFunction() | Kent Hansen | 2009-07-17 | 1 | -2/+3 |
|
|
* | We cant rely on property attributes from JavaScriptCore for the setter and ge... | Olivier Goffart | 2009-07-16 | 3 | -15/+3 |
|
|
* | do the correct prototype check | Kent Hansen | 2009-07-16 | 1 | -2/+1 |
|
|
* | start implementing constructors for QMetaObject wrappers | Kent Hansen | 2009-07-16 | 4 | -11/+123 |
|
|
* | fix bug in built-in print() function | Kent Hansen | 2009-07-16 | 1 | -3/+2 |
|
|
* | Convert the strings or number value to jscvalue when they are used with an en... | Olivier Goffart | 2009-07-16 | 3 | -22/+26 |
|
|
* | only set default prototype if resulting object has built-in Object prototype ... | Kent Hansen | 2009-07-16 | 1 | -1/+4 |
|
|
* | fix enumeration of QObject wrapper objects | Kent Hansen | 2009-07-16 | 1 | -3/+1 |
|
|