summaryrefslogtreecommitdiffstats
path: root/src/script/api/qscriptengine.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* use currentFrame instead of globalExec whenever we canKent Hansen2009-07-091-20/+20
|
* rewrite most of QScriptContext handlingKent Hansen2009-07-081-31/+40
| | | | Do it The right way(TM), by lazily wrapping JSC::ExecState objects.
* Fix engineDelete autotest.Jedrzej Nowacki2009-07-081-0/+14
|
* work on QScriptEngine::uncaughtException()Kent Hansen2009-07-071-6/+11
| | | | | | It's possible that JSC evaluate() returns a completion of type Throw without hadException() being true, so we need to store the exception value explicitly.
* mark the QScriptClass object prototypeKent Hansen2009-07-071-0/+2
|
* start to implement QScriptEngine::importExtension()Kent Hansen2009-07-061-5/+200
|
* implement QScriptEngine::availableExtensions()Kent Hansen2009-07-061-3/+71
|
* make QScriptClass::HasInstance extension workKent Hansen2009-07-061-1/+1
|
* start implementing QScriptClass extensionsKent Hansen2009-07-031-0/+43
| | | | Callable seems to work, HasInstance not quite there yet.
* make more tests passKent Hansen2009-07-031-0/+2
|
* implement a fair amount of the QScriptClass functionalityKent Hansen2009-07-021-5/+131
| | | | | Enumeration is missing, as is the ability to change the class of an object after it has been created.
* first stab at implementing Qt property getter/settersKent Hansen2009-07-021-0/+6
| | | | Not fully working yet, so disabled for now
* don't crash if isFunction() is called with invalid JS valueKent Hansen2009-06-301-1/+1
|
* implement setting of default prototype in newQObject()Kent Hansen2009-06-301-14/+48
|
* implement name-based connection, make more tests workKent Hansen2009-06-301-7/+13
|
* port recent changes from qt/masterKent Hansen2009-06-301-4/+3
| | | | Makes variant conversion work for signal handlers.
* implement QScriptEngine::installTranslatorFunctions()Kent Hansen2009-06-261-2/+134
|
* cleanup, make print() function handle exceptionsKent Hansen2009-06-261-81/+41
|
* implement QMetaObject bindingsKent Hansen2009-06-261-2/+18
|
* work on signal bindings (connect, disconnect, signal emission)Kent Hansen2009-06-241-13/+221
|
* make more qscriptengine tests runKent Hansen2009-06-241-37/+62
| | | | | Not everything passes but at least nothing asserts anymore, so the test runs to completion.
* make most of the qscriptvalue tests passKent Hansen2009-06-231-5/+6
| | | | call(), construct() etc.
* toObject({undefined,null}) should return invalid scriptvalueKent Hansen2009-06-231-1/+1
| | | | JSC will throw an error.
* Import JSC-based Qt Script from Kent's tree.Simon Hausmann2009-06-161-0/+2634