platform/upstream/qtdeclarative.git
2013-01-27 Lars KnollFix a bug in the evaluation of &&
2013-01-25 Simon HausmannFix empty return statement in eval
2013-01-25 Simon HausmannFix remaining issues with the delete operator
2013-01-25 Simon HausmannFix more tests with the delete operator
2013-01-25 Erik VerbruggenSuppress a linker warning for unused flag.
2013-01-25 Lars KnollRemove the isString and isArray flags in Managed
2013-01-25 Lars KnollInline casting of Value to objects
2013-01-25 Lars KnollRemove a bunch of virtuals in Object
2013-01-25 Lars KnollFaster marking of objects in the GC
2013-01-25 Lars KnollAdd missing return statement
2013-01-25 Lars KnollRemove a few virtual keywords that aren't required...
2013-01-24 Erik VerbruggenFix compilation of llvm backend.
2013-01-24 Simon HausmannDelete on a function argument should return false
2013-01-24 Simon HausmannThrow a syntax error if eval or arguments is used in...
2013-01-24 Lars KnollFix inplace operators
2013-01-24 Lars KnollAvoid integer division by 0
2013-01-24 Lars KnollThrow a reference error when trying to use an invalid...
2013-01-24 Simon HausmannFix return statement outside of function body
2013-01-24 Simon HausmannFix properties of literal array initialisers
2013-01-24 Lars KnollFix the remaining test failures for the with() statement
2013-01-24 Lars KnollRename some builtin methods
2013-01-24 Lars KnollCreate a real execution context for with() statements
2013-01-24 Simon HausmannFix build on Mac OS X
2013-01-24 Simon HausmannFix evaluation of lhs in binary expressions
2013-01-24 Erik VerbruggenFix compilation of (incomplete) llvm backend.
2013-01-24 Simon HausmannSkip Intl tests for now and re-generate TestExpectations
2013-01-24 Lars KnollFix all but one remaining test case for exceptions
2013-01-24 Lars KnollFix bug in switch statement
2013-01-23 Lars KnollFix wrong constant folding
2013-01-23 Lars KnollLabelled statements can also appear outside of loops
2013-01-23 Lars KnollLoops are local to functions
2013-01-23 Lars KnollDon't crash on for(x in null)
2013-01-23 Lars KnollFix a crash when a non direct call to eval caused a...
2013-01-23 Lars KnollFix some errors related to strict mode
2013-01-23 Lars KnollImplement JSON.stringify
2013-01-23 Erik VerbruggenFix callBuiltinInvalid for the interpreter.
2013-01-23 Simon HausmannFix crash when using the built-in regexp syntax
2013-01-23 Lars KnollRefactor JSON.parse
2013-01-23 Erik VerbruggenFix compiler warnings.
2013-01-23 Erik VerbruggenMethod signature changes to remove duplicate logic.
2013-01-23 Erik VerbruggenFix eval when a context gets inherited.
2013-01-23 Erik VerbruggenSplit off 2 builtins into their own instruction.
2013-01-23 Lars KnollFix direct vs indirect calls to eval (15.1.2.11)
2013-01-23 Simon HausmannFix crash when using continue in switch inside loop
2013-01-23 Simon HausmannFix test results to match exceptations on i386
2013-01-22 Lars KnollFixed remaining failures for Array.prototype.reverse
2013-01-22 Lars KnollFix remaining test failures related to Arguments object
2013-01-22 Lars KnollFix remaining issues in the URI methods
2013-01-22 Lars KnollFix memory corruption in the MM
2013-01-22 Lars KnollDon't convert the this object twice
2013-01-22 Simon HausmannFix length property of global utility functions
2013-01-22 Simon HausmannFix thisObject for all builtin function calls
2013-01-22 Lars KnollAdd escape and unescape to the global object
2013-01-22 Lars KnollAdd URI handling methods
2013-01-22 Simon HausmannFix String.prototype.slice with boundary values
2013-01-22 Simon HausmannFix String.prototype.substring when called with undefin...
2013-01-22 Simon HausmannFix bug in property table
2013-01-22 Simon HausmannFix name of Array.prototype.toLocaleString method
2013-01-22 Simon HausmannRun the tests in a simulated pacific time zone
2013-01-22 Simon HausmannFix name property of Error prototype
2013-01-22 Simon HausmannFix Math.toString()
2013-01-22 Simon HausmannImplement String.prototype.split
2013-01-22 Lars KnollFix a bug in Array.proto.indexOf for sparse arrays
2013-01-22 Lars KnollFix remaining test failures in Array.prototype.push/pop
2013-01-22 Lars KnollFix remaining issues in Array.prototype.(un)shift
2013-01-22 Lars KnollDon't clutter the source dir with .o files
2013-01-22 Lars KnollFix remaining issues in lastIndexOf
2013-01-21 Lars KnollFix a few bugs in Number.prototype
2013-01-21 Lars Knollrename qv4ecmaobjects.* to qv4objectproto.*
2013-01-21 Lars KnollMove Boolean object into it's own file
2013-01-21 Lars KnollMove Number object into it's own file
2013-01-21 Lars KnollMove ArrayCtor and ArrayProto into their own file
2013-01-21 Lars KnollMove masm into 3rdparty
2013-01-21 Lars KnollMove qmljs_object.* to qv4object.*
2013-01-21 Lars KnollMove math object into it's own file
2013-01-21 Lars KnollSplit Regexp object into it's own file
2013-01-21 Lars KnollMove Error Objects into their own file
2013-01-21 Lars KnollFurther split up qv4ecmaobjects and qmljs_objects.
2013-01-21 Lars KnollImplement RegExp.prototype.compile
2013-01-21 Lars KnollFix implicit this object for value based calls inside...
2013-01-21 Lars KnollMinor optimisation
2013-01-21 Lars KnollMove the String object into it's own file
2013-01-21 Simon HausmannFix certain new member expressions
2013-01-21 Simon HausmannImplement String.prototype.search
2013-01-21 Lars KnollImplement String.prototype.trim
2013-01-21 Lars KnollFix the remaining test failures for the Date object
2013-01-21 Simon HausmannImplement String.prototype.replace
2013-01-21 Lars KnollIf a function is defined twice the 2nd one should be...
2013-01-21 Lars KnollMove the Date Object into it's own file
2013-01-21 Lars KnollFix Date constructor and add Date.prototype.toISOString
2013-01-21 Simon HausmannMember expressions on non-objects should throw a type...
2013-01-20 Simon HausmannFix writable attribute of RegExp properties
2013-01-20 Simon HausmannFix exception handling in masm backend
2013-01-20 Erik VerbruggenFix compiler warning.
2013-01-20 Jędrzej NowackiRemove broken result of an automatic merge resolution.
2013-01-20 Jędrzej NowackiThere is no point in checking twice for a space if...
2013-01-19 Lars KnollImplement JSON.parse
2013-01-18 Lars KnollFix valgrind warnings about uninitialised variable
2013-01-18 Lars KnollOptimise array access
2013-01-18 Lars KnollFix wrong index access in one variant of Array::at()
next