gdscript_parser.cpp 170 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037
  1. /**************************************************************************/
  2. /* gdscript_parser.cpp */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #include "gdscript_parser.h"
  31. #include "core/config/project_settings.h"
  32. #include "core/io/file_access.h"
  33. #include "core/io/resource_loader.h"
  34. #include "core/math/math_defs.h"
  35. #include "gdscript.h"
  36. #include "scene/main/multiplayer_api.h"
  37. #ifdef DEBUG_ENABLED
  38. #include "core/os/os.h"
  39. #include "core/string/string_builder.h"
  40. #include "gdscript_warning.h"
  41. #endif // DEBUG_ENABLED
  42. #ifdef TOOLS_ENABLED
  43. #include "editor/editor_settings.h"
  44. #endif // TOOLS_ENABLED
  45. static HashMap<StringName, Variant::Type> builtin_types;
  46. Variant::Type GDScriptParser::get_builtin_type(const StringName &p_type) {
  47. if (builtin_types.is_empty()) {
  48. builtin_types["bool"] = Variant::BOOL;
  49. builtin_types["int"] = Variant::INT;
  50. builtin_types["float"] = Variant::FLOAT;
  51. builtin_types["String"] = Variant::STRING;
  52. builtin_types["Vector2"] = Variant::VECTOR2;
  53. builtin_types["Vector2i"] = Variant::VECTOR2I;
  54. builtin_types["Rect2"] = Variant::RECT2;
  55. builtin_types["Rect2i"] = Variant::RECT2I;
  56. builtin_types["Transform2D"] = Variant::TRANSFORM2D;
  57. builtin_types["Vector3"] = Variant::VECTOR3;
  58. builtin_types["Vector3i"] = Variant::VECTOR3I;
  59. builtin_types["Vector4"] = Variant::VECTOR4;
  60. builtin_types["Vector4i"] = Variant::VECTOR4I;
  61. builtin_types["AABB"] = Variant::AABB;
  62. builtin_types["Plane"] = Variant::PLANE;
  63. builtin_types["Quaternion"] = Variant::QUATERNION;
  64. builtin_types["Basis"] = Variant::BASIS;
  65. builtin_types["Transform3D"] = Variant::TRANSFORM3D;
  66. builtin_types["Projection"] = Variant::PROJECTION;
  67. builtin_types["Color"] = Variant::COLOR;
  68. builtin_types["RID"] = Variant::RID;
  69. builtin_types["Object"] = Variant::OBJECT;
  70. builtin_types["StringName"] = Variant::STRING_NAME;
  71. builtin_types["NodePath"] = Variant::NODE_PATH;
  72. builtin_types["Dictionary"] = Variant::DICTIONARY;
  73. builtin_types["Callable"] = Variant::CALLABLE;
  74. builtin_types["Signal"] = Variant::SIGNAL;
  75. builtin_types["Array"] = Variant::ARRAY;
  76. builtin_types["PackedByteArray"] = Variant::PACKED_BYTE_ARRAY;
  77. builtin_types["PackedInt32Array"] = Variant::PACKED_INT32_ARRAY;
  78. builtin_types["PackedInt64Array"] = Variant::PACKED_INT64_ARRAY;
  79. builtin_types["PackedFloat32Array"] = Variant::PACKED_FLOAT32_ARRAY;
  80. builtin_types["PackedFloat64Array"] = Variant::PACKED_FLOAT64_ARRAY;
  81. builtin_types["PackedStringArray"] = Variant::PACKED_STRING_ARRAY;
  82. builtin_types["PackedVector2Array"] = Variant::PACKED_VECTOR2_ARRAY;
  83. builtin_types["PackedVector3Array"] = Variant::PACKED_VECTOR3_ARRAY;
  84. builtin_types["PackedColorArray"] = Variant::PACKED_COLOR_ARRAY;
  85. // NIL is not here, hence the -1.
  86. if (builtin_types.size() != Variant::VARIANT_MAX - 1) {
  87. ERR_PRINT("Outdated parser: amount of built-in types don't match the amount of types in Variant.");
  88. }
  89. }
  90. if (builtin_types.has(p_type)) {
  91. return builtin_types[p_type];
  92. }
  93. return Variant::VARIANT_MAX;
  94. }
  95. void GDScriptParser::cleanup() {
  96. builtin_types.clear();
  97. }
  98. void GDScriptParser::get_annotation_list(List<MethodInfo> *r_annotations) const {
  99. for (const KeyValue<StringName, AnnotationInfo> &E : valid_annotations) {
  100. r_annotations->push_back(E.value.info);
  101. }
  102. }
  103. bool GDScriptParser::annotation_exists(const String &p_annotation_name) const {
  104. return valid_annotations.has(p_annotation_name);
  105. }
  106. GDScriptParser::GDScriptParser() {
  107. // Register valid annotations.
  108. // TODO: Should this be static?
  109. register_annotation(MethodInfo("@tool"), AnnotationInfo::SCRIPT, &GDScriptParser::tool_annotation);
  110. register_annotation(MethodInfo("@icon", PropertyInfo(Variant::STRING, "icon_path")), AnnotationInfo::SCRIPT, &GDScriptParser::icon_annotation);
  111. register_annotation(MethodInfo("@onready"), AnnotationInfo::VARIABLE, &GDScriptParser::onready_annotation);
  112. // Export annotations.
  113. register_annotation(MethodInfo("@export"), AnnotationInfo::VARIABLE, &GDScriptParser::export_annotations<PROPERTY_HINT_NONE, Variant::NIL>);
  114. register_annotation(MethodInfo("@export_enum", PropertyInfo(Variant::STRING, "names")), AnnotationInfo::VARIABLE, &GDScriptParser::export_annotations<PROPERTY_HINT_ENUM, Variant::INT>, varray(), true);
  115. register_annotation(MethodInfo("@export_file", PropertyInfo(Variant::STRING, "filter")), AnnotationInfo::VARIABLE, &GDScriptParser::export_annotations<PROPERTY_HINT_FILE, Variant::STRING>, varray(""), true);
  116. register_annotation(MethodInfo("@export_dir"), AnnotationInfo::VARIABLE, &GDScriptParser::export_annotations<PROPERTY_HINT_DIR, Variant::STRING>);
  117. register_annotation(MethodInfo("@export_global_file", PropertyInfo(Variant::STRING, "filter")), AnnotationInfo::VARIABLE, &GDScriptParser::export_annotations<PROPERTY_HINT_GLOBAL_FILE, Variant::STRING>, varray(""), true);
  118. register_annotation(MethodInfo("@export_global_dir"), AnnotationInfo::VARIABLE, &GDScriptParser::export_annotations<PROPERTY_HINT_GLOBAL_DIR, Variant::STRING>);
  119. register_annotation(MethodInfo("@export_multiline"), AnnotationInfo::VARIABLE, &GDScriptParser::export_annotations<PROPERTY_HINT_MULTILINE_TEXT, Variant::STRING>);
  120. register_annotation(MethodInfo("@export_placeholder", PropertyInfo(Variant::STRING, "placeholder")), AnnotationInfo::VARIABLE, &GDScriptParser::export_annotations<PROPERTY_HINT_PLACEHOLDER_TEXT, Variant::STRING>);
  121. register_annotation(MethodInfo("@export_range", PropertyInfo(Variant::FLOAT, "min"), PropertyInfo(Variant::FLOAT, "max"), PropertyInfo(Variant::FLOAT, "step"), PropertyInfo(Variant::STRING, "extra_hints")), AnnotationInfo::VARIABLE, &GDScriptParser::export_annotations<PROPERTY_HINT_RANGE, Variant::FLOAT>, varray(1.0, ""), true);
  122. register_annotation(MethodInfo("@export_exp_easing", PropertyInfo(Variant::STRING, "hints")), AnnotationInfo::VARIABLE, &GDScriptParser::export_annotations<PROPERTY_HINT_EXP_EASING, Variant::FLOAT>, varray(""), true);
  123. register_annotation(MethodInfo("@export_color_no_alpha"), AnnotationInfo::VARIABLE, &GDScriptParser::export_annotations<PROPERTY_HINT_COLOR_NO_ALPHA, Variant::COLOR>);
  124. register_annotation(MethodInfo("@export_node_path", PropertyInfo(Variant::STRING, "type")), AnnotationInfo::VARIABLE, &GDScriptParser::export_annotations<PROPERTY_HINT_NODE_PATH_VALID_TYPES, Variant::NODE_PATH>, varray(""), true);
  125. register_annotation(MethodInfo("@export_flags", PropertyInfo(Variant::STRING, "names")), AnnotationInfo::VARIABLE, &GDScriptParser::export_annotations<PROPERTY_HINT_FLAGS, Variant::INT>, varray(), true);
  126. register_annotation(MethodInfo("@export_flags_2d_render"), AnnotationInfo::VARIABLE, &GDScriptParser::export_annotations<PROPERTY_HINT_LAYERS_2D_RENDER, Variant::INT>);
  127. register_annotation(MethodInfo("@export_flags_2d_physics"), AnnotationInfo::VARIABLE, &GDScriptParser::export_annotations<PROPERTY_HINT_LAYERS_2D_PHYSICS, Variant::INT>);
  128. register_annotation(MethodInfo("@export_flags_2d_navigation"), AnnotationInfo::VARIABLE, &GDScriptParser::export_annotations<PROPERTY_HINT_LAYERS_2D_NAVIGATION, Variant::INT>);
  129. register_annotation(MethodInfo("@export_flags_3d_render"), AnnotationInfo::VARIABLE, &GDScriptParser::export_annotations<PROPERTY_HINT_LAYERS_3D_RENDER, Variant::INT>);
  130. register_annotation(MethodInfo("@export_flags_3d_physics"), AnnotationInfo::VARIABLE, &GDScriptParser::export_annotations<PROPERTY_HINT_LAYERS_3D_PHYSICS, Variant::INT>);
  131. register_annotation(MethodInfo("@export_flags_3d_navigation"), AnnotationInfo::VARIABLE, &GDScriptParser::export_annotations<PROPERTY_HINT_LAYERS_3D_NAVIGATION, Variant::INT>);
  132. // Export grouping annotations.
  133. register_annotation(MethodInfo("@export_category", PropertyInfo(Variant::STRING, "name")), AnnotationInfo::STANDALONE, &GDScriptParser::export_group_annotations<PROPERTY_USAGE_CATEGORY>);
  134. register_annotation(MethodInfo("@export_group", PropertyInfo(Variant::STRING, "name"), PropertyInfo(Variant::STRING, "prefix")), AnnotationInfo::STANDALONE, &GDScriptParser::export_group_annotations<PROPERTY_USAGE_GROUP>, varray(""));
  135. register_annotation(MethodInfo("@export_subgroup", PropertyInfo(Variant::STRING, "name"), PropertyInfo(Variant::STRING, "prefix")), AnnotationInfo::STANDALONE, &GDScriptParser::export_group_annotations<PROPERTY_USAGE_SUBGROUP>, varray(""));
  136. // Warning annotations.
  137. register_annotation(MethodInfo("@warning_ignore", PropertyInfo(Variant::STRING, "warning")), AnnotationInfo::CLASS | AnnotationInfo::VARIABLE | AnnotationInfo::SIGNAL | AnnotationInfo::CONSTANT | AnnotationInfo::FUNCTION | AnnotationInfo::STATEMENT, &GDScriptParser::warning_annotations, varray(), true);
  138. // Networking.
  139. register_annotation(MethodInfo("@rpc", PropertyInfo(Variant::STRING, "mode"), PropertyInfo(Variant::STRING, "sync"), PropertyInfo(Variant::STRING, "transfer_mode"), PropertyInfo(Variant::INT, "transfer_channel")), AnnotationInfo::FUNCTION, &GDScriptParser::rpc_annotation, varray("", "", "", 0), true);
  140. #ifdef DEBUG_ENABLED
  141. is_ignoring_warnings = !(bool)GLOBAL_GET("debug/gdscript/warnings/enable");
  142. #endif
  143. }
  144. GDScriptParser::~GDScriptParser() {
  145. clear();
  146. }
  147. void GDScriptParser::clear() {
  148. while (list != nullptr) {
  149. Node *element = list;
  150. list = list->next;
  151. memdelete(element);
  152. }
  153. head = nullptr;
  154. list = nullptr;
  155. _is_tool = false;
  156. for_completion = false;
  157. errors.clear();
  158. multiline_stack.clear();
  159. nodes_in_progress.clear();
  160. }
  161. void GDScriptParser::push_error(const String &p_message, const Node *p_origin) {
  162. // TODO: Improve error reporting by pointing at source code.
  163. // TODO: Errors might point at more than one place at once (e.g. show previous declaration).
  164. panic_mode = true;
  165. // TODO: Improve positional information.
  166. if (p_origin == nullptr) {
  167. errors.push_back({ p_message, current.start_line, current.start_column });
  168. } else {
  169. errors.push_back({ p_message, p_origin->start_line, p_origin->leftmost_column });
  170. }
  171. }
  172. #ifdef DEBUG_ENABLED
  173. void GDScriptParser::push_warning(const Node *p_source, GDScriptWarning::Code p_code, const String &p_symbol1, const String &p_symbol2, const String &p_symbol3, const String &p_symbol4) {
  174. ERR_FAIL_COND(p_source == nullptr);
  175. Vector<String> symbols;
  176. if (!p_symbol1.is_empty()) {
  177. symbols.push_back(p_symbol1);
  178. }
  179. if (!p_symbol2.is_empty()) {
  180. symbols.push_back(p_symbol2);
  181. }
  182. if (!p_symbol3.is_empty()) {
  183. symbols.push_back(p_symbol3);
  184. }
  185. if (!p_symbol4.is_empty()) {
  186. symbols.push_back(p_symbol4);
  187. }
  188. push_warning(p_source, p_code, symbols);
  189. }
  190. void GDScriptParser::push_warning(const Node *p_source, GDScriptWarning::Code p_code, const Vector<String> &p_symbols) {
  191. ERR_FAIL_COND(p_source == nullptr);
  192. if (is_ignoring_warnings) {
  193. return;
  194. }
  195. if (GLOBAL_GET("debug/gdscript/warnings/exclude_addons").booleanize() && script_path.begins_with("res://addons/")) {
  196. return;
  197. }
  198. if (ignored_warning_codes.has(p_code)) {
  199. return;
  200. }
  201. String warn_name = GDScriptWarning::get_name_from_code((GDScriptWarning::Code)p_code).to_lower();
  202. if (ignored_warnings.has(warn_name)) {
  203. return;
  204. }
  205. int warn_level = (int)GLOBAL_GET(GDScriptWarning::get_settings_path_from_code(p_code));
  206. if (!warn_level) {
  207. return;
  208. }
  209. GDScriptWarning warning;
  210. warning.code = p_code;
  211. warning.symbols = p_symbols;
  212. warning.start_line = p_source->start_line;
  213. warning.end_line = p_source->end_line;
  214. warning.leftmost_column = p_source->leftmost_column;
  215. warning.rightmost_column = p_source->rightmost_column;
  216. if (warn_level == GDScriptWarning::WarnLevel::ERROR || bool(GLOBAL_GET("debug/gdscript/warnings/treat_warnings_as_errors"))) {
  217. push_error(warning.get_message(), p_source);
  218. return;
  219. }
  220. List<GDScriptWarning>::Element *before = nullptr;
  221. for (List<GDScriptWarning>::Element *E = warnings.front(); E; E = E->next()) {
  222. if (E->get().start_line > warning.start_line) {
  223. break;
  224. }
  225. before = E;
  226. }
  227. if (before) {
  228. warnings.insert_after(before, warning);
  229. } else {
  230. warnings.push_front(warning);
  231. }
  232. }
  233. #endif
  234. void GDScriptParser::make_completion_context(CompletionType p_type, Node *p_node, int p_argument, bool p_force) {
  235. if (!for_completion || (!p_force && completion_context.type != COMPLETION_NONE)) {
  236. return;
  237. }
  238. if (previous.cursor_place != GDScriptTokenizer::CURSOR_MIDDLE && previous.cursor_place != GDScriptTokenizer::CURSOR_END && current.cursor_place == GDScriptTokenizer::CURSOR_NONE) {
  239. return;
  240. }
  241. CompletionContext context;
  242. context.type = p_type;
  243. context.current_class = current_class;
  244. context.current_function = current_function;
  245. context.current_suite = current_suite;
  246. context.current_line = tokenizer.get_cursor_line();
  247. context.current_argument = p_argument;
  248. context.node = p_node;
  249. completion_context = context;
  250. }
  251. void GDScriptParser::make_completion_context(CompletionType p_type, Variant::Type p_builtin_type, bool p_force) {
  252. if (!for_completion || (!p_force && completion_context.type != COMPLETION_NONE)) {
  253. return;
  254. }
  255. if (previous.cursor_place != GDScriptTokenizer::CURSOR_MIDDLE && previous.cursor_place != GDScriptTokenizer::CURSOR_END && current.cursor_place == GDScriptTokenizer::CURSOR_NONE) {
  256. return;
  257. }
  258. CompletionContext context;
  259. context.type = p_type;
  260. context.current_class = current_class;
  261. context.current_function = current_function;
  262. context.current_suite = current_suite;
  263. context.current_line = tokenizer.get_cursor_line();
  264. context.builtin_type = p_builtin_type;
  265. completion_context = context;
  266. }
  267. void GDScriptParser::push_completion_call(Node *p_call) {
  268. if (!for_completion) {
  269. return;
  270. }
  271. CompletionCall call;
  272. call.call = p_call;
  273. call.argument = 0;
  274. completion_call_stack.push_back(call);
  275. if (previous.cursor_place == GDScriptTokenizer::CURSOR_MIDDLE || previous.cursor_place == GDScriptTokenizer::CURSOR_END || current.cursor_place == GDScriptTokenizer::CURSOR_BEGINNING) {
  276. completion_call = call;
  277. }
  278. }
  279. void GDScriptParser::pop_completion_call() {
  280. if (!for_completion) {
  281. return;
  282. }
  283. ERR_FAIL_COND_MSG(completion_call_stack.is_empty(), "Trying to pop empty completion call stack");
  284. completion_call_stack.pop_back();
  285. }
  286. void GDScriptParser::set_last_completion_call_arg(int p_argument) {
  287. if (!for_completion || passed_cursor) {
  288. return;
  289. }
  290. ERR_FAIL_COND_MSG(completion_call_stack.is_empty(), "Trying to set argument on empty completion call stack");
  291. completion_call_stack.back()->get().argument = p_argument;
  292. }
  293. Error GDScriptParser::parse(const String &p_source_code, const String &p_script_path, bool p_for_completion) {
  294. clear();
  295. String source = p_source_code;
  296. int cursor_line = -1;
  297. int cursor_column = -1;
  298. for_completion = p_for_completion;
  299. int tab_size = 4;
  300. #ifdef TOOLS_ENABLED
  301. if (EditorSettings::get_singleton()) {
  302. tab_size = EditorSettings::get_singleton()->get_setting("text_editor/behavior/indent/size");
  303. }
  304. #endif // TOOLS_ENABLED
  305. if (p_for_completion) {
  306. // Remove cursor sentinel char.
  307. const Vector<String> lines = p_source_code.split("\n");
  308. cursor_line = 1;
  309. cursor_column = 1;
  310. for (int i = 0; i < lines.size(); i++) {
  311. bool found = false;
  312. const String &line = lines[i];
  313. for (int j = 0; j < line.size(); j++) {
  314. if (line[j] == char32_t(0xFFFF)) {
  315. found = true;
  316. break;
  317. } else if (line[j] == '\t') {
  318. cursor_column += tab_size - 1;
  319. }
  320. cursor_column++;
  321. }
  322. if (found) {
  323. break;
  324. }
  325. cursor_line++;
  326. cursor_column = 1;
  327. }
  328. source = source.replace_first(String::chr(0xFFFF), String());
  329. }
  330. tokenizer.set_source_code(source);
  331. tokenizer.set_cursor_position(cursor_line, cursor_column);
  332. script_path = p_script_path;
  333. current = tokenizer.scan();
  334. // Avoid error or newline as the first token.
  335. // The latter can mess with the parser when opening files filled exclusively with comments and newlines.
  336. while (current.type == GDScriptTokenizer::Token::ERROR || current.type == GDScriptTokenizer::Token::NEWLINE) {
  337. if (current.type == GDScriptTokenizer::Token::ERROR) {
  338. push_error(current.literal);
  339. }
  340. current = tokenizer.scan();
  341. }
  342. #ifdef DEBUG_ENABLED
  343. // Warn about parsing an empty script file:
  344. if (current.type == GDScriptTokenizer::Token::TK_EOF) {
  345. // Create a dummy Node for the warning, pointing to the very beginning of the file
  346. Node *nd = alloc_node<PassNode>();
  347. nd->start_line = 1;
  348. nd->start_column = 0;
  349. nd->end_line = 1;
  350. nd->leftmost_column = 0;
  351. nd->rightmost_column = 0;
  352. push_warning(nd, GDScriptWarning::EMPTY_FILE);
  353. }
  354. #endif
  355. push_multiline(false); // Keep one for the whole parsing.
  356. parse_program();
  357. pop_multiline();
  358. #ifdef DEBUG_ENABLED
  359. if (multiline_stack.size() > 0) {
  360. ERR_PRINT("Parser bug: Imbalanced multiline stack.");
  361. }
  362. #endif
  363. if (errors.is_empty()) {
  364. return OK;
  365. } else {
  366. return ERR_PARSE_ERROR;
  367. }
  368. }
  369. GDScriptTokenizer::Token GDScriptParser::advance() {
  370. lambda_ended = false; // Empty marker since we're past the end in any case.
  371. if (current.type == GDScriptTokenizer::Token::TK_EOF) {
  372. ERR_FAIL_COND_V_MSG(current.type == GDScriptTokenizer::Token::TK_EOF, current, "GDScript parser bug: Trying to advance past the end of stream.");
  373. }
  374. if (for_completion && !completion_call_stack.is_empty()) {
  375. if (completion_call.call == nullptr && tokenizer.is_past_cursor()) {
  376. completion_call = completion_call_stack.back()->get();
  377. passed_cursor = true;
  378. }
  379. }
  380. previous = current;
  381. current = tokenizer.scan();
  382. while (current.type == GDScriptTokenizer::Token::ERROR) {
  383. push_error(current.literal);
  384. current = tokenizer.scan();
  385. }
  386. for (Node *n : nodes_in_progress) {
  387. update_extents(n);
  388. }
  389. return previous;
  390. }
  391. bool GDScriptParser::match(GDScriptTokenizer::Token::Type p_token_type) {
  392. if (!check(p_token_type)) {
  393. return false;
  394. }
  395. advance();
  396. return true;
  397. }
  398. bool GDScriptParser::check(GDScriptTokenizer::Token::Type p_token_type) const {
  399. if (p_token_type == GDScriptTokenizer::Token::IDENTIFIER) {
  400. return current.is_identifier();
  401. }
  402. return current.type == p_token_type;
  403. }
  404. bool GDScriptParser::consume(GDScriptTokenizer::Token::Type p_token_type, const String &p_error_message) {
  405. if (match(p_token_type)) {
  406. return true;
  407. }
  408. push_error(p_error_message);
  409. return false;
  410. }
  411. bool GDScriptParser::is_at_end() const {
  412. return check(GDScriptTokenizer::Token::TK_EOF);
  413. }
  414. void GDScriptParser::synchronize() {
  415. panic_mode = false;
  416. while (!is_at_end()) {
  417. if (previous.type == GDScriptTokenizer::Token::NEWLINE || previous.type == GDScriptTokenizer::Token::SEMICOLON) {
  418. return;
  419. }
  420. switch (current.type) {
  421. case GDScriptTokenizer::Token::CLASS:
  422. case GDScriptTokenizer::Token::FUNC:
  423. case GDScriptTokenizer::Token::STATIC:
  424. case GDScriptTokenizer::Token::VAR:
  425. case GDScriptTokenizer::Token::CONST:
  426. case GDScriptTokenizer::Token::SIGNAL:
  427. //case GDScriptTokenizer::Token::IF: // Can also be inside expressions.
  428. case GDScriptTokenizer::Token::FOR:
  429. case GDScriptTokenizer::Token::WHILE:
  430. case GDScriptTokenizer::Token::MATCH:
  431. case GDScriptTokenizer::Token::RETURN:
  432. case GDScriptTokenizer::Token::ANNOTATION:
  433. return;
  434. default:
  435. // Do nothing.
  436. break;
  437. }
  438. advance();
  439. }
  440. }
  441. void GDScriptParser::push_multiline(bool p_state) {
  442. multiline_stack.push_back(p_state);
  443. tokenizer.set_multiline_mode(p_state);
  444. if (p_state) {
  445. // Consume potential whitespace tokens already waiting in line.
  446. while (current.type == GDScriptTokenizer::Token::NEWLINE || current.type == GDScriptTokenizer::Token::INDENT || current.type == GDScriptTokenizer::Token::DEDENT) {
  447. current = tokenizer.scan(); // Don't call advance() here, as we don't want to change the previous token.
  448. }
  449. }
  450. }
  451. void GDScriptParser::pop_multiline() {
  452. ERR_FAIL_COND_MSG(multiline_stack.size() == 0, "Parser bug: trying to pop from multiline stack without available value.");
  453. multiline_stack.pop_back();
  454. tokenizer.set_multiline_mode(multiline_stack.size() > 0 ? multiline_stack.back()->get() : false);
  455. }
  456. bool GDScriptParser::is_statement_end_token() const {
  457. return check(GDScriptTokenizer::Token::NEWLINE) || check(GDScriptTokenizer::Token::SEMICOLON) || check(GDScriptTokenizer::Token::TK_EOF);
  458. }
  459. bool GDScriptParser::is_statement_end() const {
  460. return lambda_ended || in_lambda || is_statement_end_token();
  461. }
  462. void GDScriptParser::end_statement(const String &p_context) {
  463. bool found = false;
  464. while (is_statement_end() && !is_at_end()) {
  465. // Remove sequential newlines/semicolons.
  466. if (is_statement_end_token()) {
  467. // Only consume if this is an actual token.
  468. advance();
  469. } else if (lambda_ended) {
  470. lambda_ended = false; // Consume this "token".
  471. found = true;
  472. break;
  473. } else {
  474. if (!found) {
  475. lambda_ended = true; // Mark the lambda as done since we found something else to end the statement.
  476. found = true;
  477. }
  478. break;
  479. }
  480. found = true;
  481. }
  482. if (!found && !is_at_end()) {
  483. push_error(vformat(R"(Expected end of statement after %s, found "%s" instead.)", p_context, current.get_name()));
  484. }
  485. }
  486. void GDScriptParser::parse_program() {
  487. head = alloc_node<ClassNode>();
  488. head->fqcn = script_path;
  489. current_class = head;
  490. // If we happen to parse an annotation before extends or class_name keywords, track it.
  491. // @tool is allowed, but others should fail.
  492. AnnotationNode *premature_annotation = nullptr;
  493. if (match(GDScriptTokenizer::Token::ANNOTATION)) {
  494. // Check for @tool, script-level, or standalone annotation.
  495. AnnotationNode *annotation = parse_annotation(AnnotationInfo::SCRIPT | AnnotationInfo::STANDALONE | AnnotationInfo::CLASS_LEVEL);
  496. if (annotation != nullptr) {
  497. if (annotation->name == SNAME("@tool")) {
  498. // TODO: don't allow @tool anywhere else. (Should all script annotations be the first thing?).
  499. _is_tool = true;
  500. if (previous.type != GDScriptTokenizer::Token::NEWLINE) {
  501. push_error(R"(Expected newline after "@tool" annotation.)");
  502. }
  503. // @tool annotation has no specific target.
  504. annotation->apply(this, nullptr);
  505. } else if (annotation->applies_to(AnnotationInfo::SCRIPT | AnnotationInfo::STANDALONE)) {
  506. premature_annotation = annotation;
  507. if (previous.type != GDScriptTokenizer::Token::NEWLINE) {
  508. push_error(R"(Expected newline after a standalone annotation.)");
  509. }
  510. annotation->apply(this, head);
  511. } else {
  512. premature_annotation = annotation;
  513. annotation_stack.push_back(annotation);
  514. }
  515. }
  516. }
  517. for (bool should_break = false; !should_break;) {
  518. // Order here doesn't matter, but there should be only one of each at most.
  519. switch (current.type) {
  520. case GDScriptTokenizer::Token::CLASS_NAME:
  521. if (premature_annotation != nullptr) {
  522. push_error(R"("class_name" should be used before annotations (except @tool).)");
  523. }
  524. advance();
  525. if (head->identifier != nullptr) {
  526. push_error(R"("class_name" can only be used once.)");
  527. } else {
  528. parse_class_name();
  529. }
  530. break;
  531. case GDScriptTokenizer::Token::EXTENDS:
  532. if (premature_annotation != nullptr) {
  533. push_error(R"("extends" should be used before annotations (except @tool).)");
  534. }
  535. advance();
  536. if (head->extends_used) {
  537. push_error(R"("extends" can only be used once.)");
  538. } else {
  539. parse_extends();
  540. end_statement("superclass");
  541. }
  542. break;
  543. default:
  544. should_break = true;
  545. break;
  546. }
  547. if (panic_mode) {
  548. synchronize();
  549. }
  550. }
  551. if (match(GDScriptTokenizer::Token::ANNOTATION)) {
  552. // Check for a script-level, or standalone annotation.
  553. AnnotationNode *annotation = parse_annotation(AnnotationInfo::SCRIPT | AnnotationInfo::STANDALONE | AnnotationInfo::CLASS_LEVEL);
  554. if (annotation != nullptr) {
  555. if (annotation->applies_to(AnnotationInfo::SCRIPT | AnnotationInfo::STANDALONE)) {
  556. if (previous.type != GDScriptTokenizer::Token::NEWLINE) {
  557. push_error(R"(Expected newline after a standalone annotation.)");
  558. }
  559. annotation->apply(this, head);
  560. } else {
  561. annotation_stack.push_back(annotation);
  562. }
  563. }
  564. }
  565. parse_class_body(true);
  566. complete_extents(head);
  567. #ifdef TOOLS_ENABLED
  568. for (const KeyValue<int, GDScriptTokenizer::CommentData> &E : tokenizer.get_comments()) {
  569. if (E.value.new_line && E.value.comment.begins_with("##")) {
  570. class_doc_line = MIN(class_doc_line, E.key);
  571. }
  572. }
  573. if (has_comment(class_doc_line)) {
  574. get_class_doc_comment(class_doc_line, head->doc_brief_description, head->doc_description, head->doc_tutorials, false);
  575. }
  576. #endif // TOOLS_ENABLED
  577. if (!check(GDScriptTokenizer::Token::TK_EOF)) {
  578. push_error("Expected end of file.");
  579. }
  580. clear_unused_annotations();
  581. }
  582. GDScriptParser::ClassNode *GDScriptParser::find_class(const String &p_qualified_name) const {
  583. String first = p_qualified_name.get_slice("::", 0);
  584. Vector<String> class_names;
  585. GDScriptParser::ClassNode *result = nullptr;
  586. // Empty initial name means start at the head.
  587. if (first.is_empty() || (head->identifier && first == head->identifier->name)) {
  588. class_names = p_qualified_name.split("::");
  589. result = head;
  590. } else if (p_qualified_name.begins_with(script_path)) {
  591. // Script path could have a class path separator("::") in it.
  592. class_names = p_qualified_name.trim_prefix(script_path).split("::");
  593. result = head;
  594. } else if (head->has_member(first)) {
  595. class_names = p_qualified_name.split("::");
  596. GDScriptParser::ClassNode::Member member = head->get_member(first);
  597. if (member.type == GDScriptParser::ClassNode::Member::CLASS) {
  598. result = member.m_class;
  599. }
  600. }
  601. // Starts at index 1 because index 0 was handled above.
  602. for (int i = 1; result != nullptr && i < class_names.size(); i++) {
  603. String current_name = class_names[i];
  604. GDScriptParser::ClassNode *next = nullptr;
  605. if (result->has_member(current_name)) {
  606. GDScriptParser::ClassNode::Member member = result->get_member(current_name);
  607. if (member.type == GDScriptParser::ClassNode::Member::CLASS) {
  608. next = member.m_class;
  609. }
  610. }
  611. result = next;
  612. }
  613. return result;
  614. }
  615. bool GDScriptParser::has_class(const GDScriptParser::ClassNode *p_class) const {
  616. if (head->fqcn.is_empty() && p_class->fqcn.get_slice("::", 0).is_empty()) {
  617. return p_class == head;
  618. } else if (p_class->fqcn.begins_with(head->fqcn)) {
  619. return find_class(p_class->fqcn.trim_prefix(head->fqcn)) == p_class;
  620. }
  621. return false;
  622. }
  623. GDScriptParser::ClassNode *GDScriptParser::parse_class() {
  624. ClassNode *n_class = alloc_node<ClassNode>();
  625. ClassNode *previous_class = current_class;
  626. current_class = n_class;
  627. n_class->outer = previous_class;
  628. if (consume(GDScriptTokenizer::Token::IDENTIFIER, R"(Expected identifier for the class name after "class".)")) {
  629. n_class->identifier = parse_identifier();
  630. if (n_class->outer) {
  631. String fqcn = n_class->outer->fqcn;
  632. if (fqcn.is_empty()) {
  633. fqcn = script_path;
  634. }
  635. n_class->fqcn = fqcn + "::" + n_class->identifier->name;
  636. } else {
  637. n_class->fqcn = n_class->identifier->name;
  638. }
  639. }
  640. if (match(GDScriptTokenizer::Token::EXTENDS)) {
  641. parse_extends();
  642. }
  643. consume(GDScriptTokenizer::Token::COLON, R"(Expected ":" after class declaration.)");
  644. bool multiline = match(GDScriptTokenizer::Token::NEWLINE);
  645. if (multiline && !consume(GDScriptTokenizer::Token::INDENT, R"(Expected indented block after class declaration.)")) {
  646. current_class = previous_class;
  647. complete_extents(n_class);
  648. return n_class;
  649. }
  650. if (match(GDScriptTokenizer::Token::EXTENDS)) {
  651. if (n_class->extends_used) {
  652. push_error(R"(Cannot use "extends" more than once in the same class.)");
  653. }
  654. parse_extends();
  655. end_statement("superclass");
  656. }
  657. parse_class_body(multiline);
  658. complete_extents(n_class);
  659. if (multiline) {
  660. consume(GDScriptTokenizer::Token::DEDENT, R"(Missing unindent at the end of the class body.)");
  661. }
  662. current_class = previous_class;
  663. return n_class;
  664. }
  665. void GDScriptParser::parse_class_name() {
  666. if (consume(GDScriptTokenizer::Token::IDENTIFIER, R"(Expected identifier for the global class name after "class_name".)")) {
  667. current_class->identifier = parse_identifier();
  668. current_class->fqcn = String(current_class->identifier->name);
  669. }
  670. if (match(GDScriptTokenizer::Token::EXTENDS)) {
  671. // Allow extends on the same line.
  672. parse_extends();
  673. end_statement("superclass");
  674. } else {
  675. end_statement("class_name statement");
  676. }
  677. }
  678. void GDScriptParser::parse_extends() {
  679. current_class->extends_used = true;
  680. int chain_index = 0;
  681. if (match(GDScriptTokenizer::Token::LITERAL)) {
  682. if (previous.literal.get_type() != Variant::STRING) {
  683. push_error(vformat(R"(Only strings or identifiers can be used after "extends", found "%s" instead.)", Variant::get_type_name(previous.literal.get_type())));
  684. }
  685. current_class->extends_path = previous.literal;
  686. if (!match(GDScriptTokenizer::Token::PERIOD)) {
  687. return;
  688. }
  689. }
  690. make_completion_context(COMPLETION_INHERIT_TYPE, current_class, chain_index++);
  691. if (!consume(GDScriptTokenizer::Token::IDENTIFIER, R"(Expected superclass name after "extends".)")) {
  692. return;
  693. }
  694. current_class->extends.push_back(previous.literal);
  695. while (match(GDScriptTokenizer::Token::PERIOD)) {
  696. make_completion_context(COMPLETION_INHERIT_TYPE, current_class, chain_index++);
  697. if (!consume(GDScriptTokenizer::Token::IDENTIFIER, R"(Expected superclass name after ".".)")) {
  698. return;
  699. }
  700. current_class->extends.push_back(previous.literal);
  701. }
  702. }
  703. template <class T>
  704. void GDScriptParser::parse_class_member(T *(GDScriptParser::*p_parse_function)(), AnnotationInfo::TargetKind p_target, const String &p_member_kind) {
  705. advance();
  706. #ifdef TOOLS_ENABLED
  707. int doc_comment_line = previous.start_line - 1;
  708. #endif // TOOLS_ENABLED
  709. // Consume annotations.
  710. List<AnnotationNode *> annotations;
  711. while (!annotation_stack.is_empty()) {
  712. AnnotationNode *last_annotation = annotation_stack.back()->get();
  713. if (last_annotation->applies_to(p_target)) {
  714. annotations.push_front(last_annotation);
  715. annotation_stack.pop_back();
  716. } else {
  717. push_error(vformat(R"(Annotation "%s" cannot be applied to a %s.)", last_annotation->name, p_member_kind));
  718. clear_unused_annotations();
  719. }
  720. #ifdef TOOLS_ENABLED
  721. if (last_annotation->start_line == doc_comment_line) {
  722. doc_comment_line--;
  723. }
  724. #endif // TOOLS_ENABLED
  725. }
  726. T *member = (this->*p_parse_function)();
  727. if (member == nullptr) {
  728. return;
  729. }
  730. // Apply annotations.
  731. for (AnnotationNode *&annotation : annotations) {
  732. member->annotations.push_back(annotation);
  733. }
  734. #ifdef TOOLS_ENABLED
  735. // Consume doc comments.
  736. class_doc_line = MIN(class_doc_line, doc_comment_line - 1);
  737. if (has_comment(doc_comment_line)) {
  738. if constexpr (std::is_same_v<T, ClassNode>) {
  739. get_class_doc_comment(doc_comment_line, member->doc_brief_description, member->doc_description, member->doc_tutorials, true);
  740. } else {
  741. member->doc_description = get_doc_comment(doc_comment_line);
  742. }
  743. }
  744. #endif // TOOLS_ENABLED
  745. if (member->identifier != nullptr) {
  746. if (!((String)member->identifier->name).is_empty()) { // Enums may be unnamed.
  747. #ifdef DEBUG_ENABLED
  748. List<MethodInfo> gdscript_funcs;
  749. GDScriptLanguage::get_singleton()->get_public_functions(&gdscript_funcs);
  750. for (MethodInfo &info : gdscript_funcs) {
  751. if (info.name == member->identifier->name) {
  752. push_warning(member->identifier, GDScriptWarning::SHADOWED_GLOBAL_IDENTIFIER, p_member_kind, member->identifier->name, "built-in function");
  753. }
  754. }
  755. if (Variant::has_utility_function(member->identifier->name)) {
  756. push_warning(member->identifier, GDScriptWarning::SHADOWED_GLOBAL_IDENTIFIER, p_member_kind, member->identifier->name, "built-in function");
  757. }
  758. #endif
  759. if (current_class->members_indices.has(member->identifier->name)) {
  760. push_error(vformat(R"(%s "%s" has the same name as a previously declared %s.)", p_member_kind.capitalize(), member->identifier->name, current_class->get_member(member->identifier->name).get_type_name()), member->identifier);
  761. } else {
  762. current_class->add_member(member);
  763. }
  764. } else {
  765. current_class->add_member(member);
  766. }
  767. }
  768. }
  769. void GDScriptParser::parse_class_body(bool p_is_multiline) {
  770. bool class_end = false;
  771. while (!class_end && !is_at_end()) {
  772. switch (current.type) {
  773. case GDScriptTokenizer::Token::VAR:
  774. parse_class_member(&GDScriptParser::parse_variable, AnnotationInfo::VARIABLE, "variable");
  775. break;
  776. case GDScriptTokenizer::Token::CONST:
  777. parse_class_member(&GDScriptParser::parse_constant, AnnotationInfo::CONSTANT, "constant");
  778. break;
  779. case GDScriptTokenizer::Token::SIGNAL:
  780. parse_class_member(&GDScriptParser::parse_signal, AnnotationInfo::SIGNAL, "signal");
  781. break;
  782. case GDScriptTokenizer::Token::STATIC:
  783. case GDScriptTokenizer::Token::FUNC:
  784. parse_class_member(&GDScriptParser::parse_function, AnnotationInfo::FUNCTION, "function");
  785. break;
  786. case GDScriptTokenizer::Token::CLASS:
  787. parse_class_member(&GDScriptParser::parse_class, AnnotationInfo::CLASS, "class");
  788. break;
  789. case GDScriptTokenizer::Token::ENUM:
  790. parse_class_member(&GDScriptParser::parse_enum, AnnotationInfo::NONE, "enum");
  791. break;
  792. case GDScriptTokenizer::Token::ANNOTATION: {
  793. advance();
  794. // Check for class-level annotations.
  795. AnnotationNode *annotation = parse_annotation(AnnotationInfo::STANDALONE | AnnotationInfo::CLASS_LEVEL);
  796. if (annotation != nullptr) {
  797. if (annotation->applies_to(AnnotationInfo::STANDALONE)) {
  798. if (previous.type != GDScriptTokenizer::Token::NEWLINE) {
  799. push_error(R"(Expected newline after a standalone annotation.)");
  800. }
  801. annotation->apply(this, head);
  802. } else {
  803. annotation_stack.push_back(annotation);
  804. }
  805. }
  806. break;
  807. }
  808. case GDScriptTokenizer::Token::PASS:
  809. advance();
  810. end_statement(R"("pass")");
  811. break;
  812. case GDScriptTokenizer::Token::DEDENT:
  813. class_end = true;
  814. break;
  815. default:
  816. // Display a completion with identifiers.
  817. make_completion_context(COMPLETION_IDENTIFIER, nullptr);
  818. push_error(vformat(R"(Unexpected "%s" in class body.)", current.get_name()));
  819. advance();
  820. break;
  821. }
  822. if (panic_mode) {
  823. synchronize();
  824. }
  825. if (!p_is_multiline) {
  826. class_end = true;
  827. }
  828. }
  829. }
  830. GDScriptParser::VariableNode *GDScriptParser::parse_variable() {
  831. return parse_variable(true);
  832. }
  833. GDScriptParser::VariableNode *GDScriptParser::parse_variable(bool p_allow_property) {
  834. VariableNode *variable = alloc_node<VariableNode>();
  835. if (!consume(GDScriptTokenizer::Token::IDENTIFIER, R"(Expected variable name after "var".)")) {
  836. complete_extents(variable);
  837. return nullptr;
  838. }
  839. variable->identifier = parse_identifier();
  840. variable->export_info.name = variable->identifier->name;
  841. if (match(GDScriptTokenizer::Token::COLON)) {
  842. if (check(GDScriptTokenizer::Token::NEWLINE)) {
  843. if (p_allow_property) {
  844. advance();
  845. return parse_property(variable, true);
  846. } else {
  847. push_error(R"(Expected type after ":")");
  848. complete_extents(variable);
  849. return nullptr;
  850. }
  851. } else if (check((GDScriptTokenizer::Token::EQUAL))) {
  852. // Infer type.
  853. variable->infer_datatype = true;
  854. } else {
  855. if (p_allow_property) {
  856. make_completion_context(COMPLETION_PROPERTY_DECLARATION_OR_TYPE, variable);
  857. if (check(GDScriptTokenizer::Token::IDENTIFIER)) {
  858. // Check if get or set.
  859. if (current.get_identifier() == "get" || current.get_identifier() == "set") {
  860. return parse_property(variable, false);
  861. }
  862. }
  863. }
  864. // Parse type.
  865. variable->datatype_specifier = parse_type();
  866. }
  867. }
  868. if (match(GDScriptTokenizer::Token::EQUAL)) {
  869. // Initializer.
  870. variable->initializer = parse_expression(false);
  871. if (variable->initializer == nullptr) {
  872. push_error(R"(Expected expression for variable initial value after "=".)");
  873. }
  874. variable->assignments++;
  875. }
  876. if (p_allow_property && match(GDScriptTokenizer::Token::COLON)) {
  877. if (match(GDScriptTokenizer::Token::NEWLINE)) {
  878. return parse_property(variable, true);
  879. } else {
  880. return parse_property(variable, false);
  881. }
  882. }
  883. complete_extents(variable);
  884. end_statement("variable declaration");
  885. return variable;
  886. }
  887. GDScriptParser::VariableNode *GDScriptParser::parse_property(VariableNode *p_variable, bool p_need_indent) {
  888. if (p_need_indent) {
  889. if (!consume(GDScriptTokenizer::Token::INDENT, R"(Expected indented block for property after ":".)")) {
  890. complete_extents(p_variable);
  891. return nullptr;
  892. }
  893. }
  894. VariableNode *property = p_variable;
  895. make_completion_context(COMPLETION_PROPERTY_DECLARATION, property);
  896. if (!consume(GDScriptTokenizer::Token::IDENTIFIER, R"(Expected "get" or "set" for property declaration.)")) {
  897. complete_extents(p_variable);
  898. return nullptr;
  899. }
  900. IdentifierNode *function = parse_identifier();
  901. if (check(GDScriptTokenizer::Token::EQUAL)) {
  902. p_variable->property = VariableNode::PROP_SETGET;
  903. } else {
  904. p_variable->property = VariableNode::PROP_INLINE;
  905. if (!p_need_indent) {
  906. push_error("Property with inline code must go to an indented block.");
  907. }
  908. }
  909. bool getter_used = false;
  910. bool setter_used = false;
  911. // Run with a loop because order doesn't matter.
  912. for (int i = 0; i < 2; i++) {
  913. if (function->name == "set") {
  914. if (setter_used) {
  915. push_error(R"(Properties can only have one setter.)");
  916. } else {
  917. parse_property_setter(property);
  918. setter_used = true;
  919. }
  920. } else if (function->name == "get") {
  921. if (getter_used) {
  922. push_error(R"(Properties can only have one getter.)");
  923. } else {
  924. parse_property_getter(property);
  925. getter_used = true;
  926. }
  927. } else {
  928. // TODO: Update message to only have the missing one if it's the case.
  929. push_error(R"(Expected "get" or "set" for property declaration.)");
  930. }
  931. if (i == 0 && p_variable->property == VariableNode::PROP_SETGET) {
  932. if (match(GDScriptTokenizer::Token::COMMA)) {
  933. // Consume potential newline.
  934. if (match(GDScriptTokenizer::Token::NEWLINE)) {
  935. if (!p_need_indent) {
  936. push_error(R"(Inline setter/getter setting cannot span across multiple lines (use "\\"" if needed).)");
  937. }
  938. }
  939. } else {
  940. break;
  941. }
  942. }
  943. if (!match(GDScriptTokenizer::Token::IDENTIFIER)) {
  944. break;
  945. }
  946. function = parse_identifier();
  947. }
  948. complete_extents(p_variable);
  949. if (p_variable->property == VariableNode::PROP_SETGET) {
  950. end_statement("property declaration");
  951. }
  952. if (p_need_indent) {
  953. consume(GDScriptTokenizer::Token::DEDENT, R"(Expected end of indented block for property.)");
  954. }
  955. return property;
  956. }
  957. void GDScriptParser::parse_property_setter(VariableNode *p_variable) {
  958. switch (p_variable->property) {
  959. case VariableNode::PROP_INLINE: {
  960. FunctionNode *function = alloc_node<FunctionNode>();
  961. IdentifierNode *identifier = alloc_node<IdentifierNode>();
  962. complete_extents(identifier);
  963. identifier->name = "@" + p_variable->identifier->name + "_setter";
  964. function->identifier = identifier;
  965. consume(GDScriptTokenizer::Token::PARENTHESIS_OPEN, R"(Expected "(" after "set".)");
  966. ParameterNode *parameter = alloc_node<ParameterNode>();
  967. if (consume(GDScriptTokenizer::Token::IDENTIFIER, R"(Expected parameter name after "(".)")) {
  968. reset_extents(parameter, previous);
  969. p_variable->setter_parameter = parse_identifier();
  970. parameter->identifier = p_variable->setter_parameter;
  971. function->parameters_indices[parameter->identifier->name] = 0;
  972. function->parameters.push_back(parameter);
  973. }
  974. complete_extents(parameter);
  975. consume(GDScriptTokenizer::Token::PARENTHESIS_CLOSE, R"*(Expected ")" after parameter name.)*");
  976. consume(GDScriptTokenizer::Token::COLON, R"*(Expected ":" after ")".)*");
  977. FunctionNode *previous_function = current_function;
  978. current_function = function;
  979. if (p_variable->setter_parameter != nullptr) {
  980. SuiteNode *body = alloc_node<SuiteNode>();
  981. body->add_local(parameter, function);
  982. function->body = parse_suite("setter declaration", body);
  983. p_variable->setter = function;
  984. }
  985. current_function = previous_function;
  986. complete_extents(function);
  987. break;
  988. }
  989. case VariableNode::PROP_SETGET:
  990. consume(GDScriptTokenizer::Token::EQUAL, R"(Expected "=" after "set")");
  991. make_completion_context(COMPLETION_PROPERTY_METHOD, p_variable);
  992. if (consume(GDScriptTokenizer::Token::IDENTIFIER, R"(Expected setter function name after "=".)")) {
  993. p_variable->setter_pointer = parse_identifier();
  994. }
  995. break;
  996. case VariableNode::PROP_NONE:
  997. break; // Unreachable.
  998. }
  999. }
  1000. void GDScriptParser::parse_property_getter(VariableNode *p_variable) {
  1001. switch (p_variable->property) {
  1002. case VariableNode::PROP_INLINE: {
  1003. FunctionNode *function = alloc_node<FunctionNode>();
  1004. consume(GDScriptTokenizer::Token::COLON, R"(Expected ":" after "get".)");
  1005. IdentifierNode *identifier = alloc_node<IdentifierNode>();
  1006. complete_extents(identifier);
  1007. identifier->name = "@" + p_variable->identifier->name + "_getter";
  1008. function->identifier = identifier;
  1009. FunctionNode *previous_function = current_function;
  1010. current_function = function;
  1011. SuiteNode *body = alloc_node<SuiteNode>();
  1012. function->body = parse_suite("getter declaration", body);
  1013. p_variable->getter = function;
  1014. current_function = previous_function;
  1015. complete_extents(function);
  1016. break;
  1017. }
  1018. case VariableNode::PROP_SETGET:
  1019. consume(GDScriptTokenizer::Token::EQUAL, R"(Expected "=" after "get")");
  1020. make_completion_context(COMPLETION_PROPERTY_METHOD, p_variable);
  1021. if (consume(GDScriptTokenizer::Token::IDENTIFIER, R"(Expected getter function name after "=".)")) {
  1022. p_variable->getter_pointer = parse_identifier();
  1023. }
  1024. break;
  1025. case VariableNode::PROP_NONE:
  1026. break; // Unreachable.
  1027. }
  1028. }
  1029. GDScriptParser::ConstantNode *GDScriptParser::parse_constant() {
  1030. ConstantNode *constant = alloc_node<ConstantNode>();
  1031. if (!consume(GDScriptTokenizer::Token::IDENTIFIER, R"(Expected constant name after "const".)")) {
  1032. return nullptr;
  1033. }
  1034. constant->identifier = parse_identifier();
  1035. if (match(GDScriptTokenizer::Token::COLON)) {
  1036. if (check((GDScriptTokenizer::Token::EQUAL))) {
  1037. // Infer type.
  1038. constant->infer_datatype = true;
  1039. } else {
  1040. // Parse type.
  1041. constant->datatype_specifier = parse_type();
  1042. }
  1043. }
  1044. if (consume(GDScriptTokenizer::Token::EQUAL, R"(Expected initializer after constant name.)")) {
  1045. // Initializer.
  1046. constant->initializer = parse_expression(false);
  1047. if (constant->initializer == nullptr) {
  1048. push_error(R"(Expected initializer expression for constant.)");
  1049. complete_extents(constant);
  1050. return nullptr;
  1051. }
  1052. } else {
  1053. complete_extents(constant);
  1054. return nullptr;
  1055. }
  1056. complete_extents(constant);
  1057. end_statement("constant declaration");
  1058. return constant;
  1059. }
  1060. GDScriptParser::ParameterNode *GDScriptParser::parse_parameter() {
  1061. if (!consume(GDScriptTokenizer::Token::IDENTIFIER, R"(Expected parameter name.)")) {
  1062. return nullptr;
  1063. }
  1064. ParameterNode *parameter = alloc_node<ParameterNode>();
  1065. parameter->identifier = parse_identifier();
  1066. if (match(GDScriptTokenizer::Token::COLON)) {
  1067. if (check((GDScriptTokenizer::Token::EQUAL))) {
  1068. // Infer type.
  1069. parameter->infer_datatype = true;
  1070. } else {
  1071. // Parse type.
  1072. make_completion_context(COMPLETION_TYPE_NAME, parameter);
  1073. parameter->datatype_specifier = parse_type();
  1074. }
  1075. }
  1076. if (match(GDScriptTokenizer::Token::EQUAL)) {
  1077. // Default value.
  1078. parameter->initializer = parse_expression(false);
  1079. }
  1080. complete_extents(parameter);
  1081. return parameter;
  1082. }
  1083. GDScriptParser::SignalNode *GDScriptParser::parse_signal() {
  1084. SignalNode *signal = alloc_node<SignalNode>();
  1085. if (!consume(GDScriptTokenizer::Token::IDENTIFIER, R"(Expected signal name after "signal".)")) {
  1086. complete_extents(signal);
  1087. return nullptr;
  1088. }
  1089. signal->identifier = parse_identifier();
  1090. if (check(GDScriptTokenizer::Token::PARENTHESIS_OPEN)) {
  1091. push_multiline(true);
  1092. advance();
  1093. do {
  1094. if (check(GDScriptTokenizer::Token::PARENTHESIS_CLOSE)) {
  1095. // Allow for trailing comma.
  1096. break;
  1097. }
  1098. ParameterNode *parameter = parse_parameter();
  1099. if (parameter == nullptr) {
  1100. push_error("Expected signal parameter name.");
  1101. break;
  1102. }
  1103. if (parameter->initializer != nullptr) {
  1104. push_error(R"(Signal parameters cannot have a default value.)");
  1105. }
  1106. if (signal->parameters_indices.has(parameter->identifier->name)) {
  1107. push_error(vformat(R"(Parameter with name "%s" was already declared for this signal.)", parameter->identifier->name));
  1108. } else {
  1109. signal->parameters_indices[parameter->identifier->name] = signal->parameters.size();
  1110. signal->parameters.push_back(parameter);
  1111. }
  1112. } while (match(GDScriptTokenizer::Token::COMMA) && !is_at_end());
  1113. pop_multiline();
  1114. consume(GDScriptTokenizer::Token::PARENTHESIS_CLOSE, R"*(Expected closing ")" after signal parameters.)*");
  1115. }
  1116. complete_extents(signal);
  1117. end_statement("signal declaration");
  1118. return signal;
  1119. }
  1120. GDScriptParser::EnumNode *GDScriptParser::parse_enum() {
  1121. EnumNode *enum_node = alloc_node<EnumNode>();
  1122. bool named = false;
  1123. if (check(GDScriptTokenizer::Token::IDENTIFIER)) {
  1124. advance();
  1125. enum_node->identifier = parse_identifier();
  1126. named = true;
  1127. }
  1128. push_multiline(true);
  1129. consume(GDScriptTokenizer::Token::BRACE_OPEN, vformat(R"(Expected "{" after %s.)", named ? "enum name" : R"("enum")"));
  1130. HashMap<StringName, int> elements;
  1131. #ifdef DEBUG_ENABLED
  1132. List<MethodInfo> gdscript_funcs;
  1133. GDScriptLanguage::get_singleton()->get_public_functions(&gdscript_funcs);
  1134. #endif
  1135. do {
  1136. if (check(GDScriptTokenizer::Token::BRACE_CLOSE)) {
  1137. break; // Allow trailing comma.
  1138. }
  1139. if (consume(GDScriptTokenizer::Token::IDENTIFIER, R"(Expected identifier for enum key.)")) {
  1140. EnumNode::Value item;
  1141. GDScriptParser::IdentifierNode *identifier = parse_identifier();
  1142. #ifdef DEBUG_ENABLED
  1143. for (MethodInfo &info : gdscript_funcs) {
  1144. if (info.name == identifier->name) {
  1145. push_warning(identifier, GDScriptWarning::SHADOWED_GLOBAL_IDENTIFIER, "enum member", identifier->name, "built-in function");
  1146. }
  1147. }
  1148. if (Variant::has_utility_function(identifier->name)) {
  1149. push_warning(identifier, GDScriptWarning::SHADOWED_GLOBAL_IDENTIFIER, "enum member", identifier->name, "built-in function");
  1150. } else if (ClassDB::class_exists(identifier->name)) {
  1151. push_warning(identifier, GDScriptWarning::SHADOWED_GLOBAL_IDENTIFIER, "enum member", identifier->name, "global class");
  1152. }
  1153. #endif
  1154. item.identifier = identifier;
  1155. item.parent_enum = enum_node;
  1156. item.line = previous.start_line;
  1157. item.leftmost_column = previous.leftmost_column;
  1158. item.rightmost_column = previous.rightmost_column;
  1159. if (elements.has(item.identifier->name)) {
  1160. push_error(vformat(R"(Name "%s" was already in this enum (at line %d).)", item.identifier->name, elements[item.identifier->name]), item.identifier);
  1161. } else if (!named) {
  1162. // TODO: Abstract this recursive member check.
  1163. ClassNode *parent = current_class;
  1164. while (parent != nullptr) {
  1165. if (parent->members_indices.has(item.identifier->name)) {
  1166. push_error(vformat(R"(Name "%s" is already used as a class %s.)", item.identifier->name, parent->get_member(item.identifier->name).get_type_name()));
  1167. break;
  1168. }
  1169. parent = parent->outer;
  1170. }
  1171. }
  1172. elements[item.identifier->name] = item.line;
  1173. if (match(GDScriptTokenizer::Token::EQUAL)) {
  1174. ExpressionNode *value = parse_expression(false);
  1175. if (value == nullptr) {
  1176. push_error(R"(Expected expression value after "=".)");
  1177. }
  1178. item.custom_value = value;
  1179. }
  1180. item.index = enum_node->values.size();
  1181. enum_node->values.push_back(item);
  1182. if (!named) {
  1183. // Add as member of current class.
  1184. current_class->add_member(item);
  1185. }
  1186. }
  1187. } while (match(GDScriptTokenizer::Token::COMMA));
  1188. pop_multiline();
  1189. consume(GDScriptTokenizer::Token::BRACE_CLOSE, R"(Expected closing "}" for enum.)");
  1190. #ifdef TOOLS_ENABLED
  1191. // Enum values documentation.
  1192. for (int i = 0; i < enum_node->values.size(); i++) {
  1193. if (i == enum_node->values.size() - 1) {
  1194. // If close bracket is same line as last value.
  1195. if (enum_node->values[i].line != previous.start_line && has_comment(enum_node->values[i].line)) {
  1196. if (named) {
  1197. enum_node->values.write[i].doc_description = get_doc_comment(enum_node->values[i].line, true);
  1198. } else {
  1199. current_class->set_enum_value_doc(enum_node->values[i].identifier->name, get_doc_comment(enum_node->values[i].line, true));
  1200. }
  1201. }
  1202. } else {
  1203. // If two values are same line.
  1204. if (enum_node->values[i].line != enum_node->values[i + 1].line && has_comment(enum_node->values[i].line)) {
  1205. if (named) {
  1206. enum_node->values.write[i].doc_description = get_doc_comment(enum_node->values[i].line, true);
  1207. } else {
  1208. current_class->set_enum_value_doc(enum_node->values[i].identifier->name, get_doc_comment(enum_node->values[i].line, true));
  1209. }
  1210. }
  1211. }
  1212. }
  1213. #endif // TOOLS_ENABLED
  1214. complete_extents(enum_node);
  1215. end_statement("enum");
  1216. return enum_node;
  1217. }
  1218. void GDScriptParser::parse_function_signature(FunctionNode *p_function, SuiteNode *p_body, const String &p_type) {
  1219. if (!check(GDScriptTokenizer::Token::PARENTHESIS_CLOSE) && !is_at_end()) {
  1220. bool default_used = false;
  1221. do {
  1222. if (check(GDScriptTokenizer::Token::PARENTHESIS_CLOSE)) {
  1223. // Allow for trailing comma.
  1224. break;
  1225. }
  1226. ParameterNode *parameter = parse_parameter();
  1227. if (parameter == nullptr) {
  1228. break;
  1229. }
  1230. if (parameter->initializer != nullptr) {
  1231. default_used = true;
  1232. } else {
  1233. if (default_used) {
  1234. push_error("Cannot have a mandatory parameters after optional parameters.");
  1235. continue;
  1236. }
  1237. }
  1238. if (p_function->parameters_indices.has(parameter->identifier->name)) {
  1239. push_error(vformat(R"(Parameter with name "%s" was already declared for this %s.)", parameter->identifier->name, p_type));
  1240. } else {
  1241. p_function->parameters_indices[parameter->identifier->name] = p_function->parameters.size();
  1242. p_function->parameters.push_back(parameter);
  1243. p_body->add_local(parameter, current_function);
  1244. }
  1245. } while (match(GDScriptTokenizer::Token::COMMA));
  1246. }
  1247. pop_multiline();
  1248. consume(GDScriptTokenizer::Token::PARENTHESIS_CLOSE, vformat(R"*(Expected closing ")" after %s parameters.)*", p_type));
  1249. if (match(GDScriptTokenizer::Token::FORWARD_ARROW)) {
  1250. make_completion_context(COMPLETION_TYPE_NAME_OR_VOID, p_function);
  1251. p_function->return_type = parse_type(true);
  1252. if (p_function->return_type == nullptr) {
  1253. push_error(R"(Expected return type or "void" after "->".)");
  1254. }
  1255. }
  1256. // TODO: Improve token consumption so it synchronizes to a statement boundary. This way we can get into the function body with unrecognized tokens.
  1257. consume(GDScriptTokenizer::Token::COLON, vformat(R"(Expected ":" after %s declaration.)", p_type));
  1258. }
  1259. GDScriptParser::FunctionNode *GDScriptParser::parse_function() {
  1260. FunctionNode *function = alloc_node<FunctionNode>();
  1261. bool _static = false;
  1262. if (previous.type == GDScriptTokenizer::Token::STATIC) {
  1263. // TODO: Improve message if user uses "static" with "var" or "const"
  1264. if (!consume(GDScriptTokenizer::Token::FUNC, R"(Expected "func" after "static".)")) {
  1265. complete_extents(function);
  1266. return nullptr;
  1267. }
  1268. _static = true;
  1269. }
  1270. make_completion_context(COMPLETION_OVERRIDE_METHOD, function);
  1271. if (!consume(GDScriptTokenizer::Token::IDENTIFIER, R"(Expected function name after "func".)")) {
  1272. complete_extents(function);
  1273. return nullptr;
  1274. }
  1275. FunctionNode *previous_function = current_function;
  1276. current_function = function;
  1277. function->identifier = parse_identifier();
  1278. function->is_static = _static;
  1279. SuiteNode *body = alloc_node<SuiteNode>();
  1280. SuiteNode *previous_suite = current_suite;
  1281. current_suite = body;
  1282. push_multiline(true);
  1283. consume(GDScriptTokenizer::Token::PARENTHESIS_OPEN, R"(Expected opening "(" after function name.)");
  1284. parse_function_signature(function, body, "function");
  1285. current_suite = previous_suite;
  1286. function->body = parse_suite("function declaration", body);
  1287. current_function = previous_function;
  1288. complete_extents(function);
  1289. return function;
  1290. }
  1291. GDScriptParser::AnnotationNode *GDScriptParser::parse_annotation(uint32_t p_valid_targets) {
  1292. AnnotationNode *annotation = alloc_node<AnnotationNode>();
  1293. annotation->name = previous.literal;
  1294. make_completion_context(COMPLETION_ANNOTATION, annotation);
  1295. bool valid = true;
  1296. if (!valid_annotations.has(annotation->name)) {
  1297. push_error(vformat(R"(Unrecognized annotation: "%s".)", annotation->name));
  1298. valid = false;
  1299. }
  1300. annotation->info = &valid_annotations[annotation->name];
  1301. if (!annotation->applies_to(p_valid_targets)) {
  1302. push_error(vformat(R"(Annotation "%s" is not allowed in this level.)", annotation->name));
  1303. valid = false;
  1304. }
  1305. if (match(GDScriptTokenizer::Token::PARENTHESIS_OPEN)) {
  1306. // Arguments.
  1307. push_completion_call(annotation);
  1308. make_completion_context(COMPLETION_ANNOTATION_ARGUMENTS, annotation, 0, true);
  1309. if (!check(GDScriptTokenizer::Token::PARENTHESIS_CLOSE) && !is_at_end()) {
  1310. push_multiline(true);
  1311. int argument_index = 0;
  1312. do {
  1313. make_completion_context(COMPLETION_ANNOTATION_ARGUMENTS, annotation, argument_index, true);
  1314. set_last_completion_call_arg(argument_index++);
  1315. ExpressionNode *argument = parse_expression(false);
  1316. if (argument == nullptr) {
  1317. valid = false;
  1318. continue;
  1319. }
  1320. annotation->arguments.push_back(argument);
  1321. } while (match(GDScriptTokenizer::Token::COMMA));
  1322. pop_multiline();
  1323. consume(GDScriptTokenizer::Token::PARENTHESIS_CLOSE, R"*(Expected ")" after annotation arguments.)*");
  1324. }
  1325. pop_completion_call();
  1326. }
  1327. complete_extents(annotation);
  1328. match(GDScriptTokenizer::Token::NEWLINE); // Newline after annotation is optional.
  1329. if (valid) {
  1330. valid = validate_annotation_arguments(annotation);
  1331. }
  1332. return valid ? annotation : nullptr;
  1333. }
  1334. void GDScriptParser::clear_unused_annotations() {
  1335. for (const AnnotationNode *annotation : annotation_stack) {
  1336. push_error(vformat(R"(Annotation "%s" does not precedes a valid target, so it will have no effect.)", annotation->name), annotation);
  1337. }
  1338. annotation_stack.clear();
  1339. }
  1340. bool GDScriptParser::register_annotation(const MethodInfo &p_info, uint32_t p_target_kinds, AnnotationAction p_apply, const Vector<Variant> &p_default_arguments, bool p_is_vararg) {
  1341. ERR_FAIL_COND_V_MSG(valid_annotations.has(p_info.name), false, vformat(R"(Annotation "%s" already registered.)", p_info.name));
  1342. AnnotationInfo new_annotation;
  1343. new_annotation.info = p_info;
  1344. new_annotation.info.default_arguments = p_default_arguments;
  1345. if (p_is_vararg) {
  1346. new_annotation.info.flags |= METHOD_FLAG_VARARG;
  1347. }
  1348. new_annotation.apply = p_apply;
  1349. new_annotation.target_kind = p_target_kinds;
  1350. valid_annotations[p_info.name] = new_annotation;
  1351. return true;
  1352. }
  1353. GDScriptParser::SuiteNode *GDScriptParser::parse_suite(const String &p_context, SuiteNode *p_suite, bool p_for_lambda) {
  1354. SuiteNode *suite = p_suite != nullptr ? p_suite : alloc_node<SuiteNode>();
  1355. suite->parent_block = current_suite;
  1356. suite->parent_function = current_function;
  1357. current_suite = suite;
  1358. bool multiline = false;
  1359. if (match(GDScriptTokenizer::Token::NEWLINE)) {
  1360. multiline = true;
  1361. }
  1362. if (multiline) {
  1363. if (!consume(GDScriptTokenizer::Token::INDENT, vformat(R"(Expected indented block after %s.)", p_context))) {
  1364. current_suite = suite->parent_block;
  1365. complete_extents(suite);
  1366. return suite;
  1367. }
  1368. }
  1369. reset_extents(suite, current);
  1370. int error_count = 0;
  1371. do {
  1372. if (!multiline && previous.type == GDScriptTokenizer::Token::SEMICOLON && check(GDScriptTokenizer::Token::NEWLINE)) {
  1373. break;
  1374. }
  1375. Node *statement = parse_statement();
  1376. if (statement == nullptr) {
  1377. if (error_count++ > 100) {
  1378. push_error("Too many statement errors.", suite);
  1379. break;
  1380. }
  1381. continue;
  1382. }
  1383. suite->statements.push_back(statement);
  1384. // Register locals.
  1385. switch (statement->type) {
  1386. case Node::VARIABLE: {
  1387. VariableNode *variable = static_cast<VariableNode *>(statement);
  1388. const SuiteNode::Local &local = current_suite->get_local(variable->identifier->name);
  1389. if (local.type != SuiteNode::Local::UNDEFINED) {
  1390. push_error(vformat(R"(There is already a %s named "%s" declared in this scope.)", local.get_name(), variable->identifier->name), variable->identifier);
  1391. }
  1392. current_suite->add_local(variable, current_function);
  1393. break;
  1394. }
  1395. case Node::CONSTANT: {
  1396. ConstantNode *constant = static_cast<ConstantNode *>(statement);
  1397. const SuiteNode::Local &local = current_suite->get_local(constant->identifier->name);
  1398. if (local.type != SuiteNode::Local::UNDEFINED) {
  1399. String name;
  1400. if (local.type == SuiteNode::Local::CONSTANT) {
  1401. name = "constant";
  1402. } else {
  1403. name = "variable";
  1404. }
  1405. push_error(vformat(R"(There is already a %s named "%s" declared in this scope.)", name, constant->identifier->name), constant->identifier);
  1406. }
  1407. current_suite->add_local(constant, current_function);
  1408. break;
  1409. }
  1410. default:
  1411. break;
  1412. }
  1413. } while ((multiline || previous.type == GDScriptTokenizer::Token::SEMICOLON) && !check(GDScriptTokenizer::Token::DEDENT) && !lambda_ended && !is_at_end());
  1414. complete_extents(suite);
  1415. if (multiline) {
  1416. if (!lambda_ended) {
  1417. consume(GDScriptTokenizer::Token::DEDENT, vformat(R"(Missing unindent at the end of %s.)", p_context));
  1418. } else {
  1419. match(GDScriptTokenizer::Token::DEDENT);
  1420. }
  1421. } else if (previous.type == GDScriptTokenizer::Token::SEMICOLON) {
  1422. consume(GDScriptTokenizer::Token::NEWLINE, vformat(R"(Expected newline after ";" at the end of %s.)", p_context));
  1423. }
  1424. if (p_for_lambda) {
  1425. lambda_ended = true;
  1426. }
  1427. current_suite = suite->parent_block;
  1428. return suite;
  1429. }
  1430. GDScriptParser::Node *GDScriptParser::parse_statement() {
  1431. Node *result = nullptr;
  1432. #ifdef DEBUG_ENABLED
  1433. bool unreachable = current_suite->has_return && !current_suite->has_unreachable_code;
  1434. #endif
  1435. bool is_annotation = false;
  1436. switch (current.type) {
  1437. case GDScriptTokenizer::Token::PASS:
  1438. advance();
  1439. result = alloc_node<PassNode>();
  1440. complete_extents(result);
  1441. end_statement(R"("pass")");
  1442. break;
  1443. case GDScriptTokenizer::Token::VAR:
  1444. advance();
  1445. result = parse_variable();
  1446. break;
  1447. case GDScriptTokenizer::Token::CONST:
  1448. advance();
  1449. result = parse_constant();
  1450. break;
  1451. case GDScriptTokenizer::Token::IF:
  1452. advance();
  1453. result = parse_if();
  1454. break;
  1455. case GDScriptTokenizer::Token::FOR:
  1456. advance();
  1457. result = parse_for();
  1458. break;
  1459. case GDScriptTokenizer::Token::WHILE:
  1460. advance();
  1461. result = parse_while();
  1462. break;
  1463. case GDScriptTokenizer::Token::MATCH:
  1464. advance();
  1465. result = parse_match();
  1466. break;
  1467. case GDScriptTokenizer::Token::BREAK:
  1468. advance();
  1469. result = parse_break();
  1470. break;
  1471. case GDScriptTokenizer::Token::CONTINUE:
  1472. advance();
  1473. result = parse_continue();
  1474. break;
  1475. case GDScriptTokenizer::Token::RETURN: {
  1476. advance();
  1477. ReturnNode *n_return = alloc_node<ReturnNode>();
  1478. if (!is_statement_end()) {
  1479. if (current_function && current_function->identifier->name == GDScriptLanguage::get_singleton()->strings._init) {
  1480. push_error(R"(Constructor cannot return a value.)");
  1481. }
  1482. n_return->return_value = parse_expression(false);
  1483. } else if (in_lambda && !is_statement_end_token()) {
  1484. // Try to parse it anyway as this might not be the statement end in a lambda.
  1485. // If this fails the expression will be nullptr, but that's the same as no return, so it's fine.
  1486. n_return->return_value = parse_expression(false);
  1487. }
  1488. complete_extents(n_return);
  1489. result = n_return;
  1490. current_suite->has_return = true;
  1491. end_statement("return statement");
  1492. break;
  1493. }
  1494. case GDScriptTokenizer::Token::BREAKPOINT:
  1495. advance();
  1496. result = alloc_node<BreakpointNode>();
  1497. complete_extents(result);
  1498. end_statement(R"("breakpoint")");
  1499. break;
  1500. case GDScriptTokenizer::Token::ASSERT:
  1501. advance();
  1502. result = parse_assert();
  1503. break;
  1504. case GDScriptTokenizer::Token::ANNOTATION: {
  1505. advance();
  1506. is_annotation = true;
  1507. AnnotationNode *annotation = parse_annotation(AnnotationInfo::STATEMENT);
  1508. if (annotation != nullptr) {
  1509. annotation_stack.push_back(annotation);
  1510. }
  1511. break;
  1512. }
  1513. default: {
  1514. // Expression statement.
  1515. ExpressionNode *expression = parse_expression(true); // Allow assignment here.
  1516. bool has_ended_lambda = false;
  1517. if (expression == nullptr) {
  1518. if (in_lambda) {
  1519. // If it's not a valid expression beginning, it might be the continuation of the outer expression where this lambda is.
  1520. lambda_ended = true;
  1521. has_ended_lambda = true;
  1522. } else {
  1523. advance();
  1524. push_error(vformat(R"(Expected statement, found "%s" instead.)", previous.get_name()));
  1525. }
  1526. } else {
  1527. end_statement("expression");
  1528. }
  1529. lambda_ended = lambda_ended || has_ended_lambda;
  1530. result = expression;
  1531. #ifdef DEBUG_ENABLED
  1532. if (expression != nullptr) {
  1533. switch (expression->type) {
  1534. case Node::CALL:
  1535. case Node::ASSIGNMENT:
  1536. case Node::AWAIT:
  1537. // Fine.
  1538. break;
  1539. case Node::LAMBDA:
  1540. // Standalone lambdas can't be used, so make this an error.
  1541. push_error("Standalone lambdas cannot be accessed. Consider assigning it to a variable.", expression);
  1542. break;
  1543. default:
  1544. push_warning(expression, GDScriptWarning::STANDALONE_EXPRESSION);
  1545. }
  1546. }
  1547. #endif
  1548. break;
  1549. }
  1550. }
  1551. // Apply annotations to statement.
  1552. while (!is_annotation && result != nullptr && !annotation_stack.is_empty()) {
  1553. AnnotationNode *last_annotation = annotation_stack.back()->get();
  1554. if (last_annotation->applies_to(AnnotationInfo::STATEMENT)) {
  1555. result->annotations.push_front(last_annotation);
  1556. annotation_stack.pop_back();
  1557. } else {
  1558. push_error(vformat(R"(Annotation "%s" cannot be applied to a statement.)", last_annotation->name));
  1559. clear_unused_annotations();
  1560. }
  1561. }
  1562. #ifdef DEBUG_ENABLED
  1563. if (unreachable && result != nullptr) {
  1564. current_suite->has_unreachable_code = true;
  1565. if (current_function) {
  1566. push_warning(result, GDScriptWarning::UNREACHABLE_CODE, current_function->identifier ? current_function->identifier->name : "<anonymous lambda>");
  1567. } else {
  1568. // TODO: Properties setters and getters with unreachable code are not being warned
  1569. }
  1570. }
  1571. #endif
  1572. if (panic_mode) {
  1573. synchronize();
  1574. }
  1575. return result;
  1576. }
  1577. GDScriptParser::AssertNode *GDScriptParser::parse_assert() {
  1578. // TODO: Add assert message.
  1579. AssertNode *assert = alloc_node<AssertNode>();
  1580. push_multiline(true);
  1581. consume(GDScriptTokenizer::Token::PARENTHESIS_OPEN, R"(Expected "(" after "assert".)");
  1582. assert->condition = parse_expression(false);
  1583. if (assert->condition == nullptr) {
  1584. push_error("Expected expression to assert.");
  1585. pop_multiline();
  1586. complete_extents(assert);
  1587. return nullptr;
  1588. }
  1589. if (match(GDScriptTokenizer::Token::COMMA) && !check(GDScriptTokenizer::Token::PARENTHESIS_CLOSE)) {
  1590. assert->message = parse_expression(false);
  1591. if (assert->message == nullptr) {
  1592. push_error(R"(Expected error message for assert after ",".)");
  1593. pop_multiline();
  1594. complete_extents(assert);
  1595. return nullptr;
  1596. }
  1597. match(GDScriptTokenizer::Token::COMMA);
  1598. }
  1599. pop_multiline();
  1600. consume(GDScriptTokenizer::Token::PARENTHESIS_CLOSE, R"*(Expected ")" after assert expression.)*");
  1601. complete_extents(assert);
  1602. end_statement(R"("assert")");
  1603. return assert;
  1604. }
  1605. GDScriptParser::BreakNode *GDScriptParser::parse_break() {
  1606. if (!can_break) {
  1607. push_error(R"(Cannot use "break" outside of a loop.)");
  1608. }
  1609. BreakNode *break_node = alloc_node<BreakNode>();
  1610. complete_extents(break_node);
  1611. end_statement(R"("break")");
  1612. return break_node;
  1613. }
  1614. GDScriptParser::ContinueNode *GDScriptParser::parse_continue() {
  1615. if (!can_continue) {
  1616. push_error(R"(Cannot use "continue" outside of a loop or pattern matching block.)");
  1617. }
  1618. current_suite->has_continue = true;
  1619. ContinueNode *cont = alloc_node<ContinueNode>();
  1620. cont->is_for_match = is_continue_match;
  1621. complete_extents(cont);
  1622. end_statement(R"("continue")");
  1623. return cont;
  1624. }
  1625. GDScriptParser::ForNode *GDScriptParser::parse_for() {
  1626. ForNode *n_for = alloc_node<ForNode>();
  1627. if (consume(GDScriptTokenizer::Token::IDENTIFIER, R"(Expected loop variable name after "for".)")) {
  1628. n_for->variable = parse_identifier();
  1629. }
  1630. consume(GDScriptTokenizer::Token::IN, R"(Expected "in" after "for" variable name.)");
  1631. n_for->list = parse_expression(false);
  1632. if (!n_for->list) {
  1633. push_error(R"(Expected a list or range after "in".)");
  1634. }
  1635. consume(GDScriptTokenizer::Token::COLON, R"(Expected ":" after "for" condition.)");
  1636. // Save break/continue state.
  1637. bool could_break = can_break;
  1638. bool could_continue = can_continue;
  1639. bool was_continue_match = is_continue_match;
  1640. // Allow break/continue.
  1641. can_break = true;
  1642. can_continue = true;
  1643. is_continue_match = false;
  1644. SuiteNode *suite = alloc_node<SuiteNode>();
  1645. if (n_for->variable) {
  1646. const SuiteNode::Local &local = current_suite->get_local(n_for->variable->name);
  1647. if (local.type != SuiteNode::Local::UNDEFINED) {
  1648. push_error(vformat(R"(There is already a %s named "%s" declared in this scope.)", local.get_name(), n_for->variable->name), n_for->variable);
  1649. }
  1650. suite->add_local(SuiteNode::Local(n_for->variable, current_function));
  1651. }
  1652. n_for->loop = parse_suite(R"("for" block)", suite);
  1653. n_for->loop->is_loop = true;
  1654. complete_extents(n_for);
  1655. // Reset break/continue state.
  1656. can_break = could_break;
  1657. can_continue = could_continue;
  1658. is_continue_match = was_continue_match;
  1659. return n_for;
  1660. }
  1661. GDScriptParser::IfNode *GDScriptParser::parse_if(const String &p_token) {
  1662. IfNode *n_if = alloc_node<IfNode>();
  1663. n_if->condition = parse_expression(false);
  1664. if (n_if->condition == nullptr) {
  1665. push_error(vformat(R"(Expected conditional expression after "%s".)", p_token));
  1666. }
  1667. consume(GDScriptTokenizer::Token::COLON, vformat(R"(Expected ":" after "%s" condition.)", p_token));
  1668. n_if->true_block = parse_suite(vformat(R"("%s" block)", p_token));
  1669. n_if->true_block->parent_if = n_if;
  1670. if (n_if->true_block->has_continue) {
  1671. current_suite->has_continue = true;
  1672. }
  1673. if (match(GDScriptTokenizer::Token::ELIF)) {
  1674. SuiteNode *else_block = alloc_node<SuiteNode>();
  1675. IfNode *elif = parse_if("elif");
  1676. else_block->statements.push_back(elif);
  1677. complete_extents(else_block);
  1678. n_if->false_block = else_block;
  1679. } else if (match(GDScriptTokenizer::Token::ELSE)) {
  1680. consume(GDScriptTokenizer::Token::COLON, R"(Expected ":" after "else".)");
  1681. n_if->false_block = parse_suite(R"("else" block)");
  1682. }
  1683. complete_extents(n_if);
  1684. if (n_if->false_block != nullptr && n_if->false_block->has_return && n_if->true_block->has_return) {
  1685. current_suite->has_return = true;
  1686. }
  1687. if (n_if->false_block != nullptr && n_if->false_block->has_continue) {
  1688. current_suite->has_continue = true;
  1689. }
  1690. return n_if;
  1691. }
  1692. GDScriptParser::MatchNode *GDScriptParser::parse_match() {
  1693. MatchNode *match = alloc_node<MatchNode>();
  1694. match->test = parse_expression(false);
  1695. if (match->test == nullptr) {
  1696. push_error(R"(Expected expression to test after "match".)");
  1697. }
  1698. consume(GDScriptTokenizer::Token::COLON, R"(Expected ":" after "match" expression.)");
  1699. consume(GDScriptTokenizer::Token::NEWLINE, R"(Expected a newline after "match" statement.)");
  1700. if (!consume(GDScriptTokenizer::Token::INDENT, R"(Expected an indented block after "match" statement.)")) {
  1701. complete_extents(match);
  1702. return match;
  1703. }
  1704. #ifdef DEBUG_ENABLED
  1705. bool all_have_return = true;
  1706. bool have_wildcard = false;
  1707. bool have_wildcard_without_continue = false;
  1708. #endif
  1709. while (!check(GDScriptTokenizer::Token::DEDENT) && !is_at_end()) {
  1710. MatchBranchNode *branch = parse_match_branch();
  1711. if (branch == nullptr) {
  1712. advance();
  1713. continue;
  1714. }
  1715. #ifdef DEBUG_ENABLED
  1716. if (have_wildcard_without_continue && !branch->patterns.is_empty()) {
  1717. push_warning(branch->patterns[0], GDScriptWarning::UNREACHABLE_PATTERN);
  1718. }
  1719. if (branch->has_wildcard) {
  1720. have_wildcard = true;
  1721. if (!branch->block->has_continue) {
  1722. have_wildcard_without_continue = true;
  1723. }
  1724. }
  1725. if (!branch->block->has_return) {
  1726. all_have_return = false;
  1727. }
  1728. #endif
  1729. match->branches.push_back(branch);
  1730. }
  1731. complete_extents(match);
  1732. consume(GDScriptTokenizer::Token::DEDENT, R"(Expected an indented block after "match" statement.)");
  1733. #ifdef DEBUG_ENABLED
  1734. if (all_have_return && have_wildcard) {
  1735. current_suite->has_return = true;
  1736. }
  1737. #endif
  1738. return match;
  1739. }
  1740. GDScriptParser::MatchBranchNode *GDScriptParser::parse_match_branch() {
  1741. MatchBranchNode *branch = alloc_node<MatchBranchNode>();
  1742. reset_extents(branch, current);
  1743. bool has_bind = false;
  1744. do {
  1745. PatternNode *pattern = parse_match_pattern();
  1746. if (pattern == nullptr) {
  1747. continue;
  1748. }
  1749. if (pattern->binds.size() > 0) {
  1750. has_bind = true;
  1751. }
  1752. if (branch->patterns.size() > 0 && has_bind) {
  1753. push_error(R"(Cannot use a variable bind with multiple patterns.)");
  1754. }
  1755. if (pattern->pattern_type == PatternNode::PT_REST) {
  1756. push_error(R"(Rest pattern can only be used inside array and dictionary patterns.)");
  1757. } else if (pattern->pattern_type == PatternNode::PT_BIND || pattern->pattern_type == PatternNode::PT_WILDCARD) {
  1758. branch->has_wildcard = true;
  1759. }
  1760. branch->patterns.push_back(pattern);
  1761. } while (match(GDScriptTokenizer::Token::COMMA));
  1762. if (branch->patterns.is_empty()) {
  1763. push_error(R"(No pattern found for "match" branch.)");
  1764. }
  1765. if (!consume(GDScriptTokenizer::Token::COLON, R"(Expected ":" after "match" patterns.)")) {
  1766. complete_extents(branch);
  1767. return nullptr;
  1768. }
  1769. // Save continue state.
  1770. bool could_continue = can_continue;
  1771. bool was_continue_match = is_continue_match;
  1772. // Allow continue for match.
  1773. can_continue = true;
  1774. is_continue_match = true;
  1775. SuiteNode *suite = alloc_node<SuiteNode>();
  1776. if (branch->patterns.size() > 0) {
  1777. for (const KeyValue<StringName, IdentifierNode *> &E : branch->patterns[0]->binds) {
  1778. SuiteNode::Local local(E.value, current_function);
  1779. local.type = SuiteNode::Local::PATTERN_BIND;
  1780. suite->add_local(local);
  1781. }
  1782. }
  1783. branch->block = parse_suite("match pattern block", suite);
  1784. complete_extents(branch);
  1785. // Restore continue state.
  1786. can_continue = could_continue;
  1787. is_continue_match = was_continue_match;
  1788. return branch;
  1789. }
  1790. GDScriptParser::PatternNode *GDScriptParser::parse_match_pattern(PatternNode *p_root_pattern) {
  1791. PatternNode *pattern = alloc_node<PatternNode>();
  1792. reset_extents(pattern, current);
  1793. switch (current.type) {
  1794. case GDScriptTokenizer::Token::VAR: {
  1795. // Bind.
  1796. advance();
  1797. if (!consume(GDScriptTokenizer::Token::IDENTIFIER, R"(Expected bind name after "var".)")) {
  1798. complete_extents(pattern);
  1799. return nullptr;
  1800. }
  1801. pattern->pattern_type = PatternNode::PT_BIND;
  1802. pattern->bind = parse_identifier();
  1803. PatternNode *root_pattern = p_root_pattern == nullptr ? pattern : p_root_pattern;
  1804. if (p_root_pattern != nullptr) {
  1805. if (p_root_pattern->has_bind(pattern->bind->name)) {
  1806. push_error(vformat(R"(Bind variable name "%s" was already used in this pattern.)", pattern->bind->name));
  1807. complete_extents(pattern);
  1808. return nullptr;
  1809. }
  1810. }
  1811. if (current_suite->has_local(pattern->bind->name)) {
  1812. push_error(vformat(R"(There's already a %s named "%s" in this scope.)", current_suite->get_local(pattern->bind->name).get_name(), pattern->bind->name));
  1813. complete_extents(pattern);
  1814. return nullptr;
  1815. }
  1816. root_pattern->binds[pattern->bind->name] = pattern->bind;
  1817. } break;
  1818. case GDScriptTokenizer::Token::UNDERSCORE:
  1819. // Wildcard.
  1820. advance();
  1821. pattern->pattern_type = PatternNode::PT_WILDCARD;
  1822. break;
  1823. case GDScriptTokenizer::Token::PERIOD_PERIOD:
  1824. // Rest.
  1825. advance();
  1826. pattern->pattern_type = PatternNode::PT_REST;
  1827. break;
  1828. case GDScriptTokenizer::Token::BRACKET_OPEN: {
  1829. // Array.
  1830. advance();
  1831. pattern->pattern_type = PatternNode::PT_ARRAY;
  1832. if (!check(GDScriptTokenizer::Token::BRACKET_CLOSE)) {
  1833. do {
  1834. PatternNode *sub_pattern = parse_match_pattern(p_root_pattern != nullptr ? p_root_pattern : pattern);
  1835. if (sub_pattern == nullptr) {
  1836. continue;
  1837. }
  1838. if (pattern->rest_used) {
  1839. push_error(R"(The ".." pattern must be the last element in the pattern array.)");
  1840. } else if (sub_pattern->pattern_type == PatternNode::PT_REST) {
  1841. pattern->rest_used = true;
  1842. }
  1843. pattern->array.push_back(sub_pattern);
  1844. } while (match(GDScriptTokenizer::Token::COMMA));
  1845. }
  1846. consume(GDScriptTokenizer::Token::BRACKET_CLOSE, R"(Expected "]" to close the array pattern.)");
  1847. break;
  1848. }
  1849. case GDScriptTokenizer::Token::BRACE_OPEN: {
  1850. // Dictionary.
  1851. advance();
  1852. pattern->pattern_type = PatternNode::PT_DICTIONARY;
  1853. do {
  1854. if (check(GDScriptTokenizer::Token::BRACE_CLOSE) || is_at_end()) {
  1855. break;
  1856. }
  1857. if (match(GDScriptTokenizer::Token::PERIOD_PERIOD)) {
  1858. // Rest.
  1859. if (pattern->rest_used) {
  1860. push_error(R"(The ".." pattern must be the last element in the pattern dictionary.)");
  1861. } else {
  1862. PatternNode *sub_pattern = alloc_node<PatternNode>();
  1863. complete_extents(sub_pattern);
  1864. sub_pattern->pattern_type = PatternNode::PT_REST;
  1865. pattern->dictionary.push_back({ nullptr, sub_pattern });
  1866. pattern->rest_used = true;
  1867. }
  1868. } else {
  1869. ExpressionNode *key = parse_expression(false);
  1870. if (key == nullptr) {
  1871. push_error(R"(Expected expression as key for dictionary pattern.)");
  1872. }
  1873. if (match(GDScriptTokenizer::Token::COLON)) {
  1874. // Value pattern.
  1875. PatternNode *sub_pattern = parse_match_pattern(p_root_pattern != nullptr ? p_root_pattern : pattern);
  1876. if (sub_pattern == nullptr) {
  1877. continue;
  1878. }
  1879. if (pattern->rest_used) {
  1880. push_error(R"(The ".." pattern must be the last element in the pattern dictionary.)");
  1881. } else if (sub_pattern->pattern_type == PatternNode::PT_REST) {
  1882. push_error(R"(The ".." pattern cannot be used as a value.)");
  1883. } else {
  1884. pattern->dictionary.push_back({ key, sub_pattern });
  1885. }
  1886. } else {
  1887. // Key match only.
  1888. pattern->dictionary.push_back({ key, nullptr });
  1889. }
  1890. }
  1891. } while (match(GDScriptTokenizer::Token::COMMA));
  1892. consume(GDScriptTokenizer::Token::BRACE_CLOSE, R"(Expected "}" to close the dictionary pattern.)");
  1893. break;
  1894. }
  1895. default: {
  1896. // Expression.
  1897. ExpressionNode *expression = parse_expression(false);
  1898. if (expression == nullptr) {
  1899. push_error(R"(Expected expression for match pattern.)");
  1900. return nullptr;
  1901. } else {
  1902. if (expression->type == GDScriptParser::Node::LITERAL) {
  1903. pattern->pattern_type = PatternNode::PT_LITERAL;
  1904. } else {
  1905. pattern->pattern_type = PatternNode::PT_EXPRESSION;
  1906. }
  1907. pattern->expression = expression;
  1908. }
  1909. break;
  1910. }
  1911. }
  1912. complete_extents(pattern);
  1913. return pattern;
  1914. }
  1915. bool GDScriptParser::PatternNode::has_bind(const StringName &p_name) {
  1916. return binds.has(p_name);
  1917. }
  1918. GDScriptParser::IdentifierNode *GDScriptParser::PatternNode::get_bind(const StringName &p_name) {
  1919. return binds[p_name];
  1920. }
  1921. GDScriptParser::WhileNode *GDScriptParser::parse_while() {
  1922. WhileNode *n_while = alloc_node<WhileNode>();
  1923. n_while->condition = parse_expression(false);
  1924. if (n_while->condition == nullptr) {
  1925. push_error(R"(Expected conditional expression after "while".)");
  1926. }
  1927. consume(GDScriptTokenizer::Token::COLON, R"(Expected ":" after "while" condition.)");
  1928. // Save break/continue state.
  1929. bool could_break = can_break;
  1930. bool could_continue = can_continue;
  1931. bool was_continue_match = is_continue_match;
  1932. // Allow break/continue.
  1933. can_break = true;
  1934. can_continue = true;
  1935. is_continue_match = false;
  1936. n_while->loop = parse_suite(R"("while" block)");
  1937. n_while->loop->is_loop = true;
  1938. complete_extents(n_while);
  1939. // Reset break/continue state.
  1940. can_break = could_break;
  1941. can_continue = could_continue;
  1942. is_continue_match = was_continue_match;
  1943. return n_while;
  1944. }
  1945. GDScriptParser::ExpressionNode *GDScriptParser::parse_precedence(Precedence p_precedence, bool p_can_assign, bool p_stop_on_assign) {
  1946. // Switch multiline mode on for grouping tokens.
  1947. // Do this early to avoid the tokenizer generating whitespace tokens.
  1948. switch (current.type) {
  1949. case GDScriptTokenizer::Token::PARENTHESIS_OPEN:
  1950. case GDScriptTokenizer::Token::BRACE_OPEN:
  1951. case GDScriptTokenizer::Token::BRACKET_OPEN:
  1952. push_multiline(true);
  1953. break;
  1954. default:
  1955. break; // Nothing to do.
  1956. }
  1957. // Completion can appear whenever an expression is expected.
  1958. make_completion_context(COMPLETION_IDENTIFIER, nullptr);
  1959. GDScriptTokenizer::Token token = current;
  1960. ParseFunction prefix_rule = get_rule(token.type)->prefix;
  1961. if (prefix_rule == nullptr) {
  1962. // Expected expression. Let the caller give the proper error message.
  1963. return nullptr;
  1964. }
  1965. advance(); // Only consume the token if there's a valid rule.
  1966. ExpressionNode *previous_operand = (this->*prefix_rule)(nullptr, p_can_assign);
  1967. while (p_precedence <= get_rule(current.type)->precedence) {
  1968. if (previous_operand == nullptr || (p_stop_on_assign && current.type == GDScriptTokenizer::Token::EQUAL) || (previous_operand->type == Node::LAMBDA && lambda_ended)) {
  1969. return previous_operand;
  1970. }
  1971. // Also switch multiline mode on here for infix operators.
  1972. switch (current.type) {
  1973. // case GDScriptTokenizer::Token::BRACE_OPEN: // Not an infix operator.
  1974. case GDScriptTokenizer::Token::PARENTHESIS_OPEN:
  1975. case GDScriptTokenizer::Token::BRACKET_OPEN:
  1976. push_multiline(true);
  1977. break;
  1978. default:
  1979. break; // Nothing to do.
  1980. }
  1981. token = advance();
  1982. ParseFunction infix_rule = get_rule(token.type)->infix;
  1983. previous_operand = (this->*infix_rule)(previous_operand, p_can_assign);
  1984. }
  1985. return previous_operand;
  1986. }
  1987. GDScriptParser::ExpressionNode *GDScriptParser::parse_expression(bool p_can_assign, bool p_stop_on_assign) {
  1988. return parse_precedence(PREC_ASSIGNMENT, p_can_assign, p_stop_on_assign);
  1989. }
  1990. GDScriptParser::IdentifierNode *GDScriptParser::parse_identifier() {
  1991. return static_cast<IdentifierNode *>(parse_identifier(nullptr, false));
  1992. }
  1993. GDScriptParser::ExpressionNode *GDScriptParser::parse_identifier(ExpressionNode *p_previous_operand, bool p_can_assign) {
  1994. if (!previous.is_identifier()) {
  1995. ERR_FAIL_V_MSG(nullptr, "Parser bug: parsing identifier node without identifier token.");
  1996. }
  1997. IdentifierNode *identifier = alloc_node<IdentifierNode>();
  1998. complete_extents(identifier);
  1999. identifier->name = previous.get_identifier();
  2000. if (current_suite != nullptr && current_suite->has_local(identifier->name)) {
  2001. const SuiteNode::Local &declaration = current_suite->get_local(identifier->name);
  2002. identifier->source_function = declaration.source_function;
  2003. switch (declaration.type) {
  2004. case SuiteNode::Local::CONSTANT:
  2005. identifier->source = IdentifierNode::LOCAL_CONSTANT;
  2006. identifier->constant_source = declaration.constant;
  2007. declaration.constant->usages++;
  2008. break;
  2009. case SuiteNode::Local::VARIABLE:
  2010. identifier->source = IdentifierNode::LOCAL_VARIABLE;
  2011. identifier->variable_source = declaration.variable;
  2012. declaration.variable->usages++;
  2013. break;
  2014. case SuiteNode::Local::PARAMETER:
  2015. identifier->source = IdentifierNode::FUNCTION_PARAMETER;
  2016. identifier->parameter_source = declaration.parameter;
  2017. declaration.parameter->usages++;
  2018. break;
  2019. case SuiteNode::Local::FOR_VARIABLE:
  2020. identifier->source = IdentifierNode::LOCAL_ITERATOR;
  2021. identifier->bind_source = declaration.bind;
  2022. declaration.bind->usages++;
  2023. break;
  2024. case SuiteNode::Local::PATTERN_BIND:
  2025. identifier->source = IdentifierNode::LOCAL_BIND;
  2026. identifier->bind_source = declaration.bind;
  2027. declaration.bind->usages++;
  2028. break;
  2029. case SuiteNode::Local::UNDEFINED:
  2030. ERR_FAIL_V_MSG(nullptr, "Undefined local found.");
  2031. }
  2032. }
  2033. return identifier;
  2034. }
  2035. GDScriptParser::LiteralNode *GDScriptParser::parse_literal() {
  2036. return static_cast<LiteralNode *>(parse_literal(nullptr, false));
  2037. }
  2038. GDScriptParser::ExpressionNode *GDScriptParser::parse_literal(ExpressionNode *p_previous_operand, bool p_can_assign) {
  2039. if (previous.type != GDScriptTokenizer::Token::LITERAL) {
  2040. push_error("Parser bug: parsing literal node without literal token.");
  2041. ERR_FAIL_V_MSG(nullptr, "Parser bug: parsing literal node without literal token.");
  2042. }
  2043. LiteralNode *literal = alloc_node<LiteralNode>();
  2044. complete_extents(literal);
  2045. literal->value = previous.literal;
  2046. return literal;
  2047. }
  2048. GDScriptParser::ExpressionNode *GDScriptParser::parse_self(ExpressionNode *p_previous_operand, bool p_can_assign) {
  2049. if (current_function && current_function->is_static) {
  2050. push_error(R"(Cannot use "self" inside a static function.)");
  2051. }
  2052. SelfNode *self = alloc_node<SelfNode>();
  2053. complete_extents(self);
  2054. self->current_class = current_class;
  2055. return self;
  2056. }
  2057. GDScriptParser::ExpressionNode *GDScriptParser::parse_builtin_constant(ExpressionNode *p_previous_operand, bool p_can_assign) {
  2058. GDScriptTokenizer::Token::Type op_type = previous.type;
  2059. LiteralNode *constant = alloc_node<LiteralNode>();
  2060. complete_extents(constant);
  2061. switch (op_type) {
  2062. case GDScriptTokenizer::Token::CONST_PI:
  2063. constant->value = Math_PI;
  2064. break;
  2065. case GDScriptTokenizer::Token::CONST_TAU:
  2066. constant->value = Math_TAU;
  2067. break;
  2068. case GDScriptTokenizer::Token::CONST_INF:
  2069. constant->value = INFINITY;
  2070. break;
  2071. case GDScriptTokenizer::Token::CONST_NAN:
  2072. constant->value = NAN;
  2073. break;
  2074. default:
  2075. return nullptr; // Unreachable.
  2076. }
  2077. return constant;
  2078. }
  2079. GDScriptParser::ExpressionNode *GDScriptParser::parse_unary_operator(ExpressionNode *p_previous_operand, bool p_can_assign) {
  2080. GDScriptTokenizer::Token::Type op_type = previous.type;
  2081. UnaryOpNode *operation = alloc_node<UnaryOpNode>();
  2082. switch (op_type) {
  2083. case GDScriptTokenizer::Token::MINUS:
  2084. operation->operation = UnaryOpNode::OP_NEGATIVE;
  2085. operation->variant_op = Variant::OP_NEGATE;
  2086. operation->operand = parse_precedence(PREC_SIGN, false);
  2087. if (operation->operand == nullptr) {
  2088. push_error(R"(Expected expression after "-" operator.)");
  2089. }
  2090. break;
  2091. case GDScriptTokenizer::Token::PLUS:
  2092. operation->operation = UnaryOpNode::OP_POSITIVE;
  2093. operation->variant_op = Variant::OP_POSITIVE;
  2094. operation->operand = parse_precedence(PREC_SIGN, false);
  2095. if (operation->operand == nullptr) {
  2096. push_error(R"(Expected expression after "+" operator.)");
  2097. }
  2098. break;
  2099. case GDScriptTokenizer::Token::TILDE:
  2100. operation->operation = UnaryOpNode::OP_COMPLEMENT;
  2101. operation->variant_op = Variant::OP_BIT_NEGATE;
  2102. operation->operand = parse_precedence(PREC_BIT_NOT, false);
  2103. if (operation->operand == nullptr) {
  2104. push_error(R"(Expected expression after "~" operator.)");
  2105. }
  2106. break;
  2107. case GDScriptTokenizer::Token::NOT:
  2108. case GDScriptTokenizer::Token::BANG:
  2109. operation->operation = UnaryOpNode::OP_LOGIC_NOT;
  2110. operation->variant_op = Variant::OP_NOT;
  2111. operation->operand = parse_precedence(PREC_LOGIC_NOT, false);
  2112. if (operation->operand == nullptr) {
  2113. push_error(vformat(R"(Expected expression after "%s" operator.)", op_type == GDScriptTokenizer::Token::NOT ? "not" : "!"));
  2114. }
  2115. break;
  2116. default:
  2117. complete_extents(operation);
  2118. return nullptr; // Unreachable.
  2119. }
  2120. complete_extents(operation);
  2121. return operation;
  2122. }
  2123. GDScriptParser::ExpressionNode *GDScriptParser::parse_binary_not_in_operator(ExpressionNode *p_previous_operand, bool p_can_assign) {
  2124. // check that NOT is followed by IN by consuming it before calling parse_binary_operator which will only receive a plain IN
  2125. UnaryOpNode *operation = alloc_node<UnaryOpNode>();
  2126. reset_extents(operation, p_previous_operand);
  2127. update_extents(operation);
  2128. consume(GDScriptTokenizer::Token::IN, R"(Expected "in" after "not" in content-test operator.)");
  2129. ExpressionNode *in_operation = parse_binary_operator(p_previous_operand, p_can_assign);
  2130. operation->operation = UnaryOpNode::OP_LOGIC_NOT;
  2131. operation->variant_op = Variant::OP_NOT;
  2132. operation->operand = in_operation;
  2133. complete_extents(operation);
  2134. return operation;
  2135. }
  2136. GDScriptParser::ExpressionNode *GDScriptParser::parse_binary_operator(ExpressionNode *p_previous_operand, bool p_can_assign) {
  2137. GDScriptTokenizer::Token op = previous;
  2138. BinaryOpNode *operation = alloc_node<BinaryOpNode>();
  2139. reset_extents(operation, p_previous_operand);
  2140. update_extents(operation);
  2141. Precedence precedence = (Precedence)(get_rule(op.type)->precedence + 1);
  2142. operation->left_operand = p_previous_operand;
  2143. operation->right_operand = parse_precedence(precedence, false);
  2144. complete_extents(operation);
  2145. if (operation->right_operand == nullptr) {
  2146. push_error(vformat(R"(Expected expression after "%s" operator.")", op.get_name()));
  2147. }
  2148. // TODO: Also for unary, ternary, and assignment.
  2149. switch (op.type) {
  2150. case GDScriptTokenizer::Token::PLUS:
  2151. operation->operation = BinaryOpNode::OP_ADDITION;
  2152. operation->variant_op = Variant::OP_ADD;
  2153. break;
  2154. case GDScriptTokenizer::Token::MINUS:
  2155. operation->operation = BinaryOpNode::OP_SUBTRACTION;
  2156. operation->variant_op = Variant::OP_SUBTRACT;
  2157. break;
  2158. case GDScriptTokenizer::Token::STAR:
  2159. operation->operation = BinaryOpNode::OP_MULTIPLICATION;
  2160. operation->variant_op = Variant::OP_MULTIPLY;
  2161. break;
  2162. case GDScriptTokenizer::Token::SLASH:
  2163. operation->operation = BinaryOpNode::OP_DIVISION;
  2164. operation->variant_op = Variant::OP_DIVIDE;
  2165. break;
  2166. case GDScriptTokenizer::Token::PERCENT:
  2167. operation->operation = BinaryOpNode::OP_MODULO;
  2168. operation->variant_op = Variant::OP_MODULE;
  2169. break;
  2170. case GDScriptTokenizer::Token::STAR_STAR:
  2171. operation->operation = BinaryOpNode::OP_POWER;
  2172. operation->variant_op = Variant::OP_POWER;
  2173. break;
  2174. case GDScriptTokenizer::Token::LESS_LESS:
  2175. operation->operation = BinaryOpNode::OP_BIT_LEFT_SHIFT;
  2176. operation->variant_op = Variant::OP_SHIFT_LEFT;
  2177. break;
  2178. case GDScriptTokenizer::Token::GREATER_GREATER:
  2179. operation->operation = BinaryOpNode::OP_BIT_RIGHT_SHIFT;
  2180. operation->variant_op = Variant::OP_SHIFT_RIGHT;
  2181. break;
  2182. case GDScriptTokenizer::Token::AMPERSAND:
  2183. operation->operation = BinaryOpNode::OP_BIT_AND;
  2184. operation->variant_op = Variant::OP_BIT_AND;
  2185. break;
  2186. case GDScriptTokenizer::Token::PIPE:
  2187. operation->operation = BinaryOpNode::OP_BIT_OR;
  2188. operation->variant_op = Variant::OP_BIT_OR;
  2189. break;
  2190. case GDScriptTokenizer::Token::CARET:
  2191. operation->operation = BinaryOpNode::OP_BIT_XOR;
  2192. operation->variant_op = Variant::OP_BIT_XOR;
  2193. break;
  2194. case GDScriptTokenizer::Token::AND:
  2195. case GDScriptTokenizer::Token::AMPERSAND_AMPERSAND:
  2196. operation->operation = BinaryOpNode::OP_LOGIC_AND;
  2197. operation->variant_op = Variant::OP_AND;
  2198. break;
  2199. case GDScriptTokenizer::Token::OR:
  2200. case GDScriptTokenizer::Token::PIPE_PIPE:
  2201. operation->operation = BinaryOpNode::OP_LOGIC_OR;
  2202. operation->variant_op = Variant::OP_OR;
  2203. break;
  2204. case GDScriptTokenizer::Token::IS:
  2205. operation->operation = BinaryOpNode::OP_TYPE_TEST;
  2206. break;
  2207. case GDScriptTokenizer::Token::IN:
  2208. operation->operation = BinaryOpNode::OP_CONTENT_TEST;
  2209. operation->variant_op = Variant::OP_IN;
  2210. break;
  2211. case GDScriptTokenizer::Token::EQUAL_EQUAL:
  2212. operation->operation = BinaryOpNode::OP_COMP_EQUAL;
  2213. operation->variant_op = Variant::OP_EQUAL;
  2214. break;
  2215. case GDScriptTokenizer::Token::BANG_EQUAL:
  2216. operation->operation = BinaryOpNode::OP_COMP_NOT_EQUAL;
  2217. operation->variant_op = Variant::OP_NOT_EQUAL;
  2218. break;
  2219. case GDScriptTokenizer::Token::LESS:
  2220. operation->operation = BinaryOpNode::OP_COMP_LESS;
  2221. operation->variant_op = Variant::OP_LESS;
  2222. break;
  2223. case GDScriptTokenizer::Token::LESS_EQUAL:
  2224. operation->operation = BinaryOpNode::OP_COMP_LESS_EQUAL;
  2225. operation->variant_op = Variant::OP_LESS_EQUAL;
  2226. break;
  2227. case GDScriptTokenizer::Token::GREATER:
  2228. operation->operation = BinaryOpNode::OP_COMP_GREATER;
  2229. operation->variant_op = Variant::OP_GREATER;
  2230. break;
  2231. case GDScriptTokenizer::Token::GREATER_EQUAL:
  2232. operation->operation = BinaryOpNode::OP_COMP_GREATER_EQUAL;
  2233. operation->variant_op = Variant::OP_GREATER_EQUAL;
  2234. break;
  2235. default:
  2236. return nullptr; // Unreachable.
  2237. }
  2238. return operation;
  2239. }
  2240. GDScriptParser::ExpressionNode *GDScriptParser::parse_ternary_operator(ExpressionNode *p_previous_operand, bool p_can_assign) {
  2241. // Only one ternary operation exists, so no abstraction here.
  2242. TernaryOpNode *operation = alloc_node<TernaryOpNode>();
  2243. reset_extents(operation, p_previous_operand);
  2244. update_extents(operation);
  2245. operation->true_expr = p_previous_operand;
  2246. operation->condition = parse_precedence(PREC_TERNARY, false);
  2247. if (operation->condition == nullptr) {
  2248. push_error(R"(Expected expression as ternary condition after "if".)");
  2249. }
  2250. consume(GDScriptTokenizer::Token::ELSE, R"(Expected "else" after ternary operator condition.)");
  2251. operation->false_expr = parse_precedence(PREC_TERNARY, false);
  2252. if (operation->false_expr == nullptr) {
  2253. push_error(R"(Expected expression after "else".)");
  2254. }
  2255. complete_extents(operation);
  2256. return operation;
  2257. }
  2258. GDScriptParser::ExpressionNode *GDScriptParser::parse_assignment(ExpressionNode *p_previous_operand, bool p_can_assign) {
  2259. if (!p_can_assign) {
  2260. push_error("Assignment is not allowed inside an expression.");
  2261. return parse_expression(false); // Return the following expression.
  2262. }
  2263. if (p_previous_operand == nullptr) {
  2264. return parse_expression(false); // Return the following expression.
  2265. }
  2266. #ifdef DEBUG_ENABLED
  2267. VariableNode *source_variable = nullptr;
  2268. #endif
  2269. switch (p_previous_operand->type) {
  2270. case Node::IDENTIFIER: {
  2271. #ifdef DEBUG_ENABLED
  2272. // Get source to store assignment count.
  2273. // Also remove one usage since assignment isn't usage.
  2274. IdentifierNode *id = static_cast<IdentifierNode *>(p_previous_operand);
  2275. switch (id->source) {
  2276. case IdentifierNode::LOCAL_VARIABLE:
  2277. source_variable = id->variable_source;
  2278. id->variable_source->usages--;
  2279. break;
  2280. case IdentifierNode::LOCAL_CONSTANT:
  2281. id->constant_source->usages--;
  2282. break;
  2283. case IdentifierNode::FUNCTION_PARAMETER:
  2284. id->parameter_source->usages--;
  2285. break;
  2286. case IdentifierNode::LOCAL_ITERATOR:
  2287. case IdentifierNode::LOCAL_BIND:
  2288. id->bind_source->usages--;
  2289. break;
  2290. default:
  2291. break;
  2292. }
  2293. #endif
  2294. } break;
  2295. case Node::SUBSCRIPT:
  2296. // Okay.
  2297. break;
  2298. default:
  2299. push_error(R"(Only identifier, attribute access, and subscription access can be used as assignment target.)");
  2300. return parse_expression(false); // Return the following expression.
  2301. }
  2302. AssignmentNode *assignment = alloc_node<AssignmentNode>();
  2303. reset_extents(assignment, p_previous_operand);
  2304. update_extents(assignment);
  2305. make_completion_context(COMPLETION_ASSIGN, assignment);
  2306. #ifdef DEBUG_ENABLED
  2307. bool has_operator = true;
  2308. #endif
  2309. switch (previous.type) {
  2310. case GDScriptTokenizer::Token::EQUAL:
  2311. assignment->operation = AssignmentNode::OP_NONE;
  2312. assignment->variant_op = Variant::OP_MAX;
  2313. #ifdef DEBUG_ENABLED
  2314. has_operator = false;
  2315. #endif
  2316. break;
  2317. case GDScriptTokenizer::Token::PLUS_EQUAL:
  2318. assignment->operation = AssignmentNode::OP_ADDITION;
  2319. assignment->variant_op = Variant::OP_ADD;
  2320. break;
  2321. case GDScriptTokenizer::Token::MINUS_EQUAL:
  2322. assignment->operation = AssignmentNode::OP_SUBTRACTION;
  2323. assignment->variant_op = Variant::OP_SUBTRACT;
  2324. break;
  2325. case GDScriptTokenizer::Token::STAR_EQUAL:
  2326. assignment->operation = AssignmentNode::OP_MULTIPLICATION;
  2327. assignment->variant_op = Variant::OP_MULTIPLY;
  2328. break;
  2329. case GDScriptTokenizer::Token::STAR_STAR_EQUAL:
  2330. assignment->operation = AssignmentNode::OP_POWER;
  2331. assignment->variant_op = Variant::OP_POWER;
  2332. break;
  2333. case GDScriptTokenizer::Token::SLASH_EQUAL:
  2334. assignment->operation = AssignmentNode::OP_DIVISION;
  2335. assignment->variant_op = Variant::OP_DIVIDE;
  2336. break;
  2337. case GDScriptTokenizer::Token::PERCENT_EQUAL:
  2338. assignment->operation = AssignmentNode::OP_MODULO;
  2339. assignment->variant_op = Variant::OP_MODULE;
  2340. break;
  2341. case GDScriptTokenizer::Token::LESS_LESS_EQUAL:
  2342. assignment->operation = AssignmentNode::OP_BIT_SHIFT_LEFT;
  2343. assignment->variant_op = Variant::OP_SHIFT_LEFT;
  2344. break;
  2345. case GDScriptTokenizer::Token::GREATER_GREATER_EQUAL:
  2346. assignment->operation = AssignmentNode::OP_BIT_SHIFT_RIGHT;
  2347. assignment->variant_op = Variant::OP_SHIFT_RIGHT;
  2348. break;
  2349. case GDScriptTokenizer::Token::AMPERSAND_EQUAL:
  2350. assignment->operation = AssignmentNode::OP_BIT_AND;
  2351. assignment->variant_op = Variant::OP_BIT_AND;
  2352. break;
  2353. case GDScriptTokenizer::Token::PIPE_EQUAL:
  2354. assignment->operation = AssignmentNode::OP_BIT_OR;
  2355. assignment->variant_op = Variant::OP_BIT_OR;
  2356. break;
  2357. case GDScriptTokenizer::Token::CARET_EQUAL:
  2358. assignment->operation = AssignmentNode::OP_BIT_XOR;
  2359. assignment->variant_op = Variant::OP_BIT_XOR;
  2360. break;
  2361. default:
  2362. break; // Unreachable.
  2363. }
  2364. assignment->assignee = p_previous_operand;
  2365. assignment->assigned_value = parse_expression(false);
  2366. if (assignment->assigned_value == nullptr) {
  2367. push_error(R"(Expected an expression after "=".)");
  2368. }
  2369. complete_extents(assignment);
  2370. #ifdef DEBUG_ENABLED
  2371. if (source_variable != nullptr) {
  2372. if (has_operator && source_variable->assignments == 0) {
  2373. push_warning(assignment, GDScriptWarning::UNASSIGNED_VARIABLE_OP_ASSIGN, source_variable->identifier->name);
  2374. }
  2375. source_variable->assignments += 1;
  2376. }
  2377. #endif
  2378. return assignment;
  2379. }
  2380. GDScriptParser::ExpressionNode *GDScriptParser::parse_await(ExpressionNode *p_previous_operand, bool p_can_assign) {
  2381. AwaitNode *await = alloc_node<AwaitNode>();
  2382. ExpressionNode *element = parse_precedence(PREC_AWAIT, false);
  2383. if (element == nullptr) {
  2384. push_error(R"(Expected signal or coroutine after "await".)");
  2385. }
  2386. await->to_await = element;
  2387. complete_extents(await);
  2388. if (current_function) { // Might be null in a getter or setter.
  2389. current_function->is_coroutine = true;
  2390. }
  2391. return await;
  2392. }
  2393. GDScriptParser::ExpressionNode *GDScriptParser::parse_array(ExpressionNode *p_previous_operand, bool p_can_assign) {
  2394. ArrayNode *array = alloc_node<ArrayNode>();
  2395. if (!check(GDScriptTokenizer::Token::BRACKET_CLOSE)) {
  2396. do {
  2397. if (check(GDScriptTokenizer::Token::BRACKET_CLOSE)) {
  2398. // Allow for trailing comma.
  2399. break;
  2400. }
  2401. ExpressionNode *element = parse_expression(false);
  2402. if (element == nullptr) {
  2403. push_error(R"(Expected expression as array element.)");
  2404. } else {
  2405. array->elements.push_back(element);
  2406. }
  2407. } while (match(GDScriptTokenizer::Token::COMMA) && !is_at_end());
  2408. }
  2409. pop_multiline();
  2410. consume(GDScriptTokenizer::Token::BRACKET_CLOSE, R"(Expected closing "]" after array elements.)");
  2411. complete_extents(array);
  2412. return array;
  2413. }
  2414. GDScriptParser::ExpressionNode *GDScriptParser::parse_dictionary(ExpressionNode *p_previous_operand, bool p_can_assign) {
  2415. DictionaryNode *dictionary = alloc_node<DictionaryNode>();
  2416. bool decided_style = false;
  2417. if (!check(GDScriptTokenizer::Token::BRACE_CLOSE)) {
  2418. do {
  2419. if (check(GDScriptTokenizer::Token::BRACE_CLOSE)) {
  2420. // Allow for trailing comma.
  2421. break;
  2422. }
  2423. // Key.
  2424. ExpressionNode *key = parse_expression(false, true); // Stop on "=" so we can check for Lua table style.
  2425. if (key == nullptr) {
  2426. push_error(R"(Expected expression as dictionary key.)");
  2427. }
  2428. if (!decided_style) {
  2429. switch (current.type) {
  2430. case GDScriptTokenizer::Token::COLON:
  2431. dictionary->style = DictionaryNode::PYTHON_DICT;
  2432. break;
  2433. case GDScriptTokenizer::Token::EQUAL:
  2434. dictionary->style = DictionaryNode::LUA_TABLE;
  2435. break;
  2436. default:
  2437. push_error(R"(Expected ":" or "=" after dictionary key.)");
  2438. break;
  2439. }
  2440. decided_style = true;
  2441. }
  2442. switch (dictionary->style) {
  2443. case DictionaryNode::LUA_TABLE:
  2444. if (key != nullptr && key->type != Node::IDENTIFIER && key->type != Node::LITERAL) {
  2445. push_error("Expected identifier or string as LUA-style dictionary key.");
  2446. advance();
  2447. break;
  2448. }
  2449. if (key != nullptr && key->type == Node::LITERAL && static_cast<LiteralNode *>(key)->value.get_type() != Variant::STRING) {
  2450. push_error("Expected identifier or string as LUA-style dictionary key.");
  2451. advance();
  2452. break;
  2453. }
  2454. if (!match(GDScriptTokenizer::Token::EQUAL)) {
  2455. if (match(GDScriptTokenizer::Token::COLON)) {
  2456. push_error(R"(Expected "=" after dictionary key. Mixing dictionary styles is not allowed.)");
  2457. advance(); // Consume wrong separator anyway.
  2458. } else {
  2459. push_error(R"(Expected "=" after dictionary key.)");
  2460. }
  2461. }
  2462. if (key != nullptr) {
  2463. key->is_constant = true;
  2464. if (key->type == Node::IDENTIFIER) {
  2465. key->reduced_value = static_cast<IdentifierNode *>(key)->name;
  2466. } else if (key->type == Node::LITERAL) {
  2467. key->reduced_value = StringName(static_cast<LiteralNode *>(key)->value.operator String());
  2468. }
  2469. }
  2470. break;
  2471. case DictionaryNode::PYTHON_DICT:
  2472. if (!match(GDScriptTokenizer::Token::COLON)) {
  2473. if (match(GDScriptTokenizer::Token::EQUAL)) {
  2474. push_error(R"(Expected ":" after dictionary key. Mixing dictionary styles is not allowed.)");
  2475. advance(); // Consume wrong separator anyway.
  2476. } else {
  2477. push_error(R"(Expected ":" after dictionary key.)");
  2478. }
  2479. }
  2480. break;
  2481. }
  2482. // Value.
  2483. ExpressionNode *value = parse_expression(false);
  2484. if (value == nullptr) {
  2485. push_error(R"(Expected expression as dictionary value.)");
  2486. }
  2487. if (key != nullptr && value != nullptr) {
  2488. dictionary->elements.push_back({ key, value });
  2489. }
  2490. } while (match(GDScriptTokenizer::Token::COMMA) && !is_at_end());
  2491. }
  2492. pop_multiline();
  2493. consume(GDScriptTokenizer::Token::BRACE_CLOSE, R"(Expected closing "}" after dictionary elements.)");
  2494. complete_extents(dictionary);
  2495. return dictionary;
  2496. }
  2497. GDScriptParser::ExpressionNode *GDScriptParser::parse_grouping(ExpressionNode *p_previous_operand, bool p_can_assign) {
  2498. ExpressionNode *grouped = parse_expression(false);
  2499. pop_multiline();
  2500. if (grouped == nullptr) {
  2501. push_error(R"(Expected grouping expression.)");
  2502. } else {
  2503. consume(GDScriptTokenizer::Token::PARENTHESIS_CLOSE, R"*(Expected closing ")" after grouping expression.)*");
  2504. }
  2505. return grouped;
  2506. }
  2507. GDScriptParser::ExpressionNode *GDScriptParser::parse_attribute(ExpressionNode *p_previous_operand, bool p_can_assign) {
  2508. SubscriptNode *attribute = alloc_node<SubscriptNode>();
  2509. reset_extents(attribute, p_previous_operand);
  2510. update_extents(attribute);
  2511. if (for_completion) {
  2512. bool is_builtin = false;
  2513. if (p_previous_operand && p_previous_operand->type == Node::IDENTIFIER) {
  2514. const IdentifierNode *id = static_cast<const IdentifierNode *>(p_previous_operand);
  2515. Variant::Type builtin_type = get_builtin_type(id->name);
  2516. if (builtin_type < Variant::VARIANT_MAX) {
  2517. make_completion_context(COMPLETION_BUILT_IN_TYPE_CONSTANT_OR_STATIC_METHOD, builtin_type, true);
  2518. is_builtin = true;
  2519. }
  2520. }
  2521. if (!is_builtin) {
  2522. make_completion_context(COMPLETION_ATTRIBUTE, attribute, -1, true);
  2523. }
  2524. }
  2525. attribute->base = p_previous_operand;
  2526. if (!consume(GDScriptTokenizer::Token::IDENTIFIER, R"(Expected identifier after "." for attribute access.)")) {
  2527. complete_extents(attribute);
  2528. return attribute;
  2529. }
  2530. attribute->is_attribute = true;
  2531. attribute->attribute = parse_identifier();
  2532. complete_extents(attribute);
  2533. return attribute;
  2534. }
  2535. GDScriptParser::ExpressionNode *GDScriptParser::parse_subscript(ExpressionNode *p_previous_operand, bool p_can_assign) {
  2536. SubscriptNode *subscript = alloc_node<SubscriptNode>();
  2537. reset_extents(subscript, p_previous_operand);
  2538. update_extents(subscript);
  2539. make_completion_context(COMPLETION_SUBSCRIPT, subscript);
  2540. subscript->base = p_previous_operand;
  2541. subscript->index = parse_expression(false);
  2542. if (subscript->index == nullptr) {
  2543. push_error(R"(Expected expression after "[".)");
  2544. }
  2545. pop_multiline();
  2546. consume(GDScriptTokenizer::Token::BRACKET_CLOSE, R"(Expected "]" after subscription index.)");
  2547. complete_extents(subscript);
  2548. return subscript;
  2549. }
  2550. GDScriptParser::ExpressionNode *GDScriptParser::parse_cast(ExpressionNode *p_previous_operand, bool p_can_assign) {
  2551. CastNode *cast = alloc_node<CastNode>();
  2552. reset_extents(cast, p_previous_operand);
  2553. update_extents(cast);
  2554. cast->operand = p_previous_operand;
  2555. cast->cast_type = parse_type();
  2556. complete_extents(cast);
  2557. if (cast->cast_type == nullptr) {
  2558. push_error(R"(Expected type specifier after "as".)");
  2559. return p_previous_operand;
  2560. }
  2561. return cast;
  2562. }
  2563. GDScriptParser::ExpressionNode *GDScriptParser::parse_call(ExpressionNode *p_previous_operand, bool p_can_assign) {
  2564. CallNode *call = alloc_node<CallNode>();
  2565. reset_extents(call, p_previous_operand);
  2566. if (previous.type == GDScriptTokenizer::Token::SUPER) {
  2567. // Super call.
  2568. call->is_super = true;
  2569. push_multiline(true);
  2570. if (match(GDScriptTokenizer::Token::PARENTHESIS_OPEN)) {
  2571. // Implicit call to the parent method of the same name.
  2572. if (current_function == nullptr) {
  2573. push_error(R"(Cannot use implicit "super" call outside of a function.)");
  2574. pop_multiline();
  2575. complete_extents(call);
  2576. return nullptr;
  2577. }
  2578. if (current_function->identifier) {
  2579. call->function_name = current_function->identifier->name;
  2580. } else {
  2581. call->function_name = SNAME("<anonymous>");
  2582. }
  2583. } else {
  2584. consume(GDScriptTokenizer::Token::PERIOD, R"(Expected "." or "(" after "super".)");
  2585. make_completion_context(COMPLETION_SUPER_METHOD, call, true);
  2586. if (!consume(GDScriptTokenizer::Token::IDENTIFIER, R"(Expected function name after ".".)")) {
  2587. pop_multiline();
  2588. complete_extents(call);
  2589. return nullptr;
  2590. }
  2591. IdentifierNode *identifier = parse_identifier();
  2592. call->callee = identifier;
  2593. call->function_name = identifier->name;
  2594. consume(GDScriptTokenizer::Token::PARENTHESIS_OPEN, R"(Expected "(" after function name.)");
  2595. }
  2596. } else {
  2597. call->callee = p_previous_operand;
  2598. if (call->callee == nullptr) {
  2599. push_error(R"*(Cannot call on an expression. Use ".call()" if it's a Callable.)*");
  2600. } else if (call->callee->type == Node::IDENTIFIER) {
  2601. call->function_name = static_cast<IdentifierNode *>(call->callee)->name;
  2602. make_completion_context(COMPLETION_METHOD, call->callee);
  2603. } else if (call->callee->type == Node::SUBSCRIPT) {
  2604. SubscriptNode *attribute = static_cast<SubscriptNode *>(call->callee);
  2605. if (attribute->is_attribute) {
  2606. if (attribute->attribute) {
  2607. call->function_name = attribute->attribute->name;
  2608. }
  2609. make_completion_context(COMPLETION_ATTRIBUTE_METHOD, call->callee);
  2610. } else {
  2611. // TODO: The analyzer can see if this is actually a Callable and give better error message.
  2612. push_error(R"*(Cannot call on an expression. Use ".call()" if it's a Callable.)*");
  2613. }
  2614. } else {
  2615. push_error(R"*(Cannot call on an expression. Use ".call()" if it's a Callable.)*");
  2616. }
  2617. }
  2618. // Arguments.
  2619. CompletionType ct = COMPLETION_CALL_ARGUMENTS;
  2620. if (call->function_name == "load") {
  2621. ct = COMPLETION_RESOURCE_PATH;
  2622. }
  2623. push_completion_call(call);
  2624. int argument_index = 0;
  2625. do {
  2626. make_completion_context(ct, call, argument_index++, true);
  2627. if (check(GDScriptTokenizer::Token::PARENTHESIS_CLOSE)) {
  2628. // Allow for trailing comma.
  2629. break;
  2630. }
  2631. bool use_identifier_completion = current.cursor_place == GDScriptTokenizer::CURSOR_END || current.cursor_place == GDScriptTokenizer::CURSOR_MIDDLE;
  2632. ExpressionNode *argument = parse_expression(false);
  2633. if (argument == nullptr) {
  2634. push_error(R"(Expected expression as the function argument.)");
  2635. } else {
  2636. call->arguments.push_back(argument);
  2637. if (argument->type == Node::IDENTIFIER && use_identifier_completion) {
  2638. completion_context.type = COMPLETION_IDENTIFIER;
  2639. }
  2640. }
  2641. ct = COMPLETION_CALL_ARGUMENTS;
  2642. } while (match(GDScriptTokenizer::Token::COMMA));
  2643. pop_completion_call();
  2644. pop_multiline();
  2645. consume(GDScriptTokenizer::Token::PARENTHESIS_CLOSE, R"*(Expected closing ")" after call arguments.)*");
  2646. complete_extents(call);
  2647. return call;
  2648. }
  2649. GDScriptParser::ExpressionNode *GDScriptParser::parse_get_node(ExpressionNode *p_previous_operand, bool p_can_assign) {
  2650. if (!current.is_node_name() && !check(GDScriptTokenizer::Token::LITERAL) && !check(GDScriptTokenizer::Token::SLASH) && !check(GDScriptTokenizer::Token::PERCENT)) {
  2651. push_error(vformat(R"(Expected node path as string or identifier after "%s".)", previous.get_name()));
  2652. return nullptr;
  2653. }
  2654. if (check(GDScriptTokenizer::Token::LITERAL)) {
  2655. if (current.literal.get_type() != Variant::STRING) {
  2656. push_error(vformat(R"(Expected node path as string or identifier after "%s".)", previous.get_name()));
  2657. return nullptr;
  2658. }
  2659. }
  2660. GetNodeNode *get_node = alloc_node<GetNodeNode>();
  2661. // Store the last item in the path so the parser knows what to expect.
  2662. // Allow allows more specific error messages.
  2663. enum PathState {
  2664. PATH_STATE_START,
  2665. PATH_STATE_SLASH,
  2666. PATH_STATE_PERCENT,
  2667. PATH_STATE_NODE_NAME,
  2668. } path_state = PATH_STATE_START;
  2669. if (previous.type == GDScriptTokenizer::Token::DOLLAR) {
  2670. // Detect initial slash, which will be handled in the loop if it matches.
  2671. match(GDScriptTokenizer::Token::SLASH);
  2672. #ifdef DEBUG_ENABLED
  2673. } else {
  2674. get_node->use_dollar = false;
  2675. #endif
  2676. }
  2677. int context_argument = 0;
  2678. do {
  2679. if (previous.type == GDScriptTokenizer::Token::PERCENT) {
  2680. if (path_state != PATH_STATE_START && path_state != PATH_STATE_SLASH) {
  2681. push_error(R"("%" is only valid in the beginning of a node name (either after "$" or after "/"))");
  2682. complete_extents(get_node);
  2683. return nullptr;
  2684. }
  2685. get_node->full_path += "%";
  2686. path_state = PATH_STATE_PERCENT;
  2687. } else if (previous.type == GDScriptTokenizer::Token::SLASH) {
  2688. if (path_state != PATH_STATE_START && path_state != PATH_STATE_NODE_NAME) {
  2689. push_error(R"("/" is only valid at the beginning of the path or after a node name.)");
  2690. complete_extents(get_node);
  2691. return nullptr;
  2692. }
  2693. get_node->full_path += "/";
  2694. path_state = PATH_STATE_SLASH;
  2695. }
  2696. make_completion_context(COMPLETION_GET_NODE, get_node, context_argument++);
  2697. if (match(GDScriptTokenizer::Token::LITERAL)) {
  2698. if (previous.literal.get_type() != Variant::STRING) {
  2699. String previous_token;
  2700. switch (path_state) {
  2701. case PATH_STATE_START:
  2702. previous_token = "$";
  2703. break;
  2704. case PATH_STATE_PERCENT:
  2705. previous_token = "%";
  2706. break;
  2707. case PATH_STATE_SLASH:
  2708. previous_token = "/";
  2709. break;
  2710. default:
  2711. break;
  2712. }
  2713. push_error(vformat(R"(Expected node path as string or identifier after "%s".)", previous_token));
  2714. complete_extents(get_node);
  2715. return nullptr;
  2716. }
  2717. get_node->full_path += previous.literal.operator String();
  2718. path_state = PATH_STATE_NODE_NAME;
  2719. } else if (current.is_node_name()) {
  2720. advance();
  2721. get_node->full_path += previous.get_identifier();
  2722. path_state = PATH_STATE_NODE_NAME;
  2723. } else if (!check(GDScriptTokenizer::Token::SLASH) && !check(GDScriptTokenizer::Token::PERCENT)) {
  2724. push_error(vformat(R"(Unexpected "%s" in node path.)", current.get_name()));
  2725. complete_extents(get_node);
  2726. return nullptr;
  2727. }
  2728. } while (match(GDScriptTokenizer::Token::SLASH) || match(GDScriptTokenizer::Token::PERCENT));
  2729. complete_extents(get_node);
  2730. return get_node;
  2731. }
  2732. GDScriptParser::ExpressionNode *GDScriptParser::parse_preload(ExpressionNode *p_previous_operand, bool p_can_assign) {
  2733. PreloadNode *preload = alloc_node<PreloadNode>();
  2734. preload->resolved_path = "<missing path>";
  2735. push_multiline(true);
  2736. consume(GDScriptTokenizer::Token::PARENTHESIS_OPEN, R"(Expected "(" after "preload".)");
  2737. make_completion_context(COMPLETION_RESOURCE_PATH, preload);
  2738. push_completion_call(preload);
  2739. preload->path = parse_expression(false);
  2740. if (preload->path == nullptr) {
  2741. push_error(R"(Expected resource path after "(".)");
  2742. }
  2743. pop_completion_call();
  2744. pop_multiline();
  2745. consume(GDScriptTokenizer::Token::PARENTHESIS_CLOSE, R"*(Expected ")" after preload path.)*");
  2746. complete_extents(preload);
  2747. return preload;
  2748. }
  2749. GDScriptParser::ExpressionNode *GDScriptParser::parse_lambda(ExpressionNode *p_previous_operand, bool p_can_assign) {
  2750. LambdaNode *lambda = alloc_node<LambdaNode>();
  2751. lambda->parent_function = current_function;
  2752. FunctionNode *function = alloc_node<FunctionNode>();
  2753. function->source_lambda = lambda;
  2754. function->is_static = current_function != nullptr ? current_function->is_static : false;
  2755. if (match(GDScriptTokenizer::Token::IDENTIFIER)) {
  2756. function->identifier = parse_identifier();
  2757. }
  2758. bool multiline_context = multiline_stack.back()->get();
  2759. // Reset the multiline stack since we don't want the multiline mode one in the lambda body.
  2760. push_multiline(false);
  2761. if (multiline_context) {
  2762. tokenizer.push_expression_indented_block();
  2763. }
  2764. push_multiline(true); // For the parameters.
  2765. if (function->identifier) {
  2766. consume(GDScriptTokenizer::Token::PARENTHESIS_OPEN, R"(Expected opening "(" after lambda name.)");
  2767. } else {
  2768. consume(GDScriptTokenizer::Token::PARENTHESIS_OPEN, R"(Expected opening "(" after "func".)");
  2769. }
  2770. FunctionNode *previous_function = current_function;
  2771. current_function = function;
  2772. SuiteNode *body = alloc_node<SuiteNode>();
  2773. body->parent_function = current_function;
  2774. body->parent_block = current_suite;
  2775. SuiteNode *previous_suite = current_suite;
  2776. current_suite = body;
  2777. parse_function_signature(function, body, "lambda");
  2778. current_suite = previous_suite;
  2779. bool previous_in_lambda = in_lambda;
  2780. in_lambda = true;
  2781. function->body = parse_suite("lambda declaration", body, true);
  2782. complete_extents(function);
  2783. complete_extents(lambda);
  2784. pop_multiline();
  2785. if (multiline_context) {
  2786. // If we're in multiline mode, we want to skip the spurious DEDENT and NEWLINE tokens.
  2787. while (check(GDScriptTokenizer::Token::DEDENT) || check(GDScriptTokenizer::Token::INDENT) || check(GDScriptTokenizer::Token::NEWLINE)) {
  2788. current = tokenizer.scan(); // Not advance() since we don't want to change the previous token.
  2789. }
  2790. tokenizer.pop_expression_indented_block();
  2791. }
  2792. current_function = previous_function;
  2793. in_lambda = previous_in_lambda;
  2794. lambda->function = function;
  2795. return lambda;
  2796. }
  2797. GDScriptParser::ExpressionNode *GDScriptParser::parse_yield(ExpressionNode *p_previous_operand, bool p_can_assign) {
  2798. push_error(R"("yield" was removed in Godot 4.0. Use "await" instead.)");
  2799. return nullptr;
  2800. }
  2801. GDScriptParser::ExpressionNode *GDScriptParser::parse_invalid_token(ExpressionNode *p_previous_operand, bool p_can_assign) {
  2802. // Just for better error messages.
  2803. GDScriptTokenizer::Token::Type invalid = previous.type;
  2804. switch (invalid) {
  2805. case GDScriptTokenizer::Token::QUESTION_MARK:
  2806. push_error(R"(Unexpected "?" in source. If you want a ternary operator, use "truthy_value if true_condition else falsy_value".)");
  2807. break;
  2808. default:
  2809. return nullptr; // Unreachable.
  2810. }
  2811. // Return the previous expression.
  2812. return p_previous_operand;
  2813. }
  2814. GDScriptParser::TypeNode *GDScriptParser::parse_type(bool p_allow_void) {
  2815. TypeNode *type = alloc_node<TypeNode>();
  2816. make_completion_context(p_allow_void ? COMPLETION_TYPE_NAME_OR_VOID : COMPLETION_TYPE_NAME, type);
  2817. if (!match(GDScriptTokenizer::Token::IDENTIFIER)) {
  2818. if (match(GDScriptTokenizer::Token::VOID)) {
  2819. if (p_allow_void) {
  2820. complete_extents(type);
  2821. TypeNode *void_type = type;
  2822. return void_type;
  2823. } else {
  2824. push_error(R"("void" is only allowed for a function return type.)");
  2825. }
  2826. }
  2827. // Leave error message to the caller who knows the context.
  2828. complete_extents(type);
  2829. return nullptr;
  2830. }
  2831. IdentifierNode *type_element = parse_identifier();
  2832. type->type_chain.push_back(type_element);
  2833. if (match(GDScriptTokenizer::Token::BRACKET_OPEN)) {
  2834. // Typed collection (like Array[int]).
  2835. type->container_type = parse_type(false); // Don't allow void for array element type.
  2836. if (type->container_type == nullptr) {
  2837. push_error(R"(Expected type for collection after "[".)");
  2838. complete_extents(type);
  2839. type = nullptr;
  2840. } else if (type->container_type->container_type != nullptr) {
  2841. push_error("Nested typed collections are not supported.");
  2842. }
  2843. consume(GDScriptTokenizer::Token::BRACKET_CLOSE, R"(Expected closing "]" after collection type.)");
  2844. if (type != nullptr) {
  2845. complete_extents(type);
  2846. }
  2847. return type;
  2848. }
  2849. int chain_index = 1;
  2850. while (match(GDScriptTokenizer::Token::PERIOD)) {
  2851. make_completion_context(COMPLETION_TYPE_ATTRIBUTE, type, chain_index++);
  2852. if (consume(GDScriptTokenizer::Token::IDENTIFIER, R"(Expected inner type name after ".".)")) {
  2853. type_element = parse_identifier();
  2854. type->type_chain.push_back(type_element);
  2855. }
  2856. }
  2857. complete_extents(type);
  2858. return type;
  2859. }
  2860. #ifdef TOOLS_ENABLED
  2861. static bool _in_codeblock(String p_line, bool p_already_in, int *r_block_begins = nullptr) {
  2862. int start_block = p_line.rfind("[codeblock]");
  2863. int end_block = p_line.rfind("[/codeblock]");
  2864. if (start_block != -1 && r_block_begins) {
  2865. *r_block_begins = start_block;
  2866. }
  2867. if (p_already_in) {
  2868. if (end_block == -1) {
  2869. return true;
  2870. } else if (start_block == -1) {
  2871. return false;
  2872. } else {
  2873. return start_block > end_block;
  2874. }
  2875. } else {
  2876. if (start_block == -1) {
  2877. return false;
  2878. } else if (end_block == -1) {
  2879. return true;
  2880. } else {
  2881. return start_block > end_block;
  2882. }
  2883. }
  2884. }
  2885. bool GDScriptParser::has_comment(int p_line) {
  2886. return tokenizer.get_comments().has(p_line);
  2887. }
  2888. String GDScriptParser::get_doc_comment(int p_line, bool p_single_line) {
  2889. const HashMap<int, GDScriptTokenizer::CommentData> &comments = tokenizer.get_comments();
  2890. ERR_FAIL_COND_V(!comments.has(p_line), String());
  2891. if (p_single_line) {
  2892. if (comments[p_line].comment.begins_with("##")) {
  2893. return comments[p_line].comment.trim_prefix("##").strip_edges();
  2894. }
  2895. return "";
  2896. }
  2897. String doc;
  2898. int line = p_line;
  2899. bool in_codeblock = false;
  2900. while (comments.has(line - 1)) {
  2901. if (!comments[line - 1].new_line || !comments[line - 1].comment.begins_with("##")) {
  2902. break;
  2903. }
  2904. line--;
  2905. }
  2906. int codeblock_begins = 0;
  2907. while (comments.has(line)) {
  2908. if (!comments[line].new_line || !comments[line].comment.begins_with("##")) {
  2909. break;
  2910. }
  2911. String doc_line = comments[line].comment.trim_prefix("##");
  2912. in_codeblock = _in_codeblock(doc_line, in_codeblock, &codeblock_begins);
  2913. if (in_codeblock) {
  2914. int i = 0;
  2915. for (; i < codeblock_begins; i++) {
  2916. if (doc_line[i] != ' ') {
  2917. break;
  2918. }
  2919. }
  2920. doc_line = doc_line.substr(i);
  2921. } else {
  2922. doc_line = doc_line.strip_edges();
  2923. }
  2924. String line_join = (in_codeblock) ? "\n" : " ";
  2925. doc = (doc.is_empty()) ? doc_line : doc + line_join + doc_line;
  2926. line++;
  2927. }
  2928. return doc;
  2929. }
  2930. void GDScriptParser::get_class_doc_comment(int p_line, String &p_brief, String &p_desc, Vector<Pair<String, String>> &p_tutorials, bool p_inner_class) {
  2931. const HashMap<int, GDScriptTokenizer::CommentData> &comments = tokenizer.get_comments();
  2932. if (!comments.has(p_line)) {
  2933. return;
  2934. }
  2935. ERR_FAIL_COND(!p_brief.is_empty() || !p_desc.is_empty() || p_tutorials.size() != 0);
  2936. int line = p_line;
  2937. bool in_codeblock = false;
  2938. enum Mode {
  2939. BRIEF,
  2940. DESC,
  2941. TUTORIALS,
  2942. DONE,
  2943. };
  2944. Mode mode = BRIEF;
  2945. if (p_inner_class) {
  2946. while (comments.has(line - 1)) {
  2947. if (!comments[line - 1].new_line || !comments[line - 1].comment.begins_with("##")) {
  2948. break;
  2949. }
  2950. line--;
  2951. }
  2952. }
  2953. int codeblock_begins = 0;
  2954. while (comments.has(line)) {
  2955. if (!comments[line].new_line || !comments[line].comment.begins_with("##")) {
  2956. break;
  2957. }
  2958. String title, link; // For tutorials.
  2959. String doc_line = comments[line++].comment.trim_prefix("##");
  2960. String stripped_line = doc_line.strip_edges();
  2961. // Set the read mode.
  2962. if (stripped_line.is_empty() && mode == BRIEF && !p_brief.is_empty()) {
  2963. mode = DESC;
  2964. continue;
  2965. } else if (stripped_line.begins_with("@tutorial")) {
  2966. int begin_scan = String("@tutorial").length();
  2967. if (begin_scan >= stripped_line.length()) {
  2968. continue; // invalid syntax.
  2969. }
  2970. if (stripped_line[begin_scan] == ':') { // No title.
  2971. // Syntax: ## @tutorial: https://godotengine.org/ // The title argument is optional.
  2972. title = "";
  2973. link = stripped_line.trim_prefix("@tutorial:").strip_edges();
  2974. } else {
  2975. /* Syntax:
  2976. * @tutorial ( The Title Here ) : https://the.url/
  2977. * ^ open ^ close ^ colon ^ url
  2978. */
  2979. int open_bracket_pos = begin_scan, close_bracket_pos = 0;
  2980. while (open_bracket_pos < stripped_line.length() && (stripped_line[open_bracket_pos] == ' ' || stripped_line[open_bracket_pos] == '\t')) {
  2981. open_bracket_pos++;
  2982. }
  2983. if (open_bracket_pos == stripped_line.length() || stripped_line[open_bracket_pos++] != '(') {
  2984. continue; // invalid syntax.
  2985. }
  2986. close_bracket_pos = open_bracket_pos;
  2987. while (close_bracket_pos < stripped_line.length() && stripped_line[close_bracket_pos] != ')') {
  2988. close_bracket_pos++;
  2989. }
  2990. if (close_bracket_pos == stripped_line.length()) {
  2991. continue; // invalid syntax.
  2992. }
  2993. int colon_pos = close_bracket_pos + 1;
  2994. while (colon_pos < stripped_line.length() && (stripped_line[colon_pos] == ' ' || stripped_line[colon_pos] == '\t')) {
  2995. colon_pos++;
  2996. }
  2997. if (colon_pos == stripped_line.length() || stripped_line[colon_pos++] != ':') {
  2998. continue; // invalid syntax.
  2999. }
  3000. title = stripped_line.substr(open_bracket_pos, close_bracket_pos - open_bracket_pos).strip_edges();
  3001. link = stripped_line.substr(colon_pos).strip_edges();
  3002. }
  3003. mode = TUTORIALS;
  3004. in_codeblock = false;
  3005. } else if (stripped_line.is_empty()) {
  3006. continue;
  3007. } else {
  3008. // Tutorial docs are single line, we need a @tag after it.
  3009. if (mode == TUTORIALS) {
  3010. mode = DONE;
  3011. }
  3012. in_codeblock = _in_codeblock(doc_line, in_codeblock, &codeblock_begins);
  3013. }
  3014. if (in_codeblock) {
  3015. int i = 0;
  3016. for (; i < codeblock_begins; i++) {
  3017. if (doc_line[i] != ' ') {
  3018. break;
  3019. }
  3020. }
  3021. doc_line = doc_line.substr(i);
  3022. } else {
  3023. doc_line = stripped_line;
  3024. }
  3025. String line_join = (in_codeblock) ? "\n" : " ";
  3026. switch (mode) {
  3027. case BRIEF:
  3028. p_brief = (p_brief.length() == 0) ? doc_line : p_brief + line_join + doc_line;
  3029. break;
  3030. case DESC:
  3031. p_desc = (p_desc.length() == 0) ? doc_line : p_desc + line_join + doc_line;
  3032. break;
  3033. case TUTORIALS:
  3034. p_tutorials.append(Pair<String, String>(title, link));
  3035. break;
  3036. case DONE:
  3037. break;
  3038. }
  3039. }
  3040. if (current_class->members.size() > 0) {
  3041. const ClassNode::Member &m = current_class->members[0];
  3042. int first_member_line = m.get_line();
  3043. if (first_member_line == line) {
  3044. p_brief = "";
  3045. p_desc = "";
  3046. p_tutorials.clear();
  3047. }
  3048. }
  3049. }
  3050. #endif // TOOLS_ENABLED
  3051. GDScriptParser::ParseRule *GDScriptParser::get_rule(GDScriptTokenizer::Token::Type p_token_type) {
  3052. // Function table for expression parsing.
  3053. // clang-format destroys the alignment here, so turn off for the table.
  3054. /* clang-format off */
  3055. static ParseRule rules[] = {
  3056. // PREFIX INFIX PRECEDENCE (for infix)
  3057. { nullptr, nullptr, PREC_NONE }, // EMPTY,
  3058. // Basic
  3059. { nullptr, nullptr, PREC_NONE }, // ANNOTATION,
  3060. { &GDScriptParser::parse_identifier, nullptr, PREC_NONE }, // IDENTIFIER,
  3061. { &GDScriptParser::parse_literal, nullptr, PREC_NONE }, // LITERAL,
  3062. // Comparison
  3063. { nullptr, &GDScriptParser::parse_binary_operator, PREC_COMPARISON }, // LESS,
  3064. { nullptr, &GDScriptParser::parse_binary_operator, PREC_COMPARISON }, // LESS_EQUAL,
  3065. { nullptr, &GDScriptParser::parse_binary_operator, PREC_COMPARISON }, // GREATER,
  3066. { nullptr, &GDScriptParser::parse_binary_operator, PREC_COMPARISON }, // GREATER_EQUAL,
  3067. { nullptr, &GDScriptParser::parse_binary_operator, PREC_COMPARISON }, // EQUAL_EQUAL,
  3068. { nullptr, &GDScriptParser::parse_binary_operator, PREC_COMPARISON }, // BANG_EQUAL,
  3069. // Logical
  3070. { nullptr, &GDScriptParser::parse_binary_operator, PREC_LOGIC_AND }, // AND,
  3071. { nullptr, &GDScriptParser::parse_binary_operator, PREC_LOGIC_OR }, // OR,
  3072. { &GDScriptParser::parse_unary_operator, &GDScriptParser::parse_binary_not_in_operator, PREC_CONTENT_TEST }, // NOT,
  3073. { nullptr, &GDScriptParser::parse_binary_operator, PREC_LOGIC_AND }, // AMPERSAND_AMPERSAND,
  3074. { nullptr, &GDScriptParser::parse_binary_operator, PREC_LOGIC_OR }, // PIPE_PIPE,
  3075. { &GDScriptParser::parse_unary_operator, nullptr, PREC_NONE }, // BANG,
  3076. // Bitwise
  3077. { nullptr, &GDScriptParser::parse_binary_operator, PREC_BIT_AND }, // AMPERSAND,
  3078. { nullptr, &GDScriptParser::parse_binary_operator, PREC_BIT_OR }, // PIPE,
  3079. { &GDScriptParser::parse_unary_operator, nullptr, PREC_NONE }, // TILDE,
  3080. { nullptr, &GDScriptParser::parse_binary_operator, PREC_BIT_XOR }, // CARET,
  3081. { nullptr, &GDScriptParser::parse_binary_operator, PREC_BIT_SHIFT }, // LESS_LESS,
  3082. { nullptr, &GDScriptParser::parse_binary_operator, PREC_BIT_SHIFT }, // GREATER_GREATER,
  3083. // Math
  3084. { &GDScriptParser::parse_unary_operator, &GDScriptParser::parse_binary_operator, PREC_ADDITION_SUBTRACTION }, // PLUS,
  3085. { &GDScriptParser::parse_unary_operator, &GDScriptParser::parse_binary_operator, PREC_ADDITION_SUBTRACTION }, // MINUS,
  3086. { nullptr, &GDScriptParser::parse_binary_operator, PREC_FACTOR }, // STAR,
  3087. { nullptr, &GDScriptParser::parse_binary_operator, PREC_POWER }, // STAR_STAR,
  3088. { nullptr, &GDScriptParser::parse_binary_operator, PREC_FACTOR }, // SLASH,
  3089. { &GDScriptParser::parse_get_node, &GDScriptParser::parse_binary_operator, PREC_FACTOR }, // PERCENT,
  3090. // Assignment
  3091. { nullptr, &GDScriptParser::parse_assignment, PREC_ASSIGNMENT }, // EQUAL,
  3092. { nullptr, &GDScriptParser::parse_assignment, PREC_ASSIGNMENT }, // PLUS_EQUAL,
  3093. { nullptr, &GDScriptParser::parse_assignment, PREC_ASSIGNMENT }, // MINUS_EQUAL,
  3094. { nullptr, &GDScriptParser::parse_assignment, PREC_ASSIGNMENT }, // STAR_EQUAL,
  3095. { nullptr, &GDScriptParser::parse_assignment, PREC_ASSIGNMENT }, // STAR_STAR_EQUAL,
  3096. { nullptr, &GDScriptParser::parse_assignment, PREC_ASSIGNMENT }, // SLASH_EQUAL,
  3097. { nullptr, &GDScriptParser::parse_assignment, PREC_ASSIGNMENT }, // PERCENT_EQUAL,
  3098. { nullptr, &GDScriptParser::parse_assignment, PREC_ASSIGNMENT }, // LESS_LESS_EQUAL,
  3099. { nullptr, &GDScriptParser::parse_assignment, PREC_ASSIGNMENT }, // GREATER_GREATER_EQUAL,
  3100. { nullptr, &GDScriptParser::parse_assignment, PREC_ASSIGNMENT }, // AMPERSAND_EQUAL,
  3101. { nullptr, &GDScriptParser::parse_assignment, PREC_ASSIGNMENT }, // PIPE_EQUAL,
  3102. { nullptr, &GDScriptParser::parse_assignment, PREC_ASSIGNMENT }, // CARET_EQUAL,
  3103. // Control flow
  3104. { nullptr, &GDScriptParser::parse_ternary_operator, PREC_TERNARY }, // IF,
  3105. { nullptr, nullptr, PREC_NONE }, // ELIF,
  3106. { nullptr, nullptr, PREC_NONE }, // ELSE,
  3107. { nullptr, nullptr, PREC_NONE }, // FOR,
  3108. { nullptr, nullptr, PREC_NONE }, // WHILE,
  3109. { nullptr, nullptr, PREC_NONE }, // BREAK,
  3110. { nullptr, nullptr, PREC_NONE }, // CONTINUE,
  3111. { nullptr, nullptr, PREC_NONE }, // PASS,
  3112. { nullptr, nullptr, PREC_NONE }, // RETURN,
  3113. { nullptr, nullptr, PREC_NONE }, // MATCH,
  3114. // Keywords
  3115. { nullptr, &GDScriptParser::parse_cast, PREC_CAST }, // AS,
  3116. { nullptr, nullptr, PREC_NONE }, // ASSERT,
  3117. { &GDScriptParser::parse_await, nullptr, PREC_NONE }, // AWAIT,
  3118. { nullptr, nullptr, PREC_NONE }, // BREAKPOINT,
  3119. { nullptr, nullptr, PREC_NONE }, // CLASS,
  3120. { nullptr, nullptr, PREC_NONE }, // CLASS_NAME,
  3121. { nullptr, nullptr, PREC_NONE }, // CONST,
  3122. { nullptr, nullptr, PREC_NONE }, // ENUM,
  3123. { nullptr, nullptr, PREC_NONE }, // EXTENDS,
  3124. { &GDScriptParser::parse_lambda, nullptr, PREC_NONE }, // FUNC,
  3125. { nullptr, &GDScriptParser::parse_binary_operator, PREC_CONTENT_TEST }, // IN,
  3126. { nullptr, &GDScriptParser::parse_binary_operator, PREC_TYPE_TEST }, // IS,
  3127. { nullptr, nullptr, PREC_NONE }, // NAMESPACE,
  3128. { &GDScriptParser::parse_preload, nullptr, PREC_NONE }, // PRELOAD,
  3129. { &GDScriptParser::parse_self, nullptr, PREC_NONE }, // SELF,
  3130. { nullptr, nullptr, PREC_NONE }, // SIGNAL,
  3131. { nullptr, nullptr, PREC_NONE }, // STATIC,
  3132. { &GDScriptParser::parse_call, nullptr, PREC_NONE }, // SUPER,
  3133. { nullptr, nullptr, PREC_NONE }, // TRAIT,
  3134. { nullptr, nullptr, PREC_NONE }, // VAR,
  3135. { nullptr, nullptr, PREC_NONE }, // VOID,
  3136. { &GDScriptParser::parse_yield, nullptr, PREC_NONE }, // YIELD,
  3137. // Punctuation
  3138. { &GDScriptParser::parse_array, &GDScriptParser::parse_subscript, PREC_SUBSCRIPT }, // BRACKET_OPEN,
  3139. { nullptr, nullptr, PREC_NONE }, // BRACKET_CLOSE,
  3140. { &GDScriptParser::parse_dictionary, nullptr, PREC_NONE }, // BRACE_OPEN,
  3141. { nullptr, nullptr, PREC_NONE }, // BRACE_CLOSE,
  3142. { &GDScriptParser::parse_grouping, &GDScriptParser::parse_call, PREC_CALL }, // PARENTHESIS_OPEN,
  3143. { nullptr, nullptr, PREC_NONE }, // PARENTHESIS_CLOSE,
  3144. { nullptr, nullptr, PREC_NONE }, // COMMA,
  3145. { nullptr, nullptr, PREC_NONE }, // SEMICOLON,
  3146. { nullptr, &GDScriptParser::parse_attribute, PREC_ATTRIBUTE }, // PERIOD,
  3147. { nullptr, nullptr, PREC_NONE }, // PERIOD_PERIOD,
  3148. { nullptr, nullptr, PREC_NONE }, // COLON,
  3149. { &GDScriptParser::parse_get_node, nullptr, PREC_NONE }, // DOLLAR,
  3150. { nullptr, nullptr, PREC_NONE }, // FORWARD_ARROW,
  3151. { nullptr, nullptr, PREC_NONE }, // UNDERSCORE,
  3152. // Whitespace
  3153. { nullptr, nullptr, PREC_NONE }, // NEWLINE,
  3154. { nullptr, nullptr, PREC_NONE }, // INDENT,
  3155. { nullptr, nullptr, PREC_NONE }, // DEDENT,
  3156. // Constants
  3157. { &GDScriptParser::parse_builtin_constant, nullptr, PREC_NONE }, // CONST_PI,
  3158. { &GDScriptParser::parse_builtin_constant, nullptr, PREC_NONE }, // CONST_TAU,
  3159. { &GDScriptParser::parse_builtin_constant, nullptr, PREC_NONE }, // CONST_INF,
  3160. { &GDScriptParser::parse_builtin_constant, nullptr, PREC_NONE }, // CONST_NAN,
  3161. // Error message improvement
  3162. { nullptr, nullptr, PREC_NONE }, // VCS_CONFLICT_MARKER,
  3163. { nullptr, nullptr, PREC_NONE }, // BACKTICK,
  3164. { nullptr, &GDScriptParser::parse_invalid_token, PREC_CAST }, // QUESTION_MARK,
  3165. // Special
  3166. { nullptr, nullptr, PREC_NONE }, // ERROR,
  3167. { nullptr, nullptr, PREC_NONE }, // TK_EOF,
  3168. };
  3169. /* clang-format on */
  3170. // Avoid desync.
  3171. static_assert(sizeof(rules) / sizeof(rules[0]) == GDScriptTokenizer::Token::TK_MAX, "Amount of parse rules don't match the amount of token types.");
  3172. // Let's assume this is never invalid, since nothing generates a TK_MAX.
  3173. return &rules[p_token_type];
  3174. }
  3175. bool GDScriptParser::SuiteNode::has_local(const StringName &p_name) const {
  3176. if (locals_indices.has(p_name)) {
  3177. return true;
  3178. }
  3179. if (parent_block != nullptr) {
  3180. return parent_block->has_local(p_name);
  3181. }
  3182. return false;
  3183. }
  3184. const GDScriptParser::SuiteNode::Local &GDScriptParser::SuiteNode::get_local(const StringName &p_name) const {
  3185. if (locals_indices.has(p_name)) {
  3186. return locals[locals_indices[p_name]];
  3187. }
  3188. if (parent_block != nullptr) {
  3189. return parent_block->get_local(p_name);
  3190. }
  3191. return empty;
  3192. }
  3193. bool GDScriptParser::AnnotationNode::apply(GDScriptParser *p_this, Node *p_target) const {
  3194. return (p_this->*(p_this->valid_annotations[name].apply))(this, p_target);
  3195. }
  3196. bool GDScriptParser::AnnotationNode::applies_to(uint32_t p_target_kinds) const {
  3197. return (info->target_kind & p_target_kinds) > 0;
  3198. }
  3199. bool GDScriptParser::validate_annotation_arguments(AnnotationNode *p_annotation) {
  3200. ERR_FAIL_COND_V_MSG(!valid_annotations.has(p_annotation->name), false, vformat(R"(Annotation "%s" not found to validate.)", p_annotation->name));
  3201. const MethodInfo &info = valid_annotations[p_annotation->name].info;
  3202. if (((info.flags & METHOD_FLAG_VARARG) == 0) && p_annotation->arguments.size() > info.arguments.size()) {
  3203. push_error(vformat(R"(Annotation "%s" requires at most %d arguments, but %d were given.)", p_annotation->name, info.arguments.size(), p_annotation->arguments.size()));
  3204. return false;
  3205. }
  3206. if (p_annotation->arguments.size() < info.arguments.size() - info.default_arguments.size()) {
  3207. push_error(vformat(R"(Annotation "%s" requires at least %d arguments, but %d were given.)", p_annotation->name, info.arguments.size() - info.default_arguments.size(), p_annotation->arguments.size()));
  3208. return false;
  3209. }
  3210. const List<PropertyInfo>::Element *E = info.arguments.front();
  3211. for (int i = 0; i < p_annotation->arguments.size(); i++) {
  3212. ExpressionNode *argument = p_annotation->arguments[i];
  3213. const PropertyInfo &parameter = E->get();
  3214. if (E->next() != nullptr) {
  3215. E = E->next();
  3216. }
  3217. switch (parameter.type) {
  3218. case Variant::STRING:
  3219. case Variant::STRING_NAME:
  3220. case Variant::NODE_PATH:
  3221. // Allow "quote-less strings", as long as they are recognized as identifiers.
  3222. if (argument->type == Node::IDENTIFIER) {
  3223. IdentifierNode *string = static_cast<IdentifierNode *>(argument);
  3224. Callable::CallError error;
  3225. Vector<Variant> args = varray(string->name);
  3226. const Variant *name = args.ptr();
  3227. Variant r;
  3228. Variant::construct(parameter.type, r, &(name), 1, error);
  3229. p_annotation->resolved_arguments.push_back(r);
  3230. if (error.error != Callable::CallError::CALL_OK) {
  3231. push_error(vformat(R"(Expected %s as argument %d of annotation "%s".)", Variant::get_type_name(parameter.type), i + 1, p_annotation->name));
  3232. p_annotation->resolved_arguments.remove_at(p_annotation->resolved_arguments.size() - 1);
  3233. return false;
  3234. }
  3235. break;
  3236. }
  3237. [[fallthrough]];
  3238. default: {
  3239. if (argument->type != Node::LITERAL) {
  3240. push_error(vformat(R"(Expected %s as argument %d of annotation "%s".)", Variant::get_type_name(parameter.type), i + 1, p_annotation->name));
  3241. return false;
  3242. }
  3243. Variant value = static_cast<LiteralNode *>(argument)->value;
  3244. if (!Variant::can_convert_strict(value.get_type(), parameter.type)) {
  3245. push_error(vformat(R"(Expected %s as argument %d of annotation "%s".)", Variant::get_type_name(parameter.type), i + 1, p_annotation->name));
  3246. return false;
  3247. }
  3248. Callable::CallError error;
  3249. const Variant *args = &value;
  3250. Variant r;
  3251. Variant::construct(parameter.type, r, &(args), 1, error);
  3252. p_annotation->resolved_arguments.push_back(r);
  3253. if (error.error != Callable::CallError::CALL_OK) {
  3254. push_error(vformat(R"(Expected %s as argument %d of annotation "%s".)", Variant::get_type_name(parameter.type), i + 1, p_annotation->name));
  3255. p_annotation->resolved_arguments.remove_at(p_annotation->resolved_arguments.size() - 1);
  3256. return false;
  3257. }
  3258. break;
  3259. }
  3260. }
  3261. }
  3262. return true;
  3263. }
  3264. bool GDScriptParser::tool_annotation(const AnnotationNode *p_annotation, Node *p_node) {
  3265. this->_is_tool = true;
  3266. return true;
  3267. }
  3268. bool GDScriptParser::icon_annotation(const AnnotationNode *p_annotation, Node *p_node) {
  3269. ERR_FAIL_COND_V_MSG(p_node->type != Node::CLASS, false, R"("@icon" annotation can only be applied to classes.)");
  3270. ClassNode *p_class = static_cast<ClassNode *>(p_node);
  3271. p_class->icon_path = p_annotation->resolved_arguments[0];
  3272. return true;
  3273. }
  3274. bool GDScriptParser::onready_annotation(const AnnotationNode *p_annotation, Node *p_node) {
  3275. ERR_FAIL_COND_V_MSG(p_node->type != Node::VARIABLE, false, R"("@onready" annotation can only be applied to class variables.)");
  3276. VariableNode *variable = static_cast<VariableNode *>(p_node);
  3277. if (variable->onready) {
  3278. push_error(R"("@onready" annotation can only be used once per variable.)");
  3279. return false;
  3280. }
  3281. variable->onready = true;
  3282. current_class->onready_used = true;
  3283. return true;
  3284. }
  3285. template <PropertyHint t_hint, Variant::Type t_type>
  3286. bool GDScriptParser::export_annotations(const AnnotationNode *p_annotation, Node *p_node) {
  3287. ERR_FAIL_COND_V_MSG(p_node->type != Node::VARIABLE, false, vformat(R"("%s" annotation can only be applied to variables.)", p_annotation->name));
  3288. {
  3289. const int max_flags = 32;
  3290. if (t_hint == PropertyHint::PROPERTY_HINT_FLAGS && p_annotation->resolved_arguments.size() > max_flags) {
  3291. push_error(vformat(R"(The argument count limit for "@export_flags" is exceeded (%d/%d).)", p_annotation->resolved_arguments.size(), max_flags), p_annotation);
  3292. return false;
  3293. }
  3294. }
  3295. VariableNode *variable = static_cast<VariableNode *>(p_node);
  3296. if (variable->exported) {
  3297. push_error(vformat(R"(Annotation "%s" cannot be used with another "@export" annotation.)", p_annotation->name), p_annotation);
  3298. return false;
  3299. }
  3300. variable->exported = true;
  3301. variable->export_info.type = t_type;
  3302. variable->export_info.hint = t_hint;
  3303. String hint_string;
  3304. for (int i = 0; i < p_annotation->resolved_arguments.size(); i++) {
  3305. if (i > 0) {
  3306. hint_string += ",";
  3307. }
  3308. hint_string += String(p_annotation->resolved_arguments[i]);
  3309. }
  3310. variable->export_info.hint_string = hint_string;
  3311. // This is called after the analyzer is done finding the type, so this should be set here.
  3312. DataType export_type = variable->get_datatype();
  3313. if (p_annotation->name == SNAME("@export_range")) {
  3314. if (export_type.builtin_type == Variant::INT) {
  3315. variable->export_info.type = Variant::INT;
  3316. }
  3317. }
  3318. if (p_annotation->name == SNAME("@export")) {
  3319. if (variable->datatype_specifier == nullptr && variable->initializer == nullptr) {
  3320. push_error(R"(Cannot use simple "@export" annotation with variable without type or initializer, since type can't be inferred.)", p_annotation);
  3321. return false;
  3322. }
  3323. bool is_array = false;
  3324. if (export_type.builtin_type == Variant::ARRAY && export_type.has_container_element_type()) {
  3325. export_type = export_type.get_container_element_type(); // Use inner type for.
  3326. is_array = true;
  3327. }
  3328. if (export_type.is_variant() || export_type.has_no_type()) {
  3329. push_error(R"(Cannot use simple "@export" annotation because the type of the initialized value can't be inferred.)", p_annotation);
  3330. return false;
  3331. }
  3332. switch (export_type.kind) {
  3333. case GDScriptParser::DataType::BUILTIN:
  3334. variable->export_info.type = export_type.builtin_type;
  3335. variable->export_info.hint = PROPERTY_HINT_NONE;
  3336. variable->export_info.hint_string = Variant::get_type_name(export_type.builtin_type);
  3337. break;
  3338. case GDScriptParser::DataType::NATIVE:
  3339. if (ClassDB::is_parent_class(export_type.native_type, SNAME("Resource"))) {
  3340. variable->export_info.type = Variant::OBJECT;
  3341. variable->export_info.hint = PROPERTY_HINT_RESOURCE_TYPE;
  3342. variable->export_info.hint_string = export_type.native_type;
  3343. } else if (ClassDB::is_parent_class(export_type.native_type, SNAME("Node"))) {
  3344. variable->export_info.type = Variant::OBJECT;
  3345. variable->export_info.hint = PROPERTY_HINT_NODE_TYPE;
  3346. variable->export_info.hint_string = export_type.native_type;
  3347. } else {
  3348. push_error(R"(Export type can only be built-in, a resource, a node, or an enum.)", variable);
  3349. return false;
  3350. }
  3351. break;
  3352. case GDScriptParser::DataType::CLASS:
  3353. if (ClassDB::is_parent_class(export_type.native_type, SNAME("Resource"))) {
  3354. variable->export_info.type = Variant::OBJECT;
  3355. variable->export_info.hint = PROPERTY_HINT_RESOURCE_TYPE;
  3356. variable->export_info.hint_string = export_type.to_string();
  3357. } else if (ClassDB::is_parent_class(export_type.native_type, SNAME("Node"))) {
  3358. variable->export_info.type = Variant::OBJECT;
  3359. variable->export_info.hint = PROPERTY_HINT_NODE_TYPE;
  3360. variable->export_info.hint_string = export_type.to_string();
  3361. } else {
  3362. push_error(R"(Export type can only be built-in, a resource, a node or an enum.)", variable);
  3363. return false;
  3364. }
  3365. break;
  3366. case GDScriptParser::DataType::SCRIPT: {
  3367. StringName class_name;
  3368. StringName native_base;
  3369. if (export_type.script_type.is_valid()) {
  3370. class_name = export_type.script_type->get_language()->get_global_class_name(export_type.script_type->get_path());
  3371. native_base = export_type.script_type->get_instance_base_type();
  3372. }
  3373. if (class_name == StringName()) {
  3374. Ref<Script> script = ResourceLoader::load(export_type.script_path, SNAME("Script"));
  3375. if (script.is_valid()) {
  3376. class_name = script->get_language()->get_global_class_name(export_type.script_path);
  3377. native_base = script->get_instance_base_type();
  3378. }
  3379. }
  3380. if (class_name != StringName() && native_base != StringName() && ClassDB::is_parent_class(native_base, SNAME("Resource"))) {
  3381. variable->export_info.type = Variant::OBJECT;
  3382. variable->export_info.hint = PROPERTY_HINT_RESOURCE_TYPE;
  3383. variable->export_info.hint_string = class_name;
  3384. }
  3385. } break;
  3386. case GDScriptParser::DataType::ENUM: {
  3387. variable->export_info.type = Variant::INT;
  3388. variable->export_info.hint = PROPERTY_HINT_ENUM;
  3389. String enum_hint_string;
  3390. bool first = true;
  3391. for (const KeyValue<StringName, int64_t> &E : export_type.enum_values) {
  3392. if (!first) {
  3393. enum_hint_string += ",";
  3394. } else {
  3395. first = false;
  3396. }
  3397. enum_hint_string += E.key.operator String().capitalize().xml_escape();
  3398. enum_hint_string += ":";
  3399. enum_hint_string += String::num_int64(E.value).xml_escape();
  3400. }
  3401. variable->export_info.hint_string = enum_hint_string;
  3402. } break;
  3403. default:
  3404. // TODO: Allow custom user resources.
  3405. push_error(R"(Export type can only be built-in, a resource, or an enum.)", variable);
  3406. break;
  3407. }
  3408. if (is_array) {
  3409. String hint_prefix = itos(variable->export_info.type);
  3410. if (variable->export_info.hint) {
  3411. hint_prefix += "/" + itos(variable->export_info.hint);
  3412. }
  3413. variable->export_info.hint = PROPERTY_HINT_TYPE_STRING;
  3414. variable->export_info.hint_string = hint_prefix + ":" + variable->export_info.hint_string;
  3415. variable->export_info.type = Variant::ARRAY;
  3416. }
  3417. } else {
  3418. // Validate variable type with export.
  3419. if (!export_type.is_variant() && (export_type.kind != DataType::BUILTIN || export_type.builtin_type != t_type)) {
  3420. // Allow float/int conversion.
  3421. if ((t_type != Variant::FLOAT || export_type.builtin_type != Variant::INT) && (t_type != Variant::INT || export_type.builtin_type != Variant::FLOAT)) {
  3422. push_error(vformat(R"("%s" annotation requires a variable of type "%s" but type "%s" was given instead.)", p_annotation->name.operator String(), Variant::get_type_name(t_type), export_type.to_string()), variable);
  3423. return false;
  3424. }
  3425. }
  3426. }
  3427. return true;
  3428. }
  3429. template <PropertyUsageFlags t_usage>
  3430. bool GDScriptParser::export_group_annotations(const AnnotationNode *p_annotation, Node *p_node) {
  3431. AnnotationNode *annotation = const_cast<AnnotationNode *>(p_annotation);
  3432. annotation->export_info.name = annotation->resolved_arguments[0];
  3433. switch (t_usage) {
  3434. case PROPERTY_USAGE_CATEGORY: {
  3435. annotation->export_info.usage = t_usage;
  3436. } break;
  3437. case PROPERTY_USAGE_GROUP: {
  3438. annotation->export_info.usage = t_usage;
  3439. if (annotation->resolved_arguments.size() == 2) {
  3440. annotation->export_info.hint_string = annotation->resolved_arguments[1];
  3441. }
  3442. } break;
  3443. case PROPERTY_USAGE_SUBGROUP: {
  3444. annotation->export_info.usage = t_usage;
  3445. if (annotation->resolved_arguments.size() == 2) {
  3446. annotation->export_info.hint_string = annotation->resolved_arguments[1];
  3447. }
  3448. } break;
  3449. }
  3450. current_class->add_member_group(annotation);
  3451. return true;
  3452. }
  3453. bool GDScriptParser::warning_annotations(const AnnotationNode *p_annotation, Node *p_node) {
  3454. #ifdef DEBUG_ENABLED
  3455. bool has_error = false;
  3456. for (const Variant &warning_name : p_annotation->resolved_arguments) {
  3457. GDScriptWarning::Code warning = GDScriptWarning::get_code_from_name(String(warning_name).to_upper());
  3458. if (warning == GDScriptWarning::WARNING_MAX) {
  3459. push_error(vformat(R"(Invalid warning name: "%s".)", warning_name), p_annotation);
  3460. has_error = true;
  3461. } else {
  3462. p_node->ignored_warnings.push_back(warning);
  3463. }
  3464. }
  3465. return !has_error;
  3466. #else // ! DEBUG_ENABLED
  3467. // Only available in debug builds.
  3468. return true;
  3469. #endif // DEBUG_ENABLED
  3470. }
  3471. bool GDScriptParser::rpc_annotation(const AnnotationNode *p_annotation, Node *p_node) {
  3472. ERR_FAIL_COND_V_MSG(p_node->type != Node::FUNCTION, false, vformat(R"("%s" annotation can only be applied to functions.)", p_annotation->name));
  3473. FunctionNode *function = static_cast<FunctionNode *>(p_node);
  3474. if (function->rpc_config.get_type() != Variant::NIL) {
  3475. push_error(R"(RPC annotations can only be used once per function.)", p_annotation);
  3476. return false;
  3477. }
  3478. Dictionary rpc_config;
  3479. rpc_config["rpc_mode"] = MultiplayerAPI::RPC_MODE_AUTHORITY;
  3480. if (p_annotation->resolved_arguments.size()) {
  3481. int last = p_annotation->resolved_arguments.size() - 1;
  3482. if (p_annotation->resolved_arguments[last].get_type() == Variant::INT) {
  3483. rpc_config["channel"] = p_annotation->resolved_arguments[last].operator int();
  3484. last -= 1;
  3485. }
  3486. if (last > 3) {
  3487. push_error(R"(Invalid RPC arguments. At most 4 arguments are allowed, where only the last argument can be an integer to specify the channel.')", p_annotation);
  3488. return false;
  3489. }
  3490. for (int i = last; i >= 0; i--) {
  3491. String mode = p_annotation->resolved_arguments[i].operator String();
  3492. if (mode == "any_peer") {
  3493. rpc_config["rpc_mode"] = MultiplayerAPI::RPC_MODE_ANY_PEER;
  3494. } else if (mode == "authority") {
  3495. rpc_config["rpc_mode"] = MultiplayerAPI::RPC_MODE_AUTHORITY;
  3496. } else if (mode == "call_local") {
  3497. rpc_config["call_local"] = true;
  3498. } else if (mode == "call_remote") {
  3499. rpc_config["call_local"] = false;
  3500. } else if (mode == "reliable") {
  3501. rpc_config["transfer_mode"] = MultiplayerPeer::TRANSFER_MODE_RELIABLE;
  3502. } else if (mode == "unreliable") {
  3503. rpc_config["transfer_mode"] = MultiplayerPeer::TRANSFER_MODE_UNRELIABLE;
  3504. } else if (mode == "unreliable_ordered") {
  3505. rpc_config["transfer_mode"] = MultiplayerPeer::TRANSFER_MODE_UNRELIABLE_ORDERED;
  3506. } else {
  3507. push_error(R"(Invalid RPC argument. Must be one of: 'call_local'/'call_remote' (local calls), 'any_peer'/'authority' (permission), 'reliable'/'unreliable'/'unreliable_ordered' (transfer mode).)", p_annotation);
  3508. }
  3509. }
  3510. }
  3511. function->rpc_config = rpc_config;
  3512. return true;
  3513. }
  3514. GDScriptParser::DataType GDScriptParser::SuiteNode::Local::get_datatype() const {
  3515. switch (type) {
  3516. case CONSTANT:
  3517. return constant->get_datatype();
  3518. case VARIABLE:
  3519. return variable->get_datatype();
  3520. case PARAMETER:
  3521. return parameter->get_datatype();
  3522. case FOR_VARIABLE:
  3523. case PATTERN_BIND:
  3524. return bind->get_datatype();
  3525. case UNDEFINED:
  3526. return DataType();
  3527. }
  3528. return DataType();
  3529. }
  3530. String GDScriptParser::SuiteNode::Local::get_name() const {
  3531. switch (type) {
  3532. case SuiteNode::Local::PARAMETER:
  3533. return "parameter";
  3534. case SuiteNode::Local::CONSTANT:
  3535. return "constant";
  3536. case SuiteNode::Local::VARIABLE:
  3537. return "variable";
  3538. case SuiteNode::Local::FOR_VARIABLE:
  3539. return "for loop iterator";
  3540. case SuiteNode::Local::PATTERN_BIND:
  3541. return "pattern_bind";
  3542. case SuiteNode::Local::UNDEFINED:
  3543. return "<undefined>";
  3544. default:
  3545. return String();
  3546. }
  3547. }
  3548. String GDScriptParser::DataType::to_string() const {
  3549. switch (kind) {
  3550. case VARIANT:
  3551. return "Variant";
  3552. case BUILTIN:
  3553. if (builtin_type == Variant::NIL) {
  3554. return "null";
  3555. }
  3556. if (builtin_type == Variant::ARRAY && has_container_element_type()) {
  3557. return vformat("Array[%s]", container_element_type->to_string());
  3558. }
  3559. return Variant::get_type_name(builtin_type);
  3560. case NATIVE:
  3561. if (is_meta_type) {
  3562. return GDScriptNativeClass::get_class_static();
  3563. }
  3564. return native_type.operator String();
  3565. case CLASS:
  3566. if (is_meta_type) {
  3567. return GDScript::get_class_static();
  3568. }
  3569. if (class_type->identifier != nullptr) {
  3570. return class_type->identifier->name.operator String();
  3571. }
  3572. return class_type->fqcn;
  3573. case SCRIPT: {
  3574. if (is_meta_type) {
  3575. return script_type->get_class_name().operator String();
  3576. }
  3577. String name = script_type != nullptr ? script_type->get_name() : "";
  3578. if (!name.is_empty()) {
  3579. return name;
  3580. }
  3581. name = script_path;
  3582. if (!name.is_empty()) {
  3583. return name;
  3584. }
  3585. return native_type.operator String();
  3586. }
  3587. case ENUM:
  3588. return enum_type.operator String() + " (enum)";
  3589. case RESOLVING:
  3590. case UNRESOLVED:
  3591. return "<unresolved type>";
  3592. }
  3593. ERR_FAIL_V_MSG("<unresolved type>", "Kind set outside the enum range.");
  3594. }
  3595. static Variant::Type _variant_type_to_typed_array_element_type(Variant::Type p_type) {
  3596. switch (p_type) {
  3597. case Variant::PACKED_BYTE_ARRAY:
  3598. case Variant::PACKED_INT32_ARRAY:
  3599. case Variant::PACKED_INT64_ARRAY:
  3600. return Variant::INT;
  3601. case Variant::PACKED_FLOAT32_ARRAY:
  3602. case Variant::PACKED_FLOAT64_ARRAY:
  3603. return Variant::FLOAT;
  3604. case Variant::PACKED_STRING_ARRAY:
  3605. return Variant::STRING;
  3606. case Variant::PACKED_VECTOR2_ARRAY:
  3607. return Variant::VECTOR2;
  3608. case Variant::PACKED_VECTOR3_ARRAY:
  3609. return Variant::VECTOR3;
  3610. case Variant::PACKED_COLOR_ARRAY:
  3611. return Variant::COLOR;
  3612. default:
  3613. return Variant::NIL;
  3614. }
  3615. }
  3616. bool GDScriptParser::DataType::is_typed_container_type() const {
  3617. return kind == GDScriptParser::DataType::BUILTIN && _variant_type_to_typed_array_element_type(builtin_type) != Variant::NIL;
  3618. }
  3619. GDScriptParser::DataType GDScriptParser::DataType::get_typed_container_type() const {
  3620. GDScriptParser::DataType type;
  3621. type.kind = GDScriptParser::DataType::BUILTIN;
  3622. type.builtin_type = _variant_type_to_typed_array_element_type(builtin_type);
  3623. return type;
  3624. }
  3625. void GDScriptParser::complete_extents(Node *p_node) {
  3626. while (!nodes_in_progress.is_empty() && nodes_in_progress.back()->get() != p_node) {
  3627. ERR_PRINT("Parser bug: Mismatch in extents tracking stack.");
  3628. nodes_in_progress.pop_back();
  3629. }
  3630. if (nodes_in_progress.is_empty()) {
  3631. ERR_PRINT("Parser bug: Extents tracking stack is empty.");
  3632. } else {
  3633. nodes_in_progress.pop_back();
  3634. }
  3635. }
  3636. void GDScriptParser::update_extents(Node *p_node) {
  3637. p_node->end_line = previous.end_line;
  3638. p_node->end_column = previous.end_column;
  3639. p_node->leftmost_column = MIN(p_node->leftmost_column, previous.leftmost_column);
  3640. p_node->rightmost_column = MAX(p_node->rightmost_column, previous.rightmost_column);
  3641. }
  3642. void GDScriptParser::reset_extents(Node *p_node, GDScriptTokenizer::Token p_token) {
  3643. p_node->start_line = p_token.start_line;
  3644. p_node->end_line = p_token.end_line;
  3645. p_node->start_column = p_token.start_column;
  3646. p_node->end_column = p_token.end_column;
  3647. p_node->leftmost_column = p_token.leftmost_column;
  3648. p_node->rightmost_column = p_token.rightmost_column;
  3649. }
  3650. void GDScriptParser::reset_extents(Node *p_node, Node *p_from) {
  3651. if (p_from == nullptr) {
  3652. return;
  3653. }
  3654. p_node->start_line = p_from->start_line;
  3655. p_node->end_line = p_from->end_line;
  3656. p_node->start_column = p_from->start_column;
  3657. p_node->end_column = p_from->end_column;
  3658. p_node->leftmost_column = p_from->leftmost_column;
  3659. p_node->rightmost_column = p_from->rightmost_column;
  3660. }
  3661. /*---------- PRETTY PRINT FOR DEBUG ----------*/
  3662. #ifdef DEBUG_ENABLED
  3663. void GDScriptParser::TreePrinter::increase_indent() {
  3664. indent_level++;
  3665. indent = "";
  3666. for (int i = 0; i < indent_level * 4; i++) {
  3667. if (i % 4 == 0) {
  3668. indent += "|";
  3669. } else {
  3670. indent += " ";
  3671. }
  3672. }
  3673. }
  3674. void GDScriptParser::TreePrinter::decrease_indent() {
  3675. indent_level--;
  3676. indent = "";
  3677. for (int i = 0; i < indent_level * 4; i++) {
  3678. if (i % 4 == 0) {
  3679. indent += "|";
  3680. } else {
  3681. indent += " ";
  3682. }
  3683. }
  3684. }
  3685. void GDScriptParser::TreePrinter::push_line(const String &p_line) {
  3686. if (!p_line.is_empty()) {
  3687. push_text(p_line);
  3688. }
  3689. printed += "\n";
  3690. pending_indent = true;
  3691. }
  3692. void GDScriptParser::TreePrinter::push_text(const String &p_text) {
  3693. if (pending_indent) {
  3694. printed += indent;
  3695. pending_indent = false;
  3696. }
  3697. printed += p_text;
  3698. }
  3699. void GDScriptParser::TreePrinter::print_annotation(const AnnotationNode *p_annotation) {
  3700. push_text(p_annotation->name);
  3701. push_text(" (");
  3702. for (int i = 0; i < p_annotation->arguments.size(); i++) {
  3703. if (i > 0) {
  3704. push_text(" , ");
  3705. }
  3706. print_expression(p_annotation->arguments[i]);
  3707. }
  3708. push_line(")");
  3709. }
  3710. void GDScriptParser::TreePrinter::print_array(ArrayNode *p_array) {
  3711. push_text("[ ");
  3712. for (int i = 0; i < p_array->elements.size(); i++) {
  3713. if (i > 0) {
  3714. push_text(" , ");
  3715. }
  3716. print_expression(p_array->elements[i]);
  3717. }
  3718. push_text(" ]");
  3719. }
  3720. void GDScriptParser::TreePrinter::print_assert(AssertNode *p_assert) {
  3721. push_text("Assert ( ");
  3722. print_expression(p_assert->condition);
  3723. push_line(" )");
  3724. }
  3725. void GDScriptParser::TreePrinter::print_assignment(AssignmentNode *p_assignment) {
  3726. switch (p_assignment->assignee->type) {
  3727. case Node::IDENTIFIER:
  3728. print_identifier(static_cast<IdentifierNode *>(p_assignment->assignee));
  3729. break;
  3730. case Node::SUBSCRIPT:
  3731. print_subscript(static_cast<SubscriptNode *>(p_assignment->assignee));
  3732. break;
  3733. default:
  3734. break; // Unreachable.
  3735. }
  3736. push_text(" ");
  3737. switch (p_assignment->operation) {
  3738. case AssignmentNode::OP_ADDITION:
  3739. push_text("+");
  3740. break;
  3741. case AssignmentNode::OP_SUBTRACTION:
  3742. push_text("-");
  3743. break;
  3744. case AssignmentNode::OP_MULTIPLICATION:
  3745. push_text("*");
  3746. break;
  3747. case AssignmentNode::OP_DIVISION:
  3748. push_text("/");
  3749. break;
  3750. case AssignmentNode::OP_MODULO:
  3751. push_text("%");
  3752. break;
  3753. case AssignmentNode::OP_POWER:
  3754. push_text("**");
  3755. break;
  3756. case AssignmentNode::OP_BIT_SHIFT_LEFT:
  3757. push_text("<<");
  3758. break;
  3759. case AssignmentNode::OP_BIT_SHIFT_RIGHT:
  3760. push_text(">>");
  3761. break;
  3762. case AssignmentNode::OP_BIT_AND:
  3763. push_text("&");
  3764. break;
  3765. case AssignmentNode::OP_BIT_OR:
  3766. push_text("|");
  3767. break;
  3768. case AssignmentNode::OP_BIT_XOR:
  3769. push_text("^");
  3770. break;
  3771. case AssignmentNode::OP_NONE:
  3772. break;
  3773. }
  3774. push_text("= ");
  3775. print_expression(p_assignment->assigned_value);
  3776. push_line();
  3777. }
  3778. void GDScriptParser::TreePrinter::print_await(AwaitNode *p_await) {
  3779. push_text("Await ");
  3780. print_expression(p_await->to_await);
  3781. }
  3782. void GDScriptParser::TreePrinter::print_binary_op(BinaryOpNode *p_binary_op) {
  3783. // Surround in parenthesis for disambiguation.
  3784. push_text("(");
  3785. print_expression(p_binary_op->left_operand);
  3786. switch (p_binary_op->operation) {
  3787. case BinaryOpNode::OP_ADDITION:
  3788. push_text(" + ");
  3789. break;
  3790. case BinaryOpNode::OP_SUBTRACTION:
  3791. push_text(" - ");
  3792. break;
  3793. case BinaryOpNode::OP_MULTIPLICATION:
  3794. push_text(" * ");
  3795. break;
  3796. case BinaryOpNode::OP_DIVISION:
  3797. push_text(" / ");
  3798. break;
  3799. case BinaryOpNode::OP_MODULO:
  3800. push_text(" % ");
  3801. break;
  3802. case BinaryOpNode::OP_POWER:
  3803. push_text(" ** ");
  3804. break;
  3805. case BinaryOpNode::OP_BIT_LEFT_SHIFT:
  3806. push_text(" << ");
  3807. break;
  3808. case BinaryOpNode::OP_BIT_RIGHT_SHIFT:
  3809. push_text(" >> ");
  3810. break;
  3811. case BinaryOpNode::OP_BIT_AND:
  3812. push_text(" & ");
  3813. break;
  3814. case BinaryOpNode::OP_BIT_OR:
  3815. push_text(" | ");
  3816. break;
  3817. case BinaryOpNode::OP_BIT_XOR:
  3818. push_text(" ^ ");
  3819. break;
  3820. case BinaryOpNode::OP_LOGIC_AND:
  3821. push_text(" AND ");
  3822. break;
  3823. case BinaryOpNode::OP_LOGIC_OR:
  3824. push_text(" OR ");
  3825. break;
  3826. case BinaryOpNode::OP_TYPE_TEST:
  3827. push_text(" IS ");
  3828. break;
  3829. case BinaryOpNode::OP_CONTENT_TEST:
  3830. push_text(" IN ");
  3831. break;
  3832. case BinaryOpNode::OP_COMP_EQUAL:
  3833. push_text(" == ");
  3834. break;
  3835. case BinaryOpNode::OP_COMP_NOT_EQUAL:
  3836. push_text(" != ");
  3837. break;
  3838. case BinaryOpNode::OP_COMP_LESS:
  3839. push_text(" < ");
  3840. break;
  3841. case BinaryOpNode::OP_COMP_LESS_EQUAL:
  3842. push_text(" <= ");
  3843. break;
  3844. case BinaryOpNode::OP_COMP_GREATER:
  3845. push_text(" > ");
  3846. break;
  3847. case BinaryOpNode::OP_COMP_GREATER_EQUAL:
  3848. push_text(" >= ");
  3849. break;
  3850. }
  3851. print_expression(p_binary_op->right_operand);
  3852. // Surround in parenthesis for disambiguation.
  3853. push_text(")");
  3854. }
  3855. void GDScriptParser::TreePrinter::print_call(CallNode *p_call) {
  3856. if (p_call->is_super) {
  3857. push_text("super");
  3858. if (p_call->callee != nullptr) {
  3859. push_text(".");
  3860. print_expression(p_call->callee);
  3861. }
  3862. } else {
  3863. print_expression(p_call->callee);
  3864. }
  3865. push_text("( ");
  3866. for (int i = 0; i < p_call->arguments.size(); i++) {
  3867. if (i > 0) {
  3868. push_text(" , ");
  3869. }
  3870. print_expression(p_call->arguments[i]);
  3871. }
  3872. push_text(" )");
  3873. }
  3874. void GDScriptParser::TreePrinter::print_cast(CastNode *p_cast) {
  3875. print_expression(p_cast->operand);
  3876. push_text(" AS ");
  3877. print_type(p_cast->cast_type);
  3878. }
  3879. void GDScriptParser::TreePrinter::print_class(ClassNode *p_class) {
  3880. push_text("Class ");
  3881. if (p_class->identifier == nullptr) {
  3882. push_text("<unnamed>");
  3883. } else {
  3884. print_identifier(p_class->identifier);
  3885. }
  3886. if (p_class->extends_used) {
  3887. bool first = true;
  3888. push_text(" Extends ");
  3889. if (!p_class->extends_path.is_empty()) {
  3890. push_text(vformat(R"("%s")", p_class->extends_path));
  3891. first = false;
  3892. }
  3893. for (int i = 0; i < p_class->extends.size(); i++) {
  3894. if (!first) {
  3895. push_text(".");
  3896. } else {
  3897. first = false;
  3898. }
  3899. push_text(p_class->extends[i]);
  3900. }
  3901. }
  3902. push_line(" :");
  3903. increase_indent();
  3904. for (int i = 0; i < p_class->members.size(); i++) {
  3905. const ClassNode::Member &m = p_class->members[i];
  3906. switch (m.type) {
  3907. case ClassNode::Member::CLASS:
  3908. print_class(m.m_class);
  3909. break;
  3910. case ClassNode::Member::VARIABLE:
  3911. print_variable(m.variable);
  3912. break;
  3913. case ClassNode::Member::CONSTANT:
  3914. print_constant(m.constant);
  3915. break;
  3916. case ClassNode::Member::SIGNAL:
  3917. print_signal(m.signal);
  3918. break;
  3919. case ClassNode::Member::FUNCTION:
  3920. print_function(m.function);
  3921. break;
  3922. case ClassNode::Member::ENUM:
  3923. print_enum(m.m_enum);
  3924. break;
  3925. case ClassNode::Member::ENUM_VALUE:
  3926. break; // Nothing. Will be printed by enum.
  3927. case ClassNode::Member::GROUP:
  3928. break; // Nothing. Groups are only used by inspector.
  3929. case ClassNode::Member::UNDEFINED:
  3930. push_line("<unknown member>");
  3931. break;
  3932. }
  3933. }
  3934. decrease_indent();
  3935. }
  3936. void GDScriptParser::TreePrinter::print_constant(ConstantNode *p_constant) {
  3937. push_text("Constant ");
  3938. print_identifier(p_constant->identifier);
  3939. increase_indent();
  3940. push_line();
  3941. push_text("= ");
  3942. if (p_constant->initializer == nullptr) {
  3943. push_text("<missing value>");
  3944. } else {
  3945. print_expression(p_constant->initializer);
  3946. }
  3947. decrease_indent();
  3948. push_line();
  3949. }
  3950. void GDScriptParser::TreePrinter::print_dictionary(DictionaryNode *p_dictionary) {
  3951. push_line("{");
  3952. increase_indent();
  3953. for (int i = 0; i < p_dictionary->elements.size(); i++) {
  3954. print_expression(p_dictionary->elements[i].key);
  3955. if (p_dictionary->style == DictionaryNode::PYTHON_DICT) {
  3956. push_text(" : ");
  3957. } else {
  3958. push_text(" = ");
  3959. }
  3960. print_expression(p_dictionary->elements[i].value);
  3961. push_line(" ,");
  3962. }
  3963. decrease_indent();
  3964. push_text("}");
  3965. }
  3966. void GDScriptParser::TreePrinter::print_expression(ExpressionNode *p_expression) {
  3967. if (p_expression == nullptr) {
  3968. push_text("<invalid expression>");
  3969. return;
  3970. }
  3971. switch (p_expression->type) {
  3972. case Node::ARRAY:
  3973. print_array(static_cast<ArrayNode *>(p_expression));
  3974. break;
  3975. case Node::ASSIGNMENT:
  3976. print_assignment(static_cast<AssignmentNode *>(p_expression));
  3977. break;
  3978. case Node::AWAIT:
  3979. print_await(static_cast<AwaitNode *>(p_expression));
  3980. break;
  3981. case Node::BINARY_OPERATOR:
  3982. print_binary_op(static_cast<BinaryOpNode *>(p_expression));
  3983. break;
  3984. case Node::CALL:
  3985. print_call(static_cast<CallNode *>(p_expression));
  3986. break;
  3987. case Node::CAST:
  3988. print_cast(static_cast<CastNode *>(p_expression));
  3989. break;
  3990. case Node::DICTIONARY:
  3991. print_dictionary(static_cast<DictionaryNode *>(p_expression));
  3992. break;
  3993. case Node::GET_NODE:
  3994. print_get_node(static_cast<GetNodeNode *>(p_expression));
  3995. break;
  3996. case Node::IDENTIFIER:
  3997. print_identifier(static_cast<IdentifierNode *>(p_expression));
  3998. break;
  3999. case Node::LAMBDA:
  4000. print_lambda(static_cast<LambdaNode *>(p_expression));
  4001. break;
  4002. case Node::LITERAL:
  4003. print_literal(static_cast<LiteralNode *>(p_expression));
  4004. break;
  4005. case Node::PRELOAD:
  4006. print_preload(static_cast<PreloadNode *>(p_expression));
  4007. break;
  4008. case Node::SELF:
  4009. print_self(static_cast<SelfNode *>(p_expression));
  4010. break;
  4011. case Node::SUBSCRIPT:
  4012. print_subscript(static_cast<SubscriptNode *>(p_expression));
  4013. break;
  4014. case Node::TERNARY_OPERATOR:
  4015. print_ternary_op(static_cast<TernaryOpNode *>(p_expression));
  4016. break;
  4017. case Node::UNARY_OPERATOR:
  4018. print_unary_op(static_cast<UnaryOpNode *>(p_expression));
  4019. break;
  4020. default:
  4021. push_text(vformat("<unknown expression %d>", p_expression->type));
  4022. break;
  4023. }
  4024. }
  4025. void GDScriptParser::TreePrinter::print_enum(EnumNode *p_enum) {
  4026. push_text("Enum ");
  4027. if (p_enum->identifier != nullptr) {
  4028. print_identifier(p_enum->identifier);
  4029. } else {
  4030. push_text("<unnamed>");
  4031. }
  4032. push_line(" {");
  4033. increase_indent();
  4034. for (int i = 0; i < p_enum->values.size(); i++) {
  4035. const EnumNode::Value &item = p_enum->values[i];
  4036. print_identifier(item.identifier);
  4037. push_text(" = ");
  4038. push_text(itos(item.value));
  4039. push_line(" ,");
  4040. }
  4041. decrease_indent();
  4042. push_line("}");
  4043. }
  4044. void GDScriptParser::TreePrinter::print_for(ForNode *p_for) {
  4045. push_text("For ");
  4046. print_identifier(p_for->variable);
  4047. push_text(" IN ");
  4048. print_expression(p_for->list);
  4049. push_line(" :");
  4050. increase_indent();
  4051. print_suite(p_for->loop);
  4052. decrease_indent();
  4053. }
  4054. void GDScriptParser::TreePrinter::print_function(FunctionNode *p_function, const String &p_context) {
  4055. for (const AnnotationNode *E : p_function->annotations) {
  4056. print_annotation(E);
  4057. }
  4058. push_text(p_context);
  4059. push_text(" ");
  4060. if (p_function->identifier) {
  4061. print_identifier(p_function->identifier);
  4062. } else {
  4063. push_text("<anonymous>");
  4064. }
  4065. push_text("( ");
  4066. for (int i = 0; i < p_function->parameters.size(); i++) {
  4067. if (i > 0) {
  4068. push_text(" , ");
  4069. }
  4070. print_parameter(p_function->parameters[i]);
  4071. }
  4072. push_line(" ) :");
  4073. increase_indent();
  4074. print_suite(p_function->body);
  4075. decrease_indent();
  4076. }
  4077. void GDScriptParser::TreePrinter::print_get_node(GetNodeNode *p_get_node) {
  4078. if (p_get_node->use_dollar) {
  4079. push_text("$");
  4080. }
  4081. push_text(p_get_node->full_path);
  4082. }
  4083. void GDScriptParser::TreePrinter::print_identifier(IdentifierNode *p_identifier) {
  4084. if (p_identifier != nullptr) {
  4085. push_text(p_identifier->name);
  4086. } else {
  4087. push_text("<invalid identifier>");
  4088. }
  4089. }
  4090. void GDScriptParser::TreePrinter::print_if(IfNode *p_if, bool p_is_elif) {
  4091. if (p_is_elif) {
  4092. push_text("Elif ");
  4093. } else {
  4094. push_text("If ");
  4095. }
  4096. print_expression(p_if->condition);
  4097. push_line(" :");
  4098. increase_indent();
  4099. print_suite(p_if->true_block);
  4100. decrease_indent();
  4101. // FIXME: Properly detect "elif" blocks.
  4102. if (p_if->false_block != nullptr) {
  4103. push_line("Else :");
  4104. increase_indent();
  4105. print_suite(p_if->false_block);
  4106. decrease_indent();
  4107. }
  4108. }
  4109. void GDScriptParser::TreePrinter::print_lambda(LambdaNode *p_lambda) {
  4110. print_function(p_lambda->function, "Lambda");
  4111. push_text("| captures [ ");
  4112. for (int i = 0; i < p_lambda->captures.size(); i++) {
  4113. if (i > 0) {
  4114. push_text(" , ");
  4115. }
  4116. push_text(p_lambda->captures[i]->name.operator String());
  4117. }
  4118. push_line(" ]");
  4119. }
  4120. void GDScriptParser::TreePrinter::print_literal(LiteralNode *p_literal) {
  4121. // Prefix for string types.
  4122. switch (p_literal->value.get_type()) {
  4123. case Variant::NODE_PATH:
  4124. push_text("^\"");
  4125. break;
  4126. case Variant::STRING:
  4127. push_text("\"");
  4128. break;
  4129. case Variant::STRING_NAME:
  4130. push_text("&\"");
  4131. break;
  4132. default:
  4133. break;
  4134. }
  4135. push_text(p_literal->value);
  4136. // Suffix for string types.
  4137. switch (p_literal->value.get_type()) {
  4138. case Variant::NODE_PATH:
  4139. case Variant::STRING:
  4140. case Variant::STRING_NAME:
  4141. push_text("\"");
  4142. break;
  4143. default:
  4144. break;
  4145. }
  4146. }
  4147. void GDScriptParser::TreePrinter::print_match(MatchNode *p_match) {
  4148. push_text("Match ");
  4149. print_expression(p_match->test);
  4150. push_line(" :");
  4151. increase_indent();
  4152. for (int i = 0; i < p_match->branches.size(); i++) {
  4153. print_match_branch(p_match->branches[i]);
  4154. }
  4155. decrease_indent();
  4156. }
  4157. void GDScriptParser::TreePrinter::print_match_branch(MatchBranchNode *p_match_branch) {
  4158. for (int i = 0; i < p_match_branch->patterns.size(); i++) {
  4159. if (i > 0) {
  4160. push_text(" , ");
  4161. }
  4162. print_match_pattern(p_match_branch->patterns[i]);
  4163. }
  4164. push_line(" :");
  4165. increase_indent();
  4166. print_suite(p_match_branch->block);
  4167. decrease_indent();
  4168. }
  4169. void GDScriptParser::TreePrinter::print_match_pattern(PatternNode *p_match_pattern) {
  4170. switch (p_match_pattern->pattern_type) {
  4171. case PatternNode::PT_LITERAL:
  4172. print_literal(p_match_pattern->literal);
  4173. break;
  4174. case PatternNode::PT_WILDCARD:
  4175. push_text("_");
  4176. break;
  4177. case PatternNode::PT_REST:
  4178. push_text("..");
  4179. break;
  4180. case PatternNode::PT_BIND:
  4181. push_text("Var ");
  4182. print_identifier(p_match_pattern->bind);
  4183. break;
  4184. case PatternNode::PT_EXPRESSION:
  4185. print_expression(p_match_pattern->expression);
  4186. break;
  4187. case PatternNode::PT_ARRAY:
  4188. push_text("[ ");
  4189. for (int i = 0; i < p_match_pattern->array.size(); i++) {
  4190. if (i > 0) {
  4191. push_text(" , ");
  4192. }
  4193. print_match_pattern(p_match_pattern->array[i]);
  4194. }
  4195. push_text(" ]");
  4196. break;
  4197. case PatternNode::PT_DICTIONARY:
  4198. push_text("{ ");
  4199. for (int i = 0; i < p_match_pattern->dictionary.size(); i++) {
  4200. if (i > 0) {
  4201. push_text(" , ");
  4202. }
  4203. if (p_match_pattern->dictionary[i].key != nullptr) {
  4204. // Key can be null for rest pattern.
  4205. print_expression(p_match_pattern->dictionary[i].key);
  4206. push_text(" : ");
  4207. }
  4208. print_match_pattern(p_match_pattern->dictionary[i].value_pattern);
  4209. }
  4210. push_text(" }");
  4211. break;
  4212. }
  4213. }
  4214. void GDScriptParser::TreePrinter::print_parameter(ParameterNode *p_parameter) {
  4215. print_identifier(p_parameter->identifier);
  4216. if (p_parameter->datatype_specifier != nullptr) {
  4217. push_text(" : ");
  4218. print_type(p_parameter->datatype_specifier);
  4219. }
  4220. if (p_parameter->initializer != nullptr) {
  4221. push_text(" = ");
  4222. print_expression(p_parameter->initializer);
  4223. }
  4224. }
  4225. void GDScriptParser::TreePrinter::print_preload(PreloadNode *p_preload) {
  4226. push_text(R"(Preload ( ")");
  4227. push_text(p_preload->resolved_path);
  4228. push_text(R"(" )");
  4229. }
  4230. void GDScriptParser::TreePrinter::print_return(ReturnNode *p_return) {
  4231. push_text("Return");
  4232. if (p_return->return_value != nullptr) {
  4233. push_text(" ");
  4234. print_expression(p_return->return_value);
  4235. }
  4236. push_line();
  4237. }
  4238. void GDScriptParser::TreePrinter::print_self(SelfNode *p_self) {
  4239. push_text("Self(");
  4240. if (p_self->current_class->identifier != nullptr) {
  4241. print_identifier(p_self->current_class->identifier);
  4242. } else {
  4243. push_text("<main class>");
  4244. }
  4245. push_text(")");
  4246. }
  4247. void GDScriptParser::TreePrinter::print_signal(SignalNode *p_signal) {
  4248. push_text("Signal ");
  4249. print_identifier(p_signal->identifier);
  4250. push_text("( ");
  4251. for (int i = 0; i < p_signal->parameters.size(); i++) {
  4252. print_parameter(p_signal->parameters[i]);
  4253. }
  4254. push_line(" )");
  4255. }
  4256. void GDScriptParser::TreePrinter::print_subscript(SubscriptNode *p_subscript) {
  4257. print_expression(p_subscript->base);
  4258. if (p_subscript->is_attribute) {
  4259. push_text(".");
  4260. print_identifier(p_subscript->attribute);
  4261. } else {
  4262. push_text("[ ");
  4263. print_expression(p_subscript->index);
  4264. push_text(" ]");
  4265. }
  4266. }
  4267. void GDScriptParser::TreePrinter::print_statement(Node *p_statement) {
  4268. switch (p_statement->type) {
  4269. case Node::ASSERT:
  4270. print_assert(static_cast<AssertNode *>(p_statement));
  4271. break;
  4272. case Node::VARIABLE:
  4273. print_variable(static_cast<VariableNode *>(p_statement));
  4274. break;
  4275. case Node::CONSTANT:
  4276. print_constant(static_cast<ConstantNode *>(p_statement));
  4277. break;
  4278. case Node::IF:
  4279. print_if(static_cast<IfNode *>(p_statement));
  4280. break;
  4281. case Node::FOR:
  4282. print_for(static_cast<ForNode *>(p_statement));
  4283. break;
  4284. case Node::WHILE:
  4285. print_while(static_cast<WhileNode *>(p_statement));
  4286. break;
  4287. case Node::MATCH:
  4288. print_match(static_cast<MatchNode *>(p_statement));
  4289. break;
  4290. case Node::RETURN:
  4291. print_return(static_cast<ReturnNode *>(p_statement));
  4292. break;
  4293. case Node::BREAK:
  4294. push_line("Break");
  4295. break;
  4296. case Node::CONTINUE:
  4297. push_line("Continue");
  4298. break;
  4299. case Node::PASS:
  4300. push_line("Pass");
  4301. break;
  4302. case Node::BREAKPOINT:
  4303. push_line("Breakpoint");
  4304. break;
  4305. case Node::ASSIGNMENT:
  4306. print_assignment(static_cast<AssignmentNode *>(p_statement));
  4307. break;
  4308. default:
  4309. if (p_statement->is_expression()) {
  4310. print_expression(static_cast<ExpressionNode *>(p_statement));
  4311. push_line();
  4312. } else {
  4313. push_line(vformat("<unknown statement %d>", p_statement->type));
  4314. }
  4315. break;
  4316. }
  4317. }
  4318. void GDScriptParser::TreePrinter::print_suite(SuiteNode *p_suite) {
  4319. for (int i = 0; i < p_suite->statements.size(); i++) {
  4320. print_statement(p_suite->statements[i]);
  4321. }
  4322. }
  4323. void GDScriptParser::TreePrinter::print_ternary_op(TernaryOpNode *p_ternary_op) {
  4324. // Surround in parenthesis for disambiguation.
  4325. push_text("(");
  4326. print_expression(p_ternary_op->true_expr);
  4327. push_text(") IF (");
  4328. print_expression(p_ternary_op->condition);
  4329. push_text(") ELSE (");
  4330. print_expression(p_ternary_op->false_expr);
  4331. push_text(")");
  4332. }
  4333. void GDScriptParser::TreePrinter::print_type(TypeNode *p_type) {
  4334. if (p_type->type_chain.is_empty()) {
  4335. push_text("Void");
  4336. } else {
  4337. for (int i = 0; i < p_type->type_chain.size(); i++) {
  4338. if (i > 0) {
  4339. push_text(".");
  4340. }
  4341. print_identifier(p_type->type_chain[i]);
  4342. }
  4343. }
  4344. }
  4345. void GDScriptParser::TreePrinter::print_unary_op(UnaryOpNode *p_unary_op) {
  4346. // Surround in parenthesis for disambiguation.
  4347. push_text("(");
  4348. switch (p_unary_op->operation) {
  4349. case UnaryOpNode::OP_POSITIVE:
  4350. push_text("+");
  4351. break;
  4352. case UnaryOpNode::OP_NEGATIVE:
  4353. push_text("-");
  4354. break;
  4355. case UnaryOpNode::OP_LOGIC_NOT:
  4356. push_text("NOT");
  4357. break;
  4358. case UnaryOpNode::OP_COMPLEMENT:
  4359. push_text("~");
  4360. break;
  4361. }
  4362. print_expression(p_unary_op->operand);
  4363. // Surround in parenthesis for disambiguation.
  4364. push_text(")");
  4365. }
  4366. void GDScriptParser::TreePrinter::print_variable(VariableNode *p_variable) {
  4367. for (const AnnotationNode *E : p_variable->annotations) {
  4368. print_annotation(E);
  4369. }
  4370. push_text("Variable ");
  4371. print_identifier(p_variable->identifier);
  4372. push_text(" : ");
  4373. if (p_variable->datatype_specifier != nullptr) {
  4374. print_type(p_variable->datatype_specifier);
  4375. } else if (p_variable->infer_datatype) {
  4376. push_text("<inferred type>");
  4377. } else {
  4378. push_text("Variant");
  4379. }
  4380. increase_indent();
  4381. push_line();
  4382. push_text("= ");
  4383. if (p_variable->initializer == nullptr) {
  4384. push_text("<default value>");
  4385. } else {
  4386. print_expression(p_variable->initializer);
  4387. }
  4388. push_line();
  4389. if (p_variable->property != VariableNode::PROP_NONE) {
  4390. if (p_variable->getter != nullptr) {
  4391. push_text("Get");
  4392. if (p_variable->property == VariableNode::PROP_INLINE) {
  4393. push_line(":");
  4394. increase_indent();
  4395. print_suite(p_variable->getter->body);
  4396. decrease_indent();
  4397. } else {
  4398. push_line(" =");
  4399. increase_indent();
  4400. print_identifier(p_variable->getter_pointer);
  4401. push_line();
  4402. decrease_indent();
  4403. }
  4404. }
  4405. if (p_variable->setter != nullptr) {
  4406. push_text("Set (");
  4407. if (p_variable->property == VariableNode::PROP_INLINE) {
  4408. if (p_variable->setter_parameter != nullptr) {
  4409. print_identifier(p_variable->setter_parameter);
  4410. } else {
  4411. push_text("<missing>");
  4412. }
  4413. push_line("):");
  4414. increase_indent();
  4415. print_suite(p_variable->setter->body);
  4416. decrease_indent();
  4417. } else {
  4418. push_line(" =");
  4419. increase_indent();
  4420. print_identifier(p_variable->setter_pointer);
  4421. push_line();
  4422. decrease_indent();
  4423. }
  4424. }
  4425. }
  4426. decrease_indent();
  4427. push_line();
  4428. }
  4429. void GDScriptParser::TreePrinter::print_while(WhileNode *p_while) {
  4430. push_text("While ");
  4431. print_expression(p_while->condition);
  4432. push_line(" :");
  4433. increase_indent();
  4434. print_suite(p_while->loop);
  4435. decrease_indent();
  4436. }
  4437. void GDScriptParser::TreePrinter::print_tree(const GDScriptParser &p_parser) {
  4438. ERR_FAIL_COND_MSG(p_parser.get_tree() == nullptr, "Parse the code before printing the parse tree.");
  4439. if (p_parser.is_tool()) {
  4440. push_line("@tool");
  4441. }
  4442. if (!p_parser.get_tree()->icon_path.is_empty()) {
  4443. push_text(R"(@icon (")");
  4444. push_text(p_parser.get_tree()->icon_path);
  4445. push_line("\")");
  4446. }
  4447. print_class(p_parser.get_tree());
  4448. print_line(String(printed));
  4449. }
  4450. #endif // DEBUG_ENABLED