summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/Interpreter.h
AgeCommit message (Expand)Author
2020-04-13LibJS: Remove Interpreter::declare_variable()Andreas Kling
2020-04-11LibJS: Add console.trace()Linus Groh
2020-04-11LibJS: Make Function and CallFrame aware of their function nameLinus Groh
2020-04-10LibJS: Use enumerator macros for boilerplate code around native typesAndreas Kling
2020-04-10LibJS: Add all the Error subclassesAndreas Kling
2020-04-08LibJS: rename JS::DeclarationType => JS::DeclarationKindEmanuele Torre
2020-04-08LibJS: Add "constructor" property to constructor prototypesAndreas Kling
2020-04-07LibJS: Add Boolean constructor objectJack Karamanian
2020-04-06LibJS: Give argument vectors an inline capacity of 8Andreas Kling
2020-04-05LibJS: Add support for "continue" inside "for" statements :^)Andreas Kling
2020-04-05LibJS: Make "break" actually work inside "switch"Andreas Kling
2020-04-04LibJS: Don't return the "last computed value" from Interpreter::run()Andreas Kling
2020-04-04LibJS: Add NumberObject and make to_object() on number values create itAndreas Kling
2020-04-04LibJS: Add Function() and Function.prototypeLinus Groh
2020-04-02LibJS: Start implementing object shapesAndreas Kling
2020-04-01LibJS: Add argument(i) and argument_count() to InterpreterAndreas Kling
2020-04-01LibJS: Add Interpreter::create<GlobalObjectType>()Andreas Kling
2020-04-01LibWeb+LibJS: Move DOM Window object to dedicated classesAndreas Kling
2020-03-30LibJS: Start implementing Date :^)Linus Groh
2020-03-29LibJS: Implement basic execution of "switch" statementsAndreas Kling
2020-03-29LibJS+LibWeb: Function calls should always go through InterpreterAndreas Kling
2020-03-28LibJS: Rework how native functions are called to improve |this| valueAndreas Kling
2020-03-27LibJS: Allow function calls with missing argumentsAndreas Kling
2020-03-24LibJS: Implement "throw"Andreas Kling
2020-03-24LibJS: Implement basic exception throwingAndreas Kling
2020-03-23LibJS: Actually leave the current function scope on "return"Andreas Kling
2020-03-23LibJS: Implement "else" parsingAndreas Kling
2020-03-22LibJS: Use FlyString for identifiersAndreas Kling
2020-03-20LibJS: Add ArrayPrototype and implement Array.prototype.push()Andreas Kling
2020-03-18LibJS: Add Interpreter::call(Function*, this_value, arguments)Andreas Kling
2020-03-18LibJS: Make the AST reference-countedAndreas Kling
2020-03-17LibJS: Protect function call "this" and arguments from GCAndreas Kling
2020-03-16LibJS: Add "Heap" and "Runtime" subdirectoriesAndreas Kling
2020-03-16LibJS: Fix assignment of const variable on declaration0xtechnobabble
2020-03-15LibJS: Add ObjectPrototype and implement hasOwnProperty()Andreas Kling
2020-03-15LibJS: Rename collect_roots() => gather_roots()Andreas Kling
2020-03-15LibJS: Use the same StringPrototype globallyAndreas Kling
2020-03-15LibJS: Add basic prototype supportAndreas Kling
2020-03-14LibJS: Evaluate for statements in their own scope if necessary0xtechnobabble
2020-03-12LibJS: Add NativeFunction, a callable wrapper around a C++ lambdaAndreas Kling
2020-03-12LibJS: Implement const variable declarations0xtechnobabble
2020-03-12LibJS: Allow functions to take arguments (#1405)howar6hill
2020-03-11LibJS: Allow the choice of a scope of declaration for a variable (#1408)0xtechnobabble
2020-03-09LibJS: Make sure we mark everything reachable from the scope stackAndreas Kling
2020-03-09LibJS: Add basic support for (scoped) variablesAndreas 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