AST.cpp 141 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747
  1. /*
  2. * Copyright (c) 2020-2021, Andreas Kling <kling@serenityos.org>
  3. * Copyright (c) 2020-2021, Linus Groh <linusg@serenityos.org>
  4. * Copyright (c) 2021, David Tuin <davidot@serenityos.org>
  5. *
  6. * SPDX-License-Identifier: BSD-2-Clause
  7. */
  8. #include <AK/Demangle.h>
  9. #include <AK/HashMap.h>
  10. #include <AK/HashTable.h>
  11. #include <AK/ScopeGuard.h>
  12. #include <AK/StringBuilder.h>
  13. #include <AK/TemporaryChange.h>
  14. #include <LibCrypto/BigInt/SignedBigInteger.h>
  15. #include <LibJS/AST.h>
  16. #include <LibJS/Interpreter.h>
  17. #include <LibJS/Runtime/AbstractOperations.h>
  18. #include <LibJS/Runtime/Accessor.h>
  19. #include <LibJS/Runtime/Array.h>
  20. #include <LibJS/Runtime/BigInt.h>
  21. #include <LibJS/Runtime/ECMAScriptFunctionObject.h>
  22. #include <LibJS/Runtime/Error.h>
  23. #include <LibJS/Runtime/FunctionEnvironment.h>
  24. #include <LibJS/Runtime/GlobalObject.h>
  25. #include <LibJS/Runtime/IteratorOperations.h>
  26. #include <LibJS/Runtime/MarkedValueList.h>
  27. #include <LibJS/Runtime/NativeFunction.h>
  28. #include <LibJS/Runtime/ObjectEnvironment.h>
  29. #include <LibJS/Runtime/PrimitiveString.h>
  30. #include <LibJS/Runtime/PromiseConstructor.h>
  31. #include <LibJS/Runtime/PromiseReaction.h>
  32. #include <LibJS/Runtime/Reference.h>
  33. #include <LibJS/Runtime/RegExpObject.h>
  34. #include <LibJS/Runtime/Shape.h>
  35. #include <typeinfo>
  36. namespace JS {
  37. class InterpreterNodeScope {
  38. AK_MAKE_NONCOPYABLE(InterpreterNodeScope);
  39. AK_MAKE_NONMOVABLE(InterpreterNodeScope);
  40. public:
  41. InterpreterNodeScope(Interpreter& interpreter, ASTNode const& node)
  42. : m_interpreter(interpreter)
  43. , m_chain_node { nullptr, node }
  44. {
  45. m_interpreter.vm().running_execution_context().current_node = &node;
  46. m_interpreter.push_ast_node(m_chain_node);
  47. }
  48. ~InterpreterNodeScope()
  49. {
  50. m_interpreter.pop_ast_node();
  51. }
  52. private:
  53. Interpreter& m_interpreter;
  54. ExecutingASTNodeChain m_chain_node;
  55. };
  56. String ASTNode::class_name() const
  57. {
  58. // NOTE: We strip the "JS::" prefix.
  59. return demangle(typeid(*this).name()).substring(4);
  60. }
  61. static void update_function_name(Value value, FlyString const& name)
  62. {
  63. if (!value.is_function())
  64. return;
  65. auto& function = value.as_function();
  66. if (is<ECMAScriptFunctionObject>(function) && function.name().is_empty())
  67. static_cast<ECMAScriptFunctionObject&>(function).set_name(name);
  68. }
  69. static ThrowCompletionOr<String> get_function_name(GlobalObject& global_object, Value value)
  70. {
  71. if (value.is_symbol())
  72. return String::formatted("[{}]", value.as_symbol().description());
  73. if (value.is_string())
  74. return value.as_string().string();
  75. return value.to_string(global_object);
  76. }
  77. Value ScopeNode::evaluate_statements(Interpreter& interpreter, GlobalObject& global_object) const
  78. {
  79. // FIXME: This should use completions but for now we just use the vm to communicate things.
  80. auto& vm = interpreter.vm();
  81. Value last_value;
  82. for (auto& node : children()) {
  83. auto value = node.execute(interpreter, global_object);
  84. if (!value.is_empty())
  85. last_value = value;
  86. if (vm.should_unwind()) {
  87. break;
  88. }
  89. }
  90. return last_value;
  91. }
  92. Value FunctionBody::execute(Interpreter& interpreter, GlobalObject& global_object) const
  93. {
  94. InterpreterNodeScope node_scope { interpreter, *this };
  95. // Note: Scoping should have already been setup by whoever is calling this FunctionBody.
  96. auto function_result = evaluate_statements(interpreter, global_object);
  97. if (interpreter.exception())
  98. return {};
  99. if (interpreter.vm().unwind_until() != ScopeType::Function)
  100. function_result = js_undefined();
  101. else
  102. interpreter.vm().stop_unwind();
  103. return function_result;
  104. }
  105. // 14.2.2 Runtime Semantics: Evaluation, https://tc39.es/ecma262/#sec-block-runtime-semantics-evaluation
  106. Value BlockStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
  107. {
  108. InterpreterNodeScope node_scope { interpreter, *this };
  109. auto& vm = interpreter.vm();
  110. Environment* old_environment { nullptr };
  111. ArmedScopeGuard restore_environment = [&] {
  112. vm.running_execution_context().lexical_environment = old_environment;
  113. };
  114. // Optimization: We only need a new lexical environment if there are any lexical declarations. :^)
  115. if (has_lexical_declarations()) {
  116. old_environment = vm.running_execution_context().lexical_environment;
  117. auto* block_environment = new_declarative_environment(*old_environment);
  118. block_declaration_instantiation(global_object, block_environment);
  119. vm.running_execution_context().lexical_environment = block_environment;
  120. } else {
  121. restore_environment.disarm();
  122. }
  123. auto block_value = evaluate_statements(interpreter, global_object);
  124. if (!labels().is_empty() && vm.should_unwind_until(ScopeType::Breakable, labels()))
  125. vm.stop_unwind();
  126. if (vm.exception())
  127. return {};
  128. return block_value;
  129. }
  130. Value Program::execute(Interpreter& interpreter, GlobalObject& global_object) const
  131. {
  132. // FIXME: This tries to be "ScriptEvaluation" and "evaluating scriptBody" at once. It shouldn't.
  133. // Clean this up and update perform_eval() / perform_shadow_realm_eval()
  134. InterpreterNodeScope node_scope { interpreter, *this };
  135. VERIFY(interpreter.lexical_environment() && interpreter.lexical_environment()->is_global_environment());
  136. auto& global_env = static_cast<GlobalEnvironment&>(*interpreter.lexical_environment());
  137. TRY_OR_DISCARD(global_declaration_instantiation(interpreter, global_object, global_env));
  138. return evaluate_statements(interpreter, global_object);
  139. }
  140. Value FunctionDeclaration::execute(Interpreter& interpreter, GlobalObject& global_object) const
  141. {
  142. InterpreterNodeScope node_scope { interpreter, *this };
  143. if (m_is_hoisted) {
  144. // Perform special annexB steps see step 3 of: https://tc39.es/ecma262/#sec-web-compat-functiondeclarationinstantiation
  145. auto* variable_environment = interpreter.vm().running_execution_context().variable_environment;
  146. auto* lexical_environment = interpreter.vm().running_execution_context().lexical_environment;
  147. auto function_object = MUST(lexical_environment->get_binding_value(global_object, name(), false));
  148. MUST(variable_environment->set_mutable_binding(global_object, name(), function_object, false));
  149. }
  150. return {};
  151. }
  152. Value FunctionExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
  153. {
  154. InterpreterNodeScope node_scope { interpreter, *this };
  155. return instantiate_ordinary_function_expression(interpreter, global_object, name());
  156. }
  157. // 15.2.5 Runtime Semantics: InstantiateOrdinaryFunctionExpression, https://tc39.es/ecma262/#sec-runtime-semantics-instantiateordinaryfunctionexpression
  158. Value FunctionExpression::instantiate_ordinary_function_expression(Interpreter& interpreter, GlobalObject& global_object, FlyString given_name) const
  159. {
  160. if (given_name.is_empty())
  161. given_name = "";
  162. auto has_own_name = !name().is_empty();
  163. auto const& used_name = has_own_name ? name() : given_name;
  164. auto* scope = interpreter.lexical_environment();
  165. if (has_own_name) {
  166. VERIFY(scope);
  167. scope = new_declarative_environment(*scope);
  168. MUST(scope->create_immutable_binding(global_object, name(), false));
  169. }
  170. auto* private_scope = interpreter.vm().running_execution_context().private_environment;
  171. auto closure = ECMAScriptFunctionObject::create(global_object, used_name, body(), parameters(), function_length(), scope, private_scope, kind(), is_strict_mode(), might_need_arguments_object(), contains_direct_call_to_eval(), is_arrow_function());
  172. // FIXME: 6. Perform SetFunctionName(closure, name).
  173. // FIXME: 7. Perform MakeConstructor(closure).
  174. if (has_own_name)
  175. MUST(scope->initialize_binding(global_object, name(), closure));
  176. return closure;
  177. }
  178. Value ExpressionStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
  179. {
  180. InterpreterNodeScope node_scope { interpreter, *this };
  181. return m_expression->execute(interpreter, global_object);
  182. }
  183. CallExpression::ThisAndCallee CallExpression::compute_this_and_callee(Interpreter& interpreter, GlobalObject& global_object, Reference const& callee_reference) const
  184. {
  185. if (callee_reference.is_property_reference()) {
  186. auto this_value = callee_reference.get_this_value();
  187. auto callee = TRY_OR_DISCARD(callee_reference.get_value(global_object));
  188. return { this_value, callee };
  189. }
  190. // [[Call]] will handle that in non-strict mode the this value becomes the global object
  191. return {
  192. js_undefined(),
  193. callee_reference.is_unresolvable()
  194. ? m_callee->execute(interpreter, global_object)
  195. : TRY_OR_DISCARD(callee_reference.get_value(global_object))
  196. };
  197. }
  198. // 13.3.8.1 Runtime Semantics: ArgumentListEvaluation, https://tc39.es/ecma262/#sec-runtime-semantics-argumentlistevaluation
  199. static void argument_list_evaluation(Interpreter& interpreter, GlobalObject& global_object, Vector<CallExpression::Argument> const& arguments, MarkedValueList& list)
  200. {
  201. auto& vm = global_object.vm();
  202. list.ensure_capacity(arguments.size());
  203. for (auto& argument : arguments) {
  204. auto value = argument.value->execute(interpreter, global_object);
  205. if (vm.exception())
  206. return;
  207. if (argument.is_spread) {
  208. auto result = get_iterator_values(global_object, value, [&](Value iterator_value) -> Optional<Completion> {
  209. list.append(iterator_value);
  210. return {};
  211. });
  212. if (result.is_error())
  213. return;
  214. } else {
  215. list.append(value);
  216. }
  217. }
  218. }
  219. Value NewExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
  220. {
  221. InterpreterNodeScope node_scope { interpreter, *this };
  222. auto& vm = interpreter.vm();
  223. auto callee_value = m_callee->execute(interpreter, global_object);
  224. if (vm.exception())
  225. return {};
  226. if (!callee_value.is_function() || !callee_value.as_function().has_constructor()) {
  227. throw_type_error_for_callee(interpreter, global_object, callee_value, "constructor"sv);
  228. return {};
  229. }
  230. MarkedValueList arg_list(vm.heap());
  231. argument_list_evaluation(interpreter, global_object, m_arguments, arg_list);
  232. if (interpreter.exception())
  233. return {};
  234. auto& function = callee_value.as_function();
  235. return TRY_OR_DISCARD(construct(global_object, function, move(arg_list)));
  236. }
  237. void CallExpression::throw_type_error_for_callee(Interpreter& interpreter, GlobalObject& global_object, Value callee_value, StringView call_type) const
  238. {
  239. auto& vm = interpreter.vm();
  240. if (is<Identifier>(*m_callee) || is<MemberExpression>(*m_callee)) {
  241. String expression_string;
  242. if (is<Identifier>(*m_callee)) {
  243. expression_string = static_cast<Identifier const&>(*m_callee).string();
  244. } else {
  245. expression_string = static_cast<MemberExpression const&>(*m_callee).to_string_approximation();
  246. }
  247. vm.throw_exception<TypeError>(global_object, ErrorType::IsNotAEvaluatedFrom, callee_value.to_string_without_side_effects(), call_type, expression_string);
  248. } else {
  249. vm.throw_exception<TypeError>(global_object, ErrorType::IsNotA, callee_value.to_string_without_side_effects(), call_type);
  250. }
  251. }
  252. Value CallExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
  253. {
  254. InterpreterNodeScope node_scope { interpreter, *this };
  255. auto& vm = interpreter.vm();
  256. auto callee_reference = m_callee->to_reference(interpreter, global_object);
  257. if (vm.exception())
  258. return {};
  259. auto [this_value, callee] = compute_this_and_callee(interpreter, global_object, callee_reference);
  260. if (vm.exception())
  261. return {};
  262. VERIFY(!callee.is_empty());
  263. MarkedValueList arg_list(vm.heap());
  264. argument_list_evaluation(interpreter, global_object, m_arguments, arg_list);
  265. if (interpreter.exception())
  266. return {};
  267. if (!callee.is_function()) {
  268. throw_type_error_for_callee(interpreter, global_object, callee, "function"sv);
  269. return {};
  270. }
  271. auto& function = callee.as_function();
  272. if (&function == global_object.eval_function()
  273. && callee_reference.is_environment_reference()
  274. && callee_reference.name().is_string()
  275. && callee_reference.name().as_string() == vm.names.eval.as_string()) {
  276. auto script_value = arg_list.size() == 0 ? js_undefined() : arg_list[0];
  277. return TRY_OR_DISCARD(perform_eval(script_value, global_object, vm.in_strict_mode() ? CallerMode::Strict : CallerMode::NonStrict, EvalMode::Direct));
  278. }
  279. return TRY_OR_DISCARD(vm.call(function, this_value, move(arg_list)));
  280. }
  281. // 13.3.7.1 Runtime Semantics: Evaluation, https://tc39.es/ecma262/#sec-super-keyword-runtime-semantics-evaluation
  282. // SuperCall : super Arguments
  283. Value SuperCall::execute(Interpreter& interpreter, GlobalObject& global_object) const
  284. {
  285. InterpreterNodeScope node_scope { interpreter, *this };
  286. auto& vm = interpreter.vm();
  287. // 1. Let newTarget be GetNewTarget().
  288. auto new_target = vm.get_new_target();
  289. if (vm.exception())
  290. return {};
  291. // 2. Assert: Type(newTarget) is Object.
  292. VERIFY(new_target.is_function());
  293. // 3. Let func be ! GetSuperConstructor().
  294. auto* func = get_super_constructor(interpreter.vm());
  295. VERIFY(!vm.exception());
  296. // 4. Let argList be ? ArgumentListEvaluation of Arguments.
  297. MarkedValueList arg_list(vm.heap());
  298. argument_list_evaluation(interpreter, global_object, m_arguments, arg_list);
  299. if (interpreter.exception())
  300. return {};
  301. // 5. If IsConstructor(func) is false, throw a TypeError exception.
  302. if (!func || !Value(func).is_constructor()) {
  303. vm.throw_exception<TypeError>(global_object, ErrorType::NotAConstructor, "Super constructor");
  304. return {};
  305. }
  306. // 6. Let result be ? Construct(func, argList, newTarget).
  307. auto* result = TRY_OR_DISCARD(construct(global_object, static_cast<FunctionObject&>(*func), move(arg_list), &new_target.as_function()));
  308. // 7. Let thisER be GetThisEnvironment().
  309. auto& this_er = verify_cast<FunctionEnvironment>(get_this_environment(interpreter.vm()));
  310. // 8. Perform ? thisER.BindThisValue(result).
  311. TRY_OR_DISCARD(this_er.bind_this_value(global_object, result));
  312. // 9. Let F be thisER.[[FunctionObject]].
  313. // 10. Assert: F is an ECMAScript function object. (NOTE: This is implied by the strong C++ type.)
  314. [[maybe_unused]] auto& f = this_er.function_object();
  315. // 11. Perform ? InitializeInstanceElements(result, F).
  316. TRY_OR_DISCARD(vm.initialize_instance_elements(*result, f));
  317. // 12. Return result.
  318. return result;
  319. }
  320. Value YieldExpression::execute(Interpreter&, GlobalObject&) const
  321. {
  322. // This should be transformed to a return.
  323. VERIFY_NOT_REACHED();
  324. }
  325. // 15.8.5 Runtime Semantics: Evaluation, https://tc39.es/ecma262/#sec-async-function-definitions-runtime-semantics-evaluation
  326. Value AwaitExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
  327. {
  328. InterpreterNodeScope node_scope { interpreter, *this };
  329. // 1. Let exprRef be the result of evaluating UnaryExpression.
  330. // 2. Let value be ? GetValue(exprRef).
  331. auto value = m_argument->execute(interpreter, global_object);
  332. if (interpreter.exception())
  333. return {};
  334. // 3. Return ? Await(value).
  335. return TRY_OR_DISCARD(await(global_object, value));
  336. }
  337. Value ReturnStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
  338. {
  339. InterpreterNodeScope node_scope { interpreter, *this };
  340. auto value = argument() ? argument()->execute(interpreter, global_object) : js_undefined();
  341. if (interpreter.exception())
  342. return {};
  343. interpreter.vm().unwind(ScopeType::Function);
  344. return value;
  345. }
  346. Value IfStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
  347. {
  348. InterpreterNodeScope node_scope { interpreter, *this };
  349. auto predicate_result = m_predicate->execute(interpreter, global_object);
  350. if (interpreter.exception())
  351. return {};
  352. if (predicate_result.to_boolean())
  353. return m_consequent->execute(interpreter, global_object);
  354. if (m_alternate)
  355. return m_alternate->execute(interpreter, global_object);
  356. return js_undefined();
  357. }
  358. // 14.11.2 Runtime Semantics: Evaluation, https://tc39.es/ecma262/#sec-with-statement-runtime-semantics-evaluation
  359. // WithStatement : with ( Expression ) Statement
  360. Value WithStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
  361. {
  362. InterpreterNodeScope node_scope { interpreter, *this };
  363. // 1. Let value be the result of evaluating Expression.
  364. auto value = m_object->execute(interpreter, global_object);
  365. if (interpreter.exception())
  366. return {};
  367. // 2. Let obj be ? ToObject(? GetValue(value)).
  368. auto* object = TRY_OR_DISCARD(value.to_object(global_object));
  369. // 3. Let oldEnv be the running execution context's LexicalEnvironment.
  370. auto* old_environment = interpreter.vm().running_execution_context().lexical_environment;
  371. // 4. Let newEnv be NewObjectEnvironment(obj, true, oldEnv).
  372. auto* new_environment = new_object_environment(*object, true, old_environment);
  373. if (interpreter.exception())
  374. return {};
  375. // 5. Set the running execution context's LexicalEnvironment to newEnv.
  376. interpreter.vm().running_execution_context().lexical_environment = new_environment;
  377. // 6. Let C be the result of evaluating Statement.
  378. auto result = m_body->execute(interpreter, global_object).value_or(js_undefined());
  379. // 7. Set the running execution context's LexicalEnvironment to oldEnv.
  380. interpreter.vm().running_execution_context().lexical_environment = old_environment;
  381. if (interpreter.exception())
  382. return {};
  383. // 8. Return Completion(UpdateEmpty(C, undefined)).
  384. return result;
  385. }
  386. Value WhileStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
  387. {
  388. InterpreterNodeScope node_scope { interpreter, *this };
  389. auto last_value = js_undefined();
  390. for (;;) {
  391. auto test_result = m_test->execute(interpreter, global_object);
  392. if (interpreter.exception())
  393. return {};
  394. if (!test_result.to_boolean())
  395. break;
  396. last_value = m_body->execute(interpreter, global_object).value_or(last_value);
  397. if (interpreter.exception())
  398. return {};
  399. if (interpreter.vm().should_unwind()) {
  400. if (interpreter.vm().should_unwind_until(ScopeType::Continuable, m_labels)) {
  401. interpreter.vm().stop_unwind();
  402. } else if (interpreter.vm().should_unwind_until(ScopeType::Breakable, m_labels)) {
  403. interpreter.vm().stop_unwind();
  404. break;
  405. } else {
  406. return last_value;
  407. }
  408. }
  409. }
  410. return last_value;
  411. }
  412. Value DoWhileStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
  413. {
  414. InterpreterNodeScope node_scope { interpreter, *this };
  415. auto last_value = js_undefined();
  416. for (;;) {
  417. if (interpreter.exception())
  418. return {};
  419. last_value = m_body->execute(interpreter, global_object).value_or(last_value);
  420. if (interpreter.exception())
  421. return {};
  422. if (interpreter.vm().should_unwind()) {
  423. if (interpreter.vm().should_unwind_until(ScopeType::Continuable, m_labels)) {
  424. interpreter.vm().stop_unwind();
  425. } else if (interpreter.vm().should_unwind_until(ScopeType::Breakable, m_labels)) {
  426. interpreter.vm().stop_unwind();
  427. break;
  428. } else {
  429. return last_value;
  430. }
  431. }
  432. auto test_result = m_test->execute(interpreter, global_object);
  433. if (interpreter.exception())
  434. return {};
  435. if (!test_result.to_boolean())
  436. break;
  437. }
  438. return last_value;
  439. }
  440. Value ForStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
  441. {
  442. InterpreterNodeScope node_scope { interpreter, *this };
  443. // Note we don't always set a new environment but to use RAII we must do this here.
  444. auto* old_environment = interpreter.lexical_environment();
  445. ScopeGuard restore_old_environment = [&] {
  446. interpreter.vm().running_execution_context().lexical_environment = old_environment;
  447. };
  448. Vector<FlyString> let_declarations;
  449. if (m_init) {
  450. if (is<VariableDeclaration>(*m_init) && static_cast<VariableDeclaration const&>(*m_init).declaration_kind() != DeclarationKind::Var) {
  451. auto* loop_environment = new_declarative_environment(*old_environment);
  452. auto& declaration = static_cast<VariableDeclaration const&>(*m_init);
  453. declaration.for_each_bound_name([&](auto const& name) {
  454. if (declaration.declaration_kind() == DeclarationKind::Const) {
  455. MUST(loop_environment->create_immutable_binding(global_object, name, true));
  456. } else {
  457. MUST(loop_environment->create_mutable_binding(global_object, name, false));
  458. let_declarations.append(name);
  459. }
  460. return IterationDecision::Continue;
  461. });
  462. interpreter.vm().running_execution_context().lexical_environment = loop_environment;
  463. }
  464. m_init->execute(interpreter, global_object);
  465. if (interpreter.exception())
  466. return {};
  467. }
  468. auto last_value = js_undefined();
  469. // 14.7.4.4 CreatePerIterationEnvironment ( perIterationBindings ), https://tc39.es/ecma262/#sec-createperiterationenvironment
  470. auto create_per_iteration_environment = [&]() -> ThrowCompletionOr<void> {
  471. if (let_declarations.is_empty())
  472. return {};
  473. auto* last_iteration_env = interpreter.lexical_environment();
  474. auto* outer = last_iteration_env->outer_environment();
  475. VERIFY(outer);
  476. auto* this_iteration_env = new_declarative_environment(*outer);
  477. for (auto& name : let_declarations) {
  478. MUST(this_iteration_env->create_mutable_binding(global_object, name, false));
  479. auto last_value = TRY(last_iteration_env->get_binding_value(global_object, name, true));
  480. VERIFY(!last_value.is_empty());
  481. MUST(this_iteration_env->initialize_binding(global_object, name, last_value));
  482. }
  483. interpreter.vm().running_execution_context().lexical_environment = this_iteration_env;
  484. return {};
  485. };
  486. TRY_OR_DISCARD(create_per_iteration_environment());
  487. auto test_empty_or_true = [&] {
  488. if (!m_test)
  489. return true;
  490. auto test_result = m_test->execute(interpreter, global_object);
  491. if (interpreter.exception())
  492. return false;
  493. return test_result.to_boolean();
  494. };
  495. while (true) {
  496. if (!test_empty_or_true())
  497. break;
  498. last_value = m_body->execute(interpreter, global_object).value_or(last_value);
  499. if (interpreter.exception())
  500. return {};
  501. if (interpreter.vm().should_unwind()) {
  502. if (interpreter.vm().should_unwind_until(ScopeType::Continuable, m_labels)) {
  503. interpreter.vm().stop_unwind();
  504. } else if (interpreter.vm().should_unwind_until(ScopeType::Breakable, m_labels)) {
  505. interpreter.vm().stop_unwind();
  506. break;
  507. } else {
  508. return last_value;
  509. }
  510. }
  511. TRY_OR_DISCARD(create_per_iteration_environment());
  512. if (m_update) {
  513. m_update->execute(interpreter, global_object);
  514. if (interpreter.exception())
  515. return {};
  516. }
  517. }
  518. if (interpreter.exception())
  519. return {};
  520. return last_value;
  521. }
  522. struct ForInOfHeadState {
  523. explicit ForInOfHeadState(Variant<NonnullRefPtr<ASTNode>, NonnullRefPtr<BindingPattern>> lhs)
  524. {
  525. lhs.visit(
  526. [&](NonnullRefPtr<ASTNode>& ast_node) {
  527. expression_lhs = ast_node.ptr();
  528. },
  529. [&](NonnullRefPtr<BindingPattern>& pattern) {
  530. pattern_lhs = pattern.ptr();
  531. destructuring = true;
  532. lhs_kind = Assignment;
  533. });
  534. }
  535. ASTNode* expression_lhs = nullptr;
  536. BindingPattern* pattern_lhs = nullptr;
  537. enum LhsKind {
  538. Assignment,
  539. VarBinding,
  540. LexicalBinding
  541. };
  542. LhsKind lhs_kind = Assignment;
  543. bool destructuring = false;
  544. Value rhs_value;
  545. // 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
  546. // 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.
  547. ThrowCompletionOr<void> execute_head(Interpreter& interpreter, GlobalObject& global_object, Value next_value) const
  548. {
  549. VERIFY(!next_value.is_empty());
  550. Optional<Reference> lhs_reference;
  551. Environment* iteration_environment = nullptr;
  552. // g. If lhsKind is either assignment or varBinding, then
  553. if (lhs_kind == Assignment || lhs_kind == VarBinding) {
  554. if (!destructuring) {
  555. VERIFY(expression_lhs);
  556. if (is<VariableDeclaration>(*expression_lhs)) {
  557. auto& declaration = static_cast<VariableDeclaration const&>(*expression_lhs);
  558. VERIFY(declaration.declarations().first().target().has<NonnullRefPtr<Identifier>>());
  559. lhs_reference = declaration.declarations().first().target().get<NonnullRefPtr<Identifier>>()->to_reference(interpreter, global_object);
  560. } else {
  561. VERIFY(is<Identifier>(*expression_lhs) || is<MemberExpression>(*expression_lhs));
  562. auto& expression = static_cast<Expression const&>(*expression_lhs);
  563. lhs_reference = expression.to_reference(interpreter, global_object);
  564. }
  565. }
  566. }
  567. // h. Else,
  568. else {
  569. VERIFY(expression_lhs && is<VariableDeclaration>(*expression_lhs));
  570. iteration_environment = new_declarative_environment(*interpreter.lexical_environment());
  571. auto& for_declaration = static_cast<VariableDeclaration const&>(*expression_lhs);
  572. for_declaration.for_each_bound_name([&](auto const& name) {
  573. if (for_declaration.declaration_kind() == DeclarationKind::Const)
  574. MUST(iteration_environment->create_immutable_binding(global_object, name, false));
  575. else
  576. MUST(iteration_environment->create_mutable_binding(global_object, name, true));
  577. });
  578. interpreter.vm().running_execution_context().lexical_environment = iteration_environment;
  579. if (!destructuring) {
  580. VERIFY(for_declaration.declarations().first().target().has<NonnullRefPtr<Identifier>>());
  581. lhs_reference = interpreter.vm().resolve_binding(for_declaration.declarations().first().target().get<NonnullRefPtr<Identifier>>()->string());
  582. }
  583. }
  584. if (auto* exception = interpreter.exception())
  585. return throw_completion(exception->value());
  586. // i. If destructuring is false, then
  587. if (!destructuring) {
  588. VERIFY(lhs_reference.has_value());
  589. if (lhs_kind == LexicalBinding)
  590. return lhs_reference->initialize_referenced_binding(global_object, next_value);
  591. else
  592. return lhs_reference->put_value(global_object, next_value);
  593. }
  594. // j. Else,
  595. if (lhs_kind == Assignment) {
  596. VERIFY(pattern_lhs);
  597. return interpreter.vm().destructuring_assignment_evaluation(*pattern_lhs, next_value, global_object);
  598. }
  599. VERIFY(expression_lhs && is<VariableDeclaration>(*expression_lhs));
  600. auto& for_declaration = static_cast<VariableDeclaration const&>(*expression_lhs);
  601. auto& binding_pattern = for_declaration.declarations().first().target().get<NonnullRefPtr<BindingPattern>>();
  602. VERIFY(lhs_kind == VarBinding || iteration_environment);
  603. // At this point iteration_environment is undefined if lhs_kind == VarBinding which means this does both
  604. // branch j.ii and j.iii because ForBindingInitialization is just a forwarding call to BindingInitialization.
  605. return interpreter.vm().binding_initialization(binding_pattern, next_value, iteration_environment, global_object);
  606. }
  607. };
  608. // 14.7.5.5 Runtime Semantics: ForInOfLoopEvaluation, https://tc39.es/ecma262/#sec-runtime-semantics-forinofloopevaluation
  609. // 14.7.5.6 ForIn/OfHeadEvaluation ( uninitializedBoundNames, expr, iterationKind ), https://tc39.es/ecma262/#sec-runtime-semantics-forinofheadevaluation
  610. // This method combines ForInOfLoopEvaluation and ForIn/OfHeadEvaluation for similar reason as ForIn/OfBodyEvaluation, to prevent code duplication.
  611. // For the same reason we also skip step 6 and 7 of ForIn/OfHeadEvaluation as this is done by the appropriate for loop type.
  612. static ThrowCompletionOr<ForInOfHeadState> for_in_of_head_execute(Interpreter& interpreter, GlobalObject& global_object, Variant<NonnullRefPtr<ASTNode>, NonnullRefPtr<BindingPattern>> lhs, Expression const& rhs)
  613. {
  614. ForInOfHeadState state(lhs);
  615. if (auto* ast_ptr = lhs.get_pointer<NonnullRefPtr<ASTNode>>(); ast_ptr && is<VariableDeclaration>(*(*ast_ptr))) {
  616. // Runtime Semantics: ForInOfLoopEvaluation, for any of:
  617. // ForInOfStatement : for ( var ForBinding in Expression ) Statement
  618. // ForInOfStatement : for ( ForDeclaration in Expression ) Statement
  619. // ForInOfStatement : for ( var ForBinding of AssignmentExpression ) Statement
  620. // ForInOfStatement : for ( ForDeclaration of AssignmentExpression ) Statement
  621. // 14.7.5.6 ForIn/OfHeadEvaluation ( uninitializedBoundNames, expr, iterationKind ), https://tc39.es/ecma262/#sec-runtime-semantics-forinofheadevaluation
  622. Environment* new_environment = nullptr;
  623. auto& variable_declaration = static_cast<VariableDeclaration const&>(*(*ast_ptr));
  624. VERIFY(variable_declaration.declarations().size() == 1);
  625. state.destructuring = variable_declaration.declarations().first().target().has<NonnullRefPtr<BindingPattern>>();
  626. if (variable_declaration.declaration_kind() == DeclarationKind::Var) {
  627. state.lhs_kind = ForInOfHeadState::VarBinding;
  628. auto& variable = variable_declaration.declarations().first();
  629. // B.3.5 Initializers in ForIn Statement Heads, https://tc39.es/ecma262/#sec-initializers-in-forin-statement-heads
  630. if (variable.init()) {
  631. VERIFY(variable.target().has<NonnullRefPtr<Identifier>>());
  632. auto& binding_id = variable.target().get<NonnullRefPtr<Identifier>>()->string();
  633. auto reference = interpreter.vm().resolve_binding(binding_id);
  634. if (auto* exception = interpreter.exception())
  635. return throw_completion(exception->value());
  636. auto result = TRY(interpreter.vm().named_evaluation_if_anonymous_function(global_object, *variable.init(), binding_id));
  637. TRY(reference.put_value(global_object, result));
  638. }
  639. } else {
  640. state.lhs_kind = ForInOfHeadState::LexicalBinding;
  641. new_environment = new_declarative_environment(*interpreter.lexical_environment());
  642. variable_declaration.for_each_bound_name([&](auto const& name) {
  643. MUST(new_environment->create_mutable_binding(global_object, name, false));
  644. });
  645. }
  646. if (new_environment) {
  647. // 2.d Set the running execution context's LexicalEnvironment to newEnv.
  648. TemporaryChange<Environment*> scope_change(interpreter.vm().running_execution_context().lexical_environment, new_environment);
  649. // 3. Let exprRef be the result of evaluating expr.
  650. // 5. Let exprValue be ? GetValue(exprRef).
  651. state.rhs_value = rhs.execute(interpreter, global_object);
  652. // Note that since a reference stores it's environment it doesn't matter we only reset
  653. // this after step 5. (Also we have no way of separating these steps at this point)
  654. // 4. Set the running execution context's LexicalEnvironment to oldEnv.
  655. } else {
  656. // 3. Let exprRef be the result of evaluating expr.
  657. // 5. Let exprValue be ? GetValue(exprRef).
  658. state.rhs_value = rhs.execute(interpreter, global_object);
  659. }
  660. if (auto* exception = interpreter.exception())
  661. return throw_completion(exception->value());
  662. return state;
  663. }
  664. // Runtime Semantics: ForInOfLoopEvaluation, for any of:
  665. // ForInOfStatement : for ( LeftHandSideExpression in Expression ) Statement
  666. // ForInOfStatement : for ( LeftHandSideExpression of AssignmentExpression ) Statement
  667. // 14.7.5.6 ForIn/OfHeadEvaluation ( uninitializedBoundNames, expr, iterationKind ), https://tc39.es/ecma262/#sec-runtime-semantics-forinofheadevaluation
  668. // We can skip step 1, 2 and 4 here (on top of already skipping step 6 and 7).
  669. // 3. Let exprRef be the result of evaluating expr.
  670. // 5. Let exprValue be ? GetValue(exprRef).
  671. state.rhs_value = rhs.execute(interpreter, global_object);
  672. if (auto* exception = interpreter.exception())
  673. return throw_completion(exception->value());
  674. return state;
  675. }
  676. Value ForInStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
  677. {
  678. InterpreterNodeScope node_scope { interpreter, *this };
  679. auto for_in_head_state = TRY_OR_DISCARD(for_in_of_head_execute(interpreter, global_object, m_lhs, *m_rhs));
  680. auto rhs_result = for_in_head_state.rhs_value;
  681. // 14.7.5.6 ForIn/OfHeadEvaluation ( uninitializedBoundNames, expr, iterationKind ), https://tc39.es/ecma262/#sec-runtime-semantics-forinofheadevaluation
  682. if (rhs_result.is_nullish())
  683. return js_undefined();
  684. auto* object = MUST(rhs_result.to_object(global_object));
  685. // 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
  686. Environment* old_environment = interpreter.lexical_environment();
  687. auto restore_scope = ScopeGuard([&] {
  688. interpreter.vm().running_execution_context().lexical_environment = old_environment;
  689. });
  690. auto last_value = js_undefined();
  691. while (object) {
  692. auto property_names = TRY_OR_DISCARD(object->enumerable_own_property_names(Object::PropertyKind::Key));
  693. for (auto& value : property_names) {
  694. TRY_OR_DISCARD(for_in_head_state.execute_head(interpreter, global_object, value));
  695. last_value = m_body->execute(interpreter, global_object).value_or(last_value);
  696. interpreter.vm().running_execution_context().lexical_environment = old_environment;
  697. if (interpreter.exception())
  698. return {};
  699. if (interpreter.vm().should_unwind()) {
  700. if (interpreter.vm().should_unwind_until(ScopeType::Continuable, m_labels)) {
  701. interpreter.vm().stop_unwind();
  702. } else if (interpreter.vm().should_unwind_until(ScopeType::Breakable, m_labels)) {
  703. interpreter.vm().stop_unwind();
  704. break;
  705. } else {
  706. return last_value;
  707. }
  708. }
  709. }
  710. object = TRY_OR_DISCARD(object->internal_get_prototype_of());
  711. }
  712. return last_value;
  713. }
  714. Value ForOfStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
  715. {
  716. InterpreterNodeScope node_scope { interpreter, *this };
  717. auto for_of_head_state = TRY_OR_DISCARD(for_in_of_head_execute(interpreter, global_object, m_lhs, m_rhs));
  718. auto rhs_result = for_of_head_state.rhs_value;
  719. auto last_value = js_undefined();
  720. // 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
  721. // We use get_iterator_values which behaves like ForIn/OfBodyEvaluation with iteratorKind iterate.
  722. Environment* old_environment = interpreter.lexical_environment();
  723. auto restore_scope = ScopeGuard([&] {
  724. interpreter.vm().running_execution_context().lexical_environment = old_environment;
  725. });
  726. TRY_OR_DISCARD(get_iterator_values(global_object, rhs_result, [&](Value value) -> Optional<Completion> {
  727. TRY(for_of_head_state.execute_head(interpreter, global_object, value));
  728. last_value = m_body->execute(interpreter, global_object).value_or(last_value);
  729. interpreter.vm().running_execution_context().lexical_environment = old_environment;
  730. if (auto* exception = interpreter.exception())
  731. return throw_completion(exception->value());
  732. if (interpreter.vm().should_unwind()) {
  733. if (interpreter.vm().should_unwind_until(ScopeType::Continuable, m_labels)) {
  734. interpreter.vm().stop_unwind();
  735. } else if (interpreter.vm().should_unwind_until(ScopeType::Breakable, m_labels)) {
  736. interpreter.vm().stop_unwind();
  737. return normal_completion(last_value);
  738. } else {
  739. return normal_completion(last_value);
  740. }
  741. }
  742. return {};
  743. }));
  744. return last_value;
  745. }
  746. Value ForAwaitOfStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
  747. {
  748. InterpreterNodeScope node_scope { interpreter, *this };
  749. // 14.7.5.6 ForIn/OfHeadEvaluation ( uninitializedBoundNames, expr, iterationKind ), https://tc39.es/ecma262/#sec-runtime-semantics-forinofheadevaluation
  750. // Note: Performs only steps 1 through 5.
  751. auto for_of_head_state = TRY_OR_DISCARD(for_in_of_head_execute(interpreter, global_object, m_lhs, m_rhs));
  752. auto rhs_result = for_of_head_state.rhs_value;
  753. // NOTE: Perform step 7 from ForIn/OfHeadEvaluation. And since this is always async we only have to do step 7.d.
  754. // d. Return ? GetIterator(exprValue, iteratorHint).
  755. auto* iterator = TRY_OR_DISCARD(get_iterator(global_object, rhs_result, IteratorHint::Async));
  756. VERIFY(iterator);
  757. auto& vm = interpreter.vm();
  758. // 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
  759. // NOTE: Here iteratorKind is always async.
  760. // 2. Let oldEnv be the running execution context's LexicalEnvironment.
  761. Environment* old_environment = interpreter.lexical_environment();
  762. auto restore_scope = ScopeGuard([&] {
  763. interpreter.vm().running_execution_context().lexical_environment = old_environment;
  764. });
  765. // 3. Let V be undefined.
  766. auto last_value = js_undefined();
  767. // NOTE: Step 4 and 5 are just extracting properties from the head which is done already in for_in_of_head_execute.
  768. // And these are only used in step 6.g through 6.k which is done with for_of_head_state.execute_head.
  769. // 6. Repeat,
  770. while (true) {
  771. // NOTE: Since we don't have iterator records yet we have to extract the function first.
  772. auto next_method = TRY_OR_DISCARD(iterator->get(vm.names.next));
  773. if (!next_method.is_function()) {
  774. vm.throw_exception<TypeError>(global_object, ErrorType::IterableNextNotAFunction);
  775. return {};
  776. }
  777. // a. Let nextResult be ? Call(iteratorRecord.[[NextMethod]], iteratorRecord.[[Iterator]]).
  778. auto next_result = TRY_OR_DISCARD(call(global_object, next_method, iterator));
  779. // b. If iteratorKind is async, set nextResult to ? Await(nextResult).
  780. next_result = TRY_OR_DISCARD(await(global_object, next_result));
  781. // c. If Type(nextResult) is not Object, throw a TypeError exception.
  782. if (!next_result.is_object()) {
  783. vm.throw_exception<TypeError>(global_object, ErrorType::IterableNextBadReturn);
  784. return {};
  785. }
  786. // d. Let done be ? IteratorComplete(nextResult).
  787. auto done = TRY_OR_DISCARD(iterator_complete(global_object, next_result.as_object()));
  788. // e. If done is true, return NormalCompletion(V).
  789. if (done)
  790. return last_value;
  791. // f. Let nextValue be ? IteratorValue(nextResult).
  792. auto next_value = TRY_OR_DISCARD(iterator_value(global_object, next_result.as_object()));
  793. // NOTE: This performs steps g. through to k.
  794. TRY_OR_DISCARD(for_of_head_state.execute_head(interpreter, global_object, next_value));
  795. // l. Let result be the result of evaluating stmt.
  796. auto result = m_body->execute(interpreter, global_object);
  797. // m. Set the running execution context's LexicalEnvironment to oldEnv.
  798. interpreter.vm().running_execution_context().lexical_environment = old_environment;
  799. // NOTE: Since execute does not return a completion we have to have a number of checks here.
  800. // n. If LoopContinues(result, labelSet) is false, then
  801. if (auto* exception = vm.exception()) {
  802. // FIXME: We should return the result of AsyncIteratorClose but cannot return completions yet.
  803. // 3. If iteratorKind is async, return ? AsyncIteratorClose(iteratorRecord, status).
  804. TRY_OR_DISCARD(async_iterator_close(*iterator, throw_completion(exception->value())));
  805. return {};
  806. }
  807. if (interpreter.vm().should_unwind()) {
  808. if (interpreter.vm().should_unwind_until(ScopeType::Continuable, m_labels)) {
  809. // NOTE: In this case LoopContinues is not actually false so we don't perform step 6.n.ii.3.
  810. interpreter.vm().stop_unwind();
  811. } else if (interpreter.vm().should_unwind_until(ScopeType::Breakable, m_labels)) {
  812. interpreter.vm().stop_unwind();
  813. // 2. Set status to UpdateEmpty(result, V).
  814. if (!result.is_empty())
  815. last_value = result;
  816. // 3. If iteratorKind is async, return ? AsyncIteratorClose(iteratorRecord, status).
  817. TRY_OR_DISCARD(async_iterator_close(*iterator, normal_completion(last_value)));
  818. return last_value;
  819. } else {
  820. // 2. Set status to UpdateEmpty(result, V).
  821. if (!result.is_empty())
  822. last_value = result;
  823. // 3. If iteratorKind is async, return ? AsyncIteratorClose(iteratorRecord, status).
  824. TRY_OR_DISCARD(async_iterator_close(*iterator, normal_completion(last_value)));
  825. return last_value;
  826. }
  827. }
  828. // o. If result.[[Value]] is not empty, set V to result.[[Value]].
  829. if (!result.is_empty())
  830. last_value = result;
  831. }
  832. VERIFY_NOT_REACHED();
  833. }
  834. Value BinaryExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
  835. {
  836. InterpreterNodeScope node_scope { interpreter, *this };
  837. // Special case in which we cannot execute the lhs. RelationalExpression : PrivateIdentifier in ShiftExpression
  838. // RelationalExpression : PrivateIdentifier in ShiftExpression, https://tc39.es/ecma262/#sec-relational-operators-runtime-semantics-evaluation
  839. if (m_op == BinaryOp::In && is<PrivateIdentifier>(*m_lhs)) {
  840. auto& private_identifier = static_cast<PrivateIdentifier const&>(*m_lhs).string();
  841. auto rhs_result = m_rhs->execute(interpreter, global_object);
  842. if (interpreter.exception())
  843. return {};
  844. if (!rhs_result.is_object()) {
  845. interpreter.vm().throw_exception<TypeError>(global_object, ErrorType::InOperatorWithObject);
  846. return {};
  847. }
  848. auto* private_environment = interpreter.vm().running_execution_context().private_environment;
  849. VERIFY(private_environment);
  850. auto private_name = private_environment->resolve_private_identifier(private_identifier);
  851. return Value(rhs_result.as_object().private_element_find(private_name) != nullptr);
  852. }
  853. auto lhs_result = m_lhs->execute(interpreter, global_object);
  854. if (interpreter.exception())
  855. return {};
  856. auto rhs_result = m_rhs->execute(interpreter, global_object);
  857. if (interpreter.exception())
  858. return {};
  859. switch (m_op) {
  860. case BinaryOp::Addition:
  861. return TRY_OR_DISCARD(add(global_object, lhs_result, rhs_result));
  862. case BinaryOp::Subtraction:
  863. return TRY_OR_DISCARD(sub(global_object, lhs_result, rhs_result));
  864. case BinaryOp::Multiplication:
  865. return TRY_OR_DISCARD(mul(global_object, lhs_result, rhs_result));
  866. case BinaryOp::Division:
  867. return TRY_OR_DISCARD(div(global_object, lhs_result, rhs_result));
  868. case BinaryOp::Modulo:
  869. return TRY_OR_DISCARD(mod(global_object, lhs_result, rhs_result));
  870. case BinaryOp::Exponentiation:
  871. return TRY_OR_DISCARD(exp(global_object, lhs_result, rhs_result));
  872. case BinaryOp::StrictlyEquals:
  873. return Value(is_strictly_equal(lhs_result, rhs_result));
  874. case BinaryOp::StrictlyInequals:
  875. return Value(!is_strictly_equal(lhs_result, rhs_result));
  876. case BinaryOp::LooselyEquals:
  877. return Value(TRY_OR_DISCARD(is_loosely_equal(global_object, lhs_result, rhs_result)));
  878. case BinaryOp::LooselyInequals:
  879. return Value(!TRY_OR_DISCARD(is_loosely_equal(global_object, lhs_result, rhs_result)));
  880. case BinaryOp::GreaterThan:
  881. return TRY_OR_DISCARD(greater_than(global_object, lhs_result, rhs_result));
  882. case BinaryOp::GreaterThanEquals:
  883. return TRY_OR_DISCARD(greater_than_equals(global_object, lhs_result, rhs_result));
  884. case BinaryOp::LessThan:
  885. return TRY_OR_DISCARD(less_than(global_object, lhs_result, rhs_result));
  886. case BinaryOp::LessThanEquals:
  887. return TRY_OR_DISCARD(less_than_equals(global_object, lhs_result, rhs_result));
  888. case BinaryOp::BitwiseAnd:
  889. return TRY_OR_DISCARD(bitwise_and(global_object, lhs_result, rhs_result));
  890. case BinaryOp::BitwiseOr:
  891. return TRY_OR_DISCARD(bitwise_or(global_object, lhs_result, rhs_result));
  892. case BinaryOp::BitwiseXor:
  893. return TRY_OR_DISCARD(bitwise_xor(global_object, lhs_result, rhs_result));
  894. case BinaryOp::LeftShift:
  895. return TRY_OR_DISCARD(left_shift(global_object, lhs_result, rhs_result));
  896. case BinaryOp::RightShift:
  897. return TRY_OR_DISCARD(right_shift(global_object, lhs_result, rhs_result));
  898. case BinaryOp::UnsignedRightShift:
  899. return TRY_OR_DISCARD(unsigned_right_shift(global_object, lhs_result, rhs_result));
  900. case BinaryOp::In:
  901. return TRY_OR_DISCARD(in(global_object, lhs_result, rhs_result));
  902. case BinaryOp::InstanceOf:
  903. return TRY_OR_DISCARD(instance_of(global_object, lhs_result, rhs_result));
  904. }
  905. VERIFY_NOT_REACHED();
  906. }
  907. Value LogicalExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
  908. {
  909. InterpreterNodeScope node_scope { interpreter, *this };
  910. auto lhs_result = m_lhs->execute(interpreter, global_object);
  911. if (interpreter.exception())
  912. return {};
  913. switch (m_op) {
  914. case LogicalOp::And:
  915. if (lhs_result.to_boolean()) {
  916. auto rhs_result = m_rhs->execute(interpreter, global_object);
  917. if (interpreter.exception())
  918. return {};
  919. return rhs_result;
  920. }
  921. return lhs_result;
  922. case LogicalOp::Or: {
  923. if (lhs_result.to_boolean())
  924. return lhs_result;
  925. auto rhs_result = m_rhs->execute(interpreter, global_object);
  926. if (interpreter.exception())
  927. return {};
  928. return rhs_result;
  929. }
  930. case LogicalOp::NullishCoalescing:
  931. if (lhs_result.is_nullish()) {
  932. auto rhs_result = m_rhs->execute(interpreter, global_object);
  933. if (interpreter.exception())
  934. return {};
  935. return rhs_result;
  936. }
  937. return lhs_result;
  938. }
  939. VERIFY_NOT_REACHED();
  940. }
  941. Reference Expression::to_reference(Interpreter&, GlobalObject&) const
  942. {
  943. return {};
  944. }
  945. Reference Identifier::to_reference(Interpreter& interpreter, GlobalObject&) const
  946. {
  947. if (m_cached_environment_coordinate.has_value()) {
  948. auto* environment = interpreter.vm().running_execution_context().lexical_environment;
  949. for (size_t i = 0; i < m_cached_environment_coordinate->hops; ++i)
  950. environment = environment->outer_environment();
  951. VERIFY(environment);
  952. VERIFY(environment->is_declarative_environment());
  953. if (!environment->is_permanently_screwed_by_eval()) {
  954. return Reference { *environment, string(), interpreter.vm().in_strict_mode(), m_cached_environment_coordinate };
  955. }
  956. m_cached_environment_coordinate = {};
  957. }
  958. auto reference = interpreter.vm().resolve_binding(string());
  959. if (reference.environment_coordinate().has_value())
  960. m_cached_environment_coordinate = reference.environment_coordinate();
  961. return reference;
  962. }
  963. Reference MemberExpression::to_reference(Interpreter& interpreter, GlobalObject& global_object) const
  964. {
  965. // 13.3.7.1 Runtime Semantics: Evaluation
  966. // SuperProperty : super [ Expression ]
  967. // SuperProperty : super . IdentifierName
  968. // https://tc39.es/ecma262/#sec-super-keyword-runtime-semantics-evaluation
  969. if (is<SuperExpression>(object())) {
  970. // 1. Let env be GetThisEnvironment().
  971. auto& environment = get_this_environment(interpreter.vm());
  972. // 2. Let actualThis be ? env.GetThisBinding().
  973. auto actual_this = TRY_OR_DISCARD(environment.get_this_binding(global_object));
  974. PropertyKey property_key;
  975. if (is_computed()) {
  976. // SuperProperty : super [ Expression ]
  977. // 3. Let propertyNameReference be the result of evaluating Expression.
  978. // 4. Let propertyNameValue be ? GetValue(propertyNameReference).
  979. auto property_name_value = m_property->execute(interpreter, global_object);
  980. if (interpreter.exception())
  981. return {};
  982. // 5. Let propertyKey be ? ToPropertyKey(propertyNameValue).
  983. property_key = TRY_OR_DISCARD(property_name_value.to_property_key(global_object));
  984. } else {
  985. // SuperProperty : super . IdentifierName
  986. // 3. Let propertyKey be StringValue of IdentifierName.
  987. VERIFY(is<Identifier>(property()));
  988. property_key = static_cast<Identifier const&>(property()).string();
  989. }
  990. // 6. If the code matched by this SuperProperty is strict mode code, let strict be true; else let strict be false.
  991. bool strict = interpreter.vm().in_strict_mode();
  992. // 7. Return ? MakeSuperPropertyReference(actualThis, propertyKey, strict).
  993. return TRY_OR_DISCARD(make_super_property_reference(global_object, actual_this, property_key, strict));
  994. }
  995. auto base_reference = m_object->to_reference(interpreter, global_object);
  996. if (interpreter.exception())
  997. return {};
  998. Value base_value;
  999. if (base_reference.is_valid_reference())
  1000. base_value = TRY_OR_DISCARD(base_reference.get_value(global_object));
  1001. else
  1002. base_value = m_object->execute(interpreter, global_object);
  1003. if (interpreter.exception())
  1004. return {};
  1005. VERIFY(!base_value.is_empty());
  1006. // From here on equivalent to
  1007. // 13.3.4 EvaluatePropertyAccessWithIdentifierKey ( baseValue, identifierName, strict ), https://tc39.es/ecma262/#sec-evaluate-property-access-with-identifier-key
  1008. PropertyKey property_name;
  1009. if (is_computed()) {
  1010. // Weird order which I can't quite find from the specs.
  1011. auto value = m_property->execute(interpreter, global_object);
  1012. if (interpreter.exception())
  1013. return Reference {};
  1014. TRY_OR_DISCARD(require_object_coercible(global_object, base_value));
  1015. VERIFY(!value.is_empty());
  1016. property_name = PropertyKey::from_value(global_object, value);
  1017. if (interpreter.exception())
  1018. return Reference {};
  1019. } else if (is<PrivateIdentifier>(*m_property)) {
  1020. auto& private_identifier = static_cast<PrivateIdentifier const&>(*m_property);
  1021. return make_private_reference(interpreter.vm(), base_value, private_identifier.string());
  1022. } else {
  1023. property_name = verify_cast<Identifier>(*m_property).string();
  1024. TRY_OR_DISCARD(require_object_coercible(global_object, base_value));
  1025. }
  1026. if (!property_name.is_valid())
  1027. return Reference {};
  1028. auto strict = interpreter.vm().in_strict_mode();
  1029. return Reference { base_value, move(property_name), {}, strict };
  1030. }
  1031. Value UnaryExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
  1032. {
  1033. InterpreterNodeScope node_scope { interpreter, *this };
  1034. auto& vm = interpreter.vm();
  1035. if (m_op == UnaryOp::Delete) {
  1036. auto reference = m_lhs->to_reference(interpreter, global_object);
  1037. if (interpreter.exception())
  1038. return {};
  1039. return Value(TRY_OR_DISCARD(reference.delete_(global_object)));
  1040. }
  1041. Value lhs_result;
  1042. if (m_op == UnaryOp::Typeof && is<Identifier>(*m_lhs)) {
  1043. auto reference = m_lhs->to_reference(interpreter, global_object);
  1044. if (interpreter.exception())
  1045. return {};
  1046. if (reference.is_unresolvable())
  1047. lhs_result = js_undefined();
  1048. else
  1049. lhs_result = TRY_OR_DISCARD(reference.get_value(global_object));
  1050. VERIFY(!lhs_result.is_empty());
  1051. } else {
  1052. lhs_result = m_lhs->execute(interpreter, global_object);
  1053. if (interpreter.exception())
  1054. return {};
  1055. }
  1056. switch (m_op) {
  1057. case UnaryOp::BitwiseNot:
  1058. return TRY_OR_DISCARD(bitwise_not(global_object, lhs_result));
  1059. case UnaryOp::Not:
  1060. return Value(!lhs_result.to_boolean());
  1061. case UnaryOp::Plus:
  1062. return TRY_OR_DISCARD(unary_plus(global_object, lhs_result));
  1063. case UnaryOp::Minus:
  1064. return TRY_OR_DISCARD(unary_minus(global_object, lhs_result));
  1065. case UnaryOp::Typeof:
  1066. return js_string(vm, lhs_result.typeof());
  1067. case UnaryOp::Void:
  1068. return js_undefined();
  1069. case UnaryOp::Delete:
  1070. VERIFY_NOT_REACHED();
  1071. }
  1072. VERIFY_NOT_REACHED();
  1073. }
  1074. Value SuperExpression::execute(Interpreter&, GlobalObject&) const
  1075. {
  1076. // The semantics for SuperExpression are handled in CallExpression and SuperCall.
  1077. VERIFY_NOT_REACHED();
  1078. }
  1079. Value ClassElement::execute(Interpreter&, GlobalObject&) const
  1080. {
  1081. // Note: The semantics of class element are handled in class_element_evaluation
  1082. VERIFY_NOT_REACHED();
  1083. }
  1084. static ThrowCompletionOr<ClassElement::ClassElementName> class_key_to_property_name(Interpreter& interpreter, GlobalObject& global_object, Expression const& key)
  1085. {
  1086. if (is<PrivateIdentifier>(key)) {
  1087. auto& private_identifier = static_cast<PrivateIdentifier const&>(key);
  1088. auto* private_environment = interpreter.vm().running_execution_context().private_environment;
  1089. VERIFY(private_environment);
  1090. return ClassElement::ClassElementName { private_environment->resolve_private_identifier(private_identifier.string()) };
  1091. }
  1092. auto prop_key = key.execute(interpreter, global_object);
  1093. if (auto* exception = interpreter.exception())
  1094. return throw_completion(exception->value());
  1095. if (prop_key.is_object())
  1096. prop_key = TRY(prop_key.to_primitive(global_object, Value::PreferredType::String));
  1097. auto property_key = PropertyKey::from_value(global_object, prop_key);
  1098. if (auto* exception = interpreter.exception())
  1099. return throw_completion(exception->value());
  1100. return ClassElement::ClassElementName { property_key };
  1101. }
  1102. // 15.4.5 Runtime Semantics: MethodDefinitionEvaluation, https://tc39.es/ecma262/#sec-runtime-semantics-methoddefinitionevaluation
  1103. ThrowCompletionOr<ClassElement::ClassValue> ClassMethod::class_element_evaluation(Interpreter& interpreter, GlobalObject& global_object, Object& target) const
  1104. {
  1105. auto property_key = TRY(class_key_to_property_name(interpreter, global_object, *m_key));
  1106. auto method_value = m_function->execute(interpreter, global_object);
  1107. if (auto* exception = interpreter.exception())
  1108. return throw_completion(exception->value());
  1109. auto& method_function = static_cast<ECMAScriptFunctionObject&>(method_value.as_function());
  1110. method_function.set_home_object(&target);
  1111. auto set_function_name = [&](String prefix = "") {
  1112. auto property_name = property_key.visit(
  1113. [&](PropertyKey const& property_name) -> String {
  1114. if (property_name.is_symbol()) {
  1115. auto description = property_name.as_symbol()->description();
  1116. if (description.is_empty())
  1117. return "";
  1118. return String::formatted("[{}]", description);
  1119. } else {
  1120. return property_name.to_string();
  1121. }
  1122. },
  1123. [&](PrivateName const& private_name) -> String {
  1124. return private_name.description;
  1125. });
  1126. update_function_name(method_value, String::formatted("{}{}{}", prefix, prefix.is_empty() ? "" : " ", property_name));
  1127. };
  1128. if (property_key.has<PropertyKey>()) {
  1129. auto& property_name = property_key.get<PropertyKey>();
  1130. switch (kind()) {
  1131. case ClassMethod::Kind::Method:
  1132. set_function_name();
  1133. TRY(target.define_property_or_throw(property_name, { .value = method_value, .writable = true, .enumerable = false, .configurable = true }));
  1134. break;
  1135. case ClassMethod::Kind::Getter:
  1136. set_function_name("get");
  1137. TRY(target.define_property_or_throw(property_name, { .get = &method_function, .enumerable = true, .configurable = true }));
  1138. break;
  1139. case ClassMethod::Kind::Setter:
  1140. set_function_name("set");
  1141. TRY(target.define_property_or_throw(property_name, { .set = &method_function, .enumerable = true, .configurable = true }));
  1142. break;
  1143. default:
  1144. VERIFY_NOT_REACHED();
  1145. }
  1146. return ClassValue { normal_completion({}) };
  1147. } else {
  1148. auto& private_name = property_key.get<PrivateName>();
  1149. switch (kind()) {
  1150. case Kind::Method:
  1151. set_function_name();
  1152. return ClassValue { PrivateElement { private_name, PrivateElement::Kind::Method, method_value } };
  1153. case Kind::Getter:
  1154. set_function_name("get");
  1155. return ClassValue { PrivateElement { private_name, PrivateElement::Kind::Accessor, Accessor::create(interpreter.vm(), &method_function, nullptr) } };
  1156. case Kind::Setter:
  1157. set_function_name("set");
  1158. return ClassValue { PrivateElement { private_name, PrivateElement::Kind::Accessor, Accessor::create(interpreter.vm(), nullptr, &method_function) } };
  1159. default:
  1160. VERIFY_NOT_REACHED();
  1161. }
  1162. }
  1163. }
  1164. // We use this class to mimic Initializer : = AssignmentExpression of
  1165. // 10.2.1.3 Runtime Semantics: EvaluateBody, https://tc39.es/ecma262/#sec-runtime-semantics-evaluatebody
  1166. class ClassFieldInitializerStatement : public Statement {
  1167. public:
  1168. ClassFieldInitializerStatement(SourceRange source_range, NonnullRefPtr<Expression> expression, FlyString field_name)
  1169. : Statement(source_range)
  1170. , m_expression(move(expression))
  1171. , m_class_field_identifier_name(move(field_name))
  1172. {
  1173. }
  1174. Value execute(Interpreter& interpreter, GlobalObject& global_object) const override
  1175. {
  1176. VERIFY(interpreter.vm().argument_count() == 0);
  1177. VERIFY(!m_class_field_identifier_name.is_empty());
  1178. return TRY_OR_DISCARD(interpreter.vm().named_evaluation_if_anonymous_function(global_object, m_expression, m_class_field_identifier_name));
  1179. }
  1180. void dump(int) const override
  1181. {
  1182. // This should not be dumped as it is never part of an actual AST.
  1183. VERIFY_NOT_REACHED();
  1184. }
  1185. private:
  1186. NonnullRefPtr<Expression> m_expression;
  1187. FlyString m_class_field_identifier_name; // [[ClassFieldIdentifierName]]
  1188. };
  1189. // 15.7.10 Runtime Semantics: ClassFieldDefinitionEvaluation, https://tc39.es/ecma262/#sec-runtime-semantics-classfielddefinitionevaluation
  1190. ThrowCompletionOr<ClassElement::ClassValue> ClassField::class_element_evaluation(Interpreter& interpreter, GlobalObject& global_object, Object& target) const
  1191. {
  1192. auto property_key = TRY(class_key_to_property_name(interpreter, global_object, *m_key));
  1193. ECMAScriptFunctionObject* initializer = nullptr;
  1194. if (m_initializer) {
  1195. auto copy_initializer = m_initializer;
  1196. auto name = property_key.visit(
  1197. [&](PropertyKey const& property_name) -> String {
  1198. return property_name.is_number() ? property_name.to_string() : property_name.to_string_or_symbol().to_display_string();
  1199. },
  1200. [&](PrivateName const& private_name) -> String {
  1201. return private_name.description;
  1202. });
  1203. // FIXME: A potential optimization is not creating the functions here since these are never directly accessible.
  1204. auto function_code = create_ast_node<ClassFieldInitializerStatement>(m_initializer->source_range(), copy_initializer.release_nonnull(), name);
  1205. initializer = ECMAScriptFunctionObject::create(interpreter.global_object(), String::empty(), *function_code, {}, 0, interpreter.lexical_environment(), interpreter.vm().running_execution_context().private_environment, FunctionKind::Regular, true, false, m_contains_direct_call_to_eval, false);
  1206. initializer->set_home_object(&target);
  1207. }
  1208. return ClassValue {
  1209. ClassFieldDefinition {
  1210. property_key,
  1211. initializer,
  1212. }
  1213. };
  1214. }
  1215. static Optional<FlyString> nullopt_or_private_identifier_description(Expression const& expression)
  1216. {
  1217. if (is<PrivateIdentifier>(expression))
  1218. return static_cast<PrivateIdentifier const&>(expression).string();
  1219. return {};
  1220. }
  1221. Optional<FlyString> ClassField::private_bound_identifier() const
  1222. {
  1223. return nullopt_or_private_identifier_description(*m_key);
  1224. }
  1225. Optional<FlyString> ClassMethod::private_bound_identifier() const
  1226. {
  1227. return nullopt_or_private_identifier_description(*m_key);
  1228. }
  1229. // 15.7.11 Runtime Semantics: ClassStaticBlockDefinitionEvaluation, https://tc39.es/ecma262/#sec-runtime-semantics-classstaticblockdefinitionevaluation
  1230. ThrowCompletionOr<ClassElement::ClassValue> StaticInitializer::class_element_evaluation(Interpreter& interpreter, GlobalObject& global_object, Object& home_object) const
  1231. {
  1232. auto* lexical_environment = interpreter.vm().running_execution_context().lexical_environment;
  1233. auto* private_scope = interpreter.vm().running_execution_context().private_environment;
  1234. // Note: The function bodyFunction is never directly accessible to ECMAScript code.
  1235. auto* body_function = ECMAScriptFunctionObject::create(global_object, "", *m_function_body, {}, 0, lexical_environment, private_scope, FunctionKind::Regular, true, false, m_contains_direct_call_to_eval, false);
  1236. body_function->set_home_object(&home_object);
  1237. return ClassValue { normal_completion(body_function) };
  1238. }
  1239. Value ClassExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
  1240. {
  1241. InterpreterNodeScope node_scope { interpreter, *this };
  1242. // FIXME: Set value.[[SourceText]] to the source text matched by ClassExpression.
  1243. return TRY_OR_DISCARD(class_definition_evaluation(interpreter, global_object, m_name, m_name.is_null() ? "" : m_name));
  1244. }
  1245. Value ClassDeclaration::execute(Interpreter& interpreter, GlobalObject& global_object) const
  1246. {
  1247. InterpreterNodeScope node_scope { interpreter, *this };
  1248. auto name = m_class_expression->name();
  1249. VERIFY(!name.is_empty());
  1250. auto class_constructor = TRY_OR_DISCARD(m_class_expression->class_definition_evaluation(interpreter, global_object, name, name));
  1251. if (interpreter.lexical_environment()) {
  1252. MUST(interpreter.lexical_environment()->initialize_binding(global_object, name, class_constructor));
  1253. } else {
  1254. auto reference = interpreter.vm().resolve_binding(name);
  1255. TRY_OR_DISCARD(reference.put_value(global_object, class_constructor));
  1256. }
  1257. return {};
  1258. }
  1259. // 15.7.14 Runtime Semantics: ClassDefinitionEvaluation, https://tc39.es/ecma262/#sec-runtime-semantics-classdefinitionevaluation
  1260. ThrowCompletionOr<Value> ClassExpression::class_definition_evaluation(Interpreter& interpreter, GlobalObject& global_object, FlyString const& binding_name, FlyString const& class_name) const
  1261. {
  1262. auto& vm = interpreter.vm();
  1263. auto* environment = vm.lexical_environment();
  1264. VERIFY(environment);
  1265. auto* class_scope = new_declarative_environment(*environment);
  1266. // We might not set the lexical environment but we always want to restore it eventually.
  1267. ArmedScopeGuard restore_environment = [&] {
  1268. vm.running_execution_context().lexical_environment = environment;
  1269. };
  1270. if (!binding_name.is_null())
  1271. MUST(class_scope->create_immutable_binding(global_object, binding_name, true));
  1272. auto* outer_private_environment = vm.running_execution_context().private_environment;
  1273. auto* class_private_environment = new_private_environment(vm, outer_private_environment);
  1274. for (auto const& element : m_elements) {
  1275. auto opt_private_name = element.private_bound_identifier();
  1276. if (opt_private_name.has_value())
  1277. class_private_environment->add_private_name({}, opt_private_name.release_value());
  1278. }
  1279. auto* proto_parent = vm.current_realm()->global_object().object_prototype();
  1280. auto* constructor_parent = vm.current_realm()->global_object().function_prototype();
  1281. if (!m_super_class.is_null()) {
  1282. vm.running_execution_context().lexical_environment = class_scope;
  1283. // Note: Since our execute does evaluation and GetValue in once we must check for a valid reference first
  1284. Value super_class;
  1285. auto reference = m_super_class->to_reference(interpreter, global_object);
  1286. if (auto* exception = interpreter.exception())
  1287. return throw_completion(exception->value());
  1288. if (reference.is_valid_reference()) {
  1289. super_class = TRY(reference.get_value(global_object));
  1290. } else {
  1291. super_class = m_super_class->execute(interpreter, global_object);
  1292. if (auto* exception = interpreter.exception())
  1293. return throw_completion(exception->value());
  1294. }
  1295. vm.running_execution_context().lexical_environment = environment;
  1296. if (super_class.is_null()) {
  1297. proto_parent = nullptr;
  1298. } else if (!super_class.is_constructor()) {
  1299. return vm.throw_completion<TypeError>(global_object, ErrorType::ClassExtendsValueNotAConstructorOrNull, super_class.to_string_without_side_effects());
  1300. } else {
  1301. auto super_class_prototype = TRY(super_class.get(global_object, vm.names.prototype));
  1302. if (!super_class_prototype.is_null() && !super_class_prototype.is_object())
  1303. return vm.throw_completion<TypeError>(global_object, ErrorType::ClassExtendsValueInvalidPrototype, super_class_prototype.to_string_without_side_effects());
  1304. if (super_class_prototype.is_null())
  1305. proto_parent = nullptr;
  1306. else
  1307. proto_parent = &super_class_prototype.as_object();
  1308. constructor_parent = &super_class.as_object();
  1309. }
  1310. }
  1311. auto* prototype = Object::create(global_object, proto_parent);
  1312. VERIFY(prototype);
  1313. vm.running_execution_context().lexical_environment = class_scope;
  1314. vm.running_execution_context().private_environment = class_private_environment;
  1315. ScopeGuard restore_private_environment = [&] {
  1316. vm.running_execution_context().private_environment = outer_private_environment;
  1317. };
  1318. // FIXME: Step 14.a is done in the parser. But maybe it shouldn't?
  1319. Value class_constructor_value = m_constructor->execute(interpreter, global_object);
  1320. if (auto* exception = interpreter.exception())
  1321. return throw_completion(exception->value());
  1322. update_function_name(class_constructor_value, class_name);
  1323. VERIFY(class_constructor_value.is_function() && is<ECMAScriptFunctionObject>(class_constructor_value.as_function()));
  1324. auto* class_constructor = static_cast<ECMAScriptFunctionObject*>(&class_constructor_value.as_function());
  1325. class_constructor->set_home_object(prototype);
  1326. class_constructor->set_is_class_constructor();
  1327. class_constructor->define_direct_property(vm.names.prototype, prototype, Attribute::Writable);
  1328. TRY(class_constructor->internal_set_prototype_of(constructor_parent));
  1329. if (!m_super_class.is_null())
  1330. class_constructor->set_constructor_kind(ECMAScriptFunctionObject::ConstructorKind::Derived);
  1331. prototype->define_direct_property(vm.names.constructor, class_constructor, Attribute::Writable | Attribute::Configurable);
  1332. using StaticElement = Variant<ClassElement::ClassFieldDefinition, ECMAScriptFunctionObject*>;
  1333. Vector<PrivateElement> static_private_methods;
  1334. Vector<PrivateElement> instance_private_methods;
  1335. Vector<ClassElement::ClassFieldDefinition> instance_fields;
  1336. Vector<StaticElement> static_elements;
  1337. for (auto const& element : m_elements) {
  1338. // Note: All ClassElementEvaluation start with evaluating the name (or we fake it).
  1339. auto element_value = TRY(element.class_element_evaluation(interpreter, global_object, element.is_static() ? *class_constructor : *prototype));
  1340. if (element_value.has<PrivateElement>()) {
  1341. auto& container = element.is_static() ? static_private_methods : instance_private_methods;
  1342. auto& private_element = element_value.get<PrivateElement>();
  1343. auto added_to_existing = false;
  1344. // FIXME: We can skip this loop in most cases.
  1345. for (auto& existing : container) {
  1346. if (existing.key == private_element.key) {
  1347. VERIFY(existing.kind == PrivateElement::Kind::Accessor);
  1348. VERIFY(private_element.kind == PrivateElement::Kind::Accessor);
  1349. auto& accessor = private_element.value.as_accessor();
  1350. if (!accessor.getter())
  1351. existing.value.as_accessor().set_setter(accessor.setter());
  1352. else
  1353. existing.value.as_accessor().set_getter(accessor.getter());
  1354. added_to_existing = true;
  1355. }
  1356. }
  1357. if (!added_to_existing)
  1358. container.append(move(element_value.get<PrivateElement>()));
  1359. } else if (auto* class_field_definition_ptr = element_value.get_pointer<ClassElement::ClassFieldDefinition>()) {
  1360. if (element.is_static())
  1361. static_elements.append(move(*class_field_definition_ptr));
  1362. else
  1363. instance_fields.append(move(*class_field_definition_ptr));
  1364. } else if (element.class_element_kind() == ClassElement::ElementKind::StaticInitializer) {
  1365. // We use Completion to hold the ClassStaticBlockDefinition Record.
  1366. VERIFY(element_value.has<Completion>() && element_value.get<Completion>().has_value());
  1367. auto element_object = element_value.get<Completion>().value();
  1368. VERIFY(is<ECMAScriptFunctionObject>(element_object.as_object()));
  1369. static_elements.append(static_cast<ECMAScriptFunctionObject*>(&element_object.as_object()));
  1370. }
  1371. }
  1372. vm.running_execution_context().lexical_environment = environment;
  1373. restore_environment.disarm();
  1374. if (!binding_name.is_null())
  1375. MUST(class_scope->initialize_binding(global_object, binding_name, class_constructor));
  1376. for (auto& field : instance_fields)
  1377. class_constructor->add_field(field.name, field.initializer);
  1378. for (auto& private_method : instance_private_methods)
  1379. class_constructor->add_private_method(private_method);
  1380. for (auto& method : static_private_methods)
  1381. class_constructor->private_method_or_accessor_add(move(method));
  1382. for (auto& element : static_elements) {
  1383. TRY(element.visit(
  1384. [&](ClassElement::ClassFieldDefinition const& field) -> ThrowCompletionOr<void> {
  1385. return TRY(class_constructor->define_field(field.name, field.initializer));
  1386. },
  1387. [&](ECMAScriptFunctionObject* static_block_function) -> ThrowCompletionOr<void> {
  1388. // We discard any value returned here.
  1389. TRY(call(global_object, static_block_function, class_constructor_value));
  1390. return {};
  1391. }));
  1392. }
  1393. return Value(class_constructor);
  1394. }
  1395. static void print_indent(int indent)
  1396. {
  1397. out("{}", String::repeated(' ', indent * 2));
  1398. }
  1399. void ASTNode::dump(int indent) const
  1400. {
  1401. print_indent(indent);
  1402. outln("{}", class_name());
  1403. }
  1404. void ScopeNode::dump(int indent) const
  1405. {
  1406. ASTNode::dump(indent);
  1407. if (!m_lexical_declarations.is_empty()) {
  1408. print_indent(indent + 1);
  1409. outln("(Lexical declarations)");
  1410. for (auto& declaration : m_lexical_declarations)
  1411. declaration.dump(indent + 2);
  1412. }
  1413. if (!m_var_declarations.is_empty()) {
  1414. print_indent(indent + 1);
  1415. outln("(Variable declarations)");
  1416. for (auto& declaration : m_var_declarations)
  1417. declaration.dump(indent + 2);
  1418. }
  1419. if (!m_functions_hoistable_with_annexB_extension.is_empty()) {
  1420. print_indent(indent + 1);
  1421. outln("(Hoisted functions via annexB extension)");
  1422. for (auto& declaration : m_functions_hoistable_with_annexB_extension)
  1423. declaration.dump(indent + 2);
  1424. }
  1425. if (!m_children.is_empty()) {
  1426. print_indent(indent + 1);
  1427. outln("(Children)");
  1428. for (auto& child : children())
  1429. child.dump(indent + 2);
  1430. }
  1431. }
  1432. void BinaryExpression::dump(int indent) const
  1433. {
  1434. const char* op_string = nullptr;
  1435. switch (m_op) {
  1436. case BinaryOp::Addition:
  1437. op_string = "+";
  1438. break;
  1439. case BinaryOp::Subtraction:
  1440. op_string = "-";
  1441. break;
  1442. case BinaryOp::Multiplication:
  1443. op_string = "*";
  1444. break;
  1445. case BinaryOp::Division:
  1446. op_string = "/";
  1447. break;
  1448. case BinaryOp::Modulo:
  1449. op_string = "%";
  1450. break;
  1451. case BinaryOp::Exponentiation:
  1452. op_string = "**";
  1453. break;
  1454. case BinaryOp::StrictlyEquals:
  1455. op_string = "===";
  1456. break;
  1457. case BinaryOp::StrictlyInequals:
  1458. op_string = "!==";
  1459. break;
  1460. case BinaryOp::LooselyEquals:
  1461. op_string = "==";
  1462. break;
  1463. case BinaryOp::LooselyInequals:
  1464. op_string = "!=";
  1465. break;
  1466. case BinaryOp::GreaterThan:
  1467. op_string = ">";
  1468. break;
  1469. case BinaryOp::GreaterThanEquals:
  1470. op_string = ">=";
  1471. break;
  1472. case BinaryOp::LessThan:
  1473. op_string = "<";
  1474. break;
  1475. case BinaryOp::LessThanEquals:
  1476. op_string = "<=";
  1477. break;
  1478. case BinaryOp::BitwiseAnd:
  1479. op_string = "&";
  1480. break;
  1481. case BinaryOp::BitwiseOr:
  1482. op_string = "|";
  1483. break;
  1484. case BinaryOp::BitwiseXor:
  1485. op_string = "^";
  1486. break;
  1487. case BinaryOp::LeftShift:
  1488. op_string = "<<";
  1489. break;
  1490. case BinaryOp::RightShift:
  1491. op_string = ">>";
  1492. break;
  1493. case BinaryOp::UnsignedRightShift:
  1494. op_string = ">>>";
  1495. break;
  1496. case BinaryOp::In:
  1497. op_string = "in";
  1498. break;
  1499. case BinaryOp::InstanceOf:
  1500. op_string = "instanceof";
  1501. break;
  1502. }
  1503. print_indent(indent);
  1504. outln("{}", class_name());
  1505. m_lhs->dump(indent + 1);
  1506. print_indent(indent + 1);
  1507. outln("{}", op_string);
  1508. m_rhs->dump(indent + 1);
  1509. }
  1510. void LogicalExpression::dump(int indent) const
  1511. {
  1512. const char* op_string = nullptr;
  1513. switch (m_op) {
  1514. case LogicalOp::And:
  1515. op_string = "&&";
  1516. break;
  1517. case LogicalOp::Or:
  1518. op_string = "||";
  1519. break;
  1520. case LogicalOp::NullishCoalescing:
  1521. op_string = "??";
  1522. break;
  1523. }
  1524. print_indent(indent);
  1525. outln("{}", class_name());
  1526. m_lhs->dump(indent + 1);
  1527. print_indent(indent + 1);
  1528. outln("{}", op_string);
  1529. m_rhs->dump(indent + 1);
  1530. }
  1531. void UnaryExpression::dump(int indent) const
  1532. {
  1533. const char* op_string = nullptr;
  1534. switch (m_op) {
  1535. case UnaryOp::BitwiseNot:
  1536. op_string = "~";
  1537. break;
  1538. case UnaryOp::Not:
  1539. op_string = "!";
  1540. break;
  1541. case UnaryOp::Plus:
  1542. op_string = "+";
  1543. break;
  1544. case UnaryOp::Minus:
  1545. op_string = "-";
  1546. break;
  1547. case UnaryOp::Typeof:
  1548. op_string = "typeof ";
  1549. break;
  1550. case UnaryOp::Void:
  1551. op_string = "void ";
  1552. break;
  1553. case UnaryOp::Delete:
  1554. op_string = "delete ";
  1555. break;
  1556. }
  1557. print_indent(indent);
  1558. outln("{}", class_name());
  1559. print_indent(indent + 1);
  1560. outln("{}", op_string);
  1561. m_lhs->dump(indent + 1);
  1562. }
  1563. void CallExpression::dump(int indent) const
  1564. {
  1565. print_indent(indent);
  1566. if (is<NewExpression>(*this))
  1567. outln("CallExpression [new]");
  1568. else
  1569. outln("CallExpression");
  1570. m_callee->dump(indent + 1);
  1571. for (auto& argument : m_arguments)
  1572. argument.value->dump(indent + 1);
  1573. }
  1574. void SuperCall::dump(int indent) const
  1575. {
  1576. print_indent(indent);
  1577. outln("SuperCall");
  1578. for (auto& argument : m_arguments)
  1579. argument.value->dump(indent + 1);
  1580. }
  1581. void ClassDeclaration::dump(int indent) const
  1582. {
  1583. ASTNode::dump(indent);
  1584. m_class_expression->dump(indent + 1);
  1585. }
  1586. void ClassDeclaration::for_each_bound_name(IteratorOrVoidFunction<FlyString const&> callback) const
  1587. {
  1588. if (!m_class_expression->name().is_empty())
  1589. callback(m_class_expression->name());
  1590. }
  1591. void ClassExpression::dump(int indent) const
  1592. {
  1593. print_indent(indent);
  1594. outln("ClassExpression: \"{}\"", m_name);
  1595. print_indent(indent);
  1596. outln("(Constructor)");
  1597. m_constructor->dump(indent + 1);
  1598. if (!m_super_class.is_null()) {
  1599. print_indent(indent);
  1600. outln("(Super Class)");
  1601. m_super_class->dump(indent + 1);
  1602. }
  1603. print_indent(indent);
  1604. outln("(Elements)");
  1605. for (auto& method : m_elements)
  1606. method.dump(indent + 1);
  1607. }
  1608. void ClassMethod::dump(int indent) const
  1609. {
  1610. ASTNode::dump(indent);
  1611. print_indent(indent);
  1612. outln("(Key)");
  1613. m_key->dump(indent + 1);
  1614. const char* kind_string = nullptr;
  1615. switch (m_kind) {
  1616. case Kind::Method:
  1617. kind_string = "Method";
  1618. break;
  1619. case Kind::Getter:
  1620. kind_string = "Getter";
  1621. break;
  1622. case Kind::Setter:
  1623. kind_string = "Setter";
  1624. break;
  1625. }
  1626. print_indent(indent);
  1627. outln("Kind: {}", kind_string);
  1628. print_indent(indent);
  1629. outln("Static: {}", is_static());
  1630. print_indent(indent);
  1631. outln("(Function)");
  1632. m_function->dump(indent + 1);
  1633. }
  1634. void ClassField::dump(int indent) const
  1635. {
  1636. ASTNode::dump(indent);
  1637. print_indent(indent);
  1638. outln("(Key)");
  1639. m_key->dump(indent + 1);
  1640. print_indent(indent);
  1641. outln("Static: {}", is_static());
  1642. if (m_initializer) {
  1643. print_indent(indent);
  1644. outln("(Initializer)");
  1645. m_initializer->dump(indent + 1);
  1646. }
  1647. }
  1648. void StaticInitializer::dump(int indent) const
  1649. {
  1650. ASTNode::dump(indent);
  1651. m_function_body->dump(indent + 1);
  1652. }
  1653. void StringLiteral::dump(int indent) const
  1654. {
  1655. print_indent(indent);
  1656. outln("StringLiteral \"{}\"", m_value);
  1657. }
  1658. void SuperExpression::dump(int indent) const
  1659. {
  1660. print_indent(indent);
  1661. outln("super");
  1662. }
  1663. void NumericLiteral::dump(int indent) const
  1664. {
  1665. print_indent(indent);
  1666. outln("NumericLiteral {}", m_value);
  1667. }
  1668. void BigIntLiteral::dump(int indent) const
  1669. {
  1670. print_indent(indent);
  1671. outln("BigIntLiteral {}", m_value);
  1672. }
  1673. void BooleanLiteral::dump(int indent) const
  1674. {
  1675. print_indent(indent);
  1676. outln("BooleanLiteral {}", m_value);
  1677. }
  1678. void NullLiteral::dump(int indent) const
  1679. {
  1680. print_indent(indent);
  1681. outln("null");
  1682. }
  1683. bool BindingPattern::contains_expression() const
  1684. {
  1685. for (auto& entry : entries) {
  1686. if (entry.initializer)
  1687. return true;
  1688. if (auto binding_ptr = entry.alias.get_pointer<NonnullRefPtr<BindingPattern>>(); binding_ptr && (*binding_ptr)->contains_expression())
  1689. return true;
  1690. }
  1691. return false;
  1692. }
  1693. void BindingPattern::dump(int indent) const
  1694. {
  1695. print_indent(indent);
  1696. outln("BindingPattern {}", kind == Kind::Array ? "Array" : "Object");
  1697. for (auto& entry : entries) {
  1698. print_indent(indent + 1);
  1699. outln("(Property)");
  1700. if (kind == Kind::Object) {
  1701. print_indent(indent + 2);
  1702. outln("(Identifier)");
  1703. if (entry.name.has<NonnullRefPtr<Identifier>>()) {
  1704. entry.name.get<NonnullRefPtr<Identifier>>()->dump(indent + 3);
  1705. } else {
  1706. entry.name.get<NonnullRefPtr<Expression>>()->dump(indent + 3);
  1707. }
  1708. } else if (entry.is_elision()) {
  1709. print_indent(indent + 2);
  1710. outln("(Elision)");
  1711. continue;
  1712. }
  1713. print_indent(indent + 2);
  1714. outln("(Pattern{})", entry.is_rest ? " rest=true" : "");
  1715. if (entry.alias.has<NonnullRefPtr<Identifier>>()) {
  1716. entry.alias.get<NonnullRefPtr<Identifier>>()->dump(indent + 3);
  1717. } else if (entry.alias.has<NonnullRefPtr<BindingPattern>>()) {
  1718. entry.alias.get<NonnullRefPtr<BindingPattern>>()->dump(indent + 3);
  1719. } else if (entry.alias.has<NonnullRefPtr<MemberExpression>>()) {
  1720. entry.alias.get<NonnullRefPtr<MemberExpression>>()->dump(indent + 3);
  1721. } else {
  1722. print_indent(indent + 3);
  1723. outln("<empty>");
  1724. }
  1725. if (entry.initializer) {
  1726. print_indent(indent + 2);
  1727. outln("(Initializer)");
  1728. entry.initializer->dump(indent + 3);
  1729. }
  1730. }
  1731. }
  1732. void FunctionNode::dump(int indent, String const& class_name) const
  1733. {
  1734. print_indent(indent);
  1735. auto is_async = m_kind == FunctionKind::Async || m_kind == FunctionKind::AsyncGenerator;
  1736. auto is_generator = m_kind == FunctionKind::Generator || m_kind == FunctionKind::AsyncGenerator;
  1737. outln("{}{}{} '{}'", class_name, is_async ? " async" : "", is_generator ? "*" : "", name());
  1738. if (m_contains_direct_call_to_eval) {
  1739. print_indent(indent + 1);
  1740. outln("\033[31;1m(direct eval)\033[0m");
  1741. }
  1742. if (!m_parameters.is_empty()) {
  1743. print_indent(indent + 1);
  1744. outln("(Parameters)");
  1745. for (auto& parameter : m_parameters) {
  1746. print_indent(indent + 2);
  1747. if (parameter.is_rest)
  1748. out("...");
  1749. parameter.binding.visit(
  1750. [&](FlyString const& name) {
  1751. outln("{}", name);
  1752. },
  1753. [&](BindingPattern const& pattern) {
  1754. pattern.dump(indent + 2);
  1755. });
  1756. if (parameter.default_value)
  1757. parameter.default_value->dump(indent + 3);
  1758. }
  1759. }
  1760. print_indent(indent + 1);
  1761. outln("(Body)");
  1762. body().dump(indent + 2);
  1763. }
  1764. void FunctionDeclaration::dump(int indent) const
  1765. {
  1766. FunctionNode::dump(indent, class_name());
  1767. }
  1768. void FunctionDeclaration::for_each_bound_name(IteratorOrVoidFunction<FlyString const&> callback) const
  1769. {
  1770. if (!name().is_empty())
  1771. callback(name());
  1772. }
  1773. void FunctionExpression::dump(int indent) const
  1774. {
  1775. FunctionNode::dump(indent, class_name());
  1776. }
  1777. void YieldExpression::dump(int indent) const
  1778. {
  1779. ASTNode::dump(indent);
  1780. if (argument())
  1781. argument()->dump(indent + 1);
  1782. }
  1783. void AwaitExpression::dump(int indent) const
  1784. {
  1785. ASTNode::dump(indent);
  1786. m_argument->dump(indent + 1);
  1787. }
  1788. void ReturnStatement::dump(int indent) const
  1789. {
  1790. ASTNode::dump(indent);
  1791. if (argument())
  1792. argument()->dump(indent + 1);
  1793. }
  1794. void IfStatement::dump(int indent) const
  1795. {
  1796. ASTNode::dump(indent);
  1797. print_indent(indent);
  1798. outln("If");
  1799. predicate().dump(indent + 1);
  1800. consequent().dump(indent + 1);
  1801. if (alternate()) {
  1802. print_indent(indent);
  1803. outln("Else");
  1804. alternate()->dump(indent + 1);
  1805. }
  1806. }
  1807. void WhileStatement::dump(int indent) const
  1808. {
  1809. ASTNode::dump(indent);
  1810. print_indent(indent);
  1811. outln("While");
  1812. test().dump(indent + 1);
  1813. body().dump(indent + 1);
  1814. }
  1815. void WithStatement::dump(int indent) const
  1816. {
  1817. ASTNode::dump(indent);
  1818. print_indent(indent + 1);
  1819. outln("Object");
  1820. object().dump(indent + 2);
  1821. print_indent(indent + 1);
  1822. outln("Body");
  1823. body().dump(indent + 2);
  1824. }
  1825. void DoWhileStatement::dump(int indent) const
  1826. {
  1827. ASTNode::dump(indent);
  1828. print_indent(indent);
  1829. outln("DoWhile");
  1830. test().dump(indent + 1);
  1831. body().dump(indent + 1);
  1832. }
  1833. void ForStatement::dump(int indent) const
  1834. {
  1835. ASTNode::dump(indent);
  1836. print_indent(indent);
  1837. outln("For");
  1838. if (init())
  1839. init()->dump(indent + 1);
  1840. if (test())
  1841. test()->dump(indent + 1);
  1842. if (update())
  1843. update()->dump(indent + 1);
  1844. body().dump(indent + 1);
  1845. }
  1846. void ForInStatement::dump(int indent) const
  1847. {
  1848. ASTNode::dump(indent);
  1849. print_indent(indent);
  1850. outln("ForIn");
  1851. lhs().visit([&](auto& lhs) { lhs->dump(indent + 1); });
  1852. rhs().dump(indent + 1);
  1853. body().dump(indent + 1);
  1854. }
  1855. void ForOfStatement::dump(int indent) const
  1856. {
  1857. ASTNode::dump(indent);
  1858. print_indent(indent);
  1859. outln("ForOf");
  1860. lhs().visit([&](auto& lhs) { lhs->dump(indent + 1); });
  1861. rhs().dump(indent + 1);
  1862. body().dump(indent + 1);
  1863. }
  1864. void ForAwaitOfStatement::dump(int indent) const
  1865. {
  1866. ASTNode::dump(indent);
  1867. print_indent(indent);
  1868. outln("ForAwaitOf");
  1869. m_lhs.visit([&](auto& lhs) { lhs->dump(indent + 1); });
  1870. m_rhs->dump(indent + 1);
  1871. m_body->dump(indent + 1);
  1872. }
  1873. Value Identifier::execute(Interpreter& interpreter, GlobalObject& global_object) const
  1874. {
  1875. InterpreterNodeScope node_scope { interpreter, *this };
  1876. auto reference = to_reference(interpreter, global_object);
  1877. if (interpreter.exception())
  1878. return {};
  1879. return TRY_OR_DISCARD(reference.get_value(global_object));
  1880. }
  1881. void Identifier::dump(int indent) const
  1882. {
  1883. print_indent(indent);
  1884. outln("Identifier \"{}\"", m_string);
  1885. }
  1886. Value PrivateIdentifier::execute(Interpreter&, GlobalObject&) const
  1887. {
  1888. // Note: This should be handled by either the member expression this is part of
  1889. // or the binary expression in the case of `#foo in bar`.
  1890. VERIFY_NOT_REACHED();
  1891. }
  1892. void PrivateIdentifier::dump(int indent) const
  1893. {
  1894. print_indent(indent);
  1895. outln("PrivateIdentifier \"{}\"", m_string);
  1896. }
  1897. void SpreadExpression::dump(int indent) const
  1898. {
  1899. ASTNode::dump(indent);
  1900. m_target->dump(indent + 1);
  1901. }
  1902. Value SpreadExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
  1903. {
  1904. InterpreterNodeScope node_scope { interpreter, *this };
  1905. return m_target->execute(interpreter, global_object);
  1906. }
  1907. Value ThisExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
  1908. {
  1909. InterpreterNodeScope node_scope { interpreter, *this };
  1910. return interpreter.vm().resolve_this_binding(global_object);
  1911. }
  1912. void ThisExpression::dump(int indent) const
  1913. {
  1914. ASTNode::dump(indent);
  1915. }
  1916. // 13.15.2 Runtime Semantics: Evaluation, https://tc39.es/ecma262/#sec-assignment-operators-runtime-semantics-evaluation
  1917. Value AssignmentExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
  1918. {
  1919. InterpreterNodeScope node_scope { interpreter, *this };
  1920. if (m_op == AssignmentOp::Assignment) {
  1921. // AssignmentExpression : LeftHandSideExpression = AssignmentExpression
  1922. return m_lhs.visit(
  1923. [&](NonnullRefPtr<Expression>& lhs) -> JS::Value {
  1924. auto reference = lhs->to_reference(interpreter, global_object);
  1925. if (interpreter.exception())
  1926. return {};
  1927. Value rhs_result;
  1928. if (lhs->is_identifier()) {
  1929. auto& identifier_name = static_cast<Identifier const&>(*lhs).string();
  1930. rhs_result = TRY_OR_DISCARD(interpreter.vm().named_evaluation_if_anonymous_function(global_object, m_rhs, identifier_name));
  1931. } else {
  1932. rhs_result = m_rhs->execute(interpreter, global_object);
  1933. }
  1934. if (interpreter.exception())
  1935. return {};
  1936. TRY_OR_DISCARD(reference.put_value(global_object, rhs_result));
  1937. return rhs_result;
  1938. },
  1939. [&](NonnullRefPtr<BindingPattern>& pattern) -> JS::Value {
  1940. Value rhs_result = m_rhs->execute(interpreter, global_object);
  1941. if (interpreter.exception())
  1942. return {};
  1943. TRY_OR_DISCARD(interpreter.vm().destructuring_assignment_evaluation(pattern, rhs_result, global_object));
  1944. return rhs_result;
  1945. });
  1946. }
  1947. VERIFY(m_lhs.has<NonnullRefPtr<Expression>>());
  1948. auto& lhs_expression = *m_lhs.get<NonnullRefPtr<Expression>>();
  1949. auto reference = lhs_expression.to_reference(interpreter, global_object);
  1950. if (interpreter.exception())
  1951. return {};
  1952. auto lhs_result = TRY_OR_DISCARD(reference.get_value(global_object));
  1953. // AssignmentExpression : LeftHandSideExpression {&&=, ||=, ??=} AssignmentExpression
  1954. if (m_op == AssignmentOp::AndAssignment || m_op == AssignmentOp::OrAssignment || m_op == AssignmentOp::NullishAssignment) {
  1955. switch (m_op) {
  1956. case AssignmentOp::AndAssignment:
  1957. if (!lhs_result.to_boolean())
  1958. return lhs_result;
  1959. break;
  1960. case AssignmentOp::OrAssignment:
  1961. if (lhs_result.to_boolean())
  1962. return lhs_result;
  1963. break;
  1964. case AssignmentOp::NullishAssignment:
  1965. if (!lhs_result.is_nullish())
  1966. return lhs_result;
  1967. break;
  1968. default:
  1969. VERIFY_NOT_REACHED();
  1970. }
  1971. Value rhs_result;
  1972. if (lhs_expression.is_identifier()) {
  1973. auto& identifier_name = static_cast<Identifier const&>(lhs_expression).string();
  1974. rhs_result = TRY_OR_DISCARD(interpreter.vm().named_evaluation_if_anonymous_function(global_object, m_rhs, identifier_name));
  1975. } else {
  1976. rhs_result = m_rhs->execute(interpreter, global_object);
  1977. if (interpreter.exception())
  1978. return {};
  1979. }
  1980. TRY_OR_DISCARD(reference.put_value(global_object, rhs_result));
  1981. return rhs_result;
  1982. }
  1983. // AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
  1984. auto rhs_result = m_rhs->execute(interpreter, global_object);
  1985. if (interpreter.exception())
  1986. return {};
  1987. switch (m_op) {
  1988. case AssignmentOp::AdditionAssignment:
  1989. rhs_result = TRY_OR_DISCARD(add(global_object, lhs_result, rhs_result));
  1990. break;
  1991. case AssignmentOp::SubtractionAssignment:
  1992. rhs_result = TRY_OR_DISCARD(sub(global_object, lhs_result, rhs_result));
  1993. break;
  1994. case AssignmentOp::MultiplicationAssignment:
  1995. rhs_result = TRY_OR_DISCARD(mul(global_object, lhs_result, rhs_result));
  1996. break;
  1997. case AssignmentOp::DivisionAssignment:
  1998. rhs_result = TRY_OR_DISCARD(div(global_object, lhs_result, rhs_result));
  1999. break;
  2000. case AssignmentOp::ModuloAssignment:
  2001. rhs_result = TRY_OR_DISCARD(mod(global_object, lhs_result, rhs_result));
  2002. break;
  2003. case AssignmentOp::ExponentiationAssignment:
  2004. rhs_result = TRY_OR_DISCARD(exp(global_object, lhs_result, rhs_result));
  2005. break;
  2006. case AssignmentOp::BitwiseAndAssignment:
  2007. rhs_result = TRY_OR_DISCARD(bitwise_and(global_object, lhs_result, rhs_result));
  2008. break;
  2009. case AssignmentOp::BitwiseOrAssignment:
  2010. rhs_result = TRY_OR_DISCARD(bitwise_or(global_object, lhs_result, rhs_result));
  2011. break;
  2012. case AssignmentOp::BitwiseXorAssignment:
  2013. rhs_result = TRY_OR_DISCARD(bitwise_xor(global_object, lhs_result, rhs_result));
  2014. break;
  2015. case AssignmentOp::LeftShiftAssignment:
  2016. rhs_result = TRY_OR_DISCARD(left_shift(global_object, lhs_result, rhs_result));
  2017. break;
  2018. case AssignmentOp::RightShiftAssignment:
  2019. rhs_result = TRY_OR_DISCARD(right_shift(global_object, lhs_result, rhs_result));
  2020. break;
  2021. case AssignmentOp::UnsignedRightShiftAssignment:
  2022. rhs_result = TRY_OR_DISCARD(unsigned_right_shift(global_object, lhs_result, rhs_result));
  2023. break;
  2024. case AssignmentOp::Assignment:
  2025. case AssignmentOp::AndAssignment:
  2026. case AssignmentOp::OrAssignment:
  2027. case AssignmentOp::NullishAssignment:
  2028. VERIFY_NOT_REACHED();
  2029. }
  2030. TRY_OR_DISCARD(reference.put_value(global_object, rhs_result));
  2031. return rhs_result;
  2032. }
  2033. Value UpdateExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
  2034. {
  2035. InterpreterNodeScope node_scope { interpreter, *this };
  2036. auto reference = m_argument->to_reference(interpreter, global_object);
  2037. if (interpreter.exception())
  2038. return {};
  2039. auto old_value = TRY_OR_DISCARD(reference.get_value(global_object));
  2040. old_value = TRY_OR_DISCARD(old_value.to_numeric(global_object));
  2041. Value new_value;
  2042. switch (m_op) {
  2043. case UpdateOp::Increment:
  2044. if (old_value.is_number())
  2045. new_value = Value(old_value.as_double() + 1);
  2046. else
  2047. new_value = js_bigint(interpreter.heap(), old_value.as_bigint().big_integer().plus(Crypto::SignedBigInteger { 1 }));
  2048. break;
  2049. case UpdateOp::Decrement:
  2050. if (old_value.is_number())
  2051. new_value = Value(old_value.as_double() - 1);
  2052. else
  2053. new_value = js_bigint(interpreter.heap(), old_value.as_bigint().big_integer().minus(Crypto::SignedBigInteger { 1 }));
  2054. break;
  2055. default:
  2056. VERIFY_NOT_REACHED();
  2057. }
  2058. TRY_OR_DISCARD(reference.put_value(global_object, new_value));
  2059. return m_prefixed ? new_value : old_value;
  2060. }
  2061. void AssignmentExpression::dump(int indent) const
  2062. {
  2063. const char* op_string = nullptr;
  2064. switch (m_op) {
  2065. case AssignmentOp::Assignment:
  2066. op_string = "=";
  2067. break;
  2068. case AssignmentOp::AdditionAssignment:
  2069. op_string = "+=";
  2070. break;
  2071. case AssignmentOp::SubtractionAssignment:
  2072. op_string = "-=";
  2073. break;
  2074. case AssignmentOp::MultiplicationAssignment:
  2075. op_string = "*=";
  2076. break;
  2077. case AssignmentOp::DivisionAssignment:
  2078. op_string = "/=";
  2079. break;
  2080. case AssignmentOp::ModuloAssignment:
  2081. op_string = "%=";
  2082. break;
  2083. case AssignmentOp::ExponentiationAssignment:
  2084. op_string = "**=";
  2085. break;
  2086. case AssignmentOp::BitwiseAndAssignment:
  2087. op_string = "&=";
  2088. break;
  2089. case AssignmentOp::BitwiseOrAssignment:
  2090. op_string = "|=";
  2091. break;
  2092. case AssignmentOp::BitwiseXorAssignment:
  2093. op_string = "^=";
  2094. break;
  2095. case AssignmentOp::LeftShiftAssignment:
  2096. op_string = "<<=";
  2097. break;
  2098. case AssignmentOp::RightShiftAssignment:
  2099. op_string = ">>=";
  2100. break;
  2101. case AssignmentOp::UnsignedRightShiftAssignment:
  2102. op_string = ">>>=";
  2103. break;
  2104. case AssignmentOp::AndAssignment:
  2105. op_string = "&&=";
  2106. break;
  2107. case AssignmentOp::OrAssignment:
  2108. op_string = "||=";
  2109. break;
  2110. case AssignmentOp::NullishAssignment:
  2111. op_string = "\?\?=";
  2112. break;
  2113. }
  2114. ASTNode::dump(indent);
  2115. print_indent(indent + 1);
  2116. outln("{}", op_string);
  2117. m_lhs.visit([&](auto& lhs) { lhs->dump(indent + 1); });
  2118. m_rhs->dump(indent + 1);
  2119. }
  2120. void UpdateExpression::dump(int indent) const
  2121. {
  2122. const char* op_string = nullptr;
  2123. switch (m_op) {
  2124. case UpdateOp::Increment:
  2125. op_string = "++";
  2126. break;
  2127. case UpdateOp::Decrement:
  2128. op_string = "--";
  2129. break;
  2130. }
  2131. ASTNode::dump(indent);
  2132. if (m_prefixed) {
  2133. print_indent(indent + 1);
  2134. outln("{}", op_string);
  2135. }
  2136. m_argument->dump(indent + 1);
  2137. if (!m_prefixed) {
  2138. print_indent(indent + 1);
  2139. outln("{}", op_string);
  2140. }
  2141. }
  2142. Value VariableDeclaration::execute(Interpreter& interpreter, GlobalObject& global_object) const
  2143. {
  2144. InterpreterNodeScope node_scope { interpreter, *this };
  2145. for (auto& declarator : m_declarations) {
  2146. if (auto* init = declarator.init()) {
  2147. TRY_OR_DISCARD(declarator.target().visit(
  2148. [&](NonnullRefPtr<Identifier> const& id) -> ThrowCompletionOr<void> {
  2149. auto reference = id->to_reference(interpreter, global_object);
  2150. if (auto* exception = interpreter.exception())
  2151. return throw_completion(exception->value());
  2152. auto initializer_result = TRY_OR_DISCARD(interpreter.vm().named_evaluation_if_anonymous_function(global_object, *init, id->string()));
  2153. VERIFY(!initializer_result.is_empty());
  2154. if (m_declaration_kind == DeclarationKind::Var)
  2155. return reference.put_value(global_object, initializer_result);
  2156. else
  2157. return reference.initialize_referenced_binding(global_object, initializer_result);
  2158. },
  2159. [&](NonnullRefPtr<BindingPattern> const& pattern) -> ThrowCompletionOr<void> {
  2160. auto initializer_result = init->execute(interpreter, global_object);
  2161. if (auto* exception = interpreter.exception())
  2162. return throw_completion(exception->value());
  2163. Environment* environment = m_declaration_kind == DeclarationKind::Var ? nullptr : interpreter.lexical_environment();
  2164. return interpreter.vm().binding_initialization(pattern, initializer_result, environment, global_object);
  2165. }));
  2166. } else if (m_declaration_kind != DeclarationKind::Var) {
  2167. VERIFY(declarator.target().has<NonnullRefPtr<Identifier>>());
  2168. auto& identifier = declarator.target().get<NonnullRefPtr<Identifier>>();
  2169. auto reference = identifier->to_reference(interpreter, global_object);
  2170. TRY_OR_DISCARD(reference.initialize_referenced_binding(global_object, js_undefined()));
  2171. }
  2172. }
  2173. return {};
  2174. }
  2175. Value VariableDeclarator::execute(Interpreter& interpreter, GlobalObject&) const
  2176. {
  2177. InterpreterNodeScope node_scope { interpreter, *this };
  2178. // NOTE: VariableDeclarator execution is handled by VariableDeclaration.
  2179. VERIFY_NOT_REACHED();
  2180. }
  2181. void VariableDeclaration::for_each_bound_name(IteratorOrVoidFunction<FlyString const&> callback) const
  2182. {
  2183. for (auto& entry : declarations()) {
  2184. entry.target().template visit(
  2185. [&](const NonnullRefPtr<Identifier>& id) {
  2186. callback(id->string());
  2187. },
  2188. [&](const NonnullRefPtr<BindingPattern>& binding) {
  2189. binding->for_each_bound_name([&](const auto& name) {
  2190. callback(name);
  2191. });
  2192. });
  2193. }
  2194. }
  2195. void VariableDeclaration::dump(int indent) const
  2196. {
  2197. const char* declaration_kind_string = nullptr;
  2198. switch (m_declaration_kind) {
  2199. case DeclarationKind::Let:
  2200. declaration_kind_string = "Let";
  2201. break;
  2202. case DeclarationKind::Var:
  2203. declaration_kind_string = "Var";
  2204. break;
  2205. case DeclarationKind::Const:
  2206. declaration_kind_string = "Const";
  2207. break;
  2208. }
  2209. ASTNode::dump(indent);
  2210. print_indent(indent + 1);
  2211. outln("{}", declaration_kind_string);
  2212. for (auto& declarator : m_declarations)
  2213. declarator.dump(indent + 1);
  2214. }
  2215. void VariableDeclarator::dump(int indent) const
  2216. {
  2217. ASTNode::dump(indent);
  2218. m_target.visit([indent](const auto& value) { value->dump(indent + 1); });
  2219. if (m_init)
  2220. m_init->dump(indent + 1);
  2221. }
  2222. void ObjectProperty::dump(int indent) const
  2223. {
  2224. ASTNode::dump(indent);
  2225. if (m_property_type == Type::Spread) {
  2226. print_indent(indent + 1);
  2227. outln("...Spreading");
  2228. m_key->dump(indent + 1);
  2229. } else {
  2230. m_key->dump(indent + 1);
  2231. m_value->dump(indent + 1);
  2232. }
  2233. }
  2234. void ObjectExpression::dump(int indent) const
  2235. {
  2236. ASTNode::dump(indent);
  2237. for (auto& property : m_properties) {
  2238. property.dump(indent + 1);
  2239. }
  2240. }
  2241. void ExpressionStatement::dump(int indent) const
  2242. {
  2243. ASTNode::dump(indent);
  2244. m_expression->dump(indent + 1);
  2245. }
  2246. Value ObjectProperty::execute(Interpreter& interpreter, GlobalObject&) const
  2247. {
  2248. InterpreterNodeScope node_scope { interpreter, *this };
  2249. // NOTE: ObjectProperty execution is handled by ObjectExpression.
  2250. VERIFY_NOT_REACHED();
  2251. }
  2252. Value ObjectExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
  2253. {
  2254. InterpreterNodeScope node_scope { interpreter, *this };
  2255. auto* object = Object::create(global_object, global_object.object_prototype());
  2256. for (auto& property : m_properties) {
  2257. auto key = property.key().execute(interpreter, global_object);
  2258. if (interpreter.exception())
  2259. return {};
  2260. if (property.type() == ObjectProperty::Type::Spread) {
  2261. if (key.is_object() && is<Array>(key.as_object())) {
  2262. auto& array_to_spread = static_cast<Array&>(key.as_object());
  2263. for (auto& entry : array_to_spread.indexed_properties()) {
  2264. auto value = TRY_OR_DISCARD(array_to_spread.get(entry.index()));
  2265. object->indexed_properties().put(entry.index(), value);
  2266. if (interpreter.exception())
  2267. return {};
  2268. }
  2269. } else if (key.is_object()) {
  2270. auto& obj_to_spread = key.as_object();
  2271. for (auto& it : obj_to_spread.shape().property_table_ordered()) {
  2272. if (it.value.attributes.is_enumerable()) {
  2273. object->define_direct_property(it.key, TRY_OR_DISCARD(obj_to_spread.get(it.key)), JS::default_attributes);
  2274. if (interpreter.exception())
  2275. return {};
  2276. }
  2277. }
  2278. } else if (key.is_string()) {
  2279. auto& str_to_spread = key.as_string().string();
  2280. for (size_t i = 0; i < str_to_spread.length(); i++) {
  2281. object->define_direct_property(i, js_string(interpreter.heap(), str_to_spread.substring(i, 1)), JS::default_attributes);
  2282. if (interpreter.exception())
  2283. return {};
  2284. }
  2285. }
  2286. continue;
  2287. }
  2288. auto value = property.value().execute(interpreter, global_object);
  2289. if (interpreter.exception())
  2290. return {};
  2291. if (value.is_function() && property.is_method())
  2292. static_cast<ECMAScriptFunctionObject&>(value.as_function()).set_home_object(object);
  2293. auto name = TRY_OR_DISCARD(get_function_name(global_object, key));
  2294. if (property.type() == ObjectProperty::Type::Getter) {
  2295. name = String::formatted("get {}", name);
  2296. } else if (property.type() == ObjectProperty::Type::Setter) {
  2297. name = String::formatted("set {}", name);
  2298. }
  2299. update_function_name(value, name);
  2300. switch (property.type()) {
  2301. case ObjectProperty::Type::Getter:
  2302. VERIFY(value.is_function());
  2303. object->define_direct_accessor(PropertyKey::from_value(global_object, key), &value.as_function(), nullptr, Attribute::Configurable | Attribute::Enumerable);
  2304. break;
  2305. case ObjectProperty::Type::Setter:
  2306. VERIFY(value.is_function());
  2307. object->define_direct_accessor(PropertyKey::from_value(global_object, key), nullptr, &value.as_function(), Attribute::Configurable | Attribute::Enumerable);
  2308. break;
  2309. case ObjectProperty::Type::KeyValue:
  2310. object->define_direct_property(PropertyKey::from_value(global_object, key), value, JS::default_attributes);
  2311. break;
  2312. case ObjectProperty::Type::Spread:
  2313. default:
  2314. VERIFY_NOT_REACHED();
  2315. }
  2316. if (interpreter.exception())
  2317. return {};
  2318. }
  2319. return object;
  2320. }
  2321. void MemberExpression::dump(int indent) const
  2322. {
  2323. print_indent(indent);
  2324. outln("{}(computed={})", class_name(), is_computed());
  2325. m_object->dump(indent + 1);
  2326. m_property->dump(indent + 1);
  2327. }
  2328. String MemberExpression::to_string_approximation() const
  2329. {
  2330. String object_string = "<object>";
  2331. if (is<Identifier>(*m_object))
  2332. object_string = static_cast<Identifier const&>(*m_object).string();
  2333. if (is_computed())
  2334. return String::formatted("{}[<computed>]", object_string);
  2335. return String::formatted("{}.{}", object_string, verify_cast<Identifier>(*m_property).string());
  2336. }
  2337. Value MemberExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
  2338. {
  2339. InterpreterNodeScope node_scope { interpreter, *this };
  2340. auto reference = to_reference(interpreter, global_object);
  2341. if (interpreter.exception())
  2342. return {};
  2343. return TRY_OR_DISCARD(reference.get_value(global_object));
  2344. }
  2345. bool MemberExpression::ends_in_private_name() const
  2346. {
  2347. if (is_computed())
  2348. return false;
  2349. if (is<PrivateIdentifier>(*m_property))
  2350. return true;
  2351. if (is<MemberExpression>(*m_property))
  2352. return static_cast<MemberExpression const&>(*m_property).ends_in_private_name();
  2353. return false;
  2354. }
  2355. void OptionalChain::dump(int indent) const
  2356. {
  2357. print_indent(indent);
  2358. outln("{}", class_name());
  2359. m_base->dump(indent + 1);
  2360. for (auto& reference : m_references) {
  2361. reference.visit(
  2362. [&](Call const& call) {
  2363. print_indent(indent + 1);
  2364. outln("Call({})", call.mode == Mode::Optional ? "Optional" : "Not Optional");
  2365. for (auto& argument : call.arguments)
  2366. argument.value->dump(indent + 2);
  2367. },
  2368. [&](ComputedReference const& ref) {
  2369. print_indent(indent + 1);
  2370. outln("ComputedReference({})", ref.mode == Mode::Optional ? "Optional" : "Not Optional");
  2371. ref.expression->dump(indent + 2);
  2372. },
  2373. [&](MemberReference const& ref) {
  2374. print_indent(indent + 1);
  2375. outln("MemberReference({})", ref.mode == Mode::Optional ? "Optional" : "Not Optional");
  2376. ref.identifier->dump(indent + 2);
  2377. },
  2378. [&](PrivateMemberReference const& ref) {
  2379. print_indent(indent + 1);
  2380. outln("PrivateMemberReference({})", ref.mode == Mode::Optional ? "Optional" : "Not Optional");
  2381. ref.private_identifier->dump(indent + 2);
  2382. });
  2383. }
  2384. }
  2385. Optional<OptionalChain::ReferenceAndValue> OptionalChain::to_reference_and_value(JS::Interpreter& interpreter, JS::GlobalObject& global_object) const
  2386. {
  2387. // Note: This is wrapped in an optional to allow base_reference = ...
  2388. Optional<JS::Reference> base_reference = m_base->to_reference(interpreter, global_object);
  2389. auto base = base_reference->is_unresolvable() ? m_base->execute(interpreter, global_object) : TRY_OR_DISCARD(base_reference->get_value(global_object));
  2390. if (interpreter.exception())
  2391. return {};
  2392. for (auto& reference : m_references) {
  2393. auto is_optional = reference.visit([](auto& ref) { return ref.mode; }) == Mode::Optional;
  2394. if (is_optional && base.is_nullish())
  2395. return ReferenceAndValue { {}, js_undefined() };
  2396. auto expression = reference.visit(
  2397. [&](Call const& call) -> NonnullRefPtr<Expression> {
  2398. return create_ast_node<CallExpression>(source_range(),
  2399. create_ast_node<SyntheticReferenceExpression>(source_range(), *base_reference, base),
  2400. call.arguments);
  2401. },
  2402. [&](ComputedReference const& ref) -> NonnullRefPtr<Expression> {
  2403. return create_ast_node<MemberExpression>(source_range(),
  2404. create_ast_node<SyntheticReferenceExpression>(source_range(), *base_reference, base),
  2405. ref.expression,
  2406. true);
  2407. },
  2408. [&](MemberReference const& ref) -> NonnullRefPtr<Expression> {
  2409. return create_ast_node<MemberExpression>(source_range(),
  2410. create_ast_node<SyntheticReferenceExpression>(source_range(), *base_reference, base),
  2411. ref.identifier,
  2412. false);
  2413. },
  2414. [&](PrivateMemberReference const& ref) -> NonnullRefPtr<Expression> {
  2415. return create_ast_node<MemberExpression>(source_range(),
  2416. create_ast_node<SyntheticReferenceExpression>(source_range(), *base_reference, base),
  2417. ref.private_identifier,
  2418. false);
  2419. });
  2420. if (is<CallExpression>(*expression)) {
  2421. base_reference = JS::Reference {};
  2422. base = expression->execute(interpreter, global_object);
  2423. } else {
  2424. base_reference = expression->to_reference(interpreter, global_object);
  2425. base = TRY_OR_DISCARD(base_reference->get_value(global_object));
  2426. }
  2427. if (interpreter.exception())
  2428. return {};
  2429. }
  2430. return ReferenceAndValue { base_reference.release_value(), base };
  2431. }
  2432. Value OptionalChain::execute(Interpreter& interpreter, GlobalObject& global_object) const
  2433. {
  2434. InterpreterNodeScope node_scope { interpreter, *this };
  2435. if (auto result = to_reference_and_value(interpreter, global_object); result.has_value())
  2436. return result.release_value().value;
  2437. return {};
  2438. }
  2439. JS::Reference OptionalChain::to_reference(Interpreter& interpreter, GlobalObject& global_object) const
  2440. {
  2441. if (auto result = to_reference_and_value(interpreter, global_object); result.has_value())
  2442. return result.release_value().reference;
  2443. return {};
  2444. }
  2445. void MetaProperty::dump(int indent) const
  2446. {
  2447. String name;
  2448. if (m_type == MetaProperty::Type::NewTarget)
  2449. name = "new.target";
  2450. else if (m_type == MetaProperty::Type::ImportMeta)
  2451. name = "import.meta";
  2452. else
  2453. VERIFY_NOT_REACHED();
  2454. print_indent(indent);
  2455. outln("{} {}", class_name(), name);
  2456. }
  2457. Value MetaProperty::execute(Interpreter& interpreter, GlobalObject& global_object) const
  2458. {
  2459. InterpreterNodeScope node_scope { interpreter, *this };
  2460. if (m_type == MetaProperty::Type::NewTarget)
  2461. return interpreter.vm().get_new_target().value_or(js_undefined());
  2462. if (m_type == MetaProperty::Type::ImportMeta) {
  2463. interpreter.vm().throw_exception<InternalError>(global_object, ErrorType::NotImplemented, "'import.meta' in modules");
  2464. return {};
  2465. }
  2466. VERIFY_NOT_REACHED();
  2467. }
  2468. void ImportCall::dump(int indent) const
  2469. {
  2470. ASTNode::dump(indent);
  2471. print_indent(indent);
  2472. outln("(Specifier)");
  2473. m_specifier->dump(indent + 1);
  2474. if (m_options) {
  2475. outln("(Options)");
  2476. m_options->dump(indent + 1);
  2477. }
  2478. }
  2479. Value ImportCall::execute(Interpreter& interpreter, GlobalObject& global_object) const
  2480. {
  2481. InterpreterNodeScope node_scope { interpreter, *this };
  2482. interpreter.vm().throw_exception<InternalError>(global_object, ErrorType::NotImplemented, "'import(...)' in modules");
  2483. return {};
  2484. }
  2485. Value StringLiteral::execute(Interpreter& interpreter, GlobalObject&) const
  2486. {
  2487. InterpreterNodeScope node_scope { interpreter, *this };
  2488. return js_string(interpreter.heap(), m_value);
  2489. }
  2490. Value NumericLiteral::execute(Interpreter& interpreter, GlobalObject&) const
  2491. {
  2492. InterpreterNodeScope node_scope { interpreter, *this };
  2493. return Value(m_value);
  2494. }
  2495. Value BigIntLiteral::execute(Interpreter& interpreter, GlobalObject&) const
  2496. {
  2497. InterpreterNodeScope node_scope { interpreter, *this };
  2498. Crypto::SignedBigInteger integer;
  2499. if (m_value[0] == '0' && m_value.length() >= 3) {
  2500. if (m_value[1] == 'x' || m_value[1] == 'X') {
  2501. return js_bigint(interpreter.heap(), Crypto::SignedBigInteger::from_base(16, m_value.substring(2, m_value.length() - 3)));
  2502. } else if (m_value[1] == 'o' || m_value[1] == 'O') {
  2503. return js_bigint(interpreter.heap(), Crypto::SignedBigInteger::from_base(8, m_value.substring(2, m_value.length() - 3)));
  2504. } else if (m_value[1] == 'b' || m_value[1] == 'B') {
  2505. return js_bigint(interpreter.heap(), Crypto::SignedBigInteger::from_base(2, m_value.substring(2, m_value.length() - 3)));
  2506. }
  2507. }
  2508. return js_bigint(interpreter.heap(), Crypto::SignedBigInteger::from_base(10, m_value.substring(0, m_value.length() - 1)));
  2509. }
  2510. Value BooleanLiteral::execute(Interpreter& interpreter, GlobalObject&) const
  2511. {
  2512. InterpreterNodeScope node_scope { interpreter, *this };
  2513. return Value(m_value);
  2514. }
  2515. Value NullLiteral::execute(Interpreter& interpreter, GlobalObject&) const
  2516. {
  2517. InterpreterNodeScope node_scope { interpreter, *this };
  2518. return js_null();
  2519. }
  2520. void RegExpLiteral::dump(int indent) const
  2521. {
  2522. print_indent(indent);
  2523. outln("{} (/{}/{})", class_name(), pattern(), flags());
  2524. }
  2525. Value RegExpLiteral::execute(Interpreter& interpreter, GlobalObject& global_object) const
  2526. {
  2527. InterpreterNodeScope node_scope { interpreter, *this };
  2528. Regex<ECMA262> regex(parsed_regex(), parsed_pattern(), parsed_flags());
  2529. return RegExpObject::create(global_object, move(regex), pattern(), flags());
  2530. }
  2531. void ArrayExpression::dump(int indent) const
  2532. {
  2533. ASTNode::dump(indent);
  2534. for (auto& element : m_elements) {
  2535. if (element) {
  2536. element->dump(indent + 1);
  2537. } else {
  2538. print_indent(indent + 1);
  2539. outln("<empty>");
  2540. }
  2541. }
  2542. }
  2543. Value ArrayExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
  2544. {
  2545. InterpreterNodeScope node_scope { interpreter, *this };
  2546. auto* array = MUST(Array::create(global_object, 0));
  2547. array->indexed_properties();
  2548. size_t index = 0;
  2549. for (auto& element : m_elements) {
  2550. auto value = Value();
  2551. if (element) {
  2552. value = element->execute(interpreter, global_object);
  2553. if (interpreter.exception())
  2554. return {};
  2555. if (is<SpreadExpression>(*element)) {
  2556. TRY_OR_DISCARD(get_iterator_values(global_object, value, [&](Value iterator_value) -> Optional<Completion> {
  2557. array->indexed_properties().put(index++, iterator_value, default_attributes);
  2558. return {};
  2559. }));
  2560. continue;
  2561. }
  2562. }
  2563. array->indexed_properties().put(index++, value, default_attributes);
  2564. }
  2565. return array;
  2566. }
  2567. void TemplateLiteral::dump(int indent) const
  2568. {
  2569. ASTNode::dump(indent);
  2570. for (auto& expression : m_expressions)
  2571. expression.dump(indent + 1);
  2572. }
  2573. Value TemplateLiteral::execute(Interpreter& interpreter, GlobalObject& global_object) const
  2574. {
  2575. InterpreterNodeScope node_scope { interpreter, *this };
  2576. StringBuilder string_builder;
  2577. for (auto& expression : m_expressions) {
  2578. auto expr = expression.execute(interpreter, global_object);
  2579. if (interpreter.exception())
  2580. return {};
  2581. auto string = TRY_OR_DISCARD(expr.to_string(global_object));
  2582. string_builder.append(string);
  2583. }
  2584. return js_string(interpreter.heap(), string_builder.build());
  2585. }
  2586. void TaggedTemplateLiteral::dump(int indent) const
  2587. {
  2588. ASTNode::dump(indent);
  2589. print_indent(indent + 1);
  2590. outln("(Tag)");
  2591. m_tag->dump(indent + 2);
  2592. print_indent(indent + 1);
  2593. outln("(Template Literal)");
  2594. m_template_literal->dump(indent + 2);
  2595. }
  2596. Value TaggedTemplateLiteral::execute(Interpreter& interpreter, GlobalObject& global_object) const
  2597. {
  2598. InterpreterNodeScope node_scope { interpreter, *this };
  2599. auto& vm = interpreter.vm();
  2600. auto tag = m_tag->execute(interpreter, global_object);
  2601. if (vm.exception())
  2602. return {};
  2603. if (!tag.is_function()) {
  2604. vm.throw_exception<TypeError>(global_object, ErrorType::NotAFunction, tag.to_string_without_side_effects());
  2605. return {};
  2606. }
  2607. auto& tag_function = tag.as_function();
  2608. auto& expressions = m_template_literal->expressions();
  2609. auto* strings = MUST(Array::create(global_object, 0));
  2610. MarkedValueList arguments(vm.heap());
  2611. arguments.append(strings);
  2612. for (size_t i = 0; i < expressions.size(); ++i) {
  2613. auto value = expressions[i].execute(interpreter, global_object);
  2614. if (vm.exception())
  2615. return {};
  2616. // tag`${foo}` -> "", foo, "" -> tag(["", ""], foo)
  2617. // tag`foo${bar}baz${qux}` -> "foo", bar, "baz", qux, "" -> tag(["foo", "baz", ""], bar, qux)
  2618. if (i % 2 == 0) {
  2619. strings->indexed_properties().append(value);
  2620. } else {
  2621. arguments.append(value);
  2622. }
  2623. }
  2624. auto* raw_strings = MUST(Array::create(global_object, 0));
  2625. for (auto& raw_string : m_template_literal->raw_strings()) {
  2626. auto value = raw_string.execute(interpreter, global_object);
  2627. if (vm.exception())
  2628. return {};
  2629. raw_strings->indexed_properties().append(value);
  2630. }
  2631. strings->define_direct_property(vm.names.raw, raw_strings, 0);
  2632. return TRY_OR_DISCARD(vm.call(tag_function, js_undefined(), move(arguments)));
  2633. }
  2634. void TryStatement::dump(int indent) const
  2635. {
  2636. ASTNode::dump(indent);
  2637. print_indent(indent);
  2638. outln("(Block)");
  2639. block().dump(indent + 1);
  2640. if (handler()) {
  2641. print_indent(indent);
  2642. outln("(Handler)");
  2643. handler()->dump(indent + 1);
  2644. }
  2645. if (finalizer()) {
  2646. print_indent(indent);
  2647. outln("(Finalizer)");
  2648. finalizer()->dump(indent + 1);
  2649. }
  2650. }
  2651. void CatchClause::dump(int indent) const
  2652. {
  2653. print_indent(indent);
  2654. m_parameter.visit(
  2655. [&](FlyString const& parameter) {
  2656. if (parameter.is_null())
  2657. outln("CatchClause");
  2658. else
  2659. outln("CatchClause ({})", parameter);
  2660. },
  2661. [&](NonnullRefPtr<BindingPattern> const& pattern) {
  2662. outln("CatchClause");
  2663. print_indent(indent);
  2664. outln("(Parameter)");
  2665. pattern->dump(indent + 2);
  2666. });
  2667. body().dump(indent + 1);
  2668. }
  2669. void ThrowStatement::dump(int indent) const
  2670. {
  2671. ASTNode::dump(indent);
  2672. argument().dump(indent + 1);
  2673. }
  2674. void TryStatement::add_label(FlyString string)
  2675. {
  2676. m_block->add_label(move(string));
  2677. }
  2678. Value TryStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
  2679. {
  2680. InterpreterNodeScope node_scope { interpreter, *this };
  2681. // FIXME: Use Completions here to be closer to the spec.
  2682. auto result = m_block->execute(interpreter, global_object);
  2683. if (interpreter.vm().unwind_until() == ScopeType::Try)
  2684. interpreter.vm().stop_unwind();
  2685. if (auto* exception = interpreter.exception()) {
  2686. // 14.15.2 Runtime Semantics: CatchClauseEvaluation, https://tc39.es/ecma262/#sec-runtime-semantics-catchclauseevaluation
  2687. if (m_handler) {
  2688. interpreter.vm().clear_exception();
  2689. auto* catch_scope = new_declarative_environment(*interpreter.lexical_environment());
  2690. m_handler->parameter().visit(
  2691. [&](FlyString const& parameter) {
  2692. MUST(catch_scope->create_mutable_binding(global_object, parameter, false));
  2693. },
  2694. [&](NonnullRefPtr<BindingPattern> const& pattern) {
  2695. pattern->for_each_bound_name([&](auto& name) {
  2696. MUST(catch_scope->create_mutable_binding(global_object, name, false));
  2697. });
  2698. });
  2699. TemporaryChange<Environment*> scope_change(interpreter.vm().running_execution_context().lexical_environment, catch_scope);
  2700. m_handler->parameter().visit(
  2701. [&](FlyString const& parameter) {
  2702. (void)catch_scope->initialize_binding(global_object, parameter, exception->value());
  2703. },
  2704. [&](NonnullRefPtr<BindingPattern> const& pattern) {
  2705. (void)interpreter.vm().binding_initialization(pattern, exception->value(), catch_scope, global_object);
  2706. });
  2707. if (!interpreter.exception())
  2708. result = m_handler->body().execute(interpreter, global_object);
  2709. }
  2710. }
  2711. if (m_finalizer) {
  2712. // Keep, if any, and then clear the current exception so we can
  2713. // execute() the finalizer without an exception in our way.
  2714. auto* previous_exception = interpreter.exception();
  2715. interpreter.vm().clear_exception();
  2716. // Remember what scope type we were unwinding to, and temporarily
  2717. // clear it as well (e.g. return from handler).
  2718. auto unwind_until = interpreter.vm().unwind_until();
  2719. interpreter.vm().stop_unwind();
  2720. auto finalizer_result = m_finalizer->execute(interpreter, global_object);
  2721. if (interpreter.vm().should_unwind()) {
  2722. // This was NOT a 'normal' completion (e.g. return from finalizer).
  2723. result = finalizer_result;
  2724. } else {
  2725. // Continue unwinding to whatever we found ourselves unwinding
  2726. // to when the finalizer was entered (e.g. return from handler,
  2727. // which is unaffected by normal completion from finalizer).
  2728. interpreter.vm().unwind(unwind_until);
  2729. // If we previously had an exception and the finalizer didn't
  2730. // throw a new one, restore the old one.
  2731. if (previous_exception && !interpreter.exception())
  2732. interpreter.vm().set_exception(*previous_exception);
  2733. }
  2734. }
  2735. return result.value_or(js_undefined());
  2736. }
  2737. Value CatchClause::execute(Interpreter& interpreter, GlobalObject&) const
  2738. {
  2739. InterpreterNodeScope node_scope { interpreter, *this };
  2740. // NOTE: CatchClause execution is handled by TryStatement.
  2741. VERIFY_NOT_REACHED();
  2742. return {};
  2743. }
  2744. Value ThrowStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
  2745. {
  2746. InterpreterNodeScope node_scope { interpreter, *this };
  2747. auto value = m_argument->execute(interpreter, global_object);
  2748. if (interpreter.vm().exception())
  2749. return {};
  2750. interpreter.vm().throw_exception(global_object, value);
  2751. return {};
  2752. }
  2753. // 14.12.2 Runtime Semantics: CaseBlockEvaluation, https://tc39.es/ecma262/#sec-runtime-semantics-caseblockevaluation
  2754. Value SwitchStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
  2755. {
  2756. // FIXME: This needs a massive refactoring, ideally once we start using continue, break, and return completions.
  2757. // Instead of having an optional test expression, SwitchCase should be split into CaseClause and DefaultClause.
  2758. // https://tc39.es/ecma262/#sec-switch-statement
  2759. InterpreterNodeScope node_scope { interpreter, *this };
  2760. auto discriminant_result = m_discriminant->execute(interpreter, global_object);
  2761. if (interpreter.exception())
  2762. return {};
  2763. // Optimization: Avoid creating a lexical environment if there are no lexical declarations.
  2764. Optional<TemporaryChange<Environment*>> lexical_environment_changer;
  2765. if (has_lexical_declarations()) {
  2766. auto* old_environment = interpreter.lexical_environment();
  2767. auto* block_environment = new_declarative_environment(*old_environment);
  2768. block_declaration_instantiation(global_object, block_environment);
  2769. lexical_environment_changer.emplace(interpreter.vm().running_execution_context().lexical_environment, block_environment);
  2770. }
  2771. Optional<size_t> first_passing_case;
  2772. for (size_t i = 0; i < m_cases.size(); ++i) {
  2773. auto& switch_case = m_cases[i];
  2774. if (switch_case.test()) {
  2775. auto test_result = switch_case.test()->execute(interpreter, global_object);
  2776. if (interpreter.exception())
  2777. return {};
  2778. if (is_strictly_equal(discriminant_result, test_result)) {
  2779. first_passing_case = i;
  2780. break;
  2781. }
  2782. }
  2783. }
  2784. // FIXME: we could optimize and store the location of the default case in a member variable.
  2785. if (!first_passing_case.has_value()) {
  2786. for (size_t i = 0; i < m_cases.size(); ++i) {
  2787. auto& switch_case = m_cases[i];
  2788. if (!switch_case.test()) {
  2789. first_passing_case = i;
  2790. break;
  2791. }
  2792. }
  2793. }
  2794. auto last_value = js_undefined();
  2795. if (!first_passing_case.has_value()) {
  2796. return last_value;
  2797. }
  2798. VERIFY(first_passing_case.value() < m_cases.size());
  2799. for (size_t i = first_passing_case.value(); i < m_cases.size(); ++i) {
  2800. auto& switch_case = m_cases[i];
  2801. for (auto& statement : switch_case.children()) {
  2802. auto value = statement.execute(interpreter, global_object);
  2803. if (!value.is_empty())
  2804. last_value = value;
  2805. if (interpreter.exception())
  2806. return {};
  2807. if (interpreter.vm().should_unwind()) {
  2808. if (interpreter.vm().should_unwind_until(ScopeType::Continuable, m_labels)) {
  2809. // No stop_unwind(), the outer loop will handle that - we just need to break out of the switch/case.
  2810. return last_value;
  2811. } else if (interpreter.vm().should_unwind_until(ScopeType::Breakable, m_labels)) {
  2812. interpreter.vm().stop_unwind();
  2813. return last_value;
  2814. } else {
  2815. return last_value;
  2816. }
  2817. }
  2818. }
  2819. }
  2820. return last_value;
  2821. }
  2822. Value SwitchCase::execute(Interpreter& interpreter, GlobalObject&) const
  2823. {
  2824. InterpreterNodeScope node_scope { interpreter, *this };
  2825. // NOTE: SwitchCase execution is handled by SwitchStatement.
  2826. VERIFY_NOT_REACHED();
  2827. return {};
  2828. }
  2829. Value BreakStatement::execute(Interpreter& interpreter, GlobalObject&) const
  2830. {
  2831. InterpreterNodeScope node_scope { interpreter, *this };
  2832. interpreter.vm().unwind(ScopeType::Breakable, m_target_label);
  2833. return {};
  2834. }
  2835. Value ContinueStatement::execute(Interpreter& interpreter, GlobalObject&) const
  2836. {
  2837. InterpreterNodeScope node_scope { interpreter, *this };
  2838. interpreter.vm().unwind(ScopeType::Continuable, m_target_label);
  2839. return {};
  2840. }
  2841. void SwitchStatement::dump(int indent) const
  2842. {
  2843. ASTNode::dump(indent);
  2844. m_discriminant->dump(indent + 1);
  2845. for (auto& switch_case : m_cases) {
  2846. switch_case.dump(indent + 1);
  2847. }
  2848. }
  2849. void SwitchCase::dump(int indent) const
  2850. {
  2851. print_indent(indent + 1);
  2852. if (m_test) {
  2853. outln("(Test)");
  2854. m_test->dump(indent + 2);
  2855. } else {
  2856. outln("(Default)");
  2857. }
  2858. print_indent(indent + 1);
  2859. outln("(Consequent)");
  2860. ScopeNode::dump(indent + 2);
  2861. }
  2862. Value ConditionalExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
  2863. {
  2864. InterpreterNodeScope node_scope { interpreter, *this };
  2865. auto test_result = m_test->execute(interpreter, global_object);
  2866. if (interpreter.exception())
  2867. return {};
  2868. Value result;
  2869. if (test_result.to_boolean()) {
  2870. result = m_consequent->execute(interpreter, global_object);
  2871. } else {
  2872. result = m_alternate->execute(interpreter, global_object);
  2873. }
  2874. if (interpreter.exception())
  2875. return {};
  2876. return result;
  2877. }
  2878. void ConditionalExpression::dump(int indent) const
  2879. {
  2880. ASTNode::dump(indent);
  2881. print_indent(indent + 1);
  2882. outln("(Test)");
  2883. m_test->dump(indent + 2);
  2884. print_indent(indent + 1);
  2885. outln("(Consequent)");
  2886. m_consequent->dump(indent + 2);
  2887. print_indent(indent + 1);
  2888. outln("(Alternate)");
  2889. m_alternate->dump(indent + 2);
  2890. }
  2891. void SequenceExpression::dump(int indent) const
  2892. {
  2893. ASTNode::dump(indent);
  2894. for (auto& expression : m_expressions)
  2895. expression.dump(indent + 1);
  2896. }
  2897. Value SequenceExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
  2898. {
  2899. InterpreterNodeScope node_scope { interpreter, *this };
  2900. Value last_value;
  2901. for (auto& expression : m_expressions) {
  2902. last_value = expression.execute(interpreter, global_object);
  2903. if (interpreter.exception())
  2904. return {};
  2905. }
  2906. return last_value;
  2907. }
  2908. Value DebuggerStatement::execute(Interpreter& interpreter, GlobalObject&) const
  2909. {
  2910. InterpreterNodeScope node_scope { interpreter, *this };
  2911. // Sorry, no JavaScript debugger available (yet)!
  2912. return {};
  2913. }
  2914. void ScopeNode::for_each_lexically_scoped_declaration(IteratorOrVoidFunction<Declaration const&>&& callback) const
  2915. {
  2916. for (auto& declaration : m_lexical_declarations) {
  2917. if (callback(declaration) == IterationDecision::Break)
  2918. break;
  2919. }
  2920. }
  2921. void ScopeNode::for_each_lexically_declared_name(IteratorOrVoidFunction<FlyString const&>&& callback) const
  2922. {
  2923. auto running = true;
  2924. for (auto& declaration : m_lexical_declarations) {
  2925. declaration.for_each_bound_name([&](auto const& name) {
  2926. if (callback(name) == IterationDecision::Break) {
  2927. running = false;
  2928. return IterationDecision::Break;
  2929. }
  2930. return IterationDecision::Continue;
  2931. });
  2932. if (!running)
  2933. break;
  2934. }
  2935. }
  2936. void ScopeNode::for_each_var_declared_name(IteratorOrVoidFunction<FlyString const&>&& callback) const
  2937. {
  2938. auto running = true;
  2939. for (auto& declaration : m_var_declarations) {
  2940. declaration.for_each_bound_name([&](auto const& name) {
  2941. if (callback(name) == IterationDecision::Break) {
  2942. running = false;
  2943. return IterationDecision::Break;
  2944. }
  2945. return IterationDecision::Continue;
  2946. });
  2947. if (!running)
  2948. break;
  2949. }
  2950. }
  2951. void ScopeNode::for_each_var_function_declaration_in_reverse_order(IteratorOrVoidFunction<FunctionDeclaration const&>&& callback) const
  2952. {
  2953. for (ssize_t i = m_var_declarations.size() - 1; i >= 0; i--) {
  2954. auto& declaration = m_var_declarations[i];
  2955. if (is<FunctionDeclaration>(declaration)) {
  2956. if (callback(static_cast<FunctionDeclaration const&>(declaration)) == IterationDecision::Break)
  2957. break;
  2958. }
  2959. }
  2960. }
  2961. void ScopeNode::for_each_var_scoped_variable_declaration(IteratorOrVoidFunction<VariableDeclaration const&>&& callback) const
  2962. {
  2963. for (auto& declaration : m_var_declarations) {
  2964. if (!is<FunctionDeclaration>(declaration)) {
  2965. VERIFY(is<VariableDeclaration>(declaration));
  2966. if (callback(static_cast<VariableDeclaration const&>(declaration)) == IterationDecision::Break)
  2967. break;
  2968. }
  2969. }
  2970. }
  2971. void ScopeNode::for_each_function_hoistable_with_annexB_extension(IteratorOrVoidFunction<FunctionDeclaration&>&& callback) const
  2972. {
  2973. for (auto& function : m_functions_hoistable_with_annexB_extension) {
  2974. // We need const_cast here since it might have to set a property on function declaration.
  2975. if (callback(const_cast<FunctionDeclaration&>(function)) == IterationDecision::Break)
  2976. break;
  2977. }
  2978. }
  2979. void ScopeNode::add_lexical_declaration(NonnullRefPtr<Declaration> declaration)
  2980. {
  2981. m_lexical_declarations.append(move(declaration));
  2982. }
  2983. void ScopeNode::add_var_scoped_declaration(NonnullRefPtr<Declaration> declaration)
  2984. {
  2985. m_var_declarations.append(move(declaration));
  2986. }
  2987. void ScopeNode::add_hoisted_function(NonnullRefPtr<FunctionDeclaration> declaration)
  2988. {
  2989. m_functions_hoistable_with_annexB_extension.append(move(declaration));
  2990. }
  2991. Value ImportStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
  2992. {
  2993. InterpreterNodeScope node_scope { interpreter, *this };
  2994. dbgln("Modules are not fully supported yet!");
  2995. interpreter.vm().throw_exception<InternalError>(global_object, ErrorType::NotImplemented, "'import' in modules");
  2996. return {};
  2997. }
  2998. Value ExportStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
  2999. {
  3000. InterpreterNodeScope node_scope { interpreter, *this };
  3001. if (m_statement)
  3002. return m_statement->execute(interpreter, global_object);
  3003. return {};
  3004. }
  3005. static void dump_assert_clauses(ModuleRequest const& request)
  3006. {
  3007. if (!request.assertions.is_empty()) {
  3008. out("[ ");
  3009. for (auto& assertion : request.assertions)
  3010. out("{}: {}, ", assertion.key, assertion.value);
  3011. out(" ]");
  3012. }
  3013. }
  3014. void ExportStatement::dump(int indent) const
  3015. {
  3016. ASTNode::dump(indent);
  3017. print_indent(indent + 1);
  3018. outln("(ExportEntries)");
  3019. auto string_or_null = [](String const& string) -> String {
  3020. if (string.is_empty()) {
  3021. return "null";
  3022. }
  3023. return String::formatted("\"{}\"", string);
  3024. };
  3025. for (auto& entry : m_entries) {
  3026. print_indent(indent + 2);
  3027. out("ModuleRequest: {}", entry.module_request.module_specifier);
  3028. dump_assert_clauses(entry.module_request);
  3029. outln(", ImportName: {}, LocalName: {}, ExportName: {}",
  3030. entry.kind == ExportEntry::Kind::ModuleRequest ? string_or_null(entry.local_or_import_name) : "null",
  3031. entry.kind != ExportEntry::Kind::ModuleRequest ? string_or_null(entry.local_or_import_name) : "null",
  3032. string_or_null(entry.export_name));
  3033. }
  3034. }
  3035. void ImportStatement::dump(int indent) const
  3036. {
  3037. ASTNode::dump(indent);
  3038. print_indent(indent + 1);
  3039. if (m_entries.is_empty()) {
  3040. // direct from "module" import
  3041. outln("Entire module '{}'", m_module_request.module_specifier);
  3042. dump_assert_clauses(m_module_request);
  3043. } else {
  3044. outln("(ExportEntries) from {}", m_module_request.module_specifier);
  3045. dump_assert_clauses(m_module_request);
  3046. for (auto& entry : m_entries) {
  3047. print_indent(indent + 2);
  3048. outln("ImportName: {}, LocalName: {}", entry.import_name, entry.local_name);
  3049. }
  3050. }
  3051. }
  3052. bool ExportStatement::has_export(StringView export_name) const
  3053. {
  3054. return any_of(m_entries.begin(), m_entries.end(), [&](auto& entry) {
  3055. return entry.export_name == export_name;
  3056. });
  3057. }
  3058. bool ImportStatement::has_bound_name(StringView name) const
  3059. {
  3060. return any_of(m_entries.begin(), m_entries.end(), [&](auto& entry) {
  3061. return entry.local_name == name;
  3062. });
  3063. }
  3064. // 14.2.3 BlockDeclarationInstantiation ( code, env ), https://tc39.es/ecma262/#sec-blockdeclarationinstantiation
  3065. void ScopeNode::block_declaration_instantiation(GlobalObject& global_object, Environment* environment) const
  3066. {
  3067. // See also B.3.2.6 Changes to BlockDeclarationInstantiation, https://tc39.es/ecma262/#sec-web-compat-blockdeclarationinstantiation
  3068. VERIFY(environment);
  3069. auto* private_environment = global_object.vm().running_execution_context().private_environment;
  3070. for_each_lexically_scoped_declaration([&](Declaration const& declaration) {
  3071. auto is_constant_declaration = declaration.is_constant_declaration();
  3072. declaration.for_each_bound_name([&](auto const& name) {
  3073. if (is_constant_declaration) {
  3074. MUST(environment->create_immutable_binding(global_object, name, true));
  3075. } else {
  3076. if (!MUST(environment->has_binding(name)))
  3077. MUST(environment->create_mutable_binding(global_object, name, false));
  3078. }
  3079. });
  3080. if (is<FunctionDeclaration>(declaration)) {
  3081. auto& function_declaration = static_cast<FunctionDeclaration const&>(declaration);
  3082. auto* function = ECMAScriptFunctionObject::create(global_object, function_declaration.name(), function_declaration.body(), function_declaration.parameters(), function_declaration.function_length(), environment, private_environment, function_declaration.kind(), function_declaration.is_strict_mode(), function_declaration.might_need_arguments_object(), function_declaration.contains_direct_call_to_eval());
  3083. VERIFY(is<DeclarativeEnvironment>(*environment));
  3084. static_cast<DeclarativeEnvironment&>(*environment).initialize_or_set_mutable_binding({}, global_object, function_declaration.name(), function);
  3085. }
  3086. });
  3087. }
  3088. // 16.1.7 GlobalDeclarationInstantiation ( script, env ), https://tc39.es/ecma262/#sec-globaldeclarationinstantiation
  3089. ThrowCompletionOr<void> Program::global_declaration_instantiation(Interpreter& interpreter, GlobalObject& global_object, GlobalEnvironment& global_environment) const
  3090. {
  3091. for_each_lexically_declared_name([&](FlyString const& name) {
  3092. if (global_environment.has_var_declaration(name) || global_environment.has_lexical_declaration(name)) {
  3093. interpreter.vm().throw_exception<SyntaxError>(global_object, ErrorType::TopLevelVariableAlreadyDeclared, name);
  3094. return IterationDecision::Break;
  3095. }
  3096. auto restricted_global = global_environment.has_restricted_global_property(name);
  3097. if (interpreter.exception())
  3098. return IterationDecision::Break;
  3099. if (restricted_global)
  3100. interpreter.vm().throw_exception<SyntaxError>(global_object, ErrorType::RestrictedGlobalProperty, name);
  3101. return IterationDecision::Continue;
  3102. });
  3103. if (auto* exception = interpreter.exception())
  3104. return throw_completion(exception->value());
  3105. for_each_var_declared_name([&](auto const& name) {
  3106. if (global_environment.has_lexical_declaration(name)) {
  3107. interpreter.vm().throw_exception<SyntaxError>(global_object, ErrorType::TopLevelVariableAlreadyDeclared, name);
  3108. return IterationDecision::Break;
  3109. }
  3110. return IterationDecision::Continue;
  3111. });
  3112. if (auto* exception = interpreter.exception())
  3113. return throw_completion(exception->value());
  3114. HashTable<FlyString> declared_function_names;
  3115. Vector<FunctionDeclaration const&> functions_to_initialize;
  3116. for_each_var_function_declaration_in_reverse_order([&](FunctionDeclaration const& function) {
  3117. if (declared_function_names.set(function.name()) != AK::HashSetResult::InsertedNewEntry)
  3118. return IterationDecision::Continue;
  3119. auto function_definable = global_environment.can_declare_global_function(function.name());
  3120. if (interpreter.exception())
  3121. return IterationDecision::Break;
  3122. if (!function_definable) {
  3123. interpreter.vm().throw_exception<TypeError>(global_object, ErrorType::CannotDeclareGlobalFunction, function.name());
  3124. return IterationDecision::Break;
  3125. }
  3126. functions_to_initialize.append(function);
  3127. return IterationDecision::Continue;
  3128. });
  3129. if (auto* exception = interpreter.exception())
  3130. return throw_completion(exception->value());
  3131. HashTable<FlyString> declared_var_names;
  3132. for_each_var_scoped_variable_declaration([&](Declaration const& declaration) {
  3133. declaration.for_each_bound_name([&](auto const& name) {
  3134. if (declared_function_names.contains(name))
  3135. return IterationDecision::Continue;
  3136. auto var_definable = global_environment.can_declare_global_var(name);
  3137. if (interpreter.exception())
  3138. return IterationDecision::Break;
  3139. if (!var_definable) {
  3140. interpreter.vm().throw_exception<TypeError>(global_object, ErrorType::CannotDeclareGlobalVariable, name);
  3141. return IterationDecision::Break;
  3142. }
  3143. declared_var_names.set(name);
  3144. return IterationDecision::Continue;
  3145. });
  3146. if (interpreter.exception())
  3147. return IterationDecision::Break;
  3148. return IterationDecision::Continue;
  3149. });
  3150. if (auto* exception = interpreter.exception())
  3151. return throw_completion(exception->value());
  3152. if (!m_is_strict_mode) {
  3153. for_each_function_hoistable_with_annexB_extension([&](FunctionDeclaration& function_declaration) {
  3154. auto& function_name = function_declaration.name();
  3155. if (global_environment.has_lexical_declaration(function_name))
  3156. return IterationDecision::Continue;
  3157. auto function_definable = global_environment.can_declare_global_function(function_name);
  3158. if (interpreter.exception())
  3159. return IterationDecision::Break;
  3160. if (!function_definable) {
  3161. interpreter.vm().throw_exception<TypeError>(global_object, ErrorType::CannotDeclareGlobalFunction, function_name);
  3162. return IterationDecision::Break;
  3163. }
  3164. if (!declared_function_names.contains(function_name) && !declared_var_names.contains(function_name)) {
  3165. global_environment.create_global_var_binding(function_name, false);
  3166. if (interpreter.exception())
  3167. return IterationDecision::Break;
  3168. declared_function_names.set(function_name);
  3169. }
  3170. function_declaration.set_should_do_additional_annexB_steps();
  3171. return IterationDecision::Continue;
  3172. });
  3173. if (auto* exception = interpreter.exception())
  3174. return throw_completion(exception->value());
  3175. // We should not use declared function names below here anymore since these functions are not in there in the spec.
  3176. declared_function_names.clear();
  3177. }
  3178. PrivateEnvironment* private_environment = nullptr;
  3179. for_each_lexically_scoped_declaration([&](Declaration const& declaration) {
  3180. declaration.for_each_bound_name([&](auto const& name) {
  3181. if (declaration.is_constant_declaration())
  3182. (void)global_environment.create_immutable_binding(global_object, name, true);
  3183. else
  3184. (void)global_environment.create_mutable_binding(global_object, name, false);
  3185. if (interpreter.exception())
  3186. return IterationDecision::Break;
  3187. return IterationDecision::Continue;
  3188. });
  3189. if (interpreter.exception())
  3190. return IterationDecision::Break;
  3191. return IterationDecision::Continue;
  3192. });
  3193. for (auto& declaration : functions_to_initialize) {
  3194. auto* function = ECMAScriptFunctionObject::create(global_object, declaration.name(), declaration.body(), declaration.parameters(), declaration.function_length(), &global_environment, private_environment, declaration.kind(), declaration.is_strict_mode(), declaration.might_need_arguments_object(), declaration.contains_direct_call_to_eval());
  3195. global_environment.create_global_function_binding(declaration.name(), function, false);
  3196. if (auto* exception = interpreter.exception())
  3197. return throw_completion(exception->value());
  3198. }
  3199. for (auto& var_name : declared_var_names) {
  3200. global_environment.create_global_var_binding(var_name, false);
  3201. if (auto* exception = interpreter.exception())
  3202. return throw_completion(exception->value());
  3203. }
  3204. return {};
  3205. }
  3206. }