summaryrefslogtreecommitdiffstats
path: root/src/script/api/qscriptengine.cpp
Commit message (Expand)AuthorAgeFilesLines
* make sure the engine's currentFrame is in sync when calling out to public APIKent Hansen2009-09-221-0/+2
* use JSObject::inherits() instead of JSObject::isObject()Kent Hansen2009-09-211-2/+2
* initialize the this-register of the global contextKent Hansen2009-09-181-0/+1
* put the this-register calculation into a functionKent Hansen2009-09-181-2/+8
* Fix compilation with winscwSimon Hausmann2009-09-101-1/+1
* Fix the bactkrace in the QScript DebuggerOlivier Goffart2009-09-091-0/+5
* Update license headers again.Jason McDonald2009-09-091-4/+4
* improve memory management scheme of QScriptString(Private)Kent Hansen2009-09-021-2/+21
* doc: Fixed several qdoc errors.Martin Smith2009-09-021-10/+9
* Optimize QScriptClassOlivier Goffart2009-09-021-3/+1
* Update tech preview license header for files that are new in 4.6.Jason McDonald2009-08-311-13/+13
* Make it possible for autotests to check if JIT is enabled or notKent Hansen2009-08-281-0/+11
* QScriptEngine: Remove one superflous stackframe for native call made by JITOlivier Goffart2009-08-281-1/+7
* fix compiler warnings on WindowsKent Hansen2009-08-271-2/+2
* Another memoryleak in QScriptEngineOlivier Goffart2009-08-251-5/+5
* Memory leak in QScriptEngineAgent.Olivier Goffart2009-08-251-3/+0
* Fix memory leak in QScriptEngine::newQObjectOlivier Goffart2009-08-251-8/+6
* make some internal qtscript functions inlineKent Hansen2009-08-241-64/+0
* pass engine pointer to QScriptValuePrivateKent Hansen2009-08-241-2/+1
* handle memory management of QScriptValuePrivate in engine if possibleKent Hansen2009-08-241-2/+23
* Fix obsolete license headers.Jason McDonald2009-08-211-1/+1
* compile again after mergeHarald Fernengel2009-08-211-17/+1
* implement registered script values as a doubly linked listKent Hansen2009-08-201-11/+27
* use a list to keep track of registered script valuesKent Hansen2009-08-201-26/+16
* store the engine's d-pointer in QScriptValuePrivateKent Hansen2009-08-201-5/+3
* provide line number information for innermost call frameKent Hansen2009-08-201-0/+1
* make QScriptEngine::objectById() workKent Hansen2009-08-201-7/+2
* Do not pass JSValue per const referenceOlivier Goffart2009-08-191-2/+2
* CleanupsOlivier Goffart2009-08-191-17/+1
* Fix QScriptValue::objectId().Jedrzej Nowacki2009-08-191-3/+2
* make QScriptEngine::isEvaluating() work for top-level evaluationKent Hansen2009-08-191-2/+20
* Internal API clean up.Jedrzej Nowacki2009-08-191-1/+0
* Clean up.Jedrzej Nowacki2009-08-191-6/+9
* adopt same ownership relationship of scriptengine agents as in old back-endKent Hansen2009-08-181-7/+27
* Clean up.Jedrzej Nowacki2009-08-181-39/+29
* remove unnecessary ifdefsKent Hansen2009-08-171-10/+7
* use originalGlobalObject() instead of lexicalGlobalObject() where possibleKent Hansen2009-08-141-2/+2
* Fix compilation on WindowsSimon Hausmann2009-08-141-0/+1
* Fix compilation with MSVCSimon Hausmann2009-08-141-10/+10
* Lazily construct the QScriptActivationObjectOlivier Goffart2009-08-131-12/+42
* Make simple function getters inlineOlivier Goffart2009-08-121-14/+0
* Set 'this' on the javascript stack for native functionOlivier Goffart2009-08-121-0/+4
* Cantralize the place when we construct the default 'this' object that JSC doe...Olivier Goffart2009-08-121-1/+10
* Refactor the way the JS stack are created for native functionOlivier Goffart2009-08-121-37/+63
* Move JSC::Debugger's events calls from JSC::evaluate() toJedrzej Nowacki2009-08-121-1/+31
* Crash fix.Jedrzej Nowacki2009-08-121-1/+2
* Implement connection between JSC::Debugger and QScriptEngineAgent.Jedrzej Nowacki2009-08-111-8/+9
* get rid of dynamic castsKent Hansen2009-08-101-4/+9
* cleanup (hide the use of reinterpret_cast)Kent Hansen2009-08-101-1/+10
* finish implementation of QScriptEngine::importExtension()Kent Hansen2009-08-101-24/+25