123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357 |
- /*
- * Copyright (c) 2020-2021, Andreas Kling <kling@serenityos.org>
- * Copyright (c) 2020-2021, Linus Groh <linusg@serenityos.org>
- * Copyright (c) 2021, David Tuin <davidot@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #include <AK/Demangle.h>
- #include <AK/HashMap.h>
- #include <AK/HashTable.h>
- #include <AK/ScopeGuard.h>
- #include <AK/StringBuilder.h>
- #include <AK/TemporaryChange.h>
- #include <LibCrypto/BigInt/SignedBigInteger.h>
- #include <LibJS/AST.h>
- #include <LibJS/Interpreter.h>
- #include <LibJS/Runtime/AbstractOperations.h>
- #include <LibJS/Runtime/Accessor.h>
- #include <LibJS/Runtime/Array.h>
- #include <LibJS/Runtime/BigInt.h>
- #include <LibJS/Runtime/ECMAScriptFunctionObject.h>
- #include <LibJS/Runtime/Error.h>
- #include <LibJS/Runtime/FunctionEnvironment.h>
- #include <LibJS/Runtime/GlobalObject.h>
- #include <LibJS/Runtime/IteratorOperations.h>
- #include <LibJS/Runtime/MarkedValueList.h>
- #include <LibJS/Runtime/NativeFunction.h>
- #include <LibJS/Runtime/ObjectEnvironment.h>
- #include <LibJS/Runtime/PrimitiveString.h>
- #include <LibJS/Runtime/Reference.h>
- #include <LibJS/Runtime/RegExpObject.h>
- #include <LibJS/Runtime/Shape.h>
- #include <typeinfo>
- namespace JS {
- class InterpreterNodeScope {
- AK_MAKE_NONCOPYABLE(InterpreterNodeScope);
- AK_MAKE_NONMOVABLE(InterpreterNodeScope);
- public:
- InterpreterNodeScope(Interpreter& interpreter, ASTNode const& node)
- : m_interpreter(interpreter)
- , m_chain_node { nullptr, node }
- {
- m_interpreter.vm().running_execution_context().current_node = &node;
- m_interpreter.push_ast_node(m_chain_node);
- }
- ~InterpreterNodeScope()
- {
- m_interpreter.pop_ast_node();
- }
- private:
- Interpreter& m_interpreter;
- ExecutingASTNodeChain m_chain_node;
- };
- String ASTNode::class_name() const
- {
- // NOTE: We strip the "JS::" prefix.
- return demangle(typeid(*this).name()).substring(4);
- }
- static void update_function_name(Value value, FlyString const& name)
- {
- if (!value.is_function())
- return;
- auto& function = value.as_function();
- if (is<ECMAScriptFunctionObject>(function) && function.name().is_empty())
- static_cast<ECMAScriptFunctionObject&>(function).set_name(name);
- }
- static String get_function_name(GlobalObject& global_object, Value value)
- {
- if (value.is_symbol())
- return String::formatted("[{}]", value.as_symbol().description());
- if (value.is_string())
- return value.as_string().string();
- return value.to_string(global_object);
- }
- Value ScopeNode::evaluate_statements(Interpreter& interpreter, GlobalObject& global_object) const
- {
- // FIXME: This should use completions but for now we just use the vm to communicate things.
- auto& vm = interpreter.vm();
- Value last_value;
- for (auto& node : children()) {
- auto value = node.execute(interpreter, global_object);
- if (!value.is_empty())
- last_value = value;
- if (vm.should_unwind()) {
- break;
- }
- }
- return last_value;
- }
- Value FunctionBody::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- // Note: Scoping should have already been setup by whoever is calling this FunctionBody.
- auto function_result = evaluate_statements(interpreter, global_object);
- if (interpreter.exception())
- return {};
- if (interpreter.vm().unwind_until() != ScopeType::Function)
- function_result = js_undefined();
- else
- interpreter.vm().stop_unwind();
- return function_result;
- }
- // 14.2.2 Runtime Semantics: Evaluation, https://tc39.es/ecma262/#sec-block-runtime-semantics-evaluation
- Value BlockStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- auto& vm = interpreter.vm();
- Environment* old_environment { nullptr };
- ArmedScopeGuard restore_environment = [&] {
- vm.running_execution_context().lexical_environment = old_environment;
- };
- // Optimization: We only need a new lexical environment if there are any lexical declarations. :^)
- if (has_lexical_declarations()) {
- old_environment = vm.running_execution_context().lexical_environment;
- auto* block_environment = new_declarative_environment(*old_environment);
- block_declaration_instantiation(global_object, block_environment);
- vm.running_execution_context().lexical_environment = block_environment;
- } else {
- restore_environment.disarm();
- }
- auto block_value = evaluate_statements(interpreter, global_object);
- if (!labels().is_empty() && vm.should_unwind_until(ScopeType::Breakable, labels()))
- vm.stop_unwind();
- if (vm.exception())
- return {};
- return block_value;
- }
- Value Program::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- VERIFY(interpreter.lexical_environment() && interpreter.lexical_environment()->is_global_environment());
- auto& global_env = static_cast<GlobalEnvironment&>(*interpreter.lexical_environment());
- TRY_OR_DISCARD(global_declaration_instantiation(interpreter, global_object, global_env));
- return evaluate_statements(interpreter, global_object);
- }
- Value FunctionDeclaration::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- if (m_is_hoisted) {
- // Perform special annexB steps see step 3 of: https://tc39.es/ecma262/#sec-web-compat-functiondeclarationinstantiation
- auto* variable_environment = interpreter.vm().running_execution_context().variable_environment;
- auto* lexical_environment = interpreter.vm().running_execution_context().lexical_environment;
- auto function_object = MUST(lexical_environment->get_binding_value(global_object, name(), false));
- MUST(variable_environment->set_mutable_binding(global_object, name(), function_object, false));
- }
- return {};
- }
- Value FunctionExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- return instantiate_ordinary_function_expression(interpreter, global_object, name());
- }
- // 15.2.5 Runtime Semantics: InstantiateOrdinaryFunctionExpression, https://tc39.es/ecma262/#sec-runtime-semantics-instantiateordinaryfunctionexpression
- Value FunctionExpression::instantiate_ordinary_function_expression(Interpreter& interpreter, GlobalObject& global_object, FlyString given_name) const
- {
- if (given_name.is_empty())
- given_name = "";
- auto has_own_name = !name().is_empty();
- auto const& used_name = has_own_name ? name() : given_name;
- auto* scope = interpreter.lexical_environment();
- if (has_own_name) {
- VERIFY(scope);
- scope = new_declarative_environment(*scope);
- MUST(scope->create_immutable_binding(global_object, name(), false));
- }
- auto closure = ECMAScriptFunctionObject::create(global_object, used_name, body(), parameters(), function_length(), scope, kind(), is_strict_mode(), might_need_arguments_object(), contains_direct_call_to_eval(), is_arrow_function());
- // FIXME: 6. Perform SetFunctionName(closure, name).
- // FIXME: 7. Perform MakeConstructor(closure).
- if (has_own_name)
- MUST(scope->initialize_binding(global_object, name(), closure));
- return closure;
- }
- Value ExpressionStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- return m_expression->execute(interpreter, global_object);
- }
- CallExpression::ThisAndCallee CallExpression::compute_this_and_callee(Interpreter& interpreter, GlobalObject& global_object, Reference const& callee_reference) const
- {
- auto& vm = interpreter.vm();
- if (callee_reference.is_property_reference()) {
- auto this_value = callee_reference.get_this_value();
- auto callee = callee_reference.get_value(global_object);
- if (vm.exception())
- return {};
- return { this_value, callee };
- }
- // [[Call]] will handle that in non-strict mode the this value becomes the global object
- return {
- js_undefined(),
- callee_reference.is_unresolvable()
- ? m_callee->execute(interpreter, global_object)
- : callee_reference.get_value(global_object)
- };
- }
- // 13.3.8.1 Runtime Semantics: ArgumentListEvaluation, https://tc39.es/ecma262/#sec-runtime-semantics-argumentlistevaluation
- static void argument_list_evaluation(Interpreter& interpreter, GlobalObject& global_object, Vector<CallExpression::Argument> const& arguments, MarkedValueList& list)
- {
- auto& vm = global_object.vm();
- list.ensure_capacity(arguments.size());
- for (auto& argument : arguments) {
- auto value = argument.value->execute(interpreter, global_object);
- if (vm.exception())
- return;
- if (argument.is_spread) {
- get_iterator_values(global_object, value, [&](Value iterator_value) {
- if (vm.exception())
- return IterationDecision::Break;
- list.append(iterator_value);
- return IterationDecision::Continue;
- });
- if (vm.exception())
- return;
- } else {
- list.append(value);
- }
- }
- }
- Value NewExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- auto& vm = interpreter.vm();
- auto callee_value = m_callee->execute(interpreter, global_object);
- if (vm.exception())
- return {};
- if (!callee_value.is_function() || !callee_value.as_function().has_constructor()) {
- throw_type_error_for_callee(interpreter, global_object, callee_value, "constructor"sv);
- return {};
- }
- MarkedValueList arg_list(vm.heap());
- argument_list_evaluation(interpreter, global_object, m_arguments, arg_list);
- if (interpreter.exception())
- return {};
- auto& function = callee_value.as_function();
- return vm.construct(function, function, move(arg_list));
- }
- void CallExpression::throw_type_error_for_callee(Interpreter& interpreter, GlobalObject& global_object, Value callee_value, StringView call_type) const
- {
- auto& vm = interpreter.vm();
- if (is<Identifier>(*m_callee) || is<MemberExpression>(*m_callee)) {
- String expression_string;
- if (is<Identifier>(*m_callee)) {
- expression_string = static_cast<Identifier const&>(*m_callee).string();
- } else {
- expression_string = static_cast<MemberExpression const&>(*m_callee).to_string_approximation();
- }
- vm.throw_exception<TypeError>(global_object, ErrorType::IsNotAEvaluatedFrom, callee_value.to_string_without_side_effects(), call_type, expression_string);
- } else {
- vm.throw_exception<TypeError>(global_object, ErrorType::IsNotA, callee_value.to_string_without_side_effects(), call_type);
- }
- }
- Value CallExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- auto& vm = interpreter.vm();
- auto callee_reference = m_callee->to_reference(interpreter, global_object);
- if (vm.exception())
- return {};
- auto [this_value, callee] = compute_this_and_callee(interpreter, global_object, callee_reference);
- if (vm.exception())
- return {};
- VERIFY(!callee.is_empty());
- MarkedValueList arg_list(vm.heap());
- argument_list_evaluation(interpreter, global_object, m_arguments, arg_list);
- if (interpreter.exception())
- return {};
- if (!callee.is_function()) {
- throw_type_error_for_callee(interpreter, global_object, callee, "function"sv);
- return {};
- }
- auto& function = callee.as_function();
- if (&function == global_object.eval_function()
- && callee_reference.is_environment_reference()
- && callee_reference.name().is_string()
- && callee_reference.name().as_string() == vm.names.eval.as_string()) {
- auto script_value = arg_list.size() == 0 ? js_undefined() : arg_list[0];
- return TRY_OR_DISCARD(perform_eval(script_value, global_object, vm.in_strict_mode() ? CallerMode::Strict : CallerMode::NonStrict, EvalMode::Direct));
- }
- return TRY_OR_DISCARD(vm.call(function, this_value, move(arg_list)));
- }
- // 13.3.7.1 Runtime Semantics: Evaluation, https://tc39.es/ecma262/#sec-super-keyword-runtime-semantics-evaluation
- // SuperCall : super Arguments
- Value SuperCall::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- auto& vm = interpreter.vm();
- // 1. Let newTarget be GetNewTarget().
- auto new_target = vm.get_new_target();
- if (vm.exception())
- return {};
- // 2. Assert: Type(newTarget) is Object.
- VERIFY(new_target.is_function());
- // 3. Let func be ! GetSuperConstructor().
- auto* func = get_super_constructor(interpreter.vm());
- VERIFY(!vm.exception());
- // 4. Let argList be ? ArgumentListEvaluation of Arguments.
- MarkedValueList arg_list(vm.heap());
- argument_list_evaluation(interpreter, global_object, m_arguments, arg_list);
- if (interpreter.exception())
- return {};
- // 5. If IsConstructor(func) is false, throw a TypeError exception.
- if (!func || !func->value_of().is_constructor()) {
- vm.throw_exception<TypeError>(global_object, ErrorType::NotAConstructor, "Super constructor");
- return {};
- }
- // 6. Let result be ? Construct(func, argList, newTarget).
- auto& function = new_target.as_function();
- auto result = vm.construct(static_cast<FunctionObject&>(*func), function, move(arg_list));
- if (vm.exception())
- return {};
- // 7. Let thisER be GetThisEnvironment().
- auto& this_er = verify_cast<FunctionEnvironment>(get_this_environment(interpreter.vm()));
- // 8. Perform ? thisER.BindThisValue(result).
- TRY_OR_DISCARD(this_er.bind_this_value(global_object, result));
- // 9. Let F be thisER.[[FunctionObject]].
- // 10. Assert: F is an ECMAScript function object. (NOTE: This is implied by the strong C++ type.)
- [[maybe_unused]] auto& f = this_er.function_object();
- // 11. Perform ? InitializeInstanceElements(result, F).
- VERIFY(result.is_object());
- TRY_OR_DISCARD(vm.initialize_instance_elements(result.as_object(), f));
- // 12. Return result.
- return result;
- }
- Value YieldExpression::execute(Interpreter&, GlobalObject&) const
- {
- // This should be transformed to a return.
- VERIFY_NOT_REACHED();
- }
- Value ReturnStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- auto value = argument() ? argument()->execute(interpreter, global_object) : js_undefined();
- if (interpreter.exception())
- return {};
- interpreter.vm().unwind(ScopeType::Function);
- return value;
- }
- Value IfStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- auto predicate_result = m_predicate->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- if (predicate_result.to_boolean())
- return m_consequent->execute(interpreter, global_object);
- if (m_alternate)
- return m_alternate->execute(interpreter, global_object);
- return js_undefined();
- }
- // 14.11.2 Runtime Semantics: Evaluation, https://tc39.es/ecma262/#sec-with-statement-runtime-semantics-evaluation
- // WithStatement : with ( Expression ) Statement
- Value WithStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- // 1. Let value be the result of evaluating Expression.
- auto value = m_object->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- // 2. Let obj be ? ToObject(? GetValue(value)).
- auto* object = value.to_object(global_object);
- if (interpreter.exception())
- return {};
- // 3. Let oldEnv be the running execution context's LexicalEnvironment.
- auto* old_environment = interpreter.vm().running_execution_context().lexical_environment;
- // 4. Let newEnv be NewObjectEnvironment(obj, true, oldEnv).
- auto* new_environment = new_object_environment(*object, true, old_environment);
- if (interpreter.exception())
- return {};
- // 5. Set the running execution context's LexicalEnvironment to newEnv.
- interpreter.vm().running_execution_context().lexical_environment = new_environment;
- // 6. Let C be the result of evaluating Statement.
- auto result = m_body->execute(interpreter, global_object).value_or(js_undefined());
- // 7. Set the running execution context's LexicalEnvironment to oldEnv.
- interpreter.vm().running_execution_context().lexical_environment = old_environment;
- if (interpreter.exception())
- return {};
- // 8. Return Completion(UpdateEmpty(C, undefined)).
- return result;
- }
- Value WhileStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- auto last_value = js_undefined();
- for (;;) {
- auto test_result = m_test->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- if (!test_result.to_boolean())
- break;
- last_value = m_body->execute(interpreter, global_object).value_or(last_value);
- if (interpreter.exception())
- return {};
- if (interpreter.vm().should_unwind()) {
- if (interpreter.vm().should_unwind_until(ScopeType::Continuable, m_labels)) {
- interpreter.vm().stop_unwind();
- } else if (interpreter.vm().should_unwind_until(ScopeType::Breakable, m_labels)) {
- interpreter.vm().stop_unwind();
- break;
- } else {
- return last_value;
- }
- }
- }
- return last_value;
- }
- Value DoWhileStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- auto last_value = js_undefined();
- for (;;) {
- if (interpreter.exception())
- return {};
- last_value = m_body->execute(interpreter, global_object).value_or(last_value);
- if (interpreter.exception())
- return {};
- if (interpreter.vm().should_unwind()) {
- if (interpreter.vm().should_unwind_until(ScopeType::Continuable, m_labels)) {
- interpreter.vm().stop_unwind();
- } else if (interpreter.vm().should_unwind_until(ScopeType::Breakable, m_labels)) {
- interpreter.vm().stop_unwind();
- break;
- } else {
- return last_value;
- }
- }
- auto test_result = m_test->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- if (!test_result.to_boolean())
- break;
- }
- return last_value;
- }
- Value ForStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- // Note we don't always set a new environment but to use RAII we must do this here.
- auto* old_environment = interpreter.lexical_environment();
- ScopeGuard restore_old_environment = [&] {
- interpreter.vm().running_execution_context().lexical_environment = old_environment;
- };
- Vector<FlyString> let_declarations;
- if (m_init) {
- if (is<VariableDeclaration>(*m_init) && static_cast<VariableDeclaration const&>(*m_init).declaration_kind() != DeclarationKind::Var) {
- auto* loop_environment = new_declarative_environment(*old_environment);
- auto& declaration = static_cast<VariableDeclaration const&>(*m_init);
- declaration.for_each_bound_name([&](auto const& name) {
- if (declaration.declaration_kind() == DeclarationKind::Const) {
- MUST(loop_environment->create_immutable_binding(global_object, name, true));
- } else {
- MUST(loop_environment->create_mutable_binding(global_object, name, false));
- let_declarations.append(name);
- }
- return IterationDecision::Continue;
- });
- interpreter.vm().running_execution_context().lexical_environment = loop_environment;
- }
- m_init->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- }
- auto last_value = js_undefined();
- // 14.7.4.4 CreatePerIterationEnvironment ( perIterationBindings ), https://tc39.es/ecma262/#sec-createperiterationenvironment
- auto create_per_iteration_environment = [&]() -> ThrowCompletionOr<void> {
- if (let_declarations.is_empty())
- return {};
- auto* last_iteration_env = interpreter.lexical_environment();
- auto* outer = last_iteration_env->outer_environment();
- VERIFY(outer);
- auto* this_iteration_env = new_declarative_environment(*outer);
- for (auto& name : let_declarations) {
- MUST(this_iteration_env->create_mutable_binding(global_object, name, false));
- auto last_value = TRY(last_iteration_env->get_binding_value(global_object, name, true));
- VERIFY(!last_value.is_empty());
- MUST(this_iteration_env->initialize_binding(global_object, name, last_value));
- }
- interpreter.vm().running_execution_context().lexical_environment = this_iteration_env;
- return {};
- };
- TRY_OR_DISCARD(create_per_iteration_environment());
- auto test_empty_or_true = [&] {
- if (!m_test)
- return true;
- auto test_result = m_test->execute(interpreter, global_object);
- if (interpreter.exception())
- return false;
- return test_result.to_boolean();
- };
- while (true) {
- if (!test_empty_or_true())
- break;
- last_value = m_body->execute(interpreter, global_object).value_or(last_value);
- if (interpreter.exception())
- return {};
- if (interpreter.vm().should_unwind()) {
- if (interpreter.vm().should_unwind_until(ScopeType::Continuable, m_labels)) {
- interpreter.vm().stop_unwind();
- } else if (interpreter.vm().should_unwind_until(ScopeType::Breakable, m_labels)) {
- interpreter.vm().stop_unwind();
- break;
- } else {
- return last_value;
- }
- }
- TRY_OR_DISCARD(create_per_iteration_environment());
- if (m_update) {
- m_update->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- }
- }
- if (interpreter.exception())
- return {};
- return last_value;
- }
- struct ForInOfHeadState {
- explicit ForInOfHeadState(Variant<NonnullRefPtr<ASTNode>, NonnullRefPtr<BindingPattern>> lhs)
- {
- lhs.visit(
- [&](NonnullRefPtr<ASTNode>& ast_node) {
- expression_lhs = ast_node.ptr();
- },
- [&](NonnullRefPtr<BindingPattern>& pattern) {
- pattern_lhs = pattern.ptr();
- destructuring = true;
- lhs_kind = Assignment;
- });
- }
- ASTNode* expression_lhs = nullptr;
- BindingPattern* pattern_lhs = nullptr;
- enum LhsKind {
- Assignment,
- VarBinding,
- LexicalBinding
- };
- LhsKind lhs_kind = Assignment;
- bool destructuring = false;
- Value rhs_value;
- // 14.7.5.7 ForIn/OfBodyEvaluation ( lhs, stmt, iteratorRecord, iterationKind, lhsKind, labelSet [ , iteratorKind ] ), https://tc39.es/ecma262/#sec-runtime-semantics-forin-div-ofbodyevaluation-lhs-stmt-iterator-lhskind-labelset
- // Note: This is only steps 6.g through 6.j of the method because we currently implement for-in without an iterator so to prevent duplicated code we do this part here.
- ThrowCompletionOr<void> execute_head(Interpreter& interpreter, GlobalObject& global_object, Value next_value) const
- {
- VERIFY(!next_value.is_empty());
- Optional<Reference> lhs_reference;
- Environment* iteration_environment = nullptr;
- // g. If lhsKind is either assignment or varBinding, then
- if (lhs_kind == Assignment || lhs_kind == VarBinding) {
- if (!destructuring) {
- VERIFY(expression_lhs);
- if (is<VariableDeclaration>(*expression_lhs)) {
- auto& declaration = static_cast<VariableDeclaration const&>(*expression_lhs);
- VERIFY(declaration.declarations().first().target().has<NonnullRefPtr<Identifier>>());
- lhs_reference = declaration.declarations().first().target().get<NonnullRefPtr<Identifier>>()->to_reference(interpreter, global_object);
- } else {
- VERIFY(is<Identifier>(*expression_lhs) || is<MemberExpression>(*expression_lhs));
- auto& expression = static_cast<Expression const&>(*expression_lhs);
- lhs_reference = expression.to_reference(interpreter, global_object);
- }
- }
- }
- // h. Else,
- else {
- VERIFY(expression_lhs && is<VariableDeclaration>(*expression_lhs));
- iteration_environment = new_declarative_environment(*interpreter.lexical_environment());
- auto& for_declaration = static_cast<VariableDeclaration const&>(*expression_lhs);
- for_declaration.for_each_bound_name([&](auto const& name) {
- if (for_declaration.declaration_kind() == DeclarationKind::Const)
- MUST(iteration_environment->create_immutable_binding(global_object, name, false));
- else
- MUST(iteration_environment->create_mutable_binding(global_object, name, true));
- });
- interpreter.vm().running_execution_context().lexical_environment = iteration_environment;
- if (!destructuring) {
- VERIFY(for_declaration.declarations().first().target().has<NonnullRefPtr<Identifier>>());
- lhs_reference = interpreter.vm().resolve_binding(for_declaration.declarations().first().target().get<NonnullRefPtr<Identifier>>()->string());
- }
- }
- if (auto* exception = interpreter.exception())
- return throw_completion(exception->value());
- // i. If destructuring is false, then
- if (!destructuring) {
- VERIFY(lhs_reference.has_value());
- if (lhs_kind == LexicalBinding)
- lhs_reference->initialize_referenced_binding(global_object, next_value);
- else
- lhs_reference->put_value(global_object, next_value);
- if (auto* exception = interpreter.exception())
- return throw_completion(exception->value());
- return {};
- }
- // j. Else,
- if (lhs_kind == Assignment) {
- VERIFY(pattern_lhs);
- return interpreter.vm().destructuring_assignment_evaluation(*pattern_lhs, next_value, global_object);
- }
- VERIFY(expression_lhs && is<VariableDeclaration>(*expression_lhs));
- auto& for_declaration = static_cast<VariableDeclaration const&>(*expression_lhs);
- auto& binding_pattern = for_declaration.declarations().first().target().get<NonnullRefPtr<BindingPattern>>();
- VERIFY(lhs_kind == VarBinding || iteration_environment);
- // At this point iteration_environment is undefined if lhs_kind == VarBinding which means this does both
- // branch j.ii and j.iii because ForBindingInitialization is just a forwarding call to BindingInitialization.
- return interpreter.vm().binding_initialization(binding_pattern, next_value, iteration_environment, global_object);
- }
- };
- // 14.7.5.5 Runtime Semantics: ForInOfLoopEvaluation, https://tc39.es/ecma262/#sec-runtime-semantics-forinofloopevaluation
- // 14.7.5.6 ForIn/OfHeadEvaluation ( uninitializedBoundNames, expr, iterationKind ), https://tc39.es/ecma262/#sec-runtime-semantics-forinofheadevaluation
- // This method combines ForInOfLoopEvaluation and ForIn/OfHeadEvaluation for similar reason as ForIn/OfBodyEvaluation, to prevent code duplication.
- // For the same reason we also skip step 6 and 7 of ForIn/OfHeadEvaluation as this is done by the appropriate for loop type.
- static ThrowCompletionOr<ForInOfHeadState> for_in_of_head_execute(Interpreter& interpreter, GlobalObject& global_object, Variant<NonnullRefPtr<ASTNode>, NonnullRefPtr<BindingPattern>> lhs, Expression const& rhs)
- {
- ForInOfHeadState state(lhs);
- if (auto* ast_ptr = lhs.get_pointer<NonnullRefPtr<ASTNode>>(); ast_ptr && is<VariableDeclaration>(*(*ast_ptr))) {
- // Runtime Semantics: ForInOfLoopEvaluation, for any of:
- // ForInOfStatement : for ( var ForBinding in Expression ) Statement
- // ForInOfStatement : for ( ForDeclaration in Expression ) Statement
- // ForInOfStatement : for ( var ForBinding of AssignmentExpression ) Statement
- // ForInOfStatement : for ( ForDeclaration of AssignmentExpression ) Statement
- // 14.7.5.6 ForIn/OfHeadEvaluation ( uninitializedBoundNames, expr, iterationKind ), https://tc39.es/ecma262/#sec-runtime-semantics-forinofheadevaluation
- Environment* new_environment = nullptr;
- auto& variable_declaration = static_cast<VariableDeclaration const&>(*(*ast_ptr));
- VERIFY(variable_declaration.declarations().size() == 1);
- state.destructuring = variable_declaration.declarations().first().target().has<NonnullRefPtr<BindingPattern>>();
- if (variable_declaration.declaration_kind() == DeclarationKind::Var) {
- state.lhs_kind = ForInOfHeadState::VarBinding;
- auto& variable = variable_declaration.declarations().first();
- // B.3.5 Initializers in ForIn Statement Heads, https://tc39.es/ecma262/#sec-initializers-in-forin-statement-heads
- if (variable.init()) {
- VERIFY(variable.target().has<NonnullRefPtr<Identifier>>());
- auto& binding_id = variable.target().get<NonnullRefPtr<Identifier>>()->string();
- auto reference = interpreter.vm().resolve_binding(binding_id);
- if (auto* exception = interpreter.exception())
- return throw_completion(exception->value());
- auto result = TRY(interpreter.vm().named_evaluation_if_anonymous_function(global_object, *variable.init(), binding_id));
- reference.put_value(global_object, result);
- if (auto* exception = interpreter.exception())
- return throw_completion(exception->value());
- }
- } else {
- state.lhs_kind = ForInOfHeadState::LexicalBinding;
- new_environment = new_declarative_environment(*interpreter.lexical_environment());
- variable_declaration.for_each_bound_name([&](auto const& name) {
- MUST(new_environment->create_mutable_binding(global_object, name, false));
- });
- }
- if (new_environment) {
- // 2.d Set the running execution context's LexicalEnvironment to newEnv.
- TemporaryChange<Environment*> scope_change(interpreter.vm().running_execution_context().lexical_environment, new_environment);
- // 3. Let exprRef be the result of evaluating expr.
- // 5. Let exprValue be ? GetValue(exprRef).
- state.rhs_value = rhs.execute(interpreter, global_object);
- // Note that since a reference stores it's environment it doesn't matter we only reset
- // this after step 5. (Also we have no way of separating these steps at this point)
- // 4. Set the running execution context's LexicalEnvironment to oldEnv.
- } else {
- // 3. Let exprRef be the result of evaluating expr.
- // 5. Let exprValue be ? GetValue(exprRef).
- state.rhs_value = rhs.execute(interpreter, global_object);
- }
- if (auto* exception = interpreter.exception())
- return throw_completion(exception->value());
- return state;
- }
- // Runtime Semantics: ForInOfLoopEvaluation, for any of:
- // ForInOfStatement : for ( LeftHandSideExpression in Expression ) Statement
- // ForInOfStatement : for ( LeftHandSideExpression of AssignmentExpression ) Statement
- // 14.7.5.6 ForIn/OfHeadEvaluation ( uninitializedBoundNames, expr, iterationKind ), https://tc39.es/ecma262/#sec-runtime-semantics-forinofheadevaluation
- // We can skip step 1, 2 and 4 here (on top of already skipping step 6 and 7).
- // 3. Let exprRef be the result of evaluating expr.
- // 5. Let exprValue be ? GetValue(exprRef).
- state.rhs_value = rhs.execute(interpreter, global_object);
- if (auto* exception = interpreter.exception())
- return throw_completion(exception->value());
- return state;
- }
- Value ForInStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- auto for_in_head_state = TRY_OR_DISCARD(for_in_of_head_execute(interpreter, global_object, m_lhs, *m_rhs));
- auto rhs_result = for_in_head_state.rhs_value;
- // 14.7.5.6 ForIn/OfHeadEvaluation ( uninitializedBoundNames, expr, iterationKind ), https://tc39.es/ecma262/#sec-runtime-semantics-forinofheadevaluation
- if (rhs_result.is_nullish())
- return js_undefined();
- auto* object = rhs_result.to_object(global_object);
- VERIFY(object);
- // 14.7.5.7 ForIn/OfBodyEvaluation ( lhs, stmt, iteratorRecord, iterationKind, lhsKind, labelSet [ , iteratorKind ] ), https://tc39.es/ecma262/#sec-runtime-semantics-forin-div-ofbodyevaluation-lhs-stmt-iterator-lhskind-labelset
- Environment* old_environment = interpreter.lexical_environment();
- auto restore_scope = ScopeGuard([&] {
- interpreter.vm().running_execution_context().lexical_environment = old_environment;
- });
- auto last_value = js_undefined();
- while (object) {
- auto property_names = TRY_OR_DISCARD(object->enumerable_own_property_names(Object::PropertyKind::Key));
- for (auto& value : property_names) {
- TRY_OR_DISCARD(for_in_head_state.execute_head(interpreter, global_object, value));
- last_value = m_body->execute(interpreter, global_object).value_or(last_value);
- interpreter.vm().running_execution_context().lexical_environment = old_environment;
- if (interpreter.exception())
- return {};
- if (interpreter.vm().should_unwind()) {
- if (interpreter.vm().should_unwind_until(ScopeType::Continuable, m_labels)) {
- interpreter.vm().stop_unwind();
- } else if (interpreter.vm().should_unwind_until(ScopeType::Breakable, m_labels)) {
- interpreter.vm().stop_unwind();
- break;
- } else {
- return last_value;
- }
- }
- }
- object = TRY_OR_DISCARD(object->internal_get_prototype_of());
- }
- return last_value;
- }
- Value ForOfStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- auto for_of_head_state = TRY_OR_DISCARD(for_in_of_head_execute(interpreter, global_object, m_lhs, m_rhs));
- auto rhs_result = for_of_head_state.rhs_value;
- auto last_value = js_undefined();
- // 14.7.5.7 ForIn/OfBodyEvaluation ( lhs, stmt, iteratorRecord, iterationKind, lhsKind, labelSet [ , iteratorKind ] ), https://tc39.es/ecma262/#sec-runtime-semantics-forin-div-ofbodyevaluation-lhs-stmt-iterator-lhskind-labelset
- // We use get_iterator_values which behaves like ForIn/OfBodyEvaluation with iteratorKind iterate.
- Environment* old_environment = interpreter.lexical_environment();
- auto restore_scope = ScopeGuard([&] {
- interpreter.vm().running_execution_context().lexical_environment = old_environment;
- });
- get_iterator_values(global_object, rhs_result, [&](Value value) {
- auto result = for_of_head_state.execute_head(interpreter, global_object, value);
- if (result.is_error())
- return IterationDecision::Break;
- last_value = m_body->execute(interpreter, global_object).value_or(last_value);
- interpreter.vm().running_execution_context().lexical_environment = old_environment;
- if (interpreter.exception())
- return IterationDecision::Break;
- if (interpreter.vm().should_unwind()) {
- if (interpreter.vm().should_unwind_until(ScopeType::Continuable, m_labels)) {
- interpreter.vm().stop_unwind();
- } else if (interpreter.vm().should_unwind_until(ScopeType::Breakable, m_labels)) {
- interpreter.vm().stop_unwind();
- return IterationDecision::Break;
- } else {
- return IterationDecision::Break;
- }
- }
- return IterationDecision::Continue;
- });
- if (interpreter.exception())
- return {};
- return last_value;
- }
- Value BinaryExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- auto lhs_result = m_lhs->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- auto rhs_result = m_rhs->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- switch (m_op) {
- case BinaryOp::Addition:
- return add(global_object, lhs_result, rhs_result);
- case BinaryOp::Subtraction:
- return sub(global_object, lhs_result, rhs_result);
- case BinaryOp::Multiplication:
- return mul(global_object, lhs_result, rhs_result);
- case BinaryOp::Division:
- return div(global_object, lhs_result, rhs_result);
- case BinaryOp::Modulo:
- return mod(global_object, lhs_result, rhs_result);
- case BinaryOp::Exponentiation:
- return exp(global_object, lhs_result, rhs_result);
- case BinaryOp::StrictlyEquals:
- return Value(is_strictly_equal(lhs_result, rhs_result));
- case BinaryOp::StrictlyInequals:
- return Value(!is_strictly_equal(lhs_result, rhs_result));
- case BinaryOp::LooselyEquals:
- return Value(is_loosely_equal(global_object, lhs_result, rhs_result));
- case BinaryOp::LooselyInequals:
- return Value(!is_loosely_equal(global_object, lhs_result, rhs_result));
- case BinaryOp::GreaterThan:
- return greater_than(global_object, lhs_result, rhs_result);
- case BinaryOp::GreaterThanEquals:
- return greater_than_equals(global_object, lhs_result, rhs_result);
- case BinaryOp::LessThan:
- return less_than(global_object, lhs_result, rhs_result);
- case BinaryOp::LessThanEquals:
- return less_than_equals(global_object, lhs_result, rhs_result);
- case BinaryOp::BitwiseAnd:
- return bitwise_and(global_object, lhs_result, rhs_result);
- case BinaryOp::BitwiseOr:
- return bitwise_or(global_object, lhs_result, rhs_result);
- case BinaryOp::BitwiseXor:
- return bitwise_xor(global_object, lhs_result, rhs_result);
- case BinaryOp::LeftShift:
- return left_shift(global_object, lhs_result, rhs_result);
- case BinaryOp::RightShift:
- return right_shift(global_object, lhs_result, rhs_result);
- case BinaryOp::UnsignedRightShift:
- return unsigned_right_shift(global_object, lhs_result, rhs_result);
- case BinaryOp::In:
- return in(global_object, lhs_result, rhs_result);
- case BinaryOp::InstanceOf:
- return instance_of(global_object, lhs_result, rhs_result);
- }
- VERIFY_NOT_REACHED();
- }
- Value LogicalExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- auto lhs_result = m_lhs->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- switch (m_op) {
- case LogicalOp::And:
- if (lhs_result.to_boolean()) {
- auto rhs_result = m_rhs->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- return rhs_result;
- }
- return lhs_result;
- case LogicalOp::Or: {
- if (lhs_result.to_boolean())
- return lhs_result;
- auto rhs_result = m_rhs->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- return rhs_result;
- }
- case LogicalOp::NullishCoalescing:
- if (lhs_result.is_nullish()) {
- auto rhs_result = m_rhs->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- return rhs_result;
- }
- return lhs_result;
- }
- VERIFY_NOT_REACHED();
- }
- Reference Expression::to_reference(Interpreter&, GlobalObject&) const
- {
- return {};
- }
- Reference Identifier::to_reference(Interpreter& interpreter, GlobalObject&) const
- {
- if (m_cached_environment_coordinate.has_value()) {
- auto* environment = interpreter.vm().running_execution_context().lexical_environment;
- for (size_t i = 0; i < m_cached_environment_coordinate->hops; ++i)
- environment = environment->outer_environment();
- VERIFY(environment);
- VERIFY(environment->is_declarative_environment());
- if (!environment->is_permanently_screwed_by_eval()) {
- return Reference { *environment, string(), interpreter.vm().in_strict_mode(), m_cached_environment_coordinate };
- }
- m_cached_environment_coordinate = {};
- }
- auto reference = interpreter.vm().resolve_binding(string());
- if (reference.environment_coordinate().has_value())
- m_cached_environment_coordinate = reference.environment_coordinate();
- return reference;
- }
- Reference MemberExpression::to_reference(Interpreter& interpreter, GlobalObject& global_object) const
- {
- // 13.3.7.1 Runtime Semantics: Evaluation
- // SuperProperty : super [ Expression ]
- // SuperProperty : super . IdentifierName
- // https://tc39.es/ecma262/#sec-super-keyword-runtime-semantics-evaluation
- if (is<SuperExpression>(object())) {
- // 1. Let env be GetThisEnvironment().
- auto& environment = get_this_environment(interpreter.vm());
- // 2. Let actualThis be ? env.GetThisBinding().
- auto actual_this = TRY_OR_DISCARD(environment.get_this_binding(global_object));
- StringOrSymbol property_key;
- if (is_computed()) {
- // SuperProperty : super [ Expression ]
- // 3. Let propertyNameReference be the result of evaluating Expression.
- // 4. Let propertyNameValue be ? GetValue(propertyNameReference).
- auto property_name_value = m_property->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- // 5. Let propertyKey be ? ToPropertyKey(propertyNameValue).
- property_key = property_name_value.to_property_key(global_object);
- } else {
- // SuperProperty : super . IdentifierName
- // 3. Let propertyKey be StringValue of IdentifierName.
- VERIFY(is<Identifier>(property()));
- property_key = static_cast<Identifier const&>(property()).string();
- }
- // 6. If the code matched by this SuperProperty is strict mode code, let strict be true; else let strict be false.
- bool strict = interpreter.vm().in_strict_mode();
- // 7. Return ? MakeSuperPropertyReference(actualThis, propertyKey, strict).
- return TRY_OR_DISCARD(make_super_property_reference(global_object, actual_this, property_key, strict));
- }
- auto base_reference = m_object->to_reference(interpreter, global_object);
- if (interpreter.exception())
- return {};
- Value base_value;
- if (base_reference.is_valid_reference())
- base_value = base_reference.get_value(global_object);
- else
- base_value = m_object->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- VERIFY(!base_value.is_empty());
- // From here on equivalent to
- // 13.3.4 EvaluatePropertyAccessWithIdentifierKey ( baseValue, identifierName, strict ), https://tc39.es/ecma262/#sec-evaluate-property-access-with-identifier-key
- PropertyName property_name;
- if (is_computed()) {
- // Weird order which I can't quite find from the specs.
- auto value = m_property->execute(interpreter, global_object);
- if (interpreter.exception())
- return Reference {};
- TRY_OR_DISCARD(require_object_coercible(global_object, base_value));
- VERIFY(!value.is_empty());
- property_name = PropertyName::from_value(global_object, value);
- if (interpreter.exception())
- return Reference {};
- } else {
- property_name = verify_cast<Identifier>(*m_property).string();
- TRY_OR_DISCARD(require_object_coercible(global_object, base_value));
- }
- if (!property_name.is_valid())
- return Reference {};
- auto strict = interpreter.vm().in_strict_mode();
- return Reference { base_value, move(property_name), {}, strict };
- }
- Value UnaryExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- auto& vm = interpreter.vm();
- if (m_op == UnaryOp::Delete) {
- auto reference = m_lhs->to_reference(interpreter, global_object);
- if (interpreter.exception())
- return {};
- return Value(reference.delete_(global_object));
- }
- Value lhs_result;
- if (m_op == UnaryOp::Typeof && is<Identifier>(*m_lhs)) {
- auto reference = m_lhs->to_reference(interpreter, global_object);
- if (interpreter.exception())
- return {};
- if (reference.is_unresolvable()) {
- lhs_result = js_undefined();
- } else {
- lhs_result = reference.get_value(global_object);
- if (interpreter.exception())
- return {};
- }
- VERIFY(!lhs_result.is_empty());
- } else {
- lhs_result = m_lhs->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- }
- switch (m_op) {
- case UnaryOp::BitwiseNot:
- return bitwise_not(global_object, lhs_result);
- case UnaryOp::Not:
- return Value(!lhs_result.to_boolean());
- case UnaryOp::Plus:
- return unary_plus(global_object, lhs_result);
- case UnaryOp::Minus:
- return unary_minus(global_object, lhs_result);
- case UnaryOp::Typeof:
- return js_string(vm, lhs_result.typeof());
- case UnaryOp::Void:
- return js_undefined();
- case UnaryOp::Delete:
- VERIFY_NOT_REACHED();
- }
- VERIFY_NOT_REACHED();
- }
- Value SuperExpression::execute(Interpreter&, GlobalObject&) const
- {
- // The semantics for SuperExpression are handled in CallExpression and SuperCall.
- VERIFY_NOT_REACHED();
- }
- Value ClassMethod::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- return m_function->execute(interpreter, global_object);
- }
- Value ClassField::execute(Interpreter& interpreter, GlobalObject&) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- return {};
- }
- Value ClassExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- // FIXME: Set value.[[SourceText]] to the source text matched by ClassExpression.
- return TRY_OR_DISCARD(class_definition_evaluation(interpreter, global_object, m_name, m_name.is_null() ? "" : m_name));
- }
- Value ClassDeclaration::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- auto name = m_class_expression->name();
- VERIFY(!name.is_empty());
- auto class_constructor = TRY_OR_DISCARD(m_class_expression->class_definition_evaluation(interpreter, global_object, name, name));
- if (interpreter.lexical_environment()) {
- MUST(interpreter.lexical_environment()->initialize_binding(global_object, name, class_constructor));
- } else {
- auto reference = interpreter.vm().resolve_binding(name);
- reference.put_value(global_object, class_constructor);
- if (interpreter.exception())
- return {};
- }
- return {};
- }
- // 15.7.14 Runtime Semantics: ClassDefinitionEvaluation, https://tc39.es/ecma262/#sec-runtime-semantics-classdefinitionevaluation
- ThrowCompletionOr<Value> ClassExpression::class_definition_evaluation(Interpreter& interpreter, GlobalObject& global_object, FlyString const& binding_name, FlyString const& class_name) const
- {
- // FIXME: Clean up this mix of "spec", "somewhat spec", and "not spec at all".
- auto& vm = interpreter.vm();
- auto* environment = vm.lexical_environment();
- VERIFY(environment);
- auto* class_scope = new_declarative_environment(*environment);
- if (!binding_name.is_null())
- MUST(class_scope->create_immutable_binding(global_object, binding_name, true));
- ArmedScopeGuard restore_environment = [&] {
- vm.running_execution_context().lexical_environment = environment;
- };
- vm.running_execution_context().lexical_environment = class_scope;
- Value class_constructor_value = m_constructor->execute(interpreter, global_object);
- if (auto* exception = interpreter.exception())
- return throw_completion(exception->value());
- update_function_name(class_constructor_value, class_name);
- VERIFY(class_constructor_value.is_function() && is<ECMAScriptFunctionObject>(class_constructor_value.as_function()));
- auto* class_constructor = static_cast<ECMAScriptFunctionObject*>(&class_constructor_value.as_function());
- class_constructor->set_is_class_constructor();
- Value super_constructor = js_undefined();
- if (!m_super_class.is_null()) {
- super_constructor = m_super_class->execute(interpreter, global_object);
- if (auto* exception = interpreter.exception())
- return throw_completion(exception->value());
- if (!super_constructor.is_function() && !super_constructor.is_null())
- return interpreter.vm().throw_completion<TypeError>(global_object, ErrorType::ClassExtendsValueNotAConstructorOrNull, super_constructor.to_string_without_side_effects());
- class_constructor->set_constructor_kind(ECMAScriptFunctionObject::ConstructorKind::Derived);
- Object* super_constructor_prototype = nullptr;
- if (!super_constructor.is_null()) {
- auto super_constructor_prototype_value = TRY(super_constructor.as_object().get(vm.names.prototype));
- if (!super_constructor_prototype_value.is_object() && !super_constructor_prototype_value.is_null())
- return interpreter.vm().throw_completion<TypeError>(global_object, ErrorType::ClassExtendsValueInvalidPrototype, super_constructor_prototype_value.to_string_without_side_effects());
- if (super_constructor_prototype_value.is_object())
- super_constructor_prototype = &super_constructor_prototype_value.as_object();
- }
- auto* prototype = Object::create(global_object, super_constructor_prototype);
- prototype->define_direct_property(vm.names.constructor, class_constructor, 0);
- if (auto* exception = interpreter.exception())
- return throw_completion(exception->value());
- class_constructor->define_direct_property(vm.names.prototype, prototype, Attribute::Writable);
- if (auto* exception = interpreter.exception())
- return throw_completion(exception->value());
- TRY(class_constructor->internal_set_prototype_of(super_constructor.is_null() ? global_object.function_prototype() : &super_constructor.as_object()));
- }
- auto class_prototype = TRY(class_constructor->get(vm.names.prototype));
- if (!class_prototype.is_object())
- return interpreter.vm().throw_completion<TypeError>(global_object, ErrorType::NotAnObject, "Class prototype");
- for (auto const& method : m_methods) {
- auto method_value = method.execute(interpreter, global_object);
- if (auto* exception = interpreter.exception())
- return throw_completion(exception->value());
- auto& method_function = static_cast<ECMAScriptFunctionObject&>(method_value.as_function());
- auto key = method.key().execute(interpreter, global_object);
- if (auto* exception = interpreter.exception())
- return throw_completion(exception->value());
- auto property_key = key.to_property_key(global_object);
- if (auto* exception = interpreter.exception())
- return throw_completion(exception->value());
- auto& target = method.is_static() ? *class_constructor : class_prototype.as_object();
- method_function.set_home_object(&target);
- switch (method.kind()) {
- case ClassMethod::Kind::Method:
- TRY(target.define_property_or_throw(property_key, { .value = method_value, .writable = true, .enumerable = false, .configurable = true }));
- break;
- case ClassMethod::Kind::Getter:
- update_function_name(method_value, String::formatted("get {}", get_function_name(global_object, key)));
- TRY(target.define_property_or_throw(property_key, { .get = &method_function, .enumerable = true, .configurable = true }));
- break;
- case ClassMethod::Kind::Setter:
- update_function_name(method_value, String::formatted("set {}", get_function_name(global_object, key)));
- TRY(target.define_property_or_throw(property_key, { .set = &method_function, .enumerable = true, .configurable = true }));
- break;
- default:
- VERIFY_NOT_REACHED();
- }
- }
- for (auto& field : m_fields) {
- auto key = field.key().execute(interpreter, global_object);
- if (auto* exception = interpreter.exception())
- return throw_completion(exception->value());
- auto property_key = key.to_property_key(global_object);
- if (auto* exception = interpreter.exception())
- return throw_completion(exception->value());
- ECMAScriptFunctionObject* initializer = nullptr;
- if (field.initializer()) {
- auto copy_initializer = field.initializer();
- auto body = create_ast_node<ExpressionStatement>(field.initializer()->source_range(), copy_initializer.release_nonnull());
- // FIXME: A potential optimization is not creating the functions here since these are never directly accessible.
- initializer = ECMAScriptFunctionObject::create(interpreter.global_object(), property_key.to_display_string(), *body, {}, 0, interpreter.lexical_environment(), FunctionKind::Regular, false, false);
- initializer->set_home_object(field.is_static() ? class_constructor : &class_prototype.as_object());
- }
- if (field.is_static()) {
- Value field_value = js_undefined();
- if (initializer)
- field_value = TRY(interpreter.vm().call(*initializer, class_constructor_value));
- TRY(class_constructor->create_data_property_or_throw(property_key, field_value));
- } else {
- class_constructor->add_field(property_key, initializer);
- }
- }
- vm.running_execution_context().lexical_environment = environment;
- restore_environment.disarm();
- if (!binding_name.is_null())
- MUST(class_scope->initialize_binding(global_object, binding_name, class_constructor));
- return Value(class_constructor);
- }
- static void print_indent(int indent)
- {
- out("{}", String::repeated(' ', indent * 2));
- }
- void ASTNode::dump(int indent) const
- {
- print_indent(indent);
- outln("{}", class_name());
- }
- void ScopeNode::dump(int indent) const
- {
- ASTNode::dump(indent);
- if (!m_lexical_declarations.is_empty()) {
- print_indent(indent + 1);
- outln("(Lexical declarations)");
- for (auto& declaration : m_lexical_declarations)
- declaration.dump(indent + 2);
- }
- if (!m_var_declarations.is_empty()) {
- print_indent(indent + 1);
- outln("(Variable declarations)");
- for (auto& declaration : m_var_declarations)
- declaration.dump(indent + 2);
- }
- if (!m_functions_hoistable_with_annexB_extension.is_empty()) {
- print_indent(indent + 1);
- outln("(Hoisted functions via annexB extension)");
- for (auto& declaration : m_functions_hoistable_with_annexB_extension)
- declaration.dump(indent + 2);
- }
- if (!m_children.is_empty()) {
- print_indent(indent + 1);
- outln("(Children)");
- for (auto& child : children())
- child.dump(indent + 2);
- }
- }
- void BinaryExpression::dump(int indent) const
- {
- const char* op_string = nullptr;
- switch (m_op) {
- case BinaryOp::Addition:
- op_string = "+";
- break;
- case BinaryOp::Subtraction:
- op_string = "-";
- break;
- case BinaryOp::Multiplication:
- op_string = "*";
- break;
- case BinaryOp::Division:
- op_string = "/";
- break;
- case BinaryOp::Modulo:
- op_string = "%";
- break;
- case BinaryOp::Exponentiation:
- op_string = "**";
- break;
- case BinaryOp::StrictlyEquals:
- op_string = "===";
- break;
- case BinaryOp::StrictlyInequals:
- op_string = "!==";
- break;
- case BinaryOp::LooselyEquals:
- op_string = "==";
- break;
- case BinaryOp::LooselyInequals:
- op_string = "!=";
- break;
- case BinaryOp::GreaterThan:
- op_string = ">";
- break;
- case BinaryOp::GreaterThanEquals:
- op_string = ">=";
- break;
- case BinaryOp::LessThan:
- op_string = "<";
- break;
- case BinaryOp::LessThanEquals:
- op_string = "<=";
- break;
- case BinaryOp::BitwiseAnd:
- op_string = "&";
- break;
- case BinaryOp::BitwiseOr:
- op_string = "|";
- break;
- case BinaryOp::BitwiseXor:
- op_string = "^";
- break;
- case BinaryOp::LeftShift:
- op_string = "<<";
- break;
- case BinaryOp::RightShift:
- op_string = ">>";
- break;
- case BinaryOp::UnsignedRightShift:
- op_string = ">>>";
- break;
- case BinaryOp::In:
- op_string = "in";
- break;
- case BinaryOp::InstanceOf:
- op_string = "instanceof";
- break;
- }
- print_indent(indent);
- outln("{}", class_name());
- m_lhs->dump(indent + 1);
- print_indent(indent + 1);
- outln("{}", op_string);
- m_rhs->dump(indent + 1);
- }
- void LogicalExpression::dump(int indent) const
- {
- const char* op_string = nullptr;
- switch (m_op) {
- case LogicalOp::And:
- op_string = "&&";
- break;
- case LogicalOp::Or:
- op_string = "||";
- break;
- case LogicalOp::NullishCoalescing:
- op_string = "??";
- break;
- }
- print_indent(indent);
- outln("{}", class_name());
- m_lhs->dump(indent + 1);
- print_indent(indent + 1);
- outln("{}", op_string);
- m_rhs->dump(indent + 1);
- }
- void UnaryExpression::dump(int indent) const
- {
- const char* op_string = nullptr;
- switch (m_op) {
- case UnaryOp::BitwiseNot:
- op_string = "~";
- break;
- case UnaryOp::Not:
- op_string = "!";
- break;
- case UnaryOp::Plus:
- op_string = "+";
- break;
- case UnaryOp::Minus:
- op_string = "-";
- break;
- case UnaryOp::Typeof:
- op_string = "typeof ";
- break;
- case UnaryOp::Void:
- op_string = "void ";
- break;
- case UnaryOp::Delete:
- op_string = "delete ";
- break;
- }
- print_indent(indent);
- outln("{}", class_name());
- print_indent(indent + 1);
- outln("{}", op_string);
- m_lhs->dump(indent + 1);
- }
- void CallExpression::dump(int indent) const
- {
- print_indent(indent);
- if (is<NewExpression>(*this))
- outln("CallExpression [new]");
- else
- outln("CallExpression");
- m_callee->dump(indent + 1);
- for (auto& argument : m_arguments)
- argument.value->dump(indent + 1);
- }
- void SuperCall::dump(int indent) const
- {
- print_indent(indent);
- outln("SuperCall");
- for (auto& argument : m_arguments)
- argument.value->dump(indent + 1);
- }
- void ClassDeclaration::dump(int indent) const
- {
- ASTNode::dump(indent);
- m_class_expression->dump(indent + 1);
- }
- void ClassDeclaration::for_each_bound_name(IteratorOrVoidFunction<FlyString const&> callback) const
- {
- if (!m_class_expression->name().is_empty())
- callback(m_class_expression->name());
- }
- void ClassExpression::dump(int indent) const
- {
- print_indent(indent);
- outln("ClassExpression: \"{}\"", m_name);
- print_indent(indent);
- outln("(Constructor)");
- m_constructor->dump(indent + 1);
- if (!m_super_class.is_null()) {
- print_indent(indent);
- outln("(Super Class)");
- m_super_class->dump(indent + 1);
- }
- print_indent(indent);
- outln("(Methods)");
- for (auto& method : m_methods)
- method.dump(indent + 1);
- print_indent(indent);
- outln("(Fields)");
- for (auto& field : m_fields)
- field.dump(indent + 1);
- }
- void ClassMethod::dump(int indent) const
- {
- ASTNode::dump(indent);
- print_indent(indent);
- outln("(Key)");
- m_key->dump(indent + 1);
- const char* kind_string = nullptr;
- switch (m_kind) {
- case Kind::Method:
- kind_string = "Method";
- break;
- case Kind::Getter:
- kind_string = "Getter";
- break;
- case Kind::Setter:
- kind_string = "Setter";
- break;
- }
- print_indent(indent);
- outln("Kind: {}", kind_string);
- print_indent(indent);
- outln("Static: {}", m_is_static);
- print_indent(indent);
- outln("(Function)");
- m_function->dump(indent + 1);
- }
- void ClassField::dump(int indent) const
- {
- ASTNode::dump(indent);
- print_indent(indent);
- outln("(Key)");
- m_key->dump(indent + 1);
- print_indent(indent);
- outln("Static: {}", m_is_static);
- if (m_initializer) {
- print_indent(indent);
- outln("(Initializer)");
- m_initializer->dump(indent + 1);
- }
- }
- void StringLiteral::dump(int indent) const
- {
- print_indent(indent);
- outln("StringLiteral \"{}\"", m_value);
- }
- void SuperExpression::dump(int indent) const
- {
- print_indent(indent);
- outln("super");
- }
- void NumericLiteral::dump(int indent) const
- {
- print_indent(indent);
- outln("NumericLiteral {}", m_value);
- }
- void BigIntLiteral::dump(int indent) const
- {
- print_indent(indent);
- outln("BigIntLiteral {}", m_value);
- }
- void BooleanLiteral::dump(int indent) const
- {
- print_indent(indent);
- outln("BooleanLiteral {}", m_value);
- }
- void NullLiteral::dump(int indent) const
- {
- print_indent(indent);
- outln("null");
- }
- bool BindingPattern::contains_expression() const
- {
- for (auto& entry : entries) {
- if (entry.initializer)
- return true;
- if (auto binding_ptr = entry.alias.get_pointer<NonnullRefPtr<BindingPattern>>(); binding_ptr && (*binding_ptr)->contains_expression())
- return true;
- }
- return false;
- }
- void BindingPattern::dump(int indent) const
- {
- print_indent(indent);
- outln("BindingPattern {}", kind == Kind::Array ? "Array" : "Object");
- for (auto& entry : entries) {
- print_indent(indent + 1);
- outln("(Property)");
- if (kind == Kind::Object) {
- print_indent(indent + 2);
- outln("(Identifier)");
- if (entry.name.has<NonnullRefPtr<Identifier>>()) {
- entry.name.get<NonnullRefPtr<Identifier>>()->dump(indent + 3);
- } else {
- entry.name.get<NonnullRefPtr<Expression>>()->dump(indent + 3);
- }
- } else if (entry.is_elision()) {
- print_indent(indent + 2);
- outln("(Elision)");
- continue;
- }
- print_indent(indent + 2);
- outln("(Pattern{})", entry.is_rest ? " rest=true" : "");
- if (entry.alias.has<NonnullRefPtr<Identifier>>()) {
- entry.alias.get<NonnullRefPtr<Identifier>>()->dump(indent + 3);
- } else if (entry.alias.has<NonnullRefPtr<BindingPattern>>()) {
- entry.alias.get<NonnullRefPtr<BindingPattern>>()->dump(indent + 3);
- } else if (entry.alias.has<NonnullRefPtr<MemberExpression>>()) {
- entry.alias.get<NonnullRefPtr<MemberExpression>>()->dump(indent + 3);
- } else {
- print_indent(indent + 3);
- outln("<empty>");
- }
- if (entry.initializer) {
- print_indent(indent + 2);
- outln("(Initializer)");
- entry.initializer->dump(indent + 3);
- }
- }
- }
- void FunctionNode::dump(int indent, String const& class_name) const
- {
- print_indent(indent);
- outln("{}{} '{}'", class_name, m_kind == FunctionKind::Generator ? "*" : "", name());
- if (m_contains_direct_call_to_eval) {
- print_indent(indent + 1);
- outln("\033[31;1m(direct eval)\033[0m");
- }
- if (!m_parameters.is_empty()) {
- print_indent(indent + 1);
- outln("(Parameters)");
- for (auto& parameter : m_parameters) {
- print_indent(indent + 2);
- if (parameter.is_rest)
- out("...");
- parameter.binding.visit(
- [&](FlyString const& name) {
- outln("{}", name);
- },
- [&](BindingPattern const& pattern) {
- pattern.dump(indent + 2);
- });
- if (parameter.default_value)
- parameter.default_value->dump(indent + 3);
- }
- }
- print_indent(indent + 1);
- outln("(Body)");
- body().dump(indent + 2);
- }
- void FunctionDeclaration::dump(int indent) const
- {
- FunctionNode::dump(indent, class_name());
- }
- void FunctionDeclaration::for_each_bound_name(IteratorOrVoidFunction<FlyString const&> callback) const
- {
- if (!name().is_empty())
- callback(name());
- }
- void FunctionExpression::dump(int indent) const
- {
- FunctionNode::dump(indent, class_name());
- }
- void YieldExpression::dump(int indent) const
- {
- ASTNode::dump(indent);
- if (argument())
- argument()->dump(indent + 1);
- }
- void ReturnStatement::dump(int indent) const
- {
- ASTNode::dump(indent);
- if (argument())
- argument()->dump(indent + 1);
- }
- void IfStatement::dump(int indent) const
- {
- ASTNode::dump(indent);
- print_indent(indent);
- outln("If");
- predicate().dump(indent + 1);
- consequent().dump(indent + 1);
- if (alternate()) {
- print_indent(indent);
- outln("Else");
- alternate()->dump(indent + 1);
- }
- }
- void WhileStatement::dump(int indent) const
- {
- ASTNode::dump(indent);
- print_indent(indent);
- outln("While");
- test().dump(indent + 1);
- body().dump(indent + 1);
- }
- void WithStatement::dump(int indent) const
- {
- ASTNode::dump(indent);
- print_indent(indent + 1);
- outln("Object");
- object().dump(indent + 2);
- print_indent(indent + 1);
- outln("Body");
- body().dump(indent + 2);
- }
- void DoWhileStatement::dump(int indent) const
- {
- ASTNode::dump(indent);
- print_indent(indent);
- outln("DoWhile");
- test().dump(indent + 1);
- body().dump(indent + 1);
- }
- void ForStatement::dump(int indent) const
- {
- ASTNode::dump(indent);
- print_indent(indent);
- outln("For");
- if (init())
- init()->dump(indent + 1);
- if (test())
- test()->dump(indent + 1);
- if (update())
- update()->dump(indent + 1);
- body().dump(indent + 1);
- }
- void ForInStatement::dump(int indent) const
- {
- ASTNode::dump(indent);
- print_indent(indent);
- outln("ForIn");
- lhs().visit([&](auto& lhs) { lhs->dump(indent + 1); });
- rhs().dump(indent + 1);
- body().dump(indent + 1);
- }
- void ForOfStatement::dump(int indent) const
- {
- ASTNode::dump(indent);
- print_indent(indent);
- outln("ForOf");
- lhs().visit([&](auto& lhs) { lhs->dump(indent + 1); });
- rhs().dump(indent + 1);
- body().dump(indent + 1);
- }
- Value Identifier::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- auto reference = to_reference(interpreter, global_object);
- if (interpreter.exception())
- return {};
- return reference.get_value(global_object);
- }
- void Identifier::dump(int indent) const
- {
- print_indent(indent);
- outln("Identifier \"{}\"", m_string);
- }
- void SpreadExpression::dump(int indent) const
- {
- ASTNode::dump(indent);
- m_target->dump(indent + 1);
- }
- Value SpreadExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- return m_target->execute(interpreter, global_object);
- }
- Value ThisExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- return interpreter.vm().resolve_this_binding(global_object);
- }
- void ThisExpression::dump(int indent) const
- {
- ASTNode::dump(indent);
- }
- // 13.15.2 Runtime Semantics: Evaluation, https://tc39.es/ecma262/#sec-assignment-operators-runtime-semantics-evaluation
- Value AssignmentExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- if (m_op == AssignmentOp::Assignment) {
- // AssignmentExpression : LeftHandSideExpression = AssignmentExpression
- return m_lhs.visit(
- [&](NonnullRefPtr<Expression>& lhs) -> JS::Value {
- auto reference = lhs->to_reference(interpreter, global_object);
- if (interpreter.exception())
- return {};
- Value rhs_result;
- if (lhs->is_identifier()) {
- auto& identifier_name = static_cast<Identifier const&>(*lhs).string();
- rhs_result = TRY_OR_DISCARD(interpreter.vm().named_evaluation_if_anonymous_function(global_object, m_rhs, identifier_name));
- } else {
- rhs_result = m_rhs->execute(interpreter, global_object);
- }
- if (interpreter.exception())
- return {};
- reference.put_value(global_object, rhs_result);
- if (interpreter.exception())
- return {};
- return rhs_result;
- },
- [&](NonnullRefPtr<BindingPattern>& pattern) -> JS::Value {
- Value rhs_result = m_rhs->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- TRY_OR_DISCARD(interpreter.vm().destructuring_assignment_evaluation(pattern, rhs_result, global_object));
- return rhs_result;
- });
- }
- VERIFY(m_lhs.has<NonnullRefPtr<Expression>>());
- auto& lhs_expression = *m_lhs.get<NonnullRefPtr<Expression>>();
- auto reference = lhs_expression.to_reference(interpreter, global_object);
- if (interpreter.exception())
- return {};
- auto lhs_result = reference.get_value(global_object);
- if (interpreter.exception())
- return {};
- // AssignmentExpression : LeftHandSideExpression {&&=, ||=, ??=} AssignmentExpression
- if (m_op == AssignmentOp::AndAssignment || m_op == AssignmentOp::OrAssignment || m_op == AssignmentOp::NullishAssignment) {
- switch (m_op) {
- case AssignmentOp::AndAssignment:
- if (!lhs_result.to_boolean())
- return lhs_result;
- break;
- case AssignmentOp::OrAssignment:
- if (lhs_result.to_boolean())
- return lhs_result;
- break;
- case AssignmentOp::NullishAssignment:
- if (!lhs_result.is_nullish())
- return lhs_result;
- break;
- default:
- VERIFY_NOT_REACHED();
- }
- Value rhs_result;
- if (lhs_expression.is_identifier()) {
- auto& identifier_name = static_cast<Identifier const&>(lhs_expression).string();
- rhs_result = TRY_OR_DISCARD(interpreter.vm().named_evaluation_if_anonymous_function(global_object, m_rhs, identifier_name));
- } else {
- rhs_result = m_rhs->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- }
- reference.put_value(global_object, rhs_result);
- if (interpreter.exception())
- return {};
- return rhs_result;
- }
- // AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
- auto rhs_result = m_rhs->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- switch (m_op) {
- case AssignmentOp::AdditionAssignment:
- rhs_result = add(global_object, lhs_result, rhs_result);
- break;
- case AssignmentOp::SubtractionAssignment:
- rhs_result = sub(global_object, lhs_result, rhs_result);
- break;
- case AssignmentOp::MultiplicationAssignment:
- rhs_result = mul(global_object, lhs_result, rhs_result);
- break;
- case AssignmentOp::DivisionAssignment:
- rhs_result = div(global_object, lhs_result, rhs_result);
- break;
- case AssignmentOp::ModuloAssignment:
- rhs_result = mod(global_object, lhs_result, rhs_result);
- break;
- case AssignmentOp::ExponentiationAssignment:
- rhs_result = exp(global_object, lhs_result, rhs_result);
- break;
- case AssignmentOp::BitwiseAndAssignment:
- rhs_result = bitwise_and(global_object, lhs_result, rhs_result);
- break;
- case AssignmentOp::BitwiseOrAssignment:
- rhs_result = bitwise_or(global_object, lhs_result, rhs_result);
- break;
- case AssignmentOp::BitwiseXorAssignment:
- rhs_result = bitwise_xor(global_object, lhs_result, rhs_result);
- break;
- case AssignmentOp::LeftShiftAssignment:
- rhs_result = left_shift(global_object, lhs_result, rhs_result);
- break;
- case AssignmentOp::RightShiftAssignment:
- rhs_result = right_shift(global_object, lhs_result, rhs_result);
- break;
- case AssignmentOp::UnsignedRightShiftAssignment:
- rhs_result = unsigned_right_shift(global_object, lhs_result, rhs_result);
- break;
- case AssignmentOp::Assignment:
- case AssignmentOp::AndAssignment:
- case AssignmentOp::OrAssignment:
- case AssignmentOp::NullishAssignment:
- VERIFY_NOT_REACHED();
- }
- if (interpreter.exception())
- return {};
- reference.put_value(global_object, rhs_result);
- if (interpreter.exception())
- return {};
- return rhs_result;
- }
- Value UpdateExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- auto reference = m_argument->to_reference(interpreter, global_object);
- if (interpreter.exception())
- return {};
- auto old_value = reference.get_value(global_object);
- if (interpreter.exception())
- return {};
- old_value = old_value.to_numeric(global_object);
- if (interpreter.exception())
- return {};
- Value new_value;
- switch (m_op) {
- case UpdateOp::Increment:
- if (old_value.is_number())
- new_value = Value(old_value.as_double() + 1);
- else
- new_value = js_bigint(interpreter.heap(), old_value.as_bigint().big_integer().plus(Crypto::SignedBigInteger { 1 }));
- break;
- case UpdateOp::Decrement:
- if (old_value.is_number())
- new_value = Value(old_value.as_double() - 1);
- else
- new_value = js_bigint(interpreter.heap(), old_value.as_bigint().big_integer().minus(Crypto::SignedBigInteger { 1 }));
- break;
- default:
- VERIFY_NOT_REACHED();
- }
- reference.put_value(global_object, new_value);
- if (interpreter.exception())
- return {};
- return m_prefixed ? new_value : old_value;
- }
- void AssignmentExpression::dump(int indent) const
- {
- const char* op_string = nullptr;
- switch (m_op) {
- case AssignmentOp::Assignment:
- op_string = "=";
- break;
- case AssignmentOp::AdditionAssignment:
- op_string = "+=";
- break;
- case AssignmentOp::SubtractionAssignment:
- op_string = "-=";
- break;
- case AssignmentOp::MultiplicationAssignment:
- op_string = "*=";
- break;
- case AssignmentOp::DivisionAssignment:
- op_string = "/=";
- break;
- case AssignmentOp::ModuloAssignment:
- op_string = "%=";
- break;
- case AssignmentOp::ExponentiationAssignment:
- op_string = "**=";
- break;
- case AssignmentOp::BitwiseAndAssignment:
- op_string = "&=";
- break;
- case AssignmentOp::BitwiseOrAssignment:
- op_string = "|=";
- break;
- case AssignmentOp::BitwiseXorAssignment:
- op_string = "^=";
- break;
- case AssignmentOp::LeftShiftAssignment:
- op_string = "<<=";
- break;
- case AssignmentOp::RightShiftAssignment:
- op_string = ">>=";
- break;
- case AssignmentOp::UnsignedRightShiftAssignment:
- op_string = ">>>=";
- break;
- case AssignmentOp::AndAssignment:
- op_string = "&&=";
- break;
- case AssignmentOp::OrAssignment:
- op_string = "||=";
- break;
- case AssignmentOp::NullishAssignment:
- op_string = "\?\?=";
- break;
- }
- ASTNode::dump(indent);
- print_indent(indent + 1);
- outln("{}", op_string);
- m_lhs.visit([&](auto& lhs) { lhs->dump(indent + 1); });
- m_rhs->dump(indent + 1);
- }
- void UpdateExpression::dump(int indent) const
- {
- const char* op_string = nullptr;
- switch (m_op) {
- case UpdateOp::Increment:
- op_string = "++";
- break;
- case UpdateOp::Decrement:
- op_string = "--";
- break;
- }
- ASTNode::dump(indent);
- if (m_prefixed) {
- print_indent(indent + 1);
- outln("{}", op_string);
- }
- m_argument->dump(indent + 1);
- if (!m_prefixed) {
- print_indent(indent + 1);
- outln("{}", op_string);
- }
- }
- Value VariableDeclaration::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- for (auto& declarator : m_declarations) {
- if (auto* init = declarator.init()) {
- declarator.target().visit(
- [&](NonnullRefPtr<Identifier> const& id) {
- auto reference = id->to_reference(interpreter, global_object);
- if (interpreter.exception())
- return;
- auto initializer_result_or_error = interpreter.vm().named_evaluation_if_anonymous_function(global_object, *init, id->string());
- if (initializer_result_or_error.is_error())
- return;
- auto initializer_result = initializer_result_or_error.release_value();
- VERIFY(!initializer_result.is_empty());
- if (m_declaration_kind == DeclarationKind::Var)
- reference.put_value(global_object, initializer_result);
- else
- reference.initialize_referenced_binding(global_object, initializer_result);
- },
- [&](NonnullRefPtr<BindingPattern> const& pattern) {
- auto initializer_result = init->execute(interpreter, global_object);
- if (interpreter.exception())
- return;
- Environment* environment = m_declaration_kind == DeclarationKind::Var ? nullptr : interpreter.lexical_environment();
- // FIXME: I want to use TRY_OR_DISCARD here but can't return...
- auto result = interpreter.vm().binding_initialization(pattern, initializer_result, environment, global_object);
- (void)result;
- });
- if (interpreter.exception())
- return {};
- } else if (m_declaration_kind != DeclarationKind::Var) {
- VERIFY(declarator.target().has<NonnullRefPtr<Identifier>>());
- auto& identifier = declarator.target().get<NonnullRefPtr<Identifier>>();
- auto reference = identifier->to_reference(interpreter, global_object);
- reference.initialize_referenced_binding(global_object, js_undefined());
- if (interpreter.exception())
- return {};
- }
- }
- return {};
- }
- Value VariableDeclarator::execute(Interpreter& interpreter, GlobalObject&) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- // NOTE: VariableDeclarator execution is handled by VariableDeclaration.
- VERIFY_NOT_REACHED();
- }
- void VariableDeclaration::for_each_bound_name(IteratorOrVoidFunction<FlyString const&> callback) const
- {
- for (auto& entry : declarations()) {
- entry.target().template visit(
- [&](const NonnullRefPtr<Identifier>& id) {
- callback(id->string());
- },
- [&](const NonnullRefPtr<BindingPattern>& binding) {
- binding->for_each_bound_name([&](const auto& name) {
- callback(name);
- });
- });
- }
- }
- void VariableDeclaration::dump(int indent) const
- {
- const char* declaration_kind_string = nullptr;
- switch (m_declaration_kind) {
- case DeclarationKind::Let:
- declaration_kind_string = "Let";
- break;
- case DeclarationKind::Var:
- declaration_kind_string = "Var";
- break;
- case DeclarationKind::Const:
- declaration_kind_string = "Const";
- break;
- }
- ASTNode::dump(indent);
- print_indent(indent + 1);
- outln("{}", declaration_kind_string);
- for (auto& declarator : m_declarations)
- declarator.dump(indent + 1);
- }
- void VariableDeclarator::dump(int indent) const
- {
- ASTNode::dump(indent);
- m_target.visit([indent](const auto& value) { value->dump(indent + 1); });
- if (m_init)
- m_init->dump(indent + 1);
- }
- void ObjectProperty::dump(int indent) const
- {
- ASTNode::dump(indent);
- m_key->dump(indent + 1);
- m_value->dump(indent + 1);
- }
- void ObjectExpression::dump(int indent) const
- {
- ASTNode::dump(indent);
- for (auto& property : m_properties) {
- property.dump(indent + 1);
- }
- }
- void ExpressionStatement::dump(int indent) const
- {
- ASTNode::dump(indent);
- m_expression->dump(indent + 1);
- }
- Value ObjectProperty::execute(Interpreter& interpreter, GlobalObject&) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- // NOTE: ObjectProperty execution is handled by ObjectExpression.
- VERIFY_NOT_REACHED();
- }
- Value ObjectExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- auto* object = Object::create(global_object, global_object.object_prototype());
- for (auto& property : m_properties) {
- auto key = property.key().execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- if (property.type() == ObjectProperty::Type::Spread) {
- if (key.is_object() && is<Array>(key.as_object())) {
- auto& array_to_spread = static_cast<Array&>(key.as_object());
- for (auto& entry : array_to_spread.indexed_properties()) {
- auto value = TRY_OR_DISCARD(array_to_spread.get(entry.index()));
- object->indexed_properties().put(entry.index(), value);
- if (interpreter.exception())
- return {};
- }
- } else if (key.is_object()) {
- auto& obj_to_spread = key.as_object();
- for (auto& it : obj_to_spread.shape().property_table_ordered()) {
- if (it.value.attributes.is_enumerable()) {
- object->define_direct_property(it.key, TRY_OR_DISCARD(obj_to_spread.get(it.key)), JS::default_attributes);
- if (interpreter.exception())
- return {};
- }
- }
- } else if (key.is_string()) {
- auto& str_to_spread = key.as_string().string();
- for (size_t i = 0; i < str_to_spread.length(); i++) {
- object->define_direct_property(i, js_string(interpreter.heap(), str_to_spread.substring(i, 1)), JS::default_attributes);
- if (interpreter.exception())
- return {};
- }
- }
- continue;
- }
- auto value = property.value().execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- if (value.is_function() && property.is_method())
- static_cast<ECMAScriptFunctionObject&>(value.as_function()).set_home_object(object);
- String name = get_function_name(global_object, key);
- if (property.type() == ObjectProperty::Type::Getter) {
- name = String::formatted("get {}", name);
- } else if (property.type() == ObjectProperty::Type::Setter) {
- name = String::formatted("set {}", name);
- }
- update_function_name(value, name);
- switch (property.type()) {
- case ObjectProperty::Type::Getter:
- VERIFY(value.is_function());
- object->define_direct_accessor(PropertyName::from_value(global_object, key), &value.as_function(), nullptr, Attribute::Configurable | Attribute::Enumerable);
- break;
- case ObjectProperty::Type::Setter:
- VERIFY(value.is_function());
- object->define_direct_accessor(PropertyName::from_value(global_object, key), nullptr, &value.as_function(), Attribute::Configurable | Attribute::Enumerable);
- break;
- case ObjectProperty::Type::KeyValue:
- object->define_direct_property(PropertyName::from_value(global_object, key), value, JS::default_attributes);
- break;
- case ObjectProperty::Type::Spread:
- default:
- VERIFY_NOT_REACHED();
- }
- if (interpreter.exception())
- return {};
- }
- return object;
- }
- void MemberExpression::dump(int indent) const
- {
- print_indent(indent);
- outln("{}(computed={})", class_name(), is_computed());
- m_object->dump(indent + 1);
- m_property->dump(indent + 1);
- }
- PropertyName MemberExpression::computed_property_name(Interpreter& interpreter, GlobalObject& global_object) const
- {
- if (!is_computed())
- return verify_cast<Identifier>(*m_property).string();
- auto value = m_property->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- VERIFY(!value.is_empty());
- return PropertyName::from_value(global_object, value);
- }
- String MemberExpression::to_string_approximation() const
- {
- String object_string = "<object>";
- if (is<Identifier>(*m_object))
- object_string = static_cast<Identifier const&>(*m_object).string();
- if (is_computed())
- return String::formatted("{}[<computed>]", object_string);
- return String::formatted("{}.{}", object_string, verify_cast<Identifier>(*m_property).string());
- }
- Value MemberExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- auto reference = to_reference(interpreter, global_object);
- if (interpreter.exception())
- return {};
- return reference.get_value(global_object);
- }
- void OptionalChain::dump(int indent) const
- {
- print_indent(indent);
- outln("{}", class_name());
- m_base->dump(indent + 1);
- for (auto& reference : m_references) {
- reference.visit(
- [&](Call const& call) {
- print_indent(indent + 1);
- outln("Call({})", call.mode == Mode::Optional ? "Optional" : "Not Optional");
- for (auto& argument : call.arguments)
- argument.value->dump(indent + 2);
- },
- [&](ComputedReference const& ref) {
- print_indent(indent + 1);
- outln("ComputedReference({})", ref.mode == Mode::Optional ? "Optional" : "Not Optional");
- ref.expression->dump(indent + 2);
- },
- [&](MemberReference const& ref) {
- print_indent(indent + 1);
- outln("MemberReference({})", ref.mode == Mode::Optional ? "Optional" : "Not Optional");
- ref.identifier->dump(indent + 2);
- });
- }
- }
- Optional<OptionalChain::ReferenceAndValue> OptionalChain::to_reference_and_value(JS::Interpreter& interpreter, JS::GlobalObject& global_object) const
- {
- // Note: This is wrapped in an optional to allow base_reference = ...
- Optional<JS::Reference> base_reference = m_base->to_reference(interpreter, global_object);
- auto base = base_reference->is_unresolvable() ? m_base->execute(interpreter, global_object) : base_reference->get_value(global_object);
- if (interpreter.exception())
- return {};
- for (auto& reference : m_references) {
- auto is_optional = reference.visit([](auto& ref) { return ref.mode; }) == Mode::Optional;
- if (is_optional && base.is_nullish())
- return ReferenceAndValue { {}, js_undefined() };
- auto expression = reference.visit(
- [&](Call const& call) -> NonnullRefPtr<Expression> {
- return create_ast_node<CallExpression>(source_range(),
- create_ast_node<SyntheticReferenceExpression>(source_range(), *base_reference, base),
- call.arguments);
- },
- [&](ComputedReference const& ref) -> NonnullRefPtr<Expression> {
- return create_ast_node<MemberExpression>(source_range(),
- create_ast_node<SyntheticReferenceExpression>(source_range(), *base_reference, base),
- ref.expression,
- true);
- },
- [&](MemberReference const& ref) -> NonnullRefPtr<Expression> {
- return create_ast_node<MemberExpression>(source_range(),
- create_ast_node<SyntheticReferenceExpression>(source_range(), *base_reference, base),
- ref.identifier,
- false);
- });
- if (is<CallExpression>(*expression)) {
- base_reference = JS::Reference {};
- base = expression->execute(interpreter, global_object);
- } else {
- base_reference = expression->to_reference(interpreter, global_object);
- base = base_reference->get_value(global_object);
- }
- if (interpreter.exception())
- return {};
- }
- return ReferenceAndValue { base_reference.release_value(), base };
- }
- Value OptionalChain::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- if (auto result = to_reference_and_value(interpreter, global_object); result.has_value())
- return result.release_value().value;
- return {};
- }
- JS::Reference OptionalChain::to_reference(Interpreter& interpreter, GlobalObject& global_object) const
- {
- if (auto result = to_reference_and_value(interpreter, global_object); result.has_value())
- return result.release_value().reference;
- return {};
- }
- void MetaProperty::dump(int indent) const
- {
- String name;
- if (m_type == MetaProperty::Type::NewTarget)
- name = "new.target";
- else if (m_type == MetaProperty::Type::ImportMeta)
- name = "import.meta";
- else
- VERIFY_NOT_REACHED();
- print_indent(indent);
- outln("{} {}", class_name(), name);
- }
- Value MetaProperty::execute(Interpreter& interpreter, GlobalObject&) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- if (m_type == MetaProperty::Type::NewTarget)
- return interpreter.vm().get_new_target().value_or(js_undefined());
- if (m_type == MetaProperty::Type::ImportMeta)
- TODO();
- VERIFY_NOT_REACHED();
- }
- Value StringLiteral::execute(Interpreter& interpreter, GlobalObject&) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- return js_string(interpreter.heap(), m_value);
- }
- Value NumericLiteral::execute(Interpreter& interpreter, GlobalObject&) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- return Value(m_value);
- }
- Value BigIntLiteral::execute(Interpreter& interpreter, GlobalObject&) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- Crypto::SignedBigInteger integer;
- if (m_value[0] == '0' && m_value.length() >= 3) {
- if (m_value[1] == 'x' || m_value[1] == 'X') {
- return js_bigint(interpreter.heap(), Crypto::SignedBigInteger::from_base(16, m_value.substring(2, m_value.length() - 3)));
- } else if (m_value[1] == 'o' || m_value[1] == 'O') {
- return js_bigint(interpreter.heap(), Crypto::SignedBigInteger::from_base(8, m_value.substring(2, m_value.length() - 3)));
- } else if (m_value[1] == 'b' || m_value[1] == 'B') {
- return js_bigint(interpreter.heap(), Crypto::SignedBigInteger::from_base(2, m_value.substring(2, m_value.length() - 3)));
- }
- }
- return js_bigint(interpreter.heap(), Crypto::SignedBigInteger::from_base(10, m_value.substring(0, m_value.length() - 1)));
- }
- Value BooleanLiteral::execute(Interpreter& interpreter, GlobalObject&) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- return Value(m_value);
- }
- Value NullLiteral::execute(Interpreter& interpreter, GlobalObject&) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- return js_null();
- }
- void RegExpLiteral::dump(int indent) const
- {
- print_indent(indent);
- outln("{} (/{}/{})", class_name(), pattern(), flags());
- }
- Value RegExpLiteral::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- Regex<ECMA262> regex(parsed_regex(), parsed_pattern(), parsed_flags());
- return RegExpObject::create(global_object, move(regex), pattern(), flags());
- }
- void ArrayExpression::dump(int indent) const
- {
- ASTNode::dump(indent);
- for (auto& element : m_elements) {
- if (element) {
- element->dump(indent + 1);
- } else {
- print_indent(indent + 1);
- outln("<empty>");
- }
- }
- }
- Value ArrayExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- auto* array = Array::create(global_object, 0);
- array->indexed_properties();
- size_t index = 0;
- for (auto& element : m_elements) {
- auto value = Value();
- if (element) {
- value = element->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- if (is<SpreadExpression>(*element)) {
- get_iterator_values(global_object, value, [&](Value iterator_value) {
- array->indexed_properties().put(index++, iterator_value, default_attributes);
- return IterationDecision::Continue;
- });
- if (interpreter.exception())
- return {};
- continue;
- }
- }
- array->indexed_properties().put(index++, value, default_attributes);
- }
- return array;
- }
- void TemplateLiteral::dump(int indent) const
- {
- ASTNode::dump(indent);
- for (auto& expression : m_expressions)
- expression.dump(indent + 1);
- }
- Value TemplateLiteral::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- StringBuilder string_builder;
- for (auto& expression : m_expressions) {
- auto expr = expression.execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- auto string = expr.to_string(global_object);
- if (interpreter.exception())
- return {};
- string_builder.append(string);
- }
- return js_string(interpreter.heap(), string_builder.build());
- }
- void TaggedTemplateLiteral::dump(int indent) const
- {
- ASTNode::dump(indent);
- print_indent(indent + 1);
- outln("(Tag)");
- m_tag->dump(indent + 2);
- print_indent(indent + 1);
- outln("(Template Literal)");
- m_template_literal->dump(indent + 2);
- }
- Value TaggedTemplateLiteral::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- auto& vm = interpreter.vm();
- auto tag = m_tag->execute(interpreter, global_object);
- if (vm.exception())
- return {};
- if (!tag.is_function()) {
- vm.throw_exception<TypeError>(global_object, ErrorType::NotAFunction, tag.to_string_without_side_effects());
- return {};
- }
- auto& tag_function = tag.as_function();
- auto& expressions = m_template_literal->expressions();
- auto* strings = Array::create(global_object, 0);
- MarkedValueList arguments(vm.heap());
- arguments.append(strings);
- for (size_t i = 0; i < expressions.size(); ++i) {
- auto value = expressions[i].execute(interpreter, global_object);
- if (vm.exception())
- return {};
- // tag`${foo}` -> "", foo, "" -> tag(["", ""], foo)
- // tag`foo${bar}baz${qux}` -> "foo", bar, "baz", qux, "" -> tag(["foo", "baz", ""], bar, qux)
- if (i % 2 == 0) {
- strings->indexed_properties().append(value);
- } else {
- arguments.append(value);
- }
- }
- auto* raw_strings = Array::create(global_object, 0);
- for (auto& raw_string : m_template_literal->raw_strings()) {
- auto value = raw_string.execute(interpreter, global_object);
- if (vm.exception())
- return {};
- raw_strings->indexed_properties().append(value);
- }
- strings->define_direct_property(vm.names.raw, raw_strings, 0);
- return TRY_OR_DISCARD(vm.call(tag_function, js_undefined(), move(arguments)));
- }
- void TryStatement::dump(int indent) const
- {
- ASTNode::dump(indent);
- print_indent(indent);
- outln("(Block)");
- block().dump(indent + 1);
- if (handler()) {
- print_indent(indent);
- outln("(Handler)");
- handler()->dump(indent + 1);
- }
- if (finalizer()) {
- print_indent(indent);
- outln("(Finalizer)");
- finalizer()->dump(indent + 1);
- }
- }
- void CatchClause::dump(int indent) const
- {
- print_indent(indent);
- m_parameter.visit(
- [&](FlyString const& parameter) {
- if (parameter.is_null())
- outln("CatchClause");
- else
- outln("CatchClause ({})", parameter);
- },
- [&](NonnullRefPtr<BindingPattern> const& pattern) {
- outln("CatchClause");
- print_indent(indent);
- outln("(Parameter)");
- pattern->dump(indent + 2);
- });
- body().dump(indent + 1);
- }
- void ThrowStatement::dump(int indent) const
- {
- ASTNode::dump(indent);
- argument().dump(indent + 1);
- }
- void TryStatement::add_label(FlyString string)
- {
- m_block->add_label(move(string));
- }
- Value TryStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- // FIXME: Use Completions here to be closer to the spec.
- auto result = m_block->execute(interpreter, global_object);
- if (interpreter.vm().unwind_until() == ScopeType::Try)
- interpreter.vm().stop_unwind();
- if (auto* exception = interpreter.exception()) {
- // 14.15.2 Runtime Semantics: CatchClauseEvaluation, https://tc39.es/ecma262/#sec-runtime-semantics-catchclauseevaluation
- if (m_handler) {
- interpreter.vm().clear_exception();
- auto* catch_scope = new_declarative_environment(*interpreter.lexical_environment());
- m_handler->parameter().visit(
- [&](FlyString const& parameter) {
- MUST(catch_scope->create_mutable_binding(global_object, parameter, false));
- },
- [&](NonnullRefPtr<BindingPattern> const& pattern) {
- pattern->for_each_bound_name([&](auto& name) {
- MUST(catch_scope->create_mutable_binding(global_object, name, false));
- });
- });
- TemporaryChange<Environment*> scope_change(interpreter.vm().running_execution_context().lexical_environment, catch_scope);
- m_handler->parameter().visit(
- [&](FlyString const& parameter) {
- (void)catch_scope->initialize_binding(global_object, parameter, exception->value());
- },
- [&](NonnullRefPtr<BindingPattern> const& pattern) {
- (void)interpreter.vm().binding_initialization(pattern, exception->value(), catch_scope, global_object);
- });
- if (!interpreter.exception())
- result = m_handler->body().execute(interpreter, global_object);
- }
- }
- if (m_finalizer) {
- // Keep, if any, and then clear the current exception so we can
- // execute() the finalizer without an exception in our way.
- auto* previous_exception = interpreter.exception();
- interpreter.vm().clear_exception();
- // Remember what scope type we were unwinding to, and temporarily
- // clear it as well (e.g. return from handler).
- auto unwind_until = interpreter.vm().unwind_until();
- interpreter.vm().stop_unwind();
- auto finalizer_result = m_finalizer->execute(interpreter, global_object);
- if (interpreter.vm().should_unwind()) {
- // This was NOT a 'normal' completion (e.g. return from finalizer).
- result = finalizer_result;
- } else {
- // Continue unwinding to whatever we found ourselves unwinding
- // to when the finalizer was entered (e.g. return from handler,
- // which is unaffected by normal completion from finalizer).
- interpreter.vm().unwind(unwind_until);
- // If we previously had an exception and the finalizer didn't
- // throw a new one, restore the old one.
- if (previous_exception && !interpreter.exception())
- interpreter.vm().set_exception(*previous_exception);
- }
- }
- return result.value_or(js_undefined());
- }
- Value CatchClause::execute(Interpreter& interpreter, GlobalObject&) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- // NOTE: CatchClause execution is handled by TryStatement.
- VERIFY_NOT_REACHED();
- return {};
- }
- Value ThrowStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- auto value = m_argument->execute(interpreter, global_object);
- if (interpreter.vm().exception())
- return {};
- interpreter.vm().throw_exception(global_object, value);
- return {};
- }
- // 14.12.2 Runtime Semantics: CaseBlockEvaluation, https://tc39.es/ecma262/#sec-runtime-semantics-caseblockevaluation
- Value SwitchStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- // FIXME: This needs a massive refactoring, ideally once we start using continue, break, and return completions.
- // Instead of having an optional test expression, SwitchCase should be split into CaseClause and DefaultClause.
- // https://tc39.es/ecma262/#sec-switch-statement
- InterpreterNodeScope node_scope { interpreter, *this };
- auto discriminant_result = m_discriminant->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- // Optimization: Avoid creating a lexical environment if there are no lexical declarations.
- Optional<TemporaryChange<Environment*>> lexical_environment_changer;
- if (has_lexical_declarations()) {
- auto* old_environment = interpreter.lexical_environment();
- auto* block_environment = new_declarative_environment(*old_environment);
- block_declaration_instantiation(global_object, block_environment);
- lexical_environment_changer.emplace(interpreter.vm().running_execution_context().lexical_environment, block_environment);
- }
- Optional<size_t> first_passing_case;
- for (size_t i = 0; i < m_cases.size(); ++i) {
- auto& switch_case = m_cases[i];
- if (switch_case.test()) {
- auto test_result = switch_case.test()->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- if (is_strictly_equal(discriminant_result, test_result)) {
- first_passing_case = i;
- break;
- }
- }
- }
- // FIXME: we could optimize and store the location of the default case in a member variable.
- if (!first_passing_case.has_value()) {
- for (size_t i = 0; i < m_cases.size(); ++i) {
- auto& switch_case = m_cases[i];
- if (!switch_case.test()) {
- first_passing_case = i;
- break;
- }
- }
- }
- auto last_value = js_undefined();
- if (!first_passing_case.has_value()) {
- return last_value;
- }
- VERIFY(first_passing_case.value() < m_cases.size());
- for (size_t i = first_passing_case.value(); i < m_cases.size(); ++i) {
- auto& switch_case = m_cases[i];
- for (auto& statement : switch_case.children()) {
- auto value = statement.execute(interpreter, global_object);
- if (!value.is_empty())
- last_value = value;
- if (interpreter.exception())
- return {};
- if (interpreter.vm().should_unwind()) {
- if (interpreter.vm().should_unwind_until(ScopeType::Continuable, m_labels)) {
- // No stop_unwind(), the outer loop will handle that - we just need to break out of the switch/case.
- return last_value;
- } else if (interpreter.vm().should_unwind_until(ScopeType::Breakable, m_labels)) {
- interpreter.vm().stop_unwind();
- return last_value;
- } else {
- return last_value;
- }
- }
- }
- }
- return last_value;
- }
- Value SwitchCase::execute(Interpreter& interpreter, GlobalObject&) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- // NOTE: SwitchCase execution is handled by SwitchStatement.
- VERIFY_NOT_REACHED();
- return {};
- }
- Value BreakStatement::execute(Interpreter& interpreter, GlobalObject&) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- interpreter.vm().unwind(ScopeType::Breakable, m_target_label);
- return {};
- }
- Value ContinueStatement::execute(Interpreter& interpreter, GlobalObject&) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- interpreter.vm().unwind(ScopeType::Continuable, m_target_label);
- return {};
- }
- void SwitchStatement::dump(int indent) const
- {
- ASTNode::dump(indent);
- m_discriminant->dump(indent + 1);
- for (auto& switch_case : m_cases) {
- switch_case.dump(indent + 1);
- }
- }
- void SwitchCase::dump(int indent) const
- {
- print_indent(indent + 1);
- if (m_test) {
- outln("(Test)");
- m_test->dump(indent + 2);
- } else {
- outln("(Default)");
- }
- print_indent(indent + 1);
- outln("(Consequent)");
- ScopeNode::dump(indent + 2);
- }
- Value ConditionalExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- auto test_result = m_test->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- Value result;
- if (test_result.to_boolean()) {
- result = m_consequent->execute(interpreter, global_object);
- } else {
- result = m_alternate->execute(interpreter, global_object);
- }
- if (interpreter.exception())
- return {};
- return result;
- }
- void ConditionalExpression::dump(int indent) const
- {
- ASTNode::dump(indent);
- print_indent(indent + 1);
- outln("(Test)");
- m_test->dump(indent + 2);
- print_indent(indent + 1);
- outln("(Consequent)");
- m_consequent->dump(indent + 2);
- print_indent(indent + 1);
- outln("(Alternate)");
- m_alternate->dump(indent + 2);
- }
- void SequenceExpression::dump(int indent) const
- {
- ASTNode::dump(indent);
- for (auto& expression : m_expressions)
- expression.dump(indent + 1);
- }
- Value SequenceExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- Value last_value;
- for (auto& expression : m_expressions) {
- last_value = expression.execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- }
- return last_value;
- }
- Value DebuggerStatement::execute(Interpreter& interpreter, GlobalObject&) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- // Sorry, no JavaScript debugger available (yet)!
- return {};
- }
- void ScopeNode::for_each_lexically_scoped_declaration(IteratorOrVoidFunction<Declaration const&>&& callback) const
- {
- for (auto& declaration : m_lexical_declarations) {
- if (callback(declaration) == IterationDecision::Break)
- break;
- }
- }
- void ScopeNode::for_each_lexically_declared_name(IteratorOrVoidFunction<FlyString const&>&& callback) const
- {
- auto running = true;
- for (auto& declaration : m_lexical_declarations) {
- declaration.for_each_bound_name([&](auto const& name) {
- if (callback(name) == IterationDecision::Break) {
- running = false;
- return IterationDecision::Break;
- }
- return IterationDecision::Continue;
- });
- if (!running)
- break;
- }
- }
- void ScopeNode::for_each_var_declared_name(IteratorOrVoidFunction<FlyString const&>&& callback) const
- {
- auto running = true;
- for (auto& declaration : m_var_declarations) {
- declaration.for_each_bound_name([&](auto const& name) {
- if (callback(name) == IterationDecision::Break) {
- running = false;
- return IterationDecision::Break;
- }
- return IterationDecision::Continue;
- });
- if (!running)
- break;
- }
- }
- void ScopeNode::for_each_var_function_declaration_in_reverse_order(IteratorOrVoidFunction<FunctionDeclaration const&>&& callback) const
- {
- for (ssize_t i = m_var_declarations.size() - 1; i >= 0; i--) {
- auto& declaration = m_var_declarations[i];
- if (is<FunctionDeclaration>(declaration)) {
- if (callback(static_cast<FunctionDeclaration const&>(declaration)) == IterationDecision::Break)
- break;
- }
- }
- }
- void ScopeNode::for_each_var_scoped_variable_declaration(IteratorOrVoidFunction<VariableDeclaration const&>&& callback) const
- {
- for (auto& declaration : m_var_declarations) {
- if (!is<FunctionDeclaration>(declaration)) {
- VERIFY(is<VariableDeclaration>(declaration));
- if (callback(static_cast<VariableDeclaration const&>(declaration)) == IterationDecision::Break)
- break;
- }
- }
- }
- void ScopeNode::for_each_function_hoistable_with_annexB_extension(IteratorOrVoidFunction<FunctionDeclaration&>&& callback) const
- {
- for (auto& function : m_functions_hoistable_with_annexB_extension) {
- // We need const_cast here since it might have to set a property on function declaration.
- if (callback(const_cast<FunctionDeclaration&>(function)) == IterationDecision::Break)
- break;
- }
- }
- void ScopeNode::add_lexical_declaration(NonnullRefPtr<Declaration> declaration)
- {
- m_lexical_declarations.append(move(declaration));
- }
- void ScopeNode::add_var_scoped_declaration(NonnullRefPtr<Declaration> declaration)
- {
- m_var_declarations.append(move(declaration));
- }
- void ScopeNode::add_hoisted_function(NonnullRefPtr<FunctionDeclaration> declaration)
- {
- m_functions_hoistable_with_annexB_extension.append(move(declaration));
- }
- Value ImportStatement::execute(Interpreter& interpreter, GlobalObject&) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- dbgln("Modules are not fully supported yet!");
- TODO();
- return {};
- }
- Value ExportStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- InterpreterNodeScope node_scope { interpreter, *this };
- if (m_statement)
- return m_statement->execute(interpreter, global_object);
- return {};
- }
- void ExportStatement::dump(int indent) const
- {
- ASTNode::dump(indent);
- print_indent(indent + 1);
- outln("(ExportEntries)");
- auto string_or_null = [](String const& string) -> String {
- if (string.is_empty()) {
- return "null";
- }
- return String::formatted("\"{}\"", string);
- };
- for (auto& entry : m_entries) {
- print_indent(indent + 2);
- outln("ModuleRequest: {}, ImportName: {}, LocalName: {}, ExportName: {}", string_or_null(entry.module_request), entry.kind == ExportEntry::ModuleRequest ? string_or_null(entry.local_or_import_name) : "null", entry.kind != ExportEntry::ModuleRequest ? string_or_null(entry.local_or_import_name) : "null", string_or_null(entry.export_name));
- }
- }
- void ImportStatement::dump(int indent) const
- {
- ASTNode::dump(indent);
- print_indent(indent + 1);
- if (m_entries.is_empty()) {
- // direct from "module" import
- outln("Entire module '{}'", m_module_request);
- } else {
- outln("(ExportEntries) from {}", m_module_request);
- for (auto& entry : m_entries) {
- print_indent(indent + 2);
- outln("ImportName: {}, LocalName: {}", entry.import_name, entry.local_name);
- }
- }
- }
- bool ExportStatement::has_export(StringView export_name) const
- {
- return any_of(m_entries.begin(), m_entries.end(), [&](auto& entry) {
- return entry.export_name == export_name;
- });
- }
- bool ImportStatement::has_bound_name(StringView name) const
- {
- return any_of(m_entries.begin(), m_entries.end(), [&](auto& entry) {
- return entry.local_name == name;
- });
- }
- // 14.2.3 BlockDeclarationInstantiation ( code, env ), https://tc39.es/ecma262/#sec-blockdeclarationinstantiation
- void ScopeNode::block_declaration_instantiation(GlobalObject& global_object, Environment* environment) const
- {
- // See also B.3.2.6 Changes to BlockDeclarationInstantiation, https://tc39.es/ecma262/#sec-web-compat-blockdeclarationinstantiation
- VERIFY(environment);
- for_each_lexically_scoped_declaration([&](Declaration const& declaration) {
- auto is_constant_declaration = declaration.is_constant_declaration();
- declaration.for_each_bound_name([&](auto const& name) {
- if (is_constant_declaration) {
- MUST(environment->create_immutable_binding(global_object, name, true));
- } else {
- if (!MUST(environment->has_binding(name)))
- MUST(environment->create_mutable_binding(global_object, name, false));
- }
- });
- if (is<FunctionDeclaration>(declaration)) {
- auto& function_declaration = static_cast<FunctionDeclaration const&>(declaration);
- auto* function = ECMAScriptFunctionObject::create(global_object, function_declaration.name(), function_declaration.body(), function_declaration.parameters(), function_declaration.function_length(), environment, function_declaration.kind(), function_declaration.is_strict_mode(), function_declaration.might_need_arguments_object(), function_declaration.contains_direct_call_to_eval());
- VERIFY(is<DeclarativeEnvironment>(*environment));
- static_cast<DeclarativeEnvironment&>(*environment).initialize_or_set_mutable_binding({}, global_object, function_declaration.name(), function);
- }
- });
- }
- // 16.1.7 GlobalDeclarationInstantiation ( script, env ), https://tc39.es/ecma262/#sec-globaldeclarationinstantiation
- ThrowCompletionOr<void> Program::global_declaration_instantiation(Interpreter& interpreter, GlobalObject& global_object, GlobalEnvironment& global_environment) const
- {
- for_each_lexically_declared_name([&](FlyString const& name) {
- if (global_environment.has_var_declaration(name) || global_environment.has_lexical_declaration(name)) {
- interpreter.vm().throw_exception<SyntaxError>(global_object, ErrorType::FixmeAddAnErrorStringWithMessage, "Lexical variable top level already declared");
- return IterationDecision::Break;
- }
- auto restricted_global = global_environment.has_restricted_global_property(name);
- if (interpreter.exception())
- return IterationDecision::Break;
- if (restricted_global)
- interpreter.vm().throw_exception<SyntaxError>(global_object, ErrorType::FixmeAddAnErrorStringWithMessage, "Restricted global property");
- return IterationDecision::Continue;
- });
- if (auto* exception = interpreter.exception())
- return throw_completion(exception->value());
- for_each_var_declared_name([&](auto const& name) {
- if (global_environment.has_lexical_declaration(name)) {
- interpreter.vm().throw_exception<SyntaxError>(global_object, ErrorType::FixmeAddAnErrorStringWithMessage, "Var declared variable top level also lexically declared");
- return IterationDecision::Break;
- }
- return IterationDecision::Continue;
- });
- if (auto* exception = interpreter.exception())
- return throw_completion(exception->value());
- HashTable<FlyString> declared_function_names;
- Vector<FunctionDeclaration const&> functions_to_initialize;
- for_each_var_function_declaration_in_reverse_order([&](FunctionDeclaration const& function) {
- if (declared_function_names.set(function.name()) != AK::HashSetResult::InsertedNewEntry)
- return IterationDecision::Continue;
- auto function_definable = global_environment.can_declare_global_function(function.name());
- if (interpreter.exception())
- return IterationDecision::Break;
- if (!function_definable) {
- interpreter.vm().throw_exception<TypeError>(global_object, ErrorType::FixmeAddAnErrorStringWithMessage, "Global function not definable");
- return IterationDecision::Break;
- }
- functions_to_initialize.append(function);
- return IterationDecision::Continue;
- });
- if (auto* exception = interpreter.exception())
- return throw_completion(exception->value());
- HashTable<FlyString> declared_var_names;
- for_each_var_scoped_variable_declaration([&](Declaration const& declaration) {
- declaration.for_each_bound_name([&](auto const& name) {
- if (declared_function_names.contains(name))
- return IterationDecision::Continue;
- auto var_definable = global_environment.can_declare_global_var(name);
- if (interpreter.exception())
- return IterationDecision::Break;
- if (!var_definable) {
- interpreter.vm().throw_exception<TypeError>(global_object, ErrorType::FixmeAddAnErrorStringWithMessage, "Global variable not definable");
- return IterationDecision::Break;
- }
- declared_var_names.set(name);
- return IterationDecision::Continue;
- });
- if (interpreter.exception())
- return IterationDecision::Break;
- return IterationDecision::Continue;
- });
- if (auto* exception = interpreter.exception())
- return throw_completion(exception->value());
- if (!m_is_strict_mode) {
- for_each_function_hoistable_with_annexB_extension([&](FunctionDeclaration& function_declaration) {
- auto& function_name = function_declaration.name();
- if (global_environment.has_lexical_declaration(function_name))
- return IterationDecision::Continue;
- auto function_definable = global_environment.can_declare_global_function(function_name);
- if (interpreter.exception())
- return IterationDecision::Break;
- if (!function_definable) {
- interpreter.vm().throw_exception<TypeError>(global_object, ErrorType::FixmeAddAnErrorStringWithMessage, "Global function not definable");
- return IterationDecision::Break;
- }
- if (!declared_function_names.contains(function_name) && !declared_var_names.contains(function_name)) {
- global_environment.create_global_var_binding(function_name, false);
- if (interpreter.exception())
- return IterationDecision::Break;
- declared_function_names.set(function_name);
- }
- function_declaration.set_should_do_additional_annexB_steps();
- return IterationDecision::Continue;
- });
- if (auto* exception = interpreter.exception())
- return throw_completion(exception->value());
- // We should not use declared function names below here anymore since these functions are not in there in the spec.
- declared_function_names.clear();
- }
- for_each_lexically_scoped_declaration([&](Declaration const& declaration) {
- declaration.for_each_bound_name([&](auto const& name) {
- if (declaration.is_constant_declaration())
- (void)global_environment.create_immutable_binding(global_object, name, true);
- else
- (void)global_environment.create_mutable_binding(global_object, name, false);
- if (interpreter.exception())
- return IterationDecision::Break;
- return IterationDecision::Continue;
- });
- if (interpreter.exception())
- return IterationDecision::Break;
- return IterationDecision::Continue;
- });
- for (auto& declaration : functions_to_initialize) {
- auto* function = ECMAScriptFunctionObject::create(global_object, declaration.name(), declaration.body(), declaration.parameters(), declaration.function_length(), &global_environment, declaration.kind(), declaration.is_strict_mode(), declaration.might_need_arguments_object(), declaration.contains_direct_call_to_eval());
- global_environment.create_global_function_binding(declaration.name(), function, false);
- if (auto* exception = interpreter.exception())
- return throw_completion(exception->value());
- }
- for (auto& var_name : declared_var_names) {
- global_environment.create_global_var_binding(var_name, false);
- if (auto* exception = interpreter.exception())
- return throw_completion(exception->value());
- }
- return {};
- }
- }
|