| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | compile | Kent Hansen | 2009-07-27 | 1 | -3/+3 |
|
|
* | make QScriptEngine::setGlobalObject() work to some extent | Kent Hansen | 2009-07-27 | 3 | -26/+140 |
|
|
* | don't rely on custom global object to get GC callback | Kent Hansen | 2009-07-27 | 5 | -43/+40 |
|
|
* | 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 | 3 | -26/+13 |
|
|
* | 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 | 2 | -27/+27 |
|
|
* | 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 |
|
|
* | 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 | 1 | -3/+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 | 2 | -7/+13 |
|
|
* | 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 |
|
|
* | compile when JIT is enabled | Kent Hansen | 2009-07-15 | 1 | -0/+1 |
|
|
* | don't try to be so clever | Kent Hansen | 2009-07-15 | 1 | -7/+4 |
|
|
* | fix GC-related crash | Kent Hansen | 2009-07-15 | 1 | -2/+4 |
|
|
* | fix some memory leaks | Kent Hansen | 2009-07-15 | 2 | -2/+7 |
|
|
* | avoid crashing when attempting to set this-object of global context | Kent Hansen | 2009-07-15 | 1 | -0/+4 |
|
|
* | initial attempt at implementing QScriptEngine::setGlobalObject() | Kent Hansen | 2009-07-15 | 2 | -7/+80 |
|
|
* | implement enumeration of custom script classes | Kent Hansen | 2009-07-15 | 1 | -3/+0 |
|
|
* | implement QObject wrapper caching (PreferExistingWrapperObject) | Kent Hansen | 2009-07-15 | 1 | -2/+12 |
|
|
* | implement QScriptEngine::isEvaluating() | Kent Hansen | 2009-07-15 | 1 | -3/+2 |
|
|
* | don't assert in QScriptEngine::setGlobalObject() | Kent Hansen | 2009-07-13 | 1 | -2/+2 |
|
|
* | add GC marking guards | Kent Hansen | 2009-07-13 | 1 | -7/+13 |
|
|
* | Merge branch 'qtscript-jsc-backend' of git@scm.dev.nokia.troll.no:qt/qt-webki... | Jedrzej Nowacki | 2009-07-13 | 3 | -268/+93 |
|\ |
|
| * | don't crash during GC if no prototype has been set for a metatype | Kent Hansen | 2009-07-10 | 1 | -4/+7 |
|
|
| * | implement ability to dynamically change class of script objects | Kent Hansen | 2009-07-10 | 3 | -264/+86 |
|
|
* | | fix checkSyntax autotest. | Jedrzej Nowacki | 2009-07-13 | 3 | -17/+42 |
|
|
* | | fix autotest canEvaluate. | Jedrzej Nowacki | 2009-07-13 | 2 | -5/+82 |
|/ |
|
* | some small fixes/experiments | Kent Hansen | 2009-07-10 | 1 | -4/+20 |
|
|
* | register QScriptValue as meta-type | Kent Hansen | 2009-07-09 | 1 | -0/+2 |
|
|
* | use JSC::call() and JSC::construct() | Kent Hansen | 2009-07-09 | 1 | -54/+2 |
|
|
* | Fix autotest checking QScriptValue::objectId method. | Jedrzej Nowacki | 2009-07-09 | 4 | -19/+29 |
|
|
* | make arguments object work for native functions | Kent Hansen | 2009-07-09 | 1 | -1/+1 |
|
|
* | use currentFrame instead of globalExec whenever we can | Kent Hansen | 2009-07-09 | 2 | -47/+47 |
|
|
* | support callees that are not function objects | Kent Hansen | 2009-07-09 | 2 | -5/+5 |
|
|