summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/Makefile
AgeCommit message (Expand)Author
2020-05-14Build: Switch to CMake :^)Sergey Bugaev
2020-05-02LibJS: Start implementing a Console class for the interpreterEmanuele Torre
2020-05-01LibJS: Implement most of the Reflect objectLinus Groh
2020-04-28LibJS: Make AssignmentExpression assign through a ReferenceAndreas Kling
2020-04-21LibJS: Add Uint8ClampedArray :^)Andreas Kling
2020-04-21LibJS: Implement Function.prototype.bind()Jack Karamanian
2020-04-19LibJS: Add MarkedValueList and use it for argument passingAndreas Kling
2020-04-15LibJS: Introduce LexicalEnvironmentAndreas Kling
2020-04-10LibJS: Add String constructor :^)Andreas Kling
2020-04-07LibJS: Add Number()Linus Groh
2020-04-07LibJS: Add Boolean constructor objectJack Karamanian
2020-04-04LibJS: Add NumberObject and make to_object() on number values create itAndreas Kling
2020-04-04LibJS: Add basic Array constructorAndreas Kling
2020-04-04LibJS: Add Function() and Function.prototypeLinus Groh
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