summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/Makefile
AgeCommit message (Expand)Author
2020-04-02LibJS: Start implementing object shapesAndreas Kling
2020-04-01LibJS: Implement Error function/constructorLinus Groh
2020-03-30LibJS: Start implementing Date :^)Linus Groh
2020-03-28LibJS: Add a global "Object" constructorAndreas Kling
2020-03-24LibJS: Implement "throw"Andreas Kling
2020-03-24LibJS: Implement basic exception throwingAndreas Kling
2020-03-21LibJS: Add Math.random() :^)Andreas Kling
2020-03-20LibJS: Add ArrayPrototype and implement Array.prototype.push()Andreas Kling
2020-03-20LibJS: Parse ArrayExpression and start implementing Array objectsAndreas Kling
2020-03-18LibJS: Add Handle<T>, a strong C++ handle for keeping GC objects aliveAndreas Kling
2020-03-16LibJS: Replace the global print() function with console.log() :^)Andreas Kling
2020-03-16LibJS: Add "Heap" and "Runtime" subdirectoriesAndreas Kling
2020-03-15LibJS: Add a mechanism for callback-based object propertiesAndreas Kling
2020-03-15LibJS: Add ObjectPrototype and implement hasOwnProperty()Andreas Kling
2020-03-15LibJS: Add StringPrototype and make it the prototype of StringObjectAndreas Kling
2020-03-13LibJS: Split Function into subclasses NativeFunction and ScriptFunctionAndreas Kling
2020-03-12LibJS: Move GlobalObject to its own Object subclassAndreas Kling
2020-03-12LibJS: Add NativeFunction, a callable wrapper around a C++ lambdaAndreas Kling
2020-03-12LibJS: Add Javascript lexer and parserStephan Unverwerth
2020-03-11LibJS: Add StringObject, an Object wrapper around primitive stringsAndreas Kling
2020-03-11LibJS: Add a new PrimitiveString class to hold GC-allocated stringsAndreas Kling
2020-03-08LibJS: Add a basic mark&sweep garbage collector :^)Andreas Kling
2020-03-07LibJS: Start building a JavaScript engine for SerenityOS :^)Andreas Kling