summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/Interpreter.cpp
AgeCommit message (Expand)Author
2020-07-11LibJS: Use macros to enumerate well-known symbolsMatthew Olsson
2020-07-09LibJS: Move global symbol map from SymbolObject to InterpreterMatthew Olsson
2020-07-03LibJS: Hide interpreter exception debug output behind a flagMatthew Olsson
2020-07-01LibJS: Explicitly pass a "Function& new_target" to Function::constructMatthew Olsson
2020-06-29LibJS: Initial class implementation; allow super expressions in objectJack Karamanian
2020-06-20LibJS: Make Interpreter::construct() take a GlobalObject&Andreas Kling
2020-06-20LibJS: Move native objects towards two-pass constructionAndreas Kling
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: Pass GlobalObject& to AST node execute() functionsAndreas Kling
2020-06-08LibJS+js: Support getting last value from "_" variableLinus Groh
2020-06-08LibJS: Add interpreter exception checksMatthew Olsson
2020-06-06LibJS: Hoist function declarationsMarcin Gasperowicz
2020-06-02LibJS: Move Interpreter::get_trace() to ConsoleClientLinus Groh
2020-05-30LibJS: Use the function's bound |this| and bound arguments inJack Karamanian
2020-05-29LibJS: Integrate labels into the InterpreterMatthew Olsson
2020-05-26LibJS: Only log exception throw information on SerenityLinus Groh
2020-05-17LibJS: Add symbol objectsmattco98
2020-05-15LibJS: Add side-effect-free version of Value::to_string()Andreas Kling
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-04-29LibJS: Pass JS::Function around by reference moreAndreas Kling
2020-04-28LibJS: Support o.f++ :^)Andreas 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-21LibJS: Rename global_call_fram to global_call_frameLinus Groh
2020-04-19LibJS: Do not assume that a call frame exists in {get,set}_variableAnotherTest
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 Function constructorsAndreas Kling
2020-04-16LibJS: Dump a JavaScript backtrace when throwing exceptionsAndreas Kling
2020-04-16LibJS: Remove unreachable code in Interpreter::enter_scope()Andreas Kling
2020-04-15LibJS: Introduce LexicalEnvironmentAndreas Kling
2020-04-13LibJS: Use HashMap::ensure_capacity() in enter_scope()Andreas Kling
2020-04-13LibJS: Remove Interpreter::declare_variable()Andreas Kling
2020-04-13LibJS: Hoist variable declarations to the nearest relevant scopeAndreas Kling
2020-04-13LibJS: Throw on assignment of an const variableBrian Gianforcaro
2020-04-13LibJS: Parse "this" as ThisExpressionStephan Unverwerth
2020-04-12LibJS: Cache a FlyString for "this" to speed up variable lookupAndreas Kling
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: Support array holes, encoded as empty JS::ValueAndreas Kling
2020-04-06LibJS: Give argument vectors an inline capacity of 8Andreas Kling