summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/Interpreter.h
AgeCommit message (Expand)Author
2020-06-11LibJS: Consolidate error messages into ErrorTypes.hMatthew Olsson
2020-06-08LibJS: Make more Interpreter functions take a GlobalObject&Andreas Kling
2020-06-08LibJS: Interpreter::this_value() => this_value(GlobalObject&)Andreas Kling
2020-06-08LibJS+js: Support getting last value from "_" variableLinus Groh
2020-06-02LibJS: Move Interpreter::get_trace() to ConsoleClientLinus Groh
2020-05-29LibJS: Integrate labels into the InterpreterMatthew Olsson
2020-05-28LibJS: Add strict modeMatthew Olsson
2020-05-24Browser: Add JS ConsoleFalseHonesty
2020-05-21LibJS: Make Interpreter::call() this_value a required argumentLinus Groh
2020-05-05LibJS: Add some helpers and use them to re-implement Console functionsEmanuele Torre
2020-05-05LibJS: Move join_args() in InterpreterEmanuele Torre
2020-05-02LibJS: Start implementing a Console class for the interpreterEmanuele Torre
2020-05-01LibJS: Implement most of the Reflect objectLinus Groh
2020-05-01LibJS: Implement console.count()Emanuele Torre
2020-04-29LibJS: Pass JS::Function around by reference moreAndreas Kling
2020-04-28LibJS: Allow "delete someGlobalVariable"Andreas Kling
2020-04-25LibJS: Stop using Optional<Value> in favor of Value's empty stateAndreas Kling
2020-04-19LibJS: Add MarkedValueList and use it for argument passingAndreas Kling
2020-04-18LibJS: Move the empty object shape from Interpreter to GlobalObjectAndreas Kling
2020-04-18LibJS: Move builtin prototypes to the global objectAndreas Kling
2020-04-18LibJS: Pass prototype to Error constructorsAndreas Kling
2020-04-15LibJS: Introduce LexicalEnvironmentAndreas Kling
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