gdscript_analyzer.cpp 190 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899
  1. /**************************************************************************/
  2. /* gdscript_analyzer.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_analyzer.h"
  31. #include "core/config/engine.h"
  32. #include "core/config/project_settings.h"
  33. #include "core/core_string_names.h"
  34. #include "core/io/file_access.h"
  35. #include "core/io/resource_loader.h"
  36. #include "core/object/class_db.h"
  37. #include "core/object/script_language.h"
  38. #include "core/templates/hash_map.h"
  39. #include "gdscript.h"
  40. #include "gdscript_utility_functions.h"
  41. #include "scene/resources/packed_scene.h"
  42. #define UNNAMED_ENUM "<anonymous enum>"
  43. #define ENUM_SEPARATOR "::"
  44. static MethodInfo info_from_utility_func(const StringName &p_function) {
  45. ERR_FAIL_COND_V(!Variant::has_utility_function(p_function), MethodInfo());
  46. MethodInfo info(p_function);
  47. if (Variant::has_utility_function_return_value(p_function)) {
  48. info.return_val.type = Variant::get_utility_function_return_type(p_function);
  49. if (info.return_val.type == Variant::NIL) {
  50. info.return_val.usage |= PROPERTY_USAGE_NIL_IS_VARIANT;
  51. }
  52. }
  53. if (Variant::is_utility_function_vararg(p_function)) {
  54. info.flags |= METHOD_FLAG_VARARG;
  55. } else {
  56. for (int i = 0; i < Variant::get_utility_function_argument_count(p_function); i++) {
  57. PropertyInfo pi;
  58. #ifdef DEBUG_METHODS_ENABLED
  59. pi.name = Variant::get_utility_function_argument_name(p_function, i);
  60. #else
  61. pi.name = "arg" + itos(i + 1);
  62. #endif
  63. pi.type = Variant::get_utility_function_argument_type(p_function, i);
  64. info.arguments.push_back(pi);
  65. }
  66. }
  67. return info;
  68. }
  69. static GDScriptParser::DataType make_callable_type(const MethodInfo &p_info) {
  70. GDScriptParser::DataType type;
  71. type.type_source = GDScriptParser::DataType::ANNOTATED_EXPLICIT;
  72. type.kind = GDScriptParser::DataType::BUILTIN;
  73. type.builtin_type = Variant::CALLABLE;
  74. type.is_constant = true;
  75. type.method_info = p_info;
  76. return type;
  77. }
  78. static GDScriptParser::DataType make_signal_type(const MethodInfo &p_info) {
  79. GDScriptParser::DataType type;
  80. type.type_source = GDScriptParser::DataType::ANNOTATED_EXPLICIT;
  81. type.kind = GDScriptParser::DataType::BUILTIN;
  82. type.builtin_type = Variant::SIGNAL;
  83. type.is_constant = true;
  84. type.method_info = p_info;
  85. return type;
  86. }
  87. static GDScriptParser::DataType make_native_meta_type(const StringName &p_class_name) {
  88. GDScriptParser::DataType type;
  89. type.type_source = GDScriptParser::DataType::ANNOTATED_EXPLICIT;
  90. type.kind = GDScriptParser::DataType::NATIVE;
  91. type.builtin_type = Variant::OBJECT;
  92. type.native_type = p_class_name;
  93. type.is_constant = true;
  94. type.is_meta_type = true;
  95. return type;
  96. }
  97. static GDScriptParser::DataType make_script_meta_type(const Ref<Script> &p_script) {
  98. GDScriptParser::DataType type;
  99. type.type_source = GDScriptParser::DataType::ANNOTATED_EXPLICIT;
  100. type.kind = GDScriptParser::DataType::SCRIPT;
  101. type.builtin_type = Variant::OBJECT;
  102. type.native_type = p_script->get_instance_base_type();
  103. type.script_type = p_script;
  104. type.script_path = p_script->get_path();
  105. type.is_constant = true;
  106. type.is_meta_type = true;
  107. return type;
  108. }
  109. // In enum types, native_type is used to store the class (native or otherwise) that the enum belongs to.
  110. // This disambiguates between similarly named enums in base classes or outer classes
  111. static GDScriptParser::DataType make_enum_type(const StringName &p_enum_name, const String &p_base_name, const bool p_meta = false) {
  112. GDScriptParser::DataType type;
  113. type.type_source = GDScriptParser::DataType::ANNOTATED_EXPLICIT;
  114. type.kind = GDScriptParser::DataType::ENUM;
  115. type.builtin_type = p_meta ? Variant::DICTIONARY : Variant::INT;
  116. type.enum_type = p_enum_name;
  117. type.is_constant = true;
  118. type.is_meta_type = p_meta;
  119. // For enums, native_type is only used to check compatibility in is_type_compatible()
  120. // We can set anything readable here for error messages, as long as it uniquely identifies the type of the enum
  121. type.native_type = p_base_name + ENUM_SEPARATOR + p_enum_name;
  122. return type;
  123. }
  124. static GDScriptParser::DataType make_native_enum_type(const StringName &p_enum_name, const StringName &p_native_class, const bool p_meta = true) {
  125. GDScriptParser::DataType type = make_enum_type(p_enum_name, p_native_class, p_meta);
  126. List<StringName> enum_values;
  127. ClassDB::get_enum_constants(p_native_class, p_enum_name, &enum_values);
  128. for (const StringName &E : enum_values) {
  129. type.enum_values[E] = ClassDB::get_integer_constant(p_native_class, E);
  130. }
  131. return type;
  132. }
  133. static GDScriptParser::DataType make_builtin_meta_type(Variant::Type p_type) {
  134. GDScriptParser::DataType type;
  135. type.type_source = GDScriptParser::DataType::ANNOTATED_EXPLICIT;
  136. type.kind = GDScriptParser::DataType::BUILTIN;
  137. type.builtin_type = p_type;
  138. type.is_constant = true;
  139. type.is_meta_type = true;
  140. return type;
  141. }
  142. bool GDScriptAnalyzer::has_member_name_conflict_in_script_class(const StringName &p_member_name, const GDScriptParser::ClassNode *p_class, const GDScriptParser::Node *p_member) {
  143. if (p_class->members_indices.has(p_member_name)) {
  144. int index = p_class->members_indices[p_member_name];
  145. const GDScriptParser::ClassNode::Member *member = &p_class->members[index];
  146. if (member->type == GDScriptParser::ClassNode::Member::VARIABLE ||
  147. member->type == GDScriptParser::ClassNode::Member::CONSTANT ||
  148. member->type == GDScriptParser::ClassNode::Member::ENUM ||
  149. member->type == GDScriptParser::ClassNode::Member::ENUM_VALUE ||
  150. member->type == GDScriptParser::ClassNode::Member::CLASS ||
  151. member->type == GDScriptParser::ClassNode::Member::SIGNAL) {
  152. return true;
  153. }
  154. if (p_member->type != GDScriptParser::Node::FUNCTION && member->type == GDScriptParser::ClassNode::Member::FUNCTION) {
  155. return true;
  156. }
  157. }
  158. return false;
  159. }
  160. bool GDScriptAnalyzer::has_member_name_conflict_in_native_type(const StringName &p_member_name, const StringName &p_native_type_string) {
  161. if (ClassDB::has_signal(p_native_type_string, p_member_name)) {
  162. return true;
  163. }
  164. if (ClassDB::has_property(p_native_type_string, p_member_name)) {
  165. return true;
  166. }
  167. if (ClassDB::has_integer_constant(p_native_type_string, p_member_name)) {
  168. return true;
  169. }
  170. if (p_member_name == CoreStringNames::get_singleton()->_script) {
  171. return true;
  172. }
  173. return false;
  174. }
  175. Error GDScriptAnalyzer::check_native_member_name_conflict(const StringName &p_member_name, const GDScriptParser::Node *p_member_node, const StringName &p_native_type_string) {
  176. if (has_member_name_conflict_in_native_type(p_member_name, p_native_type_string)) {
  177. push_error(vformat(R"(Member "%s" redefined (original in native class '%s'))", p_member_name, p_native_type_string), p_member_node);
  178. return ERR_PARSE_ERROR;
  179. }
  180. if (class_exists(p_member_name)) {
  181. push_error(vformat(R"(The member "%s" shadows a native class.)", p_member_name), p_member_node);
  182. return ERR_PARSE_ERROR;
  183. }
  184. if (GDScriptParser::get_builtin_type(p_member_name) != Variant::VARIANT_MAX) {
  185. push_error(vformat(R"(The member "%s" cannot have the same name as a builtin type.)", p_member_name), p_member_node);
  186. return ERR_PARSE_ERROR;
  187. }
  188. return OK;
  189. }
  190. Error GDScriptAnalyzer::check_class_member_name_conflict(const GDScriptParser::ClassNode *p_class_node, const StringName &p_member_name, const GDScriptParser::Node *p_member_node) {
  191. // TODO check outer classes for static members only
  192. const GDScriptParser::DataType *current_data_type = &p_class_node->base_type;
  193. while (current_data_type && current_data_type->kind == GDScriptParser::DataType::Kind::CLASS) {
  194. GDScriptParser::ClassNode *current_class_node = current_data_type->class_type;
  195. if (has_member_name_conflict_in_script_class(p_member_name, current_class_node, p_member_node)) {
  196. String parent_class_name = current_class_node->fqcn;
  197. if (current_class_node->identifier != nullptr) {
  198. parent_class_name = current_class_node->identifier->name;
  199. }
  200. push_error(vformat(R"(The member "%s" already exists in parent class %s.)", p_member_name, parent_class_name), p_member_node);
  201. return ERR_PARSE_ERROR;
  202. }
  203. current_data_type = &current_class_node->base_type;
  204. }
  205. // No need for native class recursion because Node exposes all Object's properties.
  206. if (current_data_type && current_data_type->kind == GDScriptParser::DataType::Kind::NATIVE) {
  207. if (current_data_type->native_type != StringName()) {
  208. return check_native_member_name_conflict(
  209. p_member_name,
  210. p_member_node,
  211. current_data_type->native_type);
  212. }
  213. }
  214. return OK;
  215. }
  216. void GDScriptAnalyzer::get_class_node_current_scope_classes(GDScriptParser::ClassNode *p_node, List<GDScriptParser::ClassNode *> *p_list) {
  217. ERR_FAIL_NULL(p_node);
  218. ERR_FAIL_NULL(p_list);
  219. if (p_list->find(p_node) != nullptr) {
  220. return;
  221. }
  222. p_list->push_back(p_node);
  223. // TODO: Try to solve class inheritance if not yet resolving.
  224. // Prioritize node base type over its outer class
  225. if (p_node->base_type.class_type != nullptr) {
  226. get_class_node_current_scope_classes(p_node->base_type.class_type, p_list);
  227. }
  228. if (p_node->outer != nullptr) {
  229. get_class_node_current_scope_classes(p_node->outer, p_list);
  230. }
  231. }
  232. Error GDScriptAnalyzer::resolve_class_inheritance(GDScriptParser::ClassNode *p_class, const GDScriptParser::Node *p_source) {
  233. if (p_source == nullptr && parser->has_class(p_class)) {
  234. p_source = p_class;
  235. }
  236. if (p_class->base_type.is_resolving()) {
  237. push_error(vformat(R"(Could not resolve class "%s": Cyclic reference.)", type_from_metatype(p_class->get_datatype()).to_string()), p_source);
  238. return ERR_PARSE_ERROR;
  239. }
  240. if (!p_class->base_type.has_no_type()) {
  241. // Already resolved.
  242. return OK;
  243. }
  244. if (!parser->has_class(p_class)) {
  245. String script_path = p_class->get_datatype().script_path;
  246. Ref<GDScriptParserRef> parser_ref = get_parser_for(script_path);
  247. if (parser_ref.is_null()) {
  248. push_error(vformat(R"(Could not find script "%s".)", script_path), p_source);
  249. return ERR_PARSE_ERROR;
  250. }
  251. Error err = parser_ref->raise_status(GDScriptParserRef::PARSED);
  252. if (err) {
  253. push_error(vformat(R"(Could not parse script "%s": %s.)", script_path, error_names[err]), p_source);
  254. return ERR_PARSE_ERROR;
  255. }
  256. ERR_FAIL_COND_V_MSG(!parser_ref->get_parser()->has_class(p_class), ERR_PARSE_ERROR, R"(Parser bug: Mismatched external parser.)");
  257. GDScriptAnalyzer *other_analyzer = parser_ref->get_analyzer();
  258. GDScriptParser *other_parser = parser_ref->get_parser();
  259. int error_count = other_parser->errors.size();
  260. other_analyzer->resolve_class_inheritance(p_class);
  261. if (other_parser->errors.size() > error_count) {
  262. push_error(vformat(R"(Could not resolve inheritance for class "%s".)", p_class->fqcn), p_source);
  263. return ERR_PARSE_ERROR;
  264. }
  265. return OK;
  266. }
  267. GDScriptParser::ClassNode *previous_class = parser->current_class;
  268. parser->current_class = p_class;
  269. if (p_class->identifier) {
  270. StringName class_name = p_class->identifier->name;
  271. if (GDScriptParser::get_builtin_type(class_name) < Variant::VARIANT_MAX) {
  272. push_error(vformat(R"(Class "%s" hides a built-in type.)", class_name), p_class->identifier);
  273. } else if (class_exists(class_name)) {
  274. push_error(vformat(R"(Class "%s" hides a native class.)", class_name), p_class->identifier);
  275. } else if (ScriptServer::is_global_class(class_name) && (ScriptServer::get_global_class_path(class_name) != parser->script_path || p_class != parser->head)) {
  276. push_error(vformat(R"(Class "%s" hides a global script class.)", class_name), p_class->identifier);
  277. } else if (ProjectSettings::get_singleton()->has_autoload(class_name) && ProjectSettings::get_singleton()->get_autoload(class_name).is_singleton) {
  278. push_error(vformat(R"(Class "%s" hides an autoload singleton.)", class_name), p_class->identifier);
  279. }
  280. }
  281. GDScriptParser::DataType resolving_datatype;
  282. resolving_datatype.kind = GDScriptParser::DataType::RESOLVING;
  283. p_class->base_type = resolving_datatype;
  284. // Set datatype for class.
  285. GDScriptParser::DataType class_type;
  286. class_type.is_constant = true;
  287. class_type.is_meta_type = true;
  288. class_type.type_source = GDScriptParser::DataType::ANNOTATED_EXPLICIT;
  289. class_type.kind = GDScriptParser::DataType::CLASS;
  290. class_type.class_type = p_class;
  291. class_type.script_path = parser->script_path;
  292. class_type.builtin_type = Variant::OBJECT;
  293. p_class->set_datatype(class_type);
  294. GDScriptParser::DataType result;
  295. if (!p_class->extends_used) {
  296. result.type_source = GDScriptParser::DataType::ANNOTATED_INFERRED;
  297. result.kind = GDScriptParser::DataType::NATIVE;
  298. result.native_type = SNAME("RefCounted");
  299. } else {
  300. result.type_source = GDScriptParser::DataType::ANNOTATED_EXPLICIT;
  301. GDScriptParser::DataType base;
  302. int extends_index = 0;
  303. if (!p_class->extends_path.is_empty()) {
  304. if (p_class->extends_path.is_relative_path()) {
  305. p_class->extends_path = class_type.script_path.get_base_dir().path_join(p_class->extends_path).simplify_path();
  306. }
  307. Ref<GDScriptParserRef> ext_parser = get_parser_for(p_class->extends_path);
  308. if (ext_parser.is_null()) {
  309. push_error(vformat(R"(Could not resolve super class path "%s".)", p_class->extends_path), p_class);
  310. return ERR_PARSE_ERROR;
  311. }
  312. Error err = ext_parser->raise_status(GDScriptParserRef::INHERITANCE_SOLVED);
  313. if (err != OK) {
  314. push_error(vformat(R"(Could not resolve super class inheritance from "%s".)", p_class->extends_path), p_class);
  315. return err;
  316. }
  317. base = ext_parser->get_parser()->head->get_datatype();
  318. } else {
  319. if (p_class->extends.is_empty()) {
  320. push_error("Could not resolve an empty super class path.", p_class);
  321. return ERR_PARSE_ERROR;
  322. }
  323. const StringName &name = p_class->extends[extends_index++];
  324. base.type_source = GDScriptParser::DataType::ANNOTATED_EXPLICIT;
  325. if (ScriptServer::is_global_class(name)) {
  326. String base_path = ScriptServer::get_global_class_path(name);
  327. if (base_path == parser->script_path) {
  328. base = parser->head->get_datatype();
  329. } else {
  330. Ref<GDScriptParserRef> base_parser = get_parser_for(base_path);
  331. if (base_parser.is_null()) {
  332. push_error(vformat(R"(Could not resolve super class "%s".)", name), p_class);
  333. return ERR_PARSE_ERROR;
  334. }
  335. Error err = base_parser->raise_status(GDScriptParserRef::INHERITANCE_SOLVED);
  336. if (err != OK) {
  337. push_error(vformat(R"(Could not resolve super class inheritance from "%s".)", name), p_class);
  338. return err;
  339. }
  340. base = base_parser->get_parser()->head->get_datatype();
  341. }
  342. } else if (ProjectSettings::get_singleton()->has_autoload(name) && ProjectSettings::get_singleton()->get_autoload(name).is_singleton) {
  343. const ProjectSettings::AutoloadInfo &info = ProjectSettings::get_singleton()->get_autoload(name);
  344. if (info.path.get_extension().to_lower() != GDScriptLanguage::get_singleton()->get_extension()) {
  345. push_error(vformat(R"(Singleton %s is not a GDScript.)", info.name), p_class);
  346. return ERR_PARSE_ERROR;
  347. }
  348. Ref<GDScriptParserRef> info_parser = get_parser_for(info.path);
  349. if (info_parser.is_null()) {
  350. push_error(vformat(R"(Could not parse singleton from "%s".)", info.path), p_class);
  351. return ERR_PARSE_ERROR;
  352. }
  353. Error err = info_parser->raise_status(GDScriptParserRef::INHERITANCE_SOLVED);
  354. if (err != OK) {
  355. push_error(vformat(R"(Could not resolve super class inheritance from "%s".)", name), p_class);
  356. return err;
  357. }
  358. base = info_parser->get_parser()->head->get_datatype();
  359. } else if (class_exists(name)) {
  360. base.kind = GDScriptParser::DataType::NATIVE;
  361. base.native_type = name;
  362. } else {
  363. // Look for other classes in script.
  364. bool found = false;
  365. List<GDScriptParser::ClassNode *> script_classes;
  366. get_class_node_current_scope_classes(p_class, &script_classes);
  367. for (GDScriptParser::ClassNode *look_class : script_classes) {
  368. if (look_class->identifier && look_class->identifier->name == name) {
  369. if (!look_class->get_datatype().is_set()) {
  370. Error err = resolve_class_inheritance(look_class, p_class);
  371. if (err) {
  372. return err;
  373. }
  374. }
  375. base = look_class->get_datatype();
  376. found = true;
  377. break;
  378. }
  379. if (look_class->has_member(name)) {
  380. resolve_class_member(look_class, name, p_class);
  381. base = look_class->get_member(name).get_datatype();
  382. found = true;
  383. break;
  384. }
  385. }
  386. if (!found) {
  387. push_error(vformat(R"(Could not find base class "%s".)", name), p_class);
  388. return ERR_PARSE_ERROR;
  389. }
  390. }
  391. }
  392. for (int index = extends_index; index < p_class->extends.size(); index++) {
  393. if (base.kind != GDScriptParser::DataType::CLASS) {
  394. push_error(R"(Super type "%s" is not a GDScript. Cannot get nested types.)", p_class);
  395. return ERR_PARSE_ERROR;
  396. }
  397. // TODO: Extends could use identifier nodes. That way errors can be pointed out properly and it can be used here.
  398. GDScriptParser::IdentifierNode *id = parser->alloc_node<GDScriptParser::IdentifierNode>();
  399. id->name = p_class->extends[index];
  400. reduce_identifier_from_base(id, &base);
  401. GDScriptParser::DataType id_type = id->get_datatype();
  402. if (!id_type.is_set()) {
  403. push_error(vformat(R"(Could not find type "%s" under base "%s".)", id->name, base.to_string()), p_class);
  404. }
  405. base = id_type;
  406. }
  407. result = base;
  408. }
  409. if (!result.is_set() || result.has_no_type()) {
  410. // TODO: More specific error messages.
  411. push_error(vformat(R"(Could not resolve inheritance for class "%s".)", p_class->identifier == nullptr ? "<main>" : p_class->identifier->name), p_class);
  412. return ERR_PARSE_ERROR;
  413. }
  414. // Check for cyclic inheritance.
  415. const GDScriptParser::ClassNode *base_class = result.class_type;
  416. while (base_class) {
  417. if (base_class->fqcn == p_class->fqcn) {
  418. push_error("Cyclic inheritance.", p_class);
  419. return ERR_PARSE_ERROR;
  420. }
  421. base_class = base_class->base_type.class_type;
  422. }
  423. p_class->base_type = result;
  424. class_type.native_type = result.native_type;
  425. p_class->set_datatype(class_type);
  426. parser->current_class = previous_class;
  427. return OK;
  428. }
  429. Error GDScriptAnalyzer::resolve_class_inheritance(GDScriptParser::ClassNode *p_class, bool p_recursive) {
  430. Error err = resolve_class_inheritance(p_class);
  431. if (err) {
  432. return err;
  433. }
  434. if (p_recursive) {
  435. for (int i = 0; i < p_class->members.size(); i++) {
  436. if (p_class->members[i].type == GDScriptParser::ClassNode::Member::CLASS) {
  437. err = resolve_class_inheritance(p_class->members[i].m_class, true);
  438. if (err) {
  439. return err;
  440. }
  441. }
  442. }
  443. }
  444. return OK;
  445. }
  446. GDScriptParser::DataType GDScriptAnalyzer::resolve_datatype(GDScriptParser::TypeNode *p_type) {
  447. GDScriptParser::DataType bad_type;
  448. bad_type.kind = GDScriptParser::DataType::VARIANT;
  449. bad_type.type_source = GDScriptParser::DataType::INFERRED;
  450. if (p_type == nullptr) {
  451. return bad_type;
  452. }
  453. if (p_type->get_datatype().is_resolving()) {
  454. push_error(R"(Could not resolve datatype: Cyclic reference.)", p_type);
  455. return bad_type;
  456. }
  457. if (!p_type->get_datatype().has_no_type()) {
  458. return p_type->get_datatype();
  459. }
  460. GDScriptParser::DataType resolving_datatype;
  461. resolving_datatype.kind = GDScriptParser::DataType::RESOLVING;
  462. p_type->set_datatype(resolving_datatype);
  463. GDScriptParser::DataType result;
  464. result.type_source = GDScriptParser::DataType::ANNOTATED_EXPLICIT;
  465. result.builtin_type = Variant::OBJECT;
  466. if (p_type->type_chain.is_empty()) {
  467. // void.
  468. result.kind = GDScriptParser::DataType::BUILTIN;
  469. result.builtin_type = Variant::NIL;
  470. p_type->set_datatype(result);
  471. return result;
  472. }
  473. StringName first = p_type->type_chain[0]->name;
  474. if (first == SNAME("Variant")) {
  475. if (p_type->type_chain.size() > 1) {
  476. // TODO: Variant does actually have a nested Type though.
  477. push_error(R"(Variant doesn't contain nested types.)", p_type->type_chain[1]);
  478. return bad_type;
  479. }
  480. result.kind = GDScriptParser::DataType::VARIANT;
  481. } else if (first == SNAME("Object")) {
  482. // Object is treated like a native type, not a built-in.
  483. result.kind = GDScriptParser::DataType::NATIVE;
  484. result.native_type = SNAME("Object");
  485. } else if (GDScriptParser::get_builtin_type(first) < Variant::VARIANT_MAX) {
  486. // Built-in types.
  487. if (p_type->type_chain.size() > 1) {
  488. push_error(R"(Built-in types don't contain nested types.)", p_type->type_chain[1]);
  489. return bad_type;
  490. }
  491. result.kind = GDScriptParser::DataType::BUILTIN;
  492. result.builtin_type = GDScriptParser::get_builtin_type(first);
  493. if (result.builtin_type == Variant::ARRAY) {
  494. GDScriptParser::DataType container_type = type_from_metatype(resolve_datatype(p_type->container_type));
  495. if (container_type.kind != GDScriptParser::DataType::VARIANT) {
  496. container_type.is_constant = false;
  497. result.set_container_element_type(container_type);
  498. }
  499. }
  500. } else if (class_exists(first)) {
  501. // Native engine classes.
  502. result.kind = GDScriptParser::DataType::NATIVE;
  503. result.native_type = first;
  504. } else if (ScriptServer::is_global_class(first)) {
  505. if (parser->script_path == ScriptServer::get_global_class_path(first)) {
  506. result = parser->head->get_datatype();
  507. } else {
  508. String path = ScriptServer::get_global_class_path(first);
  509. String ext = path.get_extension();
  510. if (ext == GDScriptLanguage::get_singleton()->get_extension()) {
  511. Ref<GDScriptParserRef> ref = get_parser_for(path);
  512. if (!ref.is_valid() || ref->raise_status(GDScriptParserRef::INHERITANCE_SOLVED) != OK) {
  513. push_error(vformat(R"(Could not parse global class "%s" from "%s".)", first, ScriptServer::get_global_class_path(first)), p_type);
  514. return bad_type;
  515. }
  516. result = ref->get_parser()->head->get_datatype();
  517. } else {
  518. result = make_script_meta_type(ResourceLoader::load(path, "Script"));
  519. }
  520. }
  521. } else if (ProjectSettings::get_singleton()->has_autoload(first) && ProjectSettings::get_singleton()->get_autoload(first).is_singleton) {
  522. const ProjectSettings::AutoloadInfo &autoload = ProjectSettings::get_singleton()->get_autoload(first);
  523. Ref<GDScriptParserRef> ref = get_parser_for(autoload.path);
  524. if (ref->raise_status(GDScriptParserRef::INHERITANCE_SOLVED) != OK) {
  525. push_error(vformat(R"(Could not parse singleton "%s" from "%s".)", first, autoload.path), p_type);
  526. return bad_type;
  527. }
  528. result = ref->get_parser()->head->get_datatype();
  529. } else if (ClassDB::has_enum(parser->current_class->base_type.native_type, first)) {
  530. // Native enum in current class.
  531. result = make_native_enum_type(first, parser->current_class->base_type.native_type);
  532. } else {
  533. // Classes in current scope.
  534. List<GDScriptParser::ClassNode *> script_classes;
  535. bool found = false;
  536. get_class_node_current_scope_classes(parser->current_class, &script_classes);
  537. for (GDScriptParser::ClassNode *script_class : script_classes) {
  538. if (found) {
  539. break;
  540. }
  541. if (script_class->identifier && script_class->identifier->name == first) {
  542. result = script_class->get_datatype();
  543. break;
  544. }
  545. if (script_class->members_indices.has(first)) {
  546. resolve_class_member(script_class, first, p_type);
  547. GDScriptParser::ClassNode::Member member = script_class->get_member(first);
  548. switch (member.type) {
  549. case GDScriptParser::ClassNode::Member::CLASS:
  550. result = member.get_datatype();
  551. found = true;
  552. break;
  553. case GDScriptParser::ClassNode::Member::ENUM:
  554. result = member.get_datatype();
  555. found = true;
  556. break;
  557. case GDScriptParser::ClassNode::Member::CONSTANT:
  558. if (member.get_datatype().is_meta_type) {
  559. result = member.get_datatype();
  560. found = true;
  561. break;
  562. } else if (Ref<Script>(member.constant->initializer->reduced_value).is_valid()) {
  563. Ref<GDScript> gdscript = member.constant->initializer->reduced_value;
  564. if (gdscript.is_valid()) {
  565. Ref<GDScriptParserRef> ref = get_parser_for(gdscript->get_script_path());
  566. if (ref->raise_status(GDScriptParserRef::INHERITANCE_SOLVED) != OK) {
  567. push_error(vformat(R"(Could not parse script from "%s".)", gdscript->get_script_path()), p_type);
  568. return bad_type;
  569. }
  570. result = ref->get_parser()->head->get_datatype();
  571. } else {
  572. result = make_script_meta_type(member.constant->initializer->reduced_value);
  573. }
  574. found = true;
  575. break;
  576. }
  577. [[fallthrough]];
  578. default:
  579. push_error(vformat(R"("%s" is a %s but does not contain a type.)", first, member.get_type_name()), p_type);
  580. return bad_type;
  581. }
  582. }
  583. }
  584. }
  585. if (!result.is_set()) {
  586. push_error(vformat(R"("%s" was not found in the current scope.)", first), p_type);
  587. return bad_type;
  588. }
  589. if (p_type->type_chain.size() > 1) {
  590. if (result.kind == GDScriptParser::DataType::CLASS) {
  591. for (int i = 1; i < p_type->type_chain.size(); i++) {
  592. GDScriptParser::DataType base = result;
  593. reduce_identifier_from_base(p_type->type_chain[i], &base);
  594. result = p_type->type_chain[i]->get_datatype();
  595. if (!result.is_set()) {
  596. push_error(vformat(R"(Could not find type "%s" under base "%s".)", p_type->type_chain[i]->name, base.to_string()), p_type->type_chain[1]);
  597. return bad_type;
  598. } else if (!result.is_meta_type) {
  599. push_error(vformat(R"(Member "%s" under base "%s" is not a valid type.)", p_type->type_chain[i]->name, base.to_string()), p_type->type_chain[1]);
  600. return bad_type;
  601. }
  602. }
  603. } else if (result.kind == GDScriptParser::DataType::NATIVE) {
  604. // Only enums allowed for native.
  605. if (ClassDB::has_enum(result.native_type, p_type->type_chain[1]->name)) {
  606. if (p_type->type_chain.size() > 2) {
  607. push_error(R"(Enums cannot contain nested types.)", p_type->type_chain[2]);
  608. return bad_type;
  609. } else {
  610. result = make_native_enum_type(p_type->type_chain[1]->name, result.native_type);
  611. }
  612. } else {
  613. push_error(vformat(R"(Could not find type "%s" in "%s".)", p_type->type_chain[1]->name, first), p_type->type_chain[1]);
  614. return bad_type;
  615. }
  616. } else {
  617. push_error(vformat(R"(Could not find nested type "%s" under base "%s".)", p_type->type_chain[1]->name, result.to_string()), p_type->type_chain[1]);
  618. return bad_type;
  619. }
  620. }
  621. if (result.builtin_type != Variant::ARRAY && p_type->container_type != nullptr) {
  622. push_error("Only arrays can specify the collection element type.", p_type);
  623. }
  624. p_type->set_datatype(result);
  625. return result;
  626. }
  627. void GDScriptAnalyzer::resolve_class_member(GDScriptParser::ClassNode *p_class, StringName p_name, const GDScriptParser::Node *p_source) {
  628. ERR_FAIL_COND(!p_class->has_member(p_name));
  629. resolve_class_member(p_class, p_class->members_indices[p_name], p_source);
  630. }
  631. void GDScriptAnalyzer::resolve_class_member(GDScriptParser::ClassNode *p_class, int p_index, const GDScriptParser::Node *p_source) {
  632. ERR_FAIL_INDEX(p_index, p_class->members.size());
  633. GDScriptParser::ClassNode::Member &member = p_class->members.write[p_index];
  634. if (p_source == nullptr && parser->has_class(p_class)) {
  635. p_source = member.get_source_node();
  636. }
  637. if (member.get_datatype().is_resolving()) {
  638. push_error(vformat(R"(Could not resolve member "%s": Cyclic reference.)", member.get_name()), p_source);
  639. return;
  640. }
  641. if (member.get_datatype().is_set()) {
  642. return;
  643. }
  644. if (!parser->has_class(p_class)) {
  645. String script_path = p_class->get_datatype().script_path;
  646. Ref<GDScriptParserRef> parser_ref = get_parser_for(script_path);
  647. if (parser_ref.is_null()) {
  648. push_error(vformat(R"(Could not find script "%s" (While resolving "%s").)", script_path, member.get_name()), p_source);
  649. return;
  650. }
  651. Error err = parser_ref->raise_status(GDScriptParserRef::PARSED);
  652. if (err) {
  653. push_error(vformat(R"(Could not resolve script "%s": %s (While resolving "%s").)", script_path, error_names[err], member.get_name()), p_source);
  654. return;
  655. }
  656. ERR_FAIL_COND_MSG(!parser_ref->get_parser()->has_class(p_class), R"(Parser bug: Mismatched external parser.)");
  657. GDScriptAnalyzer *other_analyzer = parser_ref->get_analyzer();
  658. GDScriptParser *other_parser = parser_ref->get_parser();
  659. int error_count = other_parser->errors.size();
  660. other_analyzer->resolve_class_member(p_class, p_index);
  661. if (other_parser->errors.size() > error_count) {
  662. push_error(vformat(R"(Could not resolve member "%s".)", member.get_name()), p_source);
  663. }
  664. return;
  665. }
  666. // If it's already resolving, that's ok.
  667. if (!p_class->base_type.is_resolving()) {
  668. Error err = resolve_class_inheritance(p_class);
  669. if (err) {
  670. return;
  671. }
  672. }
  673. GDScriptParser::ClassNode *previous_class = parser->current_class;
  674. parser->current_class = p_class;
  675. GDScriptParser::DataType resolving_datatype;
  676. resolving_datatype.kind = GDScriptParser::DataType::RESOLVING;
  677. {
  678. switch (member.type) {
  679. case GDScriptParser::ClassNode::Member::VARIABLE: {
  680. check_class_member_name_conflict(p_class, member.variable->identifier->name, member.variable);
  681. member.variable->set_datatype(resolving_datatype);
  682. resolve_variable(member.variable, false);
  683. // Apply annotations.
  684. for (GDScriptParser::AnnotationNode *&E : member.variable->annotations) {
  685. resolve_annotation(E);
  686. E->apply(parser, member.variable);
  687. }
  688. } break;
  689. case GDScriptParser::ClassNode::Member::CONSTANT: {
  690. check_class_member_name_conflict(p_class, member.constant->identifier->name, member.constant);
  691. member.constant->set_datatype(resolving_datatype);
  692. resolve_constant(member.constant, false);
  693. // Apply annotations.
  694. for (GDScriptParser::AnnotationNode *&E : member.constant->annotations) {
  695. resolve_annotation(E);
  696. E->apply(parser, member.constant);
  697. }
  698. } break;
  699. case GDScriptParser::ClassNode::Member::SIGNAL: {
  700. check_class_member_name_conflict(p_class, member.signal->identifier->name, member.signal);
  701. member.signal->set_datatype(resolving_datatype);
  702. // This is the _only_ way to declare a signal. Therefore, we can generate its
  703. // MethodInfo inline so it's a tiny bit more efficient.
  704. MethodInfo mi = MethodInfo(member.signal->identifier->name);
  705. for (int j = 0; j < member.signal->parameters.size(); j++) {
  706. GDScriptParser::ParameterNode *param = member.signal->parameters[j];
  707. GDScriptParser::DataType param_type = type_from_metatype(resolve_datatype(param->datatype_specifier));
  708. param->set_datatype(param_type);
  709. mi.arguments.push_back(PropertyInfo(param_type.builtin_type, param->identifier->name));
  710. // TODO: add signal parameter default values
  711. }
  712. member.signal->set_datatype(make_signal_type(mi));
  713. // Apply annotations.
  714. for (GDScriptParser::AnnotationNode *&E : member.signal->annotations) {
  715. resolve_annotation(E);
  716. E->apply(parser, member.signal);
  717. }
  718. } break;
  719. case GDScriptParser::ClassNode::Member::ENUM: {
  720. check_class_member_name_conflict(p_class, member.m_enum->identifier->name, member.m_enum);
  721. member.m_enum->set_datatype(resolving_datatype);
  722. GDScriptParser::DataType enum_type = make_enum_type(member.m_enum->identifier->name, p_class->fqcn, true);
  723. const GDScriptParser::EnumNode *prev_enum = current_enum;
  724. current_enum = member.m_enum;
  725. Dictionary dictionary;
  726. for (int j = 0; j < member.m_enum->values.size(); j++) {
  727. GDScriptParser::EnumNode::Value &element = member.m_enum->values.write[j];
  728. if (element.custom_value) {
  729. reduce_expression(element.custom_value);
  730. if (!element.custom_value->is_constant) {
  731. push_error(R"(Enum values must be constant.)", element.custom_value);
  732. } else if (element.custom_value->reduced_value.get_type() != Variant::INT) {
  733. push_error(R"(Enum values must be integers.)", element.custom_value);
  734. } else {
  735. element.value = element.custom_value->reduced_value;
  736. element.resolved = true;
  737. }
  738. } else {
  739. if (element.index > 0) {
  740. element.value = element.parent_enum->values[element.index - 1].value + 1;
  741. } else {
  742. element.value = 0;
  743. }
  744. element.resolved = true;
  745. }
  746. enum_type.enum_values[element.identifier->name] = element.value;
  747. dictionary[String(element.identifier->name)] = element.value;
  748. }
  749. current_enum = prev_enum;
  750. dictionary.make_read_only();
  751. member.m_enum->set_datatype(enum_type);
  752. member.m_enum->dictionary = dictionary;
  753. // Apply annotations.
  754. for (GDScriptParser::AnnotationNode *&E : member.m_enum->annotations) {
  755. resolve_annotation(E);
  756. E->apply(parser, member.m_enum);
  757. }
  758. } break;
  759. case GDScriptParser::ClassNode::Member::FUNCTION:
  760. resolve_function_signature(member.function, p_source);
  761. break;
  762. case GDScriptParser::ClassNode::Member::ENUM_VALUE: {
  763. member.enum_value.identifier->set_datatype(resolving_datatype);
  764. if (member.enum_value.custom_value) {
  765. check_class_member_name_conflict(p_class, member.enum_value.identifier->name, member.enum_value.custom_value);
  766. const GDScriptParser::EnumNode *prev_enum = current_enum;
  767. current_enum = member.enum_value.parent_enum;
  768. reduce_expression(member.enum_value.custom_value);
  769. current_enum = prev_enum;
  770. if (!member.enum_value.custom_value->is_constant) {
  771. push_error(R"(Enum values must be constant.)", member.enum_value.custom_value);
  772. } else if (member.enum_value.custom_value->reduced_value.get_type() != Variant::INT) {
  773. push_error(R"(Enum values must be integers.)", member.enum_value.custom_value);
  774. } else {
  775. member.enum_value.value = member.enum_value.custom_value->reduced_value;
  776. member.enum_value.resolved = true;
  777. }
  778. } else {
  779. check_class_member_name_conflict(p_class, member.enum_value.identifier->name, member.enum_value.parent_enum);
  780. if (member.enum_value.index > 0) {
  781. const GDScriptParser::EnumNode::Value &prev_value = member.enum_value.parent_enum->values[member.enum_value.index - 1];
  782. resolve_class_member(p_class, prev_value.identifier->name, member.enum_value.identifier);
  783. member.enum_value.value = prev_value.value + 1;
  784. } else {
  785. member.enum_value.value = 0;
  786. }
  787. member.enum_value.resolved = true;
  788. }
  789. // Also update the original references.
  790. member.enum_value.parent_enum->values.set(member.enum_value.index, member.enum_value);
  791. member.enum_value.identifier->set_datatype(make_enum_type(UNNAMED_ENUM, p_class->fqcn, false));
  792. } break;
  793. case GDScriptParser::ClassNode::Member::CLASS:
  794. check_class_member_name_conflict(p_class, member.m_class->identifier->name, member.m_class);
  795. // If it's already resolving, that's ok.
  796. if (!member.m_class->base_type.is_resolving()) {
  797. resolve_class_inheritance(member.m_class, p_source);
  798. }
  799. break;
  800. case GDScriptParser::ClassNode::Member::GROUP:
  801. // No-op, but needed to silence warnings.
  802. break;
  803. case GDScriptParser::ClassNode::Member::UNDEFINED:
  804. ERR_PRINT("Trying to resolve undefined member.");
  805. break;
  806. }
  807. }
  808. parser->current_class = previous_class;
  809. }
  810. void GDScriptAnalyzer::resolve_class_interface(GDScriptParser::ClassNode *p_class, const GDScriptParser::Node *p_source) {
  811. if (p_source == nullptr && parser->has_class(p_class)) {
  812. p_source = p_class;
  813. }
  814. if (!p_class->resolved_interface) {
  815. if (!parser->has_class(p_class)) {
  816. String script_path = p_class->get_datatype().script_path;
  817. Ref<GDScriptParserRef> parser_ref = get_parser_for(script_path);
  818. if (parser_ref.is_null()) {
  819. push_error(vformat(R"(Could not find script "%s".)", script_path), p_source);
  820. return;
  821. }
  822. Error err = parser_ref->raise_status(GDScriptParserRef::PARSED);
  823. if (err) {
  824. push_error(vformat(R"(Could not resolve script "%s": %s.)", script_path, error_names[err]), p_source);
  825. return;
  826. }
  827. ERR_FAIL_COND_MSG(!parser_ref->get_parser()->has_class(p_class), R"(Parser bug: Mismatched external parser.)");
  828. GDScriptAnalyzer *other_analyzer = parser_ref->get_analyzer();
  829. GDScriptParser *other_parser = parser_ref->get_parser();
  830. int error_count = other_parser->errors.size();
  831. other_analyzer->resolve_class_interface(p_class);
  832. if (other_parser->errors.size() > error_count) {
  833. push_error(vformat(R"(Could not resolve class "%s".)", p_class->fqcn), p_source);
  834. }
  835. return;
  836. }
  837. p_class->resolved_interface = true;
  838. if (resolve_class_inheritance(p_class) != OK) {
  839. return;
  840. }
  841. GDScriptParser::DataType base_type = p_class->base_type;
  842. if (base_type.kind == GDScriptParser::DataType::CLASS) {
  843. GDScriptParser::ClassNode *base_class = base_type.class_type;
  844. resolve_class_interface(base_class, p_class);
  845. }
  846. for (int i = 0; i < p_class->members.size(); i++) {
  847. resolve_class_member(p_class, i);
  848. }
  849. }
  850. }
  851. void GDScriptAnalyzer::resolve_class_interface(GDScriptParser::ClassNode *p_class, bool p_recursive) {
  852. resolve_class_interface(p_class);
  853. if (p_recursive) {
  854. for (int i = 0; i < p_class->members.size(); i++) {
  855. GDScriptParser::ClassNode::Member member = p_class->members[i];
  856. if (member.type == GDScriptParser::ClassNode::Member::CLASS) {
  857. resolve_class_interface(member.m_class, true);
  858. }
  859. }
  860. }
  861. }
  862. void GDScriptAnalyzer::resolve_class_body(GDScriptParser::ClassNode *p_class, const GDScriptParser::Node *p_source) {
  863. if (p_source == nullptr && parser->has_class(p_class)) {
  864. p_source = p_class;
  865. }
  866. if (p_class->resolved_body) {
  867. return;
  868. }
  869. if (!parser->has_class(p_class)) {
  870. String script_path = p_class->get_datatype().script_path;
  871. Ref<GDScriptParserRef> parser_ref = get_parser_for(script_path);
  872. if (parser_ref.is_null()) {
  873. push_error(vformat(R"(Could not find script "%s".)", script_path), p_source);
  874. return;
  875. }
  876. Error err = parser_ref->raise_status(GDScriptParserRef::PARSED);
  877. if (err) {
  878. push_error(vformat(R"(Could not resolve script "%s": %s.)", script_path, error_names[err]), p_source);
  879. return;
  880. }
  881. ERR_FAIL_COND_MSG(!parser_ref->get_parser()->has_class(p_class), R"(Parser bug: Mismatched external parser.)");
  882. GDScriptAnalyzer *other_analyzer = parser_ref->get_analyzer();
  883. GDScriptParser *other_parser = parser_ref->get_parser();
  884. int error_count = other_parser->errors.size();
  885. other_analyzer->resolve_class_body(p_class);
  886. if (other_parser->errors.size() > error_count) {
  887. push_error(vformat(R"(Could not resolve class "%s".)", p_class->fqcn), p_source);
  888. }
  889. return;
  890. }
  891. p_class->resolved_body = true;
  892. GDScriptParser::ClassNode *previous_class = parser->current_class;
  893. parser->current_class = p_class;
  894. resolve_class_interface(p_class, p_source);
  895. GDScriptParser::DataType base_type = p_class->base_type;
  896. if (base_type.kind == GDScriptParser::DataType::CLASS) {
  897. GDScriptParser::ClassNode *base_class = base_type.class_type;
  898. resolve_class_body(base_class, p_class);
  899. }
  900. // Do functions, properties, and groups now.
  901. for (int i = 0; i < p_class->members.size(); i++) {
  902. GDScriptParser::ClassNode::Member member = p_class->members[i];
  903. if (member.type == GDScriptParser::ClassNode::Member::FUNCTION) {
  904. // Apply annotations.
  905. for (GDScriptParser::AnnotationNode *&E : member.function->annotations) {
  906. resolve_annotation(E);
  907. E->apply(parser, member.function);
  908. }
  909. #ifdef DEBUG_ENABLED
  910. HashSet<uint32_t> previously_ignored = parser->ignored_warning_codes;
  911. for (uint32_t ignored_warning : member.function->ignored_warnings) {
  912. parser->ignored_warning_codes.insert(ignored_warning);
  913. }
  914. #endif // DEBUG_ENABLED
  915. resolve_function_body(member.function);
  916. #ifdef DEBUG_ENABLED
  917. parser->ignored_warning_codes = previously_ignored;
  918. #endif // DEBUG_ENABLED
  919. } else if (member.type == GDScriptParser::ClassNode::Member::VARIABLE && member.variable->property != GDScriptParser::VariableNode::PROP_NONE) {
  920. if (member.variable->property == GDScriptParser::VariableNode::PROP_INLINE) {
  921. if (member.variable->getter != nullptr) {
  922. member.variable->getter->set_datatype(member.variable->datatype);
  923. resolve_function_body(member.variable->getter);
  924. }
  925. if (member.variable->setter != nullptr) {
  926. resolve_function_signature(member.variable->setter);
  927. if (member.variable->setter->parameters.size() > 0) {
  928. member.variable->setter->parameters[0]->datatype_specifier = member.variable->datatype_specifier;
  929. member.variable->setter->parameters[0]->set_datatype(member.get_datatype());
  930. }
  931. resolve_function_body(member.variable->setter);
  932. }
  933. }
  934. } else if (member.type == GDScriptParser::ClassNode::Member::GROUP) {
  935. // Apply annotation (`@export_{category,group,subgroup}`).
  936. resolve_annotation(member.annotation);
  937. member.annotation->apply(parser, nullptr);
  938. }
  939. }
  940. // Check unused variables and datatypes of property getters and setters.
  941. for (int i = 0; i < p_class->members.size(); i++) {
  942. GDScriptParser::ClassNode::Member member = p_class->members[i];
  943. if (member.type == GDScriptParser::ClassNode::Member::VARIABLE) {
  944. #ifdef DEBUG_ENABLED
  945. HashSet<uint32_t> previously_ignored = parser->ignored_warning_codes;
  946. for (uint32_t ignored_warning : member.function->ignored_warnings) {
  947. parser->ignored_warning_codes.insert(ignored_warning);
  948. }
  949. if (member.variable->usages == 0 && String(member.variable->identifier->name).begins_with("_")) {
  950. parser->push_warning(member.variable->identifier, GDScriptWarning::UNUSED_PRIVATE_CLASS_VARIABLE, member.variable->identifier->name);
  951. }
  952. #endif
  953. if (member.variable->property == GDScriptParser::VariableNode::PROP_SETGET) {
  954. GDScriptParser::FunctionNode *getter_function = nullptr;
  955. GDScriptParser::FunctionNode *setter_function = nullptr;
  956. bool has_valid_getter = false;
  957. bool has_valid_setter = false;
  958. if (member.variable->getter_pointer != nullptr) {
  959. if (p_class->has_function(member.variable->getter_pointer->name)) {
  960. getter_function = p_class->get_member(member.variable->getter_pointer->name).function;
  961. }
  962. if (getter_function == nullptr) {
  963. push_error(vformat(R"(Getter "%s" not found.)", member.variable->getter_pointer->name), member.variable);
  964. } else {
  965. GDScriptParser::DataType return_datatype = getter_function->datatype;
  966. if (getter_function->return_type != nullptr) {
  967. return_datatype = getter_function->return_type->datatype;
  968. return_datatype.is_meta_type = false;
  969. }
  970. if (getter_function->parameters.size() != 0 || return_datatype.has_no_type()) {
  971. push_error(vformat(R"(Function "%s" cannot be used as getter because of its signature.)", getter_function->identifier->name), member.variable);
  972. } else if (!is_type_compatible(member.variable->datatype, return_datatype, true)) {
  973. push_error(vformat(R"(Function with return type "%s" cannot be used as getter for a property of type "%s".)", return_datatype.to_string(), member.variable->datatype.to_string()), member.variable);
  974. } else {
  975. has_valid_getter = true;
  976. #ifdef DEBUG_ENABLED
  977. if (member.variable->datatype.builtin_type == Variant::INT && return_datatype.builtin_type == Variant::FLOAT) {
  978. parser->push_warning(member.variable, GDScriptWarning::NARROWING_CONVERSION);
  979. }
  980. #endif
  981. }
  982. }
  983. }
  984. if (member.variable->setter_pointer != nullptr) {
  985. if (p_class->has_function(member.variable->setter_pointer->name)) {
  986. setter_function = p_class->get_member(member.variable->setter_pointer->name).function;
  987. }
  988. if (setter_function == nullptr) {
  989. push_error(vformat(R"(Setter "%s" not found.)", member.variable->setter_pointer->name), member.variable);
  990. } else if (setter_function->parameters.size() != 1) {
  991. push_error(vformat(R"(Function "%s" cannot be used as setter because of its signature.)", setter_function->identifier->name), member.variable);
  992. } else if (!is_type_compatible(member.variable->datatype, setter_function->parameters[0]->datatype, true)) {
  993. push_error(vformat(R"(Function with argument type "%s" cannot be used as setter for a property of type "%s".)", setter_function->parameters[0]->datatype.to_string(), member.variable->datatype.to_string()), member.variable);
  994. } else {
  995. has_valid_setter = true;
  996. #ifdef DEBUG_ENABLED
  997. if (member.variable->datatype.builtin_type == Variant::FLOAT && setter_function->parameters[0]->datatype.builtin_type == Variant::INT) {
  998. parser->push_warning(member.variable, GDScriptWarning::NARROWING_CONVERSION);
  999. }
  1000. #endif
  1001. }
  1002. }
  1003. if (member.variable->datatype.is_variant() && has_valid_getter && has_valid_setter) {
  1004. if (!is_type_compatible(getter_function->datatype, setter_function->parameters[0]->datatype, true)) {
  1005. push_error(vformat(R"(Getter with type "%s" cannot be used along with setter of type "%s".)", getter_function->datatype.to_string(), setter_function->parameters[0]->datatype.to_string()), member.variable);
  1006. }
  1007. }
  1008. #ifdef DEBUG_ENABLED
  1009. parser->ignored_warning_codes = previously_ignored;
  1010. #endif // DEBUG_ENABLED
  1011. }
  1012. }
  1013. }
  1014. parser->current_class = previous_class;
  1015. }
  1016. void GDScriptAnalyzer::resolve_class_body(GDScriptParser::ClassNode *p_class, bool p_recursive) {
  1017. resolve_class_body(p_class);
  1018. if (p_recursive) {
  1019. for (int i = 0; i < p_class->members.size(); i++) {
  1020. GDScriptParser::ClassNode::Member member = p_class->members[i];
  1021. if (member.type == GDScriptParser::ClassNode::Member::CLASS) {
  1022. resolve_class_body(member.m_class, true);
  1023. }
  1024. }
  1025. }
  1026. }
  1027. void GDScriptAnalyzer::resolve_node(GDScriptParser::Node *p_node, bool p_is_root) {
  1028. ERR_FAIL_COND_MSG(p_node == nullptr, "Trying to resolve type of a null node.");
  1029. switch (p_node->type) {
  1030. case GDScriptParser::Node::NONE:
  1031. break; // Unreachable.
  1032. case GDScriptParser::Node::CLASS:
  1033. if (OK == resolve_class_inheritance(static_cast<GDScriptParser::ClassNode *>(p_node), true)) {
  1034. resolve_class_interface(static_cast<GDScriptParser::ClassNode *>(p_node), true);
  1035. resolve_class_body(static_cast<GDScriptParser::ClassNode *>(p_node), true);
  1036. }
  1037. break;
  1038. case GDScriptParser::Node::CONSTANT:
  1039. resolve_constant(static_cast<GDScriptParser::ConstantNode *>(p_node), true);
  1040. break;
  1041. case GDScriptParser::Node::FOR:
  1042. resolve_for(static_cast<GDScriptParser::ForNode *>(p_node));
  1043. break;
  1044. case GDScriptParser::Node::IF:
  1045. resolve_if(static_cast<GDScriptParser::IfNode *>(p_node));
  1046. break;
  1047. case GDScriptParser::Node::SUITE:
  1048. resolve_suite(static_cast<GDScriptParser::SuiteNode *>(p_node));
  1049. break;
  1050. case GDScriptParser::Node::VARIABLE:
  1051. resolve_variable(static_cast<GDScriptParser::VariableNode *>(p_node), true);
  1052. break;
  1053. case GDScriptParser::Node::WHILE:
  1054. resolve_while(static_cast<GDScriptParser::WhileNode *>(p_node));
  1055. break;
  1056. case GDScriptParser::Node::ANNOTATION:
  1057. resolve_annotation(static_cast<GDScriptParser::AnnotationNode *>(p_node));
  1058. break;
  1059. case GDScriptParser::Node::ASSERT:
  1060. resolve_assert(static_cast<GDScriptParser::AssertNode *>(p_node));
  1061. break;
  1062. case GDScriptParser::Node::MATCH:
  1063. resolve_match(static_cast<GDScriptParser::MatchNode *>(p_node));
  1064. break;
  1065. case GDScriptParser::Node::MATCH_BRANCH:
  1066. resolve_match_branch(static_cast<GDScriptParser::MatchBranchNode *>(p_node), nullptr);
  1067. break;
  1068. case GDScriptParser::Node::PARAMETER:
  1069. resolve_parameter(static_cast<GDScriptParser::ParameterNode *>(p_node));
  1070. break;
  1071. case GDScriptParser::Node::PATTERN:
  1072. resolve_match_pattern(static_cast<GDScriptParser::PatternNode *>(p_node), nullptr);
  1073. break;
  1074. case GDScriptParser::Node::RETURN:
  1075. resolve_return(static_cast<GDScriptParser::ReturnNode *>(p_node));
  1076. break;
  1077. case GDScriptParser::Node::TYPE:
  1078. resolve_datatype(static_cast<GDScriptParser::TypeNode *>(p_node));
  1079. break;
  1080. // Resolving expression is the same as reducing them.
  1081. case GDScriptParser::Node::ARRAY:
  1082. case GDScriptParser::Node::ASSIGNMENT:
  1083. case GDScriptParser::Node::AWAIT:
  1084. case GDScriptParser::Node::BINARY_OPERATOR:
  1085. case GDScriptParser::Node::CALL:
  1086. case GDScriptParser::Node::CAST:
  1087. case GDScriptParser::Node::DICTIONARY:
  1088. case GDScriptParser::Node::GET_NODE:
  1089. case GDScriptParser::Node::IDENTIFIER:
  1090. case GDScriptParser::Node::LAMBDA:
  1091. case GDScriptParser::Node::LITERAL:
  1092. case GDScriptParser::Node::PRELOAD:
  1093. case GDScriptParser::Node::SELF:
  1094. case GDScriptParser::Node::SUBSCRIPT:
  1095. case GDScriptParser::Node::TERNARY_OPERATOR:
  1096. case GDScriptParser::Node::UNARY_OPERATOR:
  1097. reduce_expression(static_cast<GDScriptParser::ExpressionNode *>(p_node), p_is_root);
  1098. break;
  1099. case GDScriptParser::Node::BREAK:
  1100. case GDScriptParser::Node::BREAKPOINT:
  1101. case GDScriptParser::Node::CONTINUE:
  1102. case GDScriptParser::Node::ENUM:
  1103. case GDScriptParser::Node::FUNCTION:
  1104. case GDScriptParser::Node::PASS:
  1105. case GDScriptParser::Node::SIGNAL:
  1106. // Nothing to do.
  1107. break;
  1108. }
  1109. }
  1110. void GDScriptAnalyzer::resolve_annotation(GDScriptParser::AnnotationNode *p_annotation) {
  1111. ERR_FAIL_COND_MSG(!parser->valid_annotations.has(p_annotation->name), vformat(R"(Annotation "%s" not found to validate.)", p_annotation->name));
  1112. const MethodInfo &annotation_info = parser->valid_annotations[p_annotation->name].info;
  1113. const List<PropertyInfo>::Element *E = annotation_info.arguments.front();
  1114. for (int i = 0; i < p_annotation->arguments.size(); i++) {
  1115. GDScriptParser::ExpressionNode *argument = p_annotation->arguments[i];
  1116. const PropertyInfo &argument_info = E->get();
  1117. if (E->next() != nullptr) {
  1118. E = E->next();
  1119. }
  1120. reduce_expression(argument);
  1121. if (!argument->is_constant) {
  1122. push_error(vformat(R"(Argument %d of annotation "%s" isn't a constant expression.)", i + 1, p_annotation->name), argument);
  1123. return;
  1124. }
  1125. Variant value = argument->reduced_value;
  1126. if (value.get_type() != argument_info.type) {
  1127. #ifdef DEBUG_ENABLED
  1128. if (argument_info.type == Variant::INT && value.get_type() == Variant::FLOAT) {
  1129. parser->push_warning(argument, GDScriptWarning::NARROWING_CONVERSION);
  1130. }
  1131. #endif
  1132. if (!Variant::can_convert_strict(value.get_type(), argument_info.type)) {
  1133. push_error(vformat(R"(Invalid argument for annotation "%s": argument %d should be "%s" but is "%s".)", p_annotation->name, i + 1, Variant::get_type_name(argument_info.type), argument->get_datatype().to_string()), argument);
  1134. return;
  1135. }
  1136. Variant converted_to;
  1137. const Variant *converted_from = &value;
  1138. Callable::CallError call_error;
  1139. Variant::construct(argument_info.type, converted_to, &converted_from, 1, call_error);
  1140. if (call_error.error != Callable::CallError::CALL_OK) {
  1141. push_error(vformat(R"(Cannot convert argument %d of annotation "%s" from "%s" to "%s".)", i + 1, p_annotation->name, Variant::get_type_name(value.get_type()), Variant::get_type_name(argument_info.type)), argument);
  1142. return;
  1143. }
  1144. value = converted_to;
  1145. }
  1146. p_annotation->resolved_arguments.push_back(value);
  1147. }
  1148. }
  1149. void GDScriptAnalyzer::resolve_function_signature(GDScriptParser::FunctionNode *p_function, const GDScriptParser::Node *p_source, bool p_is_lambda) {
  1150. if (p_source == nullptr) {
  1151. p_source = p_function;
  1152. }
  1153. StringName function_name = p_function->identifier != nullptr ? p_function->identifier->name : StringName();
  1154. if (p_function->get_datatype().is_resolving()) {
  1155. push_error(vformat(R"(Could not resolve function "%s": Cyclic reference.)", function_name), p_source);
  1156. return;
  1157. }
  1158. if (p_function->resolved_signature) {
  1159. return;
  1160. }
  1161. p_function->resolved_signature = true;
  1162. GDScriptParser::FunctionNode *previous_function = parser->current_function;
  1163. parser->current_function = p_function;
  1164. GDScriptParser::DataType prev_datatype = p_function->get_datatype();
  1165. GDScriptParser::DataType resolving_datatype;
  1166. resolving_datatype.kind = GDScriptParser::DataType::RESOLVING;
  1167. p_function->set_datatype(resolving_datatype);
  1168. #ifdef TOOLS_ENABLED
  1169. int default_value_count = 0;
  1170. #endif // TOOLS_ENABLED
  1171. for (int i = 0; i < p_function->parameters.size(); i++) {
  1172. resolve_parameter(p_function->parameters[i]);
  1173. #ifdef DEBUG_ENABLED
  1174. if (p_function->parameters[i]->usages == 0 && !String(p_function->parameters[i]->identifier->name).begins_with("_")) {
  1175. parser->push_warning(p_function->parameters[i]->identifier, GDScriptWarning::UNUSED_PARAMETER, function_name, p_function->parameters[i]->identifier->name);
  1176. }
  1177. is_shadowing(p_function->parameters[i]->identifier, "function parameter");
  1178. #endif // DEBUG_ENABLED
  1179. #ifdef TOOLS_ENABLED
  1180. if (p_function->parameters[i]->initializer) {
  1181. default_value_count++;
  1182. if (p_function->parameters[i]->initializer->is_constant) {
  1183. p_function->default_arg_values.push_back(p_function->parameters[i]->initializer->reduced_value);
  1184. } else {
  1185. p_function->default_arg_values.push_back(Variant()); // Prevent shift.
  1186. }
  1187. }
  1188. #endif // TOOLS_ENABLED
  1189. }
  1190. if (!p_is_lambda && function_name == GDScriptLanguage::get_singleton()->strings._init) {
  1191. // Constructor.
  1192. GDScriptParser::DataType return_type = parser->current_class->get_datatype();
  1193. return_type.is_meta_type = false;
  1194. p_function->set_datatype(return_type);
  1195. if (p_function->return_type) {
  1196. GDScriptParser::DataType declared_return = resolve_datatype(p_function->return_type);
  1197. if (declared_return.kind != GDScriptParser::DataType::BUILTIN || declared_return.builtin_type != Variant::NIL) {
  1198. push_error("Constructor cannot have an explicit return type.", p_function->return_type);
  1199. }
  1200. }
  1201. } else {
  1202. if (p_function->return_type != nullptr) {
  1203. p_function->set_datatype(type_from_metatype(resolve_datatype(p_function->return_type)));
  1204. } else {
  1205. // In case the function is not typed, we can safely assume it's a Variant, so it's okay to mark as "inferred" here.
  1206. // It's not "undetected" to not mix up with unknown functions.
  1207. GDScriptParser::DataType return_type;
  1208. return_type.type_source = GDScriptParser::DataType::INFERRED;
  1209. return_type.kind = GDScriptParser::DataType::VARIANT;
  1210. p_function->set_datatype(return_type);
  1211. }
  1212. #ifdef TOOLS_ENABLED
  1213. // Check if the function signature matches the parent. If not it's an error since it breaks polymorphism.
  1214. // Not for the constructor which can vary in signature.
  1215. GDScriptParser::DataType base_type = parser->current_class->base_type;
  1216. GDScriptParser::DataType parent_return_type;
  1217. List<GDScriptParser::DataType> parameters_types;
  1218. int default_par_count = 0;
  1219. bool is_static = false;
  1220. bool is_vararg = false;
  1221. if (!p_is_lambda && get_function_signature(p_function, false, base_type, function_name, parent_return_type, parameters_types, default_par_count, is_static, is_vararg)) {
  1222. bool valid = p_function->is_static == is_static;
  1223. valid = valid && parent_return_type == p_function->get_datatype();
  1224. int par_count_diff = p_function->parameters.size() - parameters_types.size();
  1225. valid = valid && par_count_diff >= 0;
  1226. valid = valid && default_value_count >= default_par_count + par_count_diff;
  1227. int i = 0;
  1228. for (const GDScriptParser::DataType &par_type : parameters_types) {
  1229. valid = valid && par_type == p_function->parameters[i++]->get_datatype();
  1230. }
  1231. if (!valid) {
  1232. // Compute parent signature as a string to show in the error message.
  1233. String parent_signature = String(function_name) + "(";
  1234. int j = 0;
  1235. for (const GDScriptParser::DataType &par_type : parameters_types) {
  1236. if (j > 0) {
  1237. parent_signature += ", ";
  1238. }
  1239. String parameter = par_type.to_string();
  1240. if (parameter == "null") {
  1241. parameter = "Variant";
  1242. }
  1243. parent_signature += parameter;
  1244. if (j == parameters_types.size() - default_par_count) {
  1245. parent_signature += " = default";
  1246. }
  1247. j++;
  1248. }
  1249. parent_signature += ") -> ";
  1250. const String return_type = parent_return_type.is_hard_type() ? parent_return_type.to_string() : "Variant";
  1251. if (return_type == "null") {
  1252. parent_signature += "void";
  1253. } else {
  1254. parent_signature += return_type;
  1255. }
  1256. push_error(vformat(R"(The function signature doesn't match the parent. Parent signature is "%s".)", parent_signature), p_function);
  1257. }
  1258. }
  1259. #endif // TOOLS_ENABLED
  1260. }
  1261. if (p_function->get_datatype().is_resolving()) {
  1262. p_function->set_datatype(prev_datatype);
  1263. }
  1264. parser->current_function = previous_function;
  1265. }
  1266. void GDScriptAnalyzer::resolve_function_body(GDScriptParser::FunctionNode *p_function, bool p_is_lambda) {
  1267. if (p_function->resolved_body) {
  1268. return;
  1269. }
  1270. p_function->resolved_body = true;
  1271. GDScriptParser::FunctionNode *previous_function = parser->current_function;
  1272. parser->current_function = p_function;
  1273. resolve_suite(p_function->body);
  1274. GDScriptParser::DataType return_type = p_function->body->get_datatype();
  1275. if (!p_function->get_datatype().is_hard_type() && return_type.is_set()) {
  1276. // Use the suite inferred type if return isn't explicitly set.
  1277. return_type.type_source = GDScriptParser::DataType::INFERRED;
  1278. p_function->set_datatype(p_function->body->get_datatype());
  1279. } else if (p_function->get_datatype().is_hard_type() && (p_function->get_datatype().kind != GDScriptParser::DataType::BUILTIN || p_function->get_datatype().builtin_type != Variant::NIL)) {
  1280. if (!p_function->body->has_return && (p_is_lambda || p_function->identifier->name != GDScriptLanguage::get_singleton()->strings._init)) {
  1281. push_error(R"(Not all code paths return a value.)", p_function);
  1282. }
  1283. }
  1284. parser->current_function = previous_function;
  1285. }
  1286. void GDScriptAnalyzer::decide_suite_type(GDScriptParser::Node *p_suite, GDScriptParser::Node *p_statement) {
  1287. if (p_statement == nullptr) {
  1288. return;
  1289. }
  1290. switch (p_statement->type) {
  1291. case GDScriptParser::Node::IF:
  1292. case GDScriptParser::Node::FOR:
  1293. case GDScriptParser::Node::MATCH:
  1294. case GDScriptParser::Node::PATTERN:
  1295. case GDScriptParser::Node::RETURN:
  1296. case GDScriptParser::Node::WHILE:
  1297. // Use return or nested suite type as this suite type.
  1298. if (p_suite->get_datatype().is_set() && (p_suite->get_datatype() != p_statement->get_datatype())) {
  1299. // Mixed types.
  1300. // TODO: This could use the common supertype instead.
  1301. p_suite->datatype.kind = GDScriptParser::DataType::VARIANT;
  1302. p_suite->datatype.type_source = GDScriptParser::DataType::UNDETECTED;
  1303. } else {
  1304. p_suite->set_datatype(p_statement->get_datatype());
  1305. p_suite->datatype.type_source = GDScriptParser::DataType::INFERRED;
  1306. }
  1307. break;
  1308. default:
  1309. break;
  1310. }
  1311. }
  1312. void GDScriptAnalyzer::resolve_suite(GDScriptParser::SuiteNode *p_suite) {
  1313. for (int i = 0; i < p_suite->statements.size(); i++) {
  1314. GDScriptParser::Node *stmt = p_suite->statements[i];
  1315. // Apply annotations.
  1316. for (GDScriptParser::AnnotationNode *&E : stmt->annotations) {
  1317. resolve_annotation(E);
  1318. E->apply(parser, stmt);
  1319. }
  1320. #ifdef DEBUG_ENABLED
  1321. HashSet<uint32_t> previously_ignored = parser->ignored_warning_codes;
  1322. for (uint32_t ignored_warning : stmt->ignored_warnings) {
  1323. parser->ignored_warning_codes.insert(ignored_warning);
  1324. }
  1325. #endif // DEBUG_ENABLED
  1326. resolve_node(stmt);
  1327. #ifdef DEBUG_ENABLED
  1328. parser->ignored_warning_codes = previously_ignored;
  1329. #endif // DEBUG_ENABLED
  1330. decide_suite_type(p_suite, stmt);
  1331. }
  1332. }
  1333. void GDScriptAnalyzer::resolve_assignable(GDScriptParser::AssignableNode *p_assignable, const char *p_kind) {
  1334. GDScriptParser::DataType type;
  1335. type.kind = GDScriptParser::DataType::VARIANT;
  1336. bool is_constant = p_assignable->type == GDScriptParser::Node::CONSTANT;
  1337. GDScriptParser::DataType specified_type;
  1338. bool has_specified_type = p_assignable->datatype_specifier != nullptr;
  1339. if (has_specified_type) {
  1340. specified_type = type_from_metatype(resolve_datatype(p_assignable->datatype_specifier));
  1341. type = specified_type;
  1342. }
  1343. if (p_assignable->initializer != nullptr) {
  1344. reduce_expression(p_assignable->initializer);
  1345. if (p_assignable->initializer->type == GDScriptParser::Node::ARRAY) {
  1346. GDScriptParser::ArrayNode *array = static_cast<GDScriptParser::ArrayNode *>(p_assignable->initializer);
  1347. if (has_specified_type && specified_type.has_container_element_type()) {
  1348. update_array_literal_element_type(array, specified_type.get_container_element_type());
  1349. }
  1350. }
  1351. if (is_constant && !p_assignable->initializer->is_constant) {
  1352. bool is_initializer_value_reduced = false;
  1353. Variant initializer_value = make_expression_reduced_value(p_assignable->initializer, is_initializer_value_reduced);
  1354. if (is_initializer_value_reduced) {
  1355. p_assignable->initializer->is_constant = true;
  1356. p_assignable->initializer->reduced_value = initializer_value;
  1357. } else {
  1358. push_error(vformat(R"(Assigned value for %s "%s" isn't a constant expression.)", p_kind, p_assignable->identifier->name), p_assignable->initializer);
  1359. }
  1360. }
  1361. if (has_specified_type && p_assignable->initializer->is_constant) {
  1362. update_const_expression_builtin_type(p_assignable->initializer, specified_type, "assign");
  1363. }
  1364. GDScriptParser::DataType initializer_type = p_assignable->initializer->get_datatype();
  1365. if (p_assignable->infer_datatype) {
  1366. if (!initializer_type.is_set() || initializer_type.has_no_type() || !initializer_type.is_hard_type()) {
  1367. push_error(vformat(R"(Cannot infer the type of "%s" %s because the value doesn't have a set type.)", p_assignable->identifier->name, p_kind), p_assignable->initializer);
  1368. } else if (initializer_type.kind == GDScriptParser::DataType::BUILTIN && initializer_type.builtin_type == Variant::NIL && !is_constant) {
  1369. push_error(vformat(R"(Cannot infer the type of "%s" %s because the value is "null".)", p_assignable->identifier->name, p_kind), p_assignable->initializer);
  1370. }
  1371. } else {
  1372. if (!initializer_type.is_set()) {
  1373. push_error(vformat(R"(Could not resolve type for %s "%s".)", p_kind, p_assignable->identifier->name), p_assignable->initializer);
  1374. }
  1375. }
  1376. if (!has_specified_type) {
  1377. type = initializer_type;
  1378. if (!type.is_set() || (type.is_hard_type() && type.kind == GDScriptParser::DataType::BUILTIN && type.builtin_type == Variant::NIL && !is_constant)) {
  1379. type.kind = GDScriptParser::DataType::VARIANT;
  1380. }
  1381. if (p_assignable->infer_datatype || is_constant) {
  1382. type.type_source = GDScriptParser::DataType::ANNOTATED_INFERRED;
  1383. } else {
  1384. type.type_source = GDScriptParser::DataType::INFERRED;
  1385. }
  1386. } else if (!specified_type.is_variant()) {
  1387. if (initializer_type.is_variant() || !initializer_type.is_hard_type()) {
  1388. mark_node_unsafe(p_assignable->initializer);
  1389. p_assignable->use_conversion_assign = true;
  1390. if (!initializer_type.is_variant() && !is_type_compatible(specified_type, initializer_type, true, p_assignable->initializer)) {
  1391. downgrade_node_type_source(p_assignable->initializer);
  1392. }
  1393. } else if (!is_type_compatible(specified_type, initializer_type, true, p_assignable->initializer)) {
  1394. if (!is_constant && is_type_compatible(initializer_type, specified_type)) {
  1395. mark_node_unsafe(p_assignable->initializer);
  1396. p_assignable->use_conversion_assign = true;
  1397. } else {
  1398. push_error(vformat(R"(Cannot assign a value of type %s to %s "%s" with specified type %s.)", initializer_type.to_string(), p_kind, p_assignable->identifier->name, specified_type.to_string()), p_assignable->initializer);
  1399. }
  1400. } else if (specified_type.has_container_element_type() && !initializer_type.has_container_element_type()) {
  1401. mark_node_unsafe(p_assignable->initializer);
  1402. #ifdef DEBUG_ENABLED
  1403. } else if (specified_type.builtin_type == Variant::INT && initializer_type.builtin_type == Variant::FLOAT) {
  1404. parser->push_warning(p_assignable->initializer, GDScriptWarning::NARROWING_CONVERSION);
  1405. #endif
  1406. }
  1407. }
  1408. }
  1409. type.is_constant = is_constant;
  1410. p_assignable->set_datatype(type);
  1411. }
  1412. void GDScriptAnalyzer::resolve_variable(GDScriptParser::VariableNode *p_variable, bool p_is_local) {
  1413. static constexpr const char *kind = "variable";
  1414. resolve_assignable(p_variable, kind);
  1415. #ifdef DEBUG_ENABLED
  1416. if (p_is_local) {
  1417. if (p_variable->usages == 0 && !String(p_variable->identifier->name).begins_with("_")) {
  1418. parser->push_warning(p_variable, GDScriptWarning::UNUSED_VARIABLE, p_variable->identifier->name);
  1419. } else if (p_variable->assignments == 0) {
  1420. parser->push_warning(p_variable, GDScriptWarning::UNASSIGNED_VARIABLE, p_variable->identifier->name);
  1421. }
  1422. is_shadowing(p_variable->identifier, kind);
  1423. }
  1424. #endif
  1425. }
  1426. void GDScriptAnalyzer::resolve_constant(GDScriptParser::ConstantNode *p_constant, bool p_is_local) {
  1427. static constexpr const char *kind = "constant";
  1428. resolve_assignable(p_constant, kind);
  1429. #ifdef DEBUG_ENABLED
  1430. if (p_is_local) {
  1431. if (p_constant->usages == 0) {
  1432. parser->push_warning(p_constant, GDScriptWarning::UNUSED_LOCAL_CONSTANT, p_constant->identifier->name);
  1433. }
  1434. is_shadowing(p_constant->identifier, kind);
  1435. }
  1436. #endif
  1437. }
  1438. void GDScriptAnalyzer::resolve_parameter(GDScriptParser::ParameterNode *p_parameter) {
  1439. static constexpr const char *kind = "parameter";
  1440. resolve_assignable(p_parameter, kind);
  1441. }
  1442. void GDScriptAnalyzer::resolve_if(GDScriptParser::IfNode *p_if) {
  1443. reduce_expression(p_if->condition);
  1444. resolve_suite(p_if->true_block);
  1445. p_if->set_datatype(p_if->true_block->get_datatype());
  1446. if (p_if->false_block != nullptr) {
  1447. resolve_suite(p_if->false_block);
  1448. decide_suite_type(p_if, p_if->false_block);
  1449. }
  1450. }
  1451. void GDScriptAnalyzer::resolve_for(GDScriptParser::ForNode *p_for) {
  1452. bool list_resolved = false;
  1453. // Optimize constant range() call to not allocate an array.
  1454. // Use int, Vector2i, Vector3i instead, which also can be used as range iterators.
  1455. if (p_for->list && p_for->list->type == GDScriptParser::Node::CALL) {
  1456. GDScriptParser::CallNode *call = static_cast<GDScriptParser::CallNode *>(p_for->list);
  1457. GDScriptParser::Node::Type callee_type = call->get_callee_type();
  1458. if (callee_type == GDScriptParser::Node::IDENTIFIER) {
  1459. GDScriptParser::IdentifierNode *callee = static_cast<GDScriptParser::IdentifierNode *>(call->callee);
  1460. if (callee->name == "range") {
  1461. list_resolved = true;
  1462. if (call->arguments.size() < 1) {
  1463. push_error(R"*(Invalid call for "range()" function. Expected at least 1 argument, none given.)*", call->callee);
  1464. } else if (call->arguments.size() > 3) {
  1465. push_error(vformat(R"*(Invalid call for "range()" function. Expected at most 3 arguments, %d given.)*", call->arguments.size()), call->callee);
  1466. } else {
  1467. // Now we can optimize it.
  1468. bool all_is_constant = true;
  1469. Vector<Variant> args;
  1470. args.resize(call->arguments.size());
  1471. for (int i = 0; i < call->arguments.size(); i++) {
  1472. reduce_expression(call->arguments[i]);
  1473. if (!call->arguments[i]->is_constant) {
  1474. all_is_constant = false;
  1475. } else if (all_is_constant) {
  1476. args.write[i] = call->arguments[i]->reduced_value;
  1477. }
  1478. GDScriptParser::DataType arg_type = call->arguments[i]->get_datatype();
  1479. if (!arg_type.is_variant()) {
  1480. if (arg_type.kind != GDScriptParser::DataType::BUILTIN) {
  1481. all_is_constant = false;
  1482. push_error(vformat(R"*(Invalid argument for "range()" call. Argument %d should be int or float but "%s" was given.)*", i + 1, arg_type.to_string()), call->arguments[i]);
  1483. } else if (arg_type.builtin_type != Variant::INT && arg_type.builtin_type != Variant::FLOAT) {
  1484. all_is_constant = false;
  1485. push_error(vformat(R"*(Invalid argument for "range()" call. Argument %d should be int or float but "%s" was given.)*", i + 1, arg_type.to_string()), call->arguments[i]);
  1486. }
  1487. }
  1488. }
  1489. Variant reduced;
  1490. if (all_is_constant) {
  1491. switch (args.size()) {
  1492. case 1:
  1493. reduced = (int32_t)args[0];
  1494. break;
  1495. case 2:
  1496. reduced = Vector2i(args[0], args[1]);
  1497. break;
  1498. case 3:
  1499. reduced = Vector3i(args[0], args[1], args[2]);
  1500. break;
  1501. }
  1502. p_for->list->is_constant = true;
  1503. p_for->list->reduced_value = reduced;
  1504. }
  1505. }
  1506. if (p_for->list->is_constant) {
  1507. p_for->list->set_datatype(type_from_variant(p_for->list->reduced_value, p_for->list));
  1508. } else {
  1509. GDScriptParser::DataType list_type;
  1510. list_type.type_source = GDScriptParser::DataType::ANNOTATED_EXPLICIT;
  1511. list_type.kind = GDScriptParser::DataType::BUILTIN;
  1512. list_type.builtin_type = Variant::ARRAY;
  1513. p_for->list->set_datatype(list_type);
  1514. }
  1515. }
  1516. }
  1517. }
  1518. GDScriptParser::DataType variable_type;
  1519. if (list_resolved) {
  1520. variable_type.type_source = GDScriptParser::DataType::ANNOTATED_INFERRED;
  1521. variable_type.kind = GDScriptParser::DataType::BUILTIN;
  1522. variable_type.builtin_type = Variant::INT;
  1523. } else if (p_for->list) {
  1524. resolve_node(p_for->list, false);
  1525. GDScriptParser::DataType list_type = p_for->list->get_datatype();
  1526. if (!list_type.is_hard_type()) {
  1527. mark_node_unsafe(p_for->list);
  1528. }
  1529. if (list_type.is_variant()) {
  1530. variable_type.kind = GDScriptParser::DataType::VARIANT;
  1531. mark_node_unsafe(p_for->list);
  1532. } else if (list_type.has_container_element_type()) {
  1533. variable_type = list_type.get_container_element_type();
  1534. variable_type.type_source = list_type.type_source;
  1535. } else if (list_type.is_typed_container_type()) {
  1536. variable_type = list_type.get_typed_container_type();
  1537. variable_type.type_source = list_type.type_source;
  1538. } else if (list_type.builtin_type == Variant::INT || list_type.builtin_type == Variant::FLOAT || list_type.builtin_type == Variant::STRING) {
  1539. variable_type.type_source = list_type.type_source;
  1540. variable_type.kind = GDScriptParser::DataType::BUILTIN;
  1541. variable_type.builtin_type = list_type.builtin_type;
  1542. } else if (list_type.builtin_type == Variant::VECTOR2I || list_type.builtin_type == Variant::VECTOR3I) {
  1543. variable_type.type_source = list_type.type_source;
  1544. variable_type.kind = GDScriptParser::DataType::BUILTIN;
  1545. variable_type.builtin_type = Variant::INT;
  1546. } else if (list_type.builtin_type == Variant::VECTOR2 || list_type.builtin_type == Variant::VECTOR3) {
  1547. variable_type.type_source = list_type.type_source;
  1548. variable_type.kind = GDScriptParser::DataType::BUILTIN;
  1549. variable_type.builtin_type = Variant::FLOAT;
  1550. } else if (list_type.builtin_type == Variant::OBJECT) {
  1551. GDScriptParser::DataType return_type;
  1552. List<GDScriptParser::DataType> par_types;
  1553. int default_arg_count = 0;
  1554. bool is_static = false;
  1555. bool is_vararg = false;
  1556. if (get_function_signature(p_for->list, false, list_type, CoreStringNames::get_singleton()->_iter_get, return_type, par_types, default_arg_count, is_static, is_vararg)) {
  1557. variable_type = return_type;
  1558. variable_type.type_source = list_type.type_source;
  1559. } else if (!list_type.is_hard_type()) {
  1560. variable_type.kind = GDScriptParser::DataType::VARIANT;
  1561. } else {
  1562. push_error(vformat(R"(Unable to iterate on object of type "%s".)", list_type.to_string()), p_for->list);
  1563. }
  1564. } else if (list_type.builtin_type == Variant::ARRAY || list_type.builtin_type == Variant::DICTIONARY || !list_type.is_hard_type()) {
  1565. variable_type.kind = GDScriptParser::DataType::VARIANT;
  1566. } else {
  1567. push_error(vformat(R"(Unable to iterate on value of type "%s".)", list_type.to_string()), p_for->list);
  1568. }
  1569. }
  1570. if (p_for->variable) {
  1571. p_for->variable->set_datatype(variable_type);
  1572. }
  1573. resolve_suite(p_for->loop);
  1574. p_for->set_datatype(p_for->loop->get_datatype());
  1575. #ifdef DEBUG_ENABLED
  1576. if (p_for->variable) {
  1577. is_shadowing(p_for->variable, R"("for" iterator variable)");
  1578. }
  1579. #endif
  1580. }
  1581. void GDScriptAnalyzer::resolve_while(GDScriptParser::WhileNode *p_while) {
  1582. resolve_node(p_while->condition, false);
  1583. resolve_suite(p_while->loop);
  1584. p_while->set_datatype(p_while->loop->get_datatype());
  1585. }
  1586. void GDScriptAnalyzer::resolve_assert(GDScriptParser::AssertNode *p_assert) {
  1587. reduce_expression(p_assert->condition);
  1588. if (p_assert->message != nullptr) {
  1589. reduce_expression(p_assert->message);
  1590. if (!p_assert->message->get_datatype().has_no_type() && (p_assert->message->get_datatype().kind != GDScriptParser::DataType::BUILTIN || p_assert->message->get_datatype().builtin_type != Variant::STRING)) {
  1591. push_error(R"(Expected string for assert error message.)", p_assert->message);
  1592. }
  1593. }
  1594. p_assert->set_datatype(p_assert->condition->get_datatype());
  1595. #ifdef DEBUG_ENABLED
  1596. if (p_assert->condition->is_constant) {
  1597. if (p_assert->condition->reduced_value.booleanize()) {
  1598. parser->push_warning(p_assert->condition, GDScriptWarning::ASSERT_ALWAYS_TRUE);
  1599. } else {
  1600. parser->push_warning(p_assert->condition, GDScriptWarning::ASSERT_ALWAYS_FALSE);
  1601. }
  1602. }
  1603. #endif
  1604. }
  1605. void GDScriptAnalyzer::resolve_match(GDScriptParser::MatchNode *p_match) {
  1606. reduce_expression(p_match->test);
  1607. for (int i = 0; i < p_match->branches.size(); i++) {
  1608. resolve_match_branch(p_match->branches[i], p_match->test);
  1609. decide_suite_type(p_match, p_match->branches[i]);
  1610. }
  1611. }
  1612. void GDScriptAnalyzer::resolve_match_branch(GDScriptParser::MatchBranchNode *p_match_branch, GDScriptParser::ExpressionNode *p_match_test) {
  1613. for (int i = 0; i < p_match_branch->patterns.size(); i++) {
  1614. resolve_match_pattern(p_match_branch->patterns[i], p_match_test);
  1615. }
  1616. resolve_suite(p_match_branch->block);
  1617. decide_suite_type(p_match_branch, p_match_branch->block);
  1618. }
  1619. void GDScriptAnalyzer::resolve_match_pattern(GDScriptParser::PatternNode *p_match_pattern, GDScriptParser::ExpressionNode *p_match_test) {
  1620. if (p_match_pattern == nullptr) {
  1621. return;
  1622. }
  1623. GDScriptParser::DataType result;
  1624. switch (p_match_pattern->pattern_type) {
  1625. case GDScriptParser::PatternNode::PT_LITERAL:
  1626. if (p_match_pattern->literal) {
  1627. reduce_literal(p_match_pattern->literal);
  1628. result = p_match_pattern->literal->get_datatype();
  1629. }
  1630. break;
  1631. case GDScriptParser::PatternNode::PT_EXPRESSION:
  1632. if (p_match_pattern->expression) {
  1633. GDScriptParser::ExpressionNode *expr = p_match_pattern->expression;
  1634. reduce_expression(expr);
  1635. result = expr->get_datatype();
  1636. if (!expr->is_constant) {
  1637. while (expr && expr->type == GDScriptParser::Node::SUBSCRIPT) {
  1638. GDScriptParser::SubscriptNode *sub = static_cast<GDScriptParser::SubscriptNode *>(expr);
  1639. if (!sub->is_attribute) {
  1640. expr = nullptr;
  1641. } else {
  1642. expr = sub->base;
  1643. }
  1644. }
  1645. if (!expr || expr->type != GDScriptParser::Node::IDENTIFIER) {
  1646. push_error(R"(Expression in match pattern must be a constant expression, an identifier, or an attribute access ("A.B").)", expr);
  1647. }
  1648. }
  1649. }
  1650. break;
  1651. case GDScriptParser::PatternNode::PT_BIND:
  1652. if (p_match_test != nullptr) {
  1653. result = p_match_test->get_datatype();
  1654. } else {
  1655. result.kind = GDScriptParser::DataType::VARIANT;
  1656. }
  1657. p_match_pattern->bind->set_datatype(result);
  1658. #ifdef DEBUG_ENABLED
  1659. is_shadowing(p_match_pattern->bind, "pattern bind");
  1660. if (p_match_pattern->bind->usages == 0 && !String(p_match_pattern->bind->name).begins_with("_")) {
  1661. parser->push_warning(p_match_pattern->bind, GDScriptWarning::UNUSED_VARIABLE, p_match_pattern->bind->name);
  1662. }
  1663. #endif
  1664. break;
  1665. case GDScriptParser::PatternNode::PT_ARRAY:
  1666. for (int i = 0; i < p_match_pattern->array.size(); i++) {
  1667. resolve_match_pattern(p_match_pattern->array[i], nullptr);
  1668. decide_suite_type(p_match_pattern, p_match_pattern->array[i]);
  1669. }
  1670. result = p_match_pattern->get_datatype();
  1671. break;
  1672. case GDScriptParser::PatternNode::PT_DICTIONARY:
  1673. for (int i = 0; i < p_match_pattern->dictionary.size(); i++) {
  1674. if (p_match_pattern->dictionary[i].key) {
  1675. reduce_expression(p_match_pattern->dictionary[i].key);
  1676. if (!p_match_pattern->dictionary[i].key->is_constant) {
  1677. push_error(R"(Expression in dictionary pattern key must be a constant.)", p_match_pattern->dictionary[i].key);
  1678. }
  1679. }
  1680. if (p_match_pattern->dictionary[i].value_pattern) {
  1681. resolve_match_pattern(p_match_pattern->dictionary[i].value_pattern, nullptr);
  1682. decide_suite_type(p_match_pattern, p_match_pattern->dictionary[i].value_pattern);
  1683. }
  1684. }
  1685. result = p_match_pattern->get_datatype();
  1686. break;
  1687. case GDScriptParser::PatternNode::PT_WILDCARD:
  1688. case GDScriptParser::PatternNode::PT_REST:
  1689. result.kind = GDScriptParser::DataType::VARIANT;
  1690. break;
  1691. }
  1692. p_match_pattern->set_datatype(result);
  1693. }
  1694. void GDScriptAnalyzer::resolve_return(GDScriptParser::ReturnNode *p_return) {
  1695. GDScriptParser::DataType result;
  1696. GDScriptParser::DataType expected_type;
  1697. bool has_expected_type = parser->current_function != nullptr;
  1698. if (has_expected_type) {
  1699. expected_type = parser->current_function->get_datatype();
  1700. }
  1701. if (p_return->return_value != nullptr) {
  1702. bool is_void_function = has_expected_type && expected_type.is_hard_type() && expected_type.kind == GDScriptParser::DataType::BUILTIN && expected_type.builtin_type == Variant::NIL;
  1703. bool is_call = p_return->return_value->type == GDScriptParser::Node::CALL;
  1704. if (is_void_function && is_call) {
  1705. // Pretend the call is a root expression to allow those that are "void".
  1706. reduce_call(static_cast<GDScriptParser::CallNode *>(p_return->return_value), false, true);
  1707. } else {
  1708. reduce_expression(p_return->return_value);
  1709. }
  1710. if (is_void_function) {
  1711. p_return->void_return = true;
  1712. const GDScriptParser::DataType &return_type = p_return->return_value->datatype;
  1713. if (is_call && !return_type.is_hard_type()) {
  1714. String function_name = parser->current_function->identifier ? parser->current_function->identifier->name.operator String() : String("<anonymous function>");
  1715. String called_function_name = static_cast<GDScriptParser::CallNode *>(p_return->return_value)->function_name.operator String();
  1716. #ifdef DEBUG_ENABLED
  1717. parser->push_warning(p_return, GDScriptWarning::UNSAFE_VOID_RETURN, function_name, called_function_name);
  1718. #endif
  1719. mark_node_unsafe(p_return);
  1720. } else if (!is_call) {
  1721. push_error("A void function cannot return a value.", p_return);
  1722. }
  1723. result.type_source = GDScriptParser::DataType::ANNOTATED_EXPLICIT;
  1724. result.kind = GDScriptParser::DataType::BUILTIN;
  1725. result.builtin_type = Variant::NIL;
  1726. result.is_constant = true;
  1727. } else {
  1728. if (p_return->return_value->type == GDScriptParser::Node::ARRAY && has_expected_type && expected_type.has_container_element_type()) {
  1729. update_array_literal_element_type(static_cast<GDScriptParser::ArrayNode *>(p_return->return_value), expected_type.get_container_element_type());
  1730. }
  1731. if (has_expected_type && expected_type.is_hard_type() && p_return->return_value->is_constant) {
  1732. update_const_expression_builtin_type(p_return->return_value, expected_type, "return");
  1733. }
  1734. result = p_return->return_value->get_datatype();
  1735. }
  1736. } else {
  1737. // Return type is null by default.
  1738. result.type_source = GDScriptParser::DataType::ANNOTATED_EXPLICIT;
  1739. result.kind = GDScriptParser::DataType::BUILTIN;
  1740. result.builtin_type = Variant::NIL;
  1741. result.is_constant = true;
  1742. }
  1743. if (has_expected_type && !expected_type.is_variant()) {
  1744. if (result.is_variant() || !result.is_hard_type()) {
  1745. mark_node_unsafe(p_return);
  1746. if (!is_type_compatible(expected_type, result, true, p_return)) {
  1747. downgrade_node_type_source(p_return);
  1748. }
  1749. } else if (!is_type_compatible(expected_type, result, true, p_return)) {
  1750. mark_node_unsafe(p_return);
  1751. if (!is_type_compatible(result, expected_type)) {
  1752. push_error(vformat(R"(Cannot return value of type "%s" because the function return type is "%s".)", result.to_string(), expected_type.to_string()), p_return);
  1753. }
  1754. #ifdef DEBUG_ENABLED
  1755. } else if (expected_type.builtin_type == Variant::INT && result.builtin_type == Variant::FLOAT) {
  1756. parser->push_warning(p_return, GDScriptWarning::NARROWING_CONVERSION);
  1757. #endif
  1758. }
  1759. }
  1760. p_return->set_datatype(result);
  1761. }
  1762. void GDScriptAnalyzer::reduce_expression(GDScriptParser::ExpressionNode *p_expression, bool p_is_root) {
  1763. // This one makes some magic happen.
  1764. if (p_expression == nullptr) {
  1765. return;
  1766. }
  1767. if (p_expression->reduced) {
  1768. // Don't do this more than once.
  1769. return;
  1770. }
  1771. p_expression->reduced = true;
  1772. switch (p_expression->type) {
  1773. case GDScriptParser::Node::ARRAY:
  1774. reduce_array(static_cast<GDScriptParser::ArrayNode *>(p_expression));
  1775. break;
  1776. case GDScriptParser::Node::ASSIGNMENT:
  1777. reduce_assignment(static_cast<GDScriptParser::AssignmentNode *>(p_expression));
  1778. break;
  1779. case GDScriptParser::Node::AWAIT:
  1780. reduce_await(static_cast<GDScriptParser::AwaitNode *>(p_expression));
  1781. break;
  1782. case GDScriptParser::Node::BINARY_OPERATOR:
  1783. reduce_binary_op(static_cast<GDScriptParser::BinaryOpNode *>(p_expression));
  1784. break;
  1785. case GDScriptParser::Node::CALL:
  1786. reduce_call(static_cast<GDScriptParser::CallNode *>(p_expression), false, p_is_root);
  1787. break;
  1788. case GDScriptParser::Node::CAST:
  1789. reduce_cast(static_cast<GDScriptParser::CastNode *>(p_expression));
  1790. break;
  1791. case GDScriptParser::Node::DICTIONARY:
  1792. reduce_dictionary(static_cast<GDScriptParser::DictionaryNode *>(p_expression));
  1793. break;
  1794. case GDScriptParser::Node::GET_NODE:
  1795. reduce_get_node(static_cast<GDScriptParser::GetNodeNode *>(p_expression));
  1796. break;
  1797. case GDScriptParser::Node::IDENTIFIER:
  1798. reduce_identifier(static_cast<GDScriptParser::IdentifierNode *>(p_expression));
  1799. break;
  1800. case GDScriptParser::Node::LAMBDA:
  1801. reduce_lambda(static_cast<GDScriptParser::LambdaNode *>(p_expression));
  1802. break;
  1803. case GDScriptParser::Node::LITERAL:
  1804. reduce_literal(static_cast<GDScriptParser::LiteralNode *>(p_expression));
  1805. break;
  1806. case GDScriptParser::Node::PRELOAD:
  1807. reduce_preload(static_cast<GDScriptParser::PreloadNode *>(p_expression));
  1808. break;
  1809. case GDScriptParser::Node::SELF:
  1810. reduce_self(static_cast<GDScriptParser::SelfNode *>(p_expression));
  1811. break;
  1812. case GDScriptParser::Node::SUBSCRIPT:
  1813. reduce_subscript(static_cast<GDScriptParser::SubscriptNode *>(p_expression));
  1814. break;
  1815. case GDScriptParser::Node::TERNARY_OPERATOR:
  1816. reduce_ternary_op(static_cast<GDScriptParser::TernaryOpNode *>(p_expression), p_is_root);
  1817. break;
  1818. case GDScriptParser::Node::UNARY_OPERATOR:
  1819. reduce_unary_op(static_cast<GDScriptParser::UnaryOpNode *>(p_expression));
  1820. break;
  1821. // Non-expressions. Here only to make sure new nodes aren't forgotten.
  1822. case GDScriptParser::Node::NONE:
  1823. case GDScriptParser::Node::ANNOTATION:
  1824. case GDScriptParser::Node::ASSERT:
  1825. case GDScriptParser::Node::BREAK:
  1826. case GDScriptParser::Node::BREAKPOINT:
  1827. case GDScriptParser::Node::CLASS:
  1828. case GDScriptParser::Node::CONSTANT:
  1829. case GDScriptParser::Node::CONTINUE:
  1830. case GDScriptParser::Node::ENUM:
  1831. case GDScriptParser::Node::FOR:
  1832. case GDScriptParser::Node::FUNCTION:
  1833. case GDScriptParser::Node::IF:
  1834. case GDScriptParser::Node::MATCH:
  1835. case GDScriptParser::Node::MATCH_BRANCH:
  1836. case GDScriptParser::Node::PARAMETER:
  1837. case GDScriptParser::Node::PASS:
  1838. case GDScriptParser::Node::PATTERN:
  1839. case GDScriptParser::Node::RETURN:
  1840. case GDScriptParser::Node::SIGNAL:
  1841. case GDScriptParser::Node::SUITE:
  1842. case GDScriptParser::Node::TYPE:
  1843. case GDScriptParser::Node::VARIABLE:
  1844. case GDScriptParser::Node::WHILE:
  1845. ERR_FAIL_MSG("Reaching unreachable case");
  1846. }
  1847. }
  1848. void GDScriptAnalyzer::reduce_array(GDScriptParser::ArrayNode *p_array) {
  1849. for (int i = 0; i < p_array->elements.size(); i++) {
  1850. GDScriptParser::ExpressionNode *element = p_array->elements[i];
  1851. reduce_expression(element);
  1852. }
  1853. // It's array in any case.
  1854. GDScriptParser::DataType arr_type;
  1855. arr_type.type_source = GDScriptParser::DataType::ANNOTATED_EXPLICIT;
  1856. arr_type.kind = GDScriptParser::DataType::BUILTIN;
  1857. arr_type.builtin_type = Variant::ARRAY;
  1858. arr_type.is_constant = true;
  1859. p_array->set_datatype(arr_type);
  1860. }
  1861. #ifdef DEBUG_ENABLED
  1862. static bool enum_has_value(const GDScriptParser::DataType p_type, int64_t p_value) {
  1863. for (const KeyValue<StringName, int64_t> &E : p_type.enum_values) {
  1864. if (E.value == p_value) {
  1865. return true;
  1866. }
  1867. }
  1868. return false;
  1869. }
  1870. #endif
  1871. void GDScriptAnalyzer::update_const_expression_builtin_type(GDScriptParser::ExpressionNode *p_expression, const GDScriptParser::DataType &p_type, const char *p_usage, bool p_is_cast) {
  1872. if (p_expression->get_datatype() == p_type) {
  1873. return;
  1874. }
  1875. if (p_type.kind != GDScriptParser::DataType::BUILTIN && p_type.kind != GDScriptParser::DataType::ENUM) {
  1876. return;
  1877. }
  1878. GDScriptParser::DataType expression_type = p_expression->get_datatype();
  1879. bool is_enum_cast = p_is_cast && p_type.kind == GDScriptParser::DataType::ENUM && p_type.is_meta_type == false && expression_type.builtin_type == Variant::INT;
  1880. if (!is_enum_cast && !is_type_compatible(p_type, expression_type, true, p_expression)) {
  1881. push_error(vformat(R"(Cannot %s a value of type "%s" as "%s".)", p_usage, expression_type.to_string(), p_type.to_string()), p_expression);
  1882. return;
  1883. }
  1884. GDScriptParser::DataType value_type = type_from_variant(p_expression->reduced_value, p_expression);
  1885. if (expression_type.is_variant() && !is_enum_cast && !is_type_compatible(p_type, value_type, true, p_expression)) {
  1886. push_error(vformat(R"(Cannot %s a value of type "%s" as "%s".)", p_usage, value_type.to_string(), p_type.to_string()), p_expression);
  1887. return;
  1888. }
  1889. #ifdef DEBUG_ENABLED
  1890. if (p_type.kind == GDScriptParser::DataType::ENUM && value_type.builtin_type == Variant::INT && !enum_has_value(p_type, p_expression->reduced_value)) {
  1891. parser->push_warning(p_expression, GDScriptWarning::INT_AS_ENUM_WITHOUT_MATCH, p_usage, p_expression->reduced_value.stringify(), p_type.to_string());
  1892. }
  1893. #endif
  1894. if (value_type.builtin_type == p_type.builtin_type) {
  1895. p_expression->set_datatype(p_type);
  1896. return;
  1897. }
  1898. Variant converted_to;
  1899. const Variant *converted_from = &p_expression->reduced_value;
  1900. Callable::CallError call_error;
  1901. Variant::construct(p_type.builtin_type, converted_to, &converted_from, 1, call_error);
  1902. if (call_error.error) {
  1903. push_error(vformat(R"(Failed to convert a value of type "%s" to "%s".)", value_type.to_string(), p_type.to_string()), p_expression);
  1904. return;
  1905. }
  1906. #ifdef DEBUG_ENABLED
  1907. if (p_type.builtin_type == Variant::INT && value_type.builtin_type == Variant::FLOAT) {
  1908. parser->push_warning(p_expression, GDScriptWarning::NARROWING_CONVERSION);
  1909. }
  1910. #endif
  1911. p_expression->reduced_value = converted_to;
  1912. p_expression->set_datatype(p_type);
  1913. }
  1914. // When an array literal is stored (or passed as function argument) to a typed context, we then assume the array is typed.
  1915. // This function determines which type is that (if any).
  1916. void GDScriptAnalyzer::update_array_literal_element_type(GDScriptParser::ArrayNode *p_array, const GDScriptParser::DataType &p_element_type) {
  1917. for (int i = 0; i < p_array->elements.size(); i++) {
  1918. GDScriptParser::ExpressionNode *element_node = p_array->elements[i];
  1919. if (element_node->is_constant) {
  1920. update_const_expression_builtin_type(element_node, p_element_type, "include");
  1921. }
  1922. const GDScriptParser::DataType &element_type = element_node->get_datatype();
  1923. if (element_type.has_no_type() || element_type.is_variant() || !element_type.is_hard_type()) {
  1924. mark_node_unsafe(element_node);
  1925. continue;
  1926. }
  1927. if (!is_type_compatible(p_element_type, element_type, true, p_array)) {
  1928. push_error(vformat(R"(Cannot have an element of type "%s" in an array of type "Array[%s]".)", element_type.to_string(), p_element_type.to_string()), element_node);
  1929. return;
  1930. }
  1931. }
  1932. GDScriptParser::DataType array_type = p_array->get_datatype();
  1933. array_type.set_container_element_type(p_element_type);
  1934. p_array->set_datatype(array_type);
  1935. }
  1936. void GDScriptAnalyzer::reduce_assignment(GDScriptParser::AssignmentNode *p_assignment) {
  1937. reduce_expression(p_assignment->assignee);
  1938. reduce_expression(p_assignment->assigned_value);
  1939. if (p_assignment->assigned_value == nullptr || p_assignment->assignee == nullptr) {
  1940. return;
  1941. }
  1942. GDScriptParser::DataType assignee_type = p_assignment->assignee->get_datatype();
  1943. if (assignee_type.is_constant || (p_assignment->assignee->type == GDScriptParser::Node::SUBSCRIPT && static_cast<GDScriptParser::SubscriptNode *>(p_assignment->assignee)->base->is_constant)) {
  1944. push_error("Cannot assign a new value to a constant.", p_assignment->assignee);
  1945. }
  1946. // Check if assigned value is an array literal, so we can make it a typed array too if appropriate.
  1947. if (p_assignment->assigned_value->type == GDScriptParser::Node::ARRAY && assignee_type.has_container_element_type()) {
  1948. update_array_literal_element_type(static_cast<GDScriptParser::ArrayNode *>(p_assignment->assigned_value), assignee_type.get_container_element_type());
  1949. }
  1950. if (p_assignment->operation == GDScriptParser::AssignmentNode::OP_NONE && assignee_type.is_hard_type() && p_assignment->assigned_value->is_constant) {
  1951. update_const_expression_builtin_type(p_assignment->assigned_value, assignee_type, "assign");
  1952. }
  1953. GDScriptParser::DataType assigned_value_type = p_assignment->assigned_value->get_datatype();
  1954. bool assignee_is_variant = assignee_type.is_variant();
  1955. bool assignee_is_hard = assignee_type.is_hard_type();
  1956. bool assigned_is_variant = assigned_value_type.is_variant();
  1957. bool assigned_is_hard = assigned_value_type.is_hard_type();
  1958. bool compatible = true;
  1959. bool downgrades_assignee = false;
  1960. bool downgrades_assigned = false;
  1961. GDScriptParser::DataType op_type = assigned_value_type;
  1962. if (p_assignment->operation != GDScriptParser::AssignmentNode::OP_NONE && !op_type.is_variant()) {
  1963. op_type = get_operation_type(p_assignment->variant_op, assignee_type, assigned_value_type, compatible, p_assignment->assigned_value);
  1964. if (assignee_is_variant) {
  1965. // variant assignee
  1966. mark_node_unsafe(p_assignment);
  1967. } else if (!compatible) {
  1968. // incompatible hard types and non-variant assignee
  1969. mark_node_unsafe(p_assignment);
  1970. if (assigned_is_variant) {
  1971. // incompatible hard non-variant assignee and hard variant assigned
  1972. p_assignment->use_conversion_assign = true;
  1973. } else {
  1974. // incompatible hard non-variant types
  1975. push_error(vformat(R"(Invalid operands "%s" and "%s" for assignment operator.)", assignee_type.to_string(), assigned_value_type.to_string()), p_assignment);
  1976. }
  1977. } else if (op_type.type_source == GDScriptParser::DataType::UNDETECTED && !assigned_is_variant) {
  1978. // incompatible non-variant types (at least one weak)
  1979. downgrades_assignee = !assignee_is_hard;
  1980. downgrades_assigned = !assigned_is_hard;
  1981. }
  1982. }
  1983. p_assignment->set_datatype(op_type);
  1984. if (assignee_is_variant) {
  1985. if (!assignee_is_hard) {
  1986. // weak variant assignee
  1987. mark_node_unsafe(p_assignment);
  1988. }
  1989. } else {
  1990. if (assignee_is_hard && !assigned_is_hard) {
  1991. // hard non-variant assignee and weak assigned
  1992. mark_node_unsafe(p_assignment);
  1993. p_assignment->use_conversion_assign = true;
  1994. downgrades_assigned = downgrades_assigned || (!assigned_is_variant && !is_type_compatible(assignee_type, op_type, true, p_assignment->assigned_value));
  1995. } else if (compatible) {
  1996. if (op_type.is_variant()) {
  1997. // non-variant assignee and variant result
  1998. mark_node_unsafe(p_assignment);
  1999. if (assignee_is_hard) {
  2000. // hard non-variant assignee and variant result
  2001. p_assignment->use_conversion_assign = true;
  2002. } else {
  2003. // weak non-variant assignee and variant result
  2004. downgrades_assignee = true;
  2005. }
  2006. } else if (!is_type_compatible(assignee_type, op_type, assignee_is_hard, p_assignment->assigned_value)) {
  2007. // non-variant assignee and incompatible result
  2008. mark_node_unsafe(p_assignment);
  2009. if (assignee_is_hard) {
  2010. if (is_type_compatible(op_type, assignee_type)) {
  2011. // hard non-variant assignee and maybe compatible result
  2012. p_assignment->use_conversion_assign = true;
  2013. } else {
  2014. // hard non-variant assignee and incompatible result
  2015. push_error(vformat(R"(Value of type "%s" cannot be assigned to a variable of type "%s".)", assigned_value_type.to_string(), assignee_type.to_string()), p_assignment->assigned_value);
  2016. }
  2017. } else {
  2018. // weak non-variant assignee and incompatible result
  2019. downgrades_assignee = true;
  2020. }
  2021. } else if (assignee_type.has_container_element_type() && !op_type.has_container_element_type()) {
  2022. // typed array assignee and untyped array result
  2023. mark_node_unsafe(p_assignment);
  2024. }
  2025. }
  2026. }
  2027. if (downgrades_assignee) {
  2028. downgrade_node_type_source(p_assignment->assignee);
  2029. }
  2030. if (downgrades_assigned) {
  2031. downgrade_node_type_source(p_assignment->assigned_value);
  2032. }
  2033. #ifdef DEBUG_ENABLED
  2034. if (assignee_type.is_hard_type() && assignee_type.builtin_type == Variant::INT && assigned_value_type.builtin_type == Variant::FLOAT) {
  2035. parser->push_warning(p_assignment->assigned_value, GDScriptWarning::NARROWING_CONVERSION);
  2036. }
  2037. #endif
  2038. }
  2039. void GDScriptAnalyzer::reduce_await(GDScriptParser::AwaitNode *p_await) {
  2040. if (p_await->to_await == nullptr) {
  2041. GDScriptParser::DataType await_type;
  2042. await_type.kind = GDScriptParser::DataType::VARIANT;
  2043. p_await->set_datatype(await_type);
  2044. return;
  2045. }
  2046. GDScriptParser::DataType awaiting_type;
  2047. if (p_await->to_await->type == GDScriptParser::Node::CALL) {
  2048. reduce_call(static_cast<GDScriptParser::CallNode *>(p_await->to_await), true);
  2049. awaiting_type = p_await->to_await->get_datatype();
  2050. } else {
  2051. reduce_expression(p_await->to_await);
  2052. }
  2053. if (p_await->to_await->is_constant) {
  2054. p_await->is_constant = p_await->to_await->is_constant;
  2055. p_await->reduced_value = p_await->to_await->reduced_value;
  2056. awaiting_type = p_await->to_await->get_datatype();
  2057. } else {
  2058. awaiting_type.kind = GDScriptParser::DataType::VARIANT;
  2059. awaiting_type.type_source = GDScriptParser::DataType::UNDETECTED;
  2060. }
  2061. p_await->set_datatype(awaiting_type);
  2062. #ifdef DEBUG_ENABLED
  2063. awaiting_type = p_await->to_await->get_datatype();
  2064. if (!(awaiting_type.has_no_type() || awaiting_type.is_coroutine || awaiting_type.builtin_type == Variant::SIGNAL)) {
  2065. parser->push_warning(p_await, GDScriptWarning::REDUNDANT_AWAIT);
  2066. }
  2067. #endif
  2068. }
  2069. void GDScriptAnalyzer::reduce_binary_op(GDScriptParser::BinaryOpNode *p_binary_op) {
  2070. reduce_expression(p_binary_op->left_operand);
  2071. if (p_binary_op->operation == GDScriptParser::BinaryOpNode::OP_TYPE_TEST && p_binary_op->right_operand && p_binary_op->right_operand->type == GDScriptParser::Node::IDENTIFIER) {
  2072. reduce_identifier(static_cast<GDScriptParser::IdentifierNode *>(p_binary_op->right_operand), true);
  2073. } else {
  2074. reduce_expression(p_binary_op->right_operand);
  2075. }
  2076. // TODO: Right operand must be a valid type with the `is` operator. Need to check here.
  2077. GDScriptParser::DataType left_type;
  2078. if (p_binary_op->left_operand) {
  2079. left_type = p_binary_op->left_operand->get_datatype();
  2080. }
  2081. GDScriptParser::DataType right_type;
  2082. if (p_binary_op->right_operand) {
  2083. right_type = p_binary_op->right_operand->get_datatype();
  2084. }
  2085. if (!left_type.is_set() || !right_type.is_set()) {
  2086. return;
  2087. }
  2088. #ifdef DEBUG_ENABLED
  2089. if (p_binary_op->variant_op == Variant::OP_DIVIDE && left_type.builtin_type == Variant::INT && right_type.builtin_type == Variant::INT) {
  2090. parser->push_warning(p_binary_op, GDScriptWarning::INTEGER_DIVISION);
  2091. }
  2092. #endif
  2093. if (p_binary_op->left_operand->is_constant && p_binary_op->right_operand->is_constant) {
  2094. p_binary_op->is_constant = true;
  2095. if (p_binary_op->variant_op < Variant::OP_MAX) {
  2096. bool valid = false;
  2097. Variant::evaluate(p_binary_op->variant_op, p_binary_op->left_operand->reduced_value, p_binary_op->right_operand->reduced_value, p_binary_op->reduced_value, valid);
  2098. if (!valid) {
  2099. if (p_binary_op->reduced_value.get_type() == Variant::STRING) {
  2100. push_error(vformat(R"(%s in operator %s.)", p_binary_op->reduced_value, Variant::get_operator_name(p_binary_op->variant_op)), p_binary_op);
  2101. } else {
  2102. push_error(vformat(R"(Invalid operands to operator %s, %s and %s.)",
  2103. Variant::get_operator_name(p_binary_op->variant_op),
  2104. Variant::get_type_name(p_binary_op->left_operand->reduced_value.get_type()),
  2105. Variant::get_type_name(p_binary_op->right_operand->reduced_value.get_type())),
  2106. p_binary_op);
  2107. }
  2108. }
  2109. } else {
  2110. if (p_binary_op->operation == GDScriptParser::BinaryOpNode::OP_TYPE_TEST) {
  2111. GDScriptParser::DataType test_type = right_type;
  2112. test_type.is_meta_type = false;
  2113. if (!is_type_compatible(test_type, left_type)) {
  2114. push_error(vformat(R"(Expression is of type "%s" so it can't be of type "%s".)"), p_binary_op->left_operand);
  2115. p_binary_op->reduced_value = false;
  2116. } else {
  2117. p_binary_op->reduced_value = true;
  2118. }
  2119. } else {
  2120. ERR_PRINT("Parser bug: unknown binary operation.");
  2121. }
  2122. }
  2123. p_binary_op->set_datatype(type_from_variant(p_binary_op->reduced_value, p_binary_op));
  2124. return;
  2125. }
  2126. GDScriptParser::DataType result;
  2127. if (p_binary_op->operation == GDScriptParser::BinaryOpNode::OP_TYPE_TEST) {
  2128. GDScriptParser::DataType test_type = right_type;
  2129. test_type.is_meta_type = false;
  2130. if (!is_type_compatible(test_type, left_type) && !is_type_compatible(left_type, test_type)) {
  2131. if (left_type.is_hard_type()) {
  2132. push_error(vformat(R"(Expression is of type "%s" so it can't be of type "%s".)", left_type.to_string(), test_type.to_string()), p_binary_op->left_operand);
  2133. } else {
  2134. // TODO: Warning.
  2135. mark_node_unsafe(p_binary_op);
  2136. }
  2137. }
  2138. // "is" operator is always a boolean anyway.
  2139. result.type_source = GDScriptParser::DataType::ANNOTATED_EXPLICIT;
  2140. result.kind = GDScriptParser::DataType::BUILTIN;
  2141. result.builtin_type = Variant::BOOL;
  2142. } else if ((p_binary_op->variant_op == Variant::OP_EQUAL || p_binary_op->variant_op == Variant::OP_NOT_EQUAL) &&
  2143. ((left_type.kind == GDScriptParser::DataType::BUILTIN && left_type.builtin_type == Variant::NIL) || (right_type.kind == GDScriptParser::DataType::BUILTIN && right_type.builtin_type == Variant::NIL))) {
  2144. // "==" and "!=" operators always return a boolean when comparing to null.
  2145. result.type_source = GDScriptParser::DataType::ANNOTATED_EXPLICIT;
  2146. result.kind = GDScriptParser::DataType::BUILTIN;
  2147. result.builtin_type = Variant::BOOL;
  2148. } else if (left_type.is_variant() || right_type.is_variant()) {
  2149. // Cannot infer type because one operand can be anything.
  2150. result.kind = GDScriptParser::DataType::VARIANT;
  2151. mark_node_unsafe(p_binary_op);
  2152. } else if (p_binary_op->variant_op < Variant::OP_MAX) {
  2153. bool valid = false;
  2154. result = get_operation_type(p_binary_op->variant_op, left_type, right_type, valid, p_binary_op);
  2155. if (!valid) {
  2156. push_error(vformat(R"(Invalid operands "%s" and "%s" for "%s" operator.)", left_type.to_string(), right_type.to_string(), Variant::get_operator_name(p_binary_op->variant_op)), p_binary_op);
  2157. }
  2158. } else {
  2159. ERR_PRINT("Parser bug: unknown binary operation.");
  2160. }
  2161. p_binary_op->set_datatype(result);
  2162. }
  2163. #ifdef TOOLS_ENABLED
  2164. #ifndef DISABLE_DEPRECATED
  2165. const char *GDScriptAnalyzer::get_rename_from_map(const char *map[][2], String key) {
  2166. for (int index = 0; map[index][0]; index++) {
  2167. if (map[index][0] == key) {
  2168. return map[index][1];
  2169. }
  2170. }
  2171. return nullptr;
  2172. }
  2173. // Checks if an identifier/function name has been renamed in Godot 4, uses ProjectConverter3To4 for rename map.
  2174. // Returns the new name if found, nullptr otherwise.
  2175. const char *GDScriptAnalyzer::check_for_renamed_identifier(String identifier, GDScriptParser::Node::Type type) {
  2176. switch (type) {
  2177. case GDScriptParser::Node::IDENTIFIER: {
  2178. // Check properties
  2179. const char *result = get_rename_from_map(ProjectConverter3To4::gdscript_properties_renames, identifier);
  2180. if (result) {
  2181. return result;
  2182. }
  2183. // Check enum values
  2184. result = get_rename_from_map(ProjectConverter3To4::enum_renames, identifier);
  2185. if (result) {
  2186. return result;
  2187. }
  2188. // Check color constants
  2189. result = get_rename_from_map(ProjectConverter3To4::color_renames, identifier);
  2190. if (result) {
  2191. return result;
  2192. }
  2193. // Check type names
  2194. result = get_rename_from_map(ProjectConverter3To4::class_renames, identifier);
  2195. if (result) {
  2196. return result;
  2197. }
  2198. return get_rename_from_map(ProjectConverter3To4::builtin_types_renames, identifier);
  2199. }
  2200. case GDScriptParser::Node::CALL: {
  2201. const char *result = get_rename_from_map(ProjectConverter3To4::gdscript_function_renames, identifier);
  2202. if (result) {
  2203. return result;
  2204. }
  2205. // Built-in Types are mistaken for function calls when the built-in type is not found.
  2206. // Check built-in types if function rename not found
  2207. return get_rename_from_map(ProjectConverter3To4::builtin_types_renames, identifier);
  2208. }
  2209. // Signal references don't get parsed through the GDScriptAnalyzer. No support for signal rename hints.
  2210. default:
  2211. // No rename found, return null
  2212. return nullptr;
  2213. }
  2214. }
  2215. #endif // DISABLE_DEPRECATED
  2216. #endif // TOOLS_ENABLED
  2217. void GDScriptAnalyzer::reduce_call(GDScriptParser::CallNode *p_call, bool p_is_await, bool p_is_root) {
  2218. bool all_is_constant = true;
  2219. HashMap<int, GDScriptParser::ArrayNode *> arrays; // For array literal to potentially type when passing.
  2220. for (int i = 0; i < p_call->arguments.size(); i++) {
  2221. reduce_expression(p_call->arguments[i]);
  2222. if (p_call->arguments[i]->type == GDScriptParser::Node::ARRAY) {
  2223. arrays[i] = static_cast<GDScriptParser::ArrayNode *>(p_call->arguments[i]);
  2224. }
  2225. all_is_constant = all_is_constant && p_call->arguments[i]->is_constant;
  2226. }
  2227. GDScriptParser::Node::Type callee_type = p_call->get_callee_type();
  2228. GDScriptParser::DataType call_type;
  2229. if (!p_call->is_super && callee_type == GDScriptParser::Node::IDENTIFIER) {
  2230. // Call to name directly.
  2231. StringName function_name = p_call->function_name;
  2232. Variant::Type builtin_type = GDScriptParser::get_builtin_type(function_name);
  2233. if (builtin_type < Variant::VARIANT_MAX) {
  2234. // Is a builtin constructor.
  2235. call_type.type_source = GDScriptParser::DataType::ANNOTATED_EXPLICIT;
  2236. call_type.kind = GDScriptParser::DataType::BUILTIN;
  2237. call_type.builtin_type = builtin_type;
  2238. if (builtin_type == Variant::OBJECT) {
  2239. call_type.kind = GDScriptParser::DataType::NATIVE;
  2240. call_type.native_type = function_name; // "Object".
  2241. }
  2242. bool safe_to_fold = true;
  2243. switch (builtin_type) {
  2244. // Those are stored by reference so not suited for compile-time construction.
  2245. // Because in this case they would be the same reference in all constructed values.
  2246. case Variant::OBJECT:
  2247. case Variant::DICTIONARY:
  2248. case Variant::ARRAY:
  2249. case Variant::PACKED_BYTE_ARRAY:
  2250. case Variant::PACKED_INT32_ARRAY:
  2251. case Variant::PACKED_INT64_ARRAY:
  2252. case Variant::PACKED_FLOAT32_ARRAY:
  2253. case Variant::PACKED_FLOAT64_ARRAY:
  2254. case Variant::PACKED_STRING_ARRAY:
  2255. case Variant::PACKED_VECTOR2_ARRAY:
  2256. case Variant::PACKED_VECTOR3_ARRAY:
  2257. case Variant::PACKED_COLOR_ARRAY:
  2258. safe_to_fold = false;
  2259. break;
  2260. default:
  2261. break;
  2262. }
  2263. if (all_is_constant && safe_to_fold) {
  2264. // Construct here.
  2265. Vector<const Variant *> args;
  2266. for (int i = 0; i < p_call->arguments.size(); i++) {
  2267. args.push_back(&(p_call->arguments[i]->reduced_value));
  2268. }
  2269. Callable::CallError err;
  2270. Variant value;
  2271. Variant::construct(builtin_type, value, (const Variant **)args.ptr(), args.size(), err);
  2272. switch (err.error) {
  2273. case Callable::CallError::CALL_ERROR_INVALID_ARGUMENT:
  2274. push_error(vformat(R"(Invalid argument for %s constructor: argument %d should be "%s" but is "%s".)", Variant::get_type_name(builtin_type), err.argument + 1,
  2275. Variant::get_type_name(Variant::Type(err.expected)), p_call->arguments[err.argument]->get_datatype().to_string()),
  2276. p_call->arguments[err.argument]);
  2277. break;
  2278. case Callable::CallError::CALL_ERROR_INVALID_METHOD: {
  2279. String signature = Variant::get_type_name(builtin_type) + "(";
  2280. for (int i = 0; i < p_call->arguments.size(); i++) {
  2281. if (i > 0) {
  2282. signature += ", ";
  2283. }
  2284. signature += p_call->arguments[i]->get_datatype().to_string();
  2285. }
  2286. signature += ")";
  2287. push_error(vformat(R"(No constructor of "%s" matches the signature "%s".)", Variant::get_type_name(builtin_type), signature), p_call->callee);
  2288. } break;
  2289. case Callable::CallError::CALL_ERROR_TOO_MANY_ARGUMENTS:
  2290. push_error(vformat(R"(Too many arguments for %s constructor. Received %d but expected %d.)", Variant::get_type_name(builtin_type), p_call->arguments.size(), err.expected), p_call);
  2291. break;
  2292. case Callable::CallError::CALL_ERROR_TOO_FEW_ARGUMENTS:
  2293. push_error(vformat(R"(Too few arguments for %s constructor. Received %d but expected %d.)", Variant::get_type_name(builtin_type), p_call->arguments.size(), err.expected), p_call);
  2294. break;
  2295. case Callable::CallError::CALL_ERROR_INSTANCE_IS_NULL:
  2296. case Callable::CallError::CALL_ERROR_METHOD_NOT_CONST:
  2297. break; // Can't happen in a builtin constructor.
  2298. case Callable::CallError::CALL_OK:
  2299. p_call->is_constant = true;
  2300. p_call->reduced_value = value;
  2301. break;
  2302. }
  2303. } else {
  2304. // TODO: Check constructors without constants.
  2305. // If there's one argument, try to use copy constructor (those aren't explicitly defined).
  2306. if (p_call->arguments.size() == 1) {
  2307. GDScriptParser::DataType arg_type = p_call->arguments[0]->get_datatype();
  2308. if (arg_type.is_variant()) {
  2309. mark_node_unsafe(p_call->arguments[0]);
  2310. } else {
  2311. if (arg_type.kind == GDScriptParser::DataType::BUILTIN && arg_type.builtin_type == builtin_type) {
  2312. // Okay.
  2313. p_call->set_datatype(call_type);
  2314. return;
  2315. }
  2316. }
  2317. }
  2318. List<MethodInfo> constructors;
  2319. Variant::get_constructor_list(builtin_type, &constructors);
  2320. bool match = false;
  2321. for (const MethodInfo &info : constructors) {
  2322. if (p_call->arguments.size() < info.arguments.size() - info.default_arguments.size()) {
  2323. continue;
  2324. }
  2325. if (p_call->arguments.size() > info.arguments.size()) {
  2326. continue;
  2327. }
  2328. bool types_match = true;
  2329. for (int i = 0; i < p_call->arguments.size(); i++) {
  2330. GDScriptParser::DataType par_type = type_from_property(info.arguments[i], true);
  2331. if (!is_type_compatible(par_type, p_call->arguments[i]->get_datatype(), true)) {
  2332. types_match = false;
  2333. break;
  2334. #ifdef DEBUG_ENABLED
  2335. } else {
  2336. if (par_type.builtin_type == Variant::INT && p_call->arguments[i]->get_datatype().builtin_type == Variant::FLOAT && builtin_type != Variant::INT) {
  2337. parser->push_warning(p_call, GDScriptWarning::NARROWING_CONVERSION, p_call->function_name);
  2338. }
  2339. #endif
  2340. }
  2341. }
  2342. if (types_match) {
  2343. for (int i = 0; i < p_call->arguments.size(); i++) {
  2344. if (p_call->arguments[i]->is_constant) {
  2345. update_const_expression_builtin_type(p_call->arguments[i], type_from_property(info.arguments[i], true), "pass");
  2346. }
  2347. }
  2348. match = true;
  2349. call_type = type_from_property(info.return_val);
  2350. break;
  2351. }
  2352. }
  2353. if (!match) {
  2354. String signature = Variant::get_type_name(builtin_type) + "(";
  2355. for (int i = 0; i < p_call->arguments.size(); i++) {
  2356. if (i > 0) {
  2357. signature += ", ";
  2358. }
  2359. signature += p_call->arguments[i]->get_datatype().to_string();
  2360. }
  2361. signature += ")";
  2362. push_error(vformat(R"(No constructor of "%s" matches the signature "%s".)", Variant::get_type_name(builtin_type), signature), p_call);
  2363. }
  2364. }
  2365. p_call->set_datatype(call_type);
  2366. return;
  2367. } else if (GDScriptUtilityFunctions::function_exists(function_name)) {
  2368. MethodInfo function_info = GDScriptUtilityFunctions::get_function_info(function_name);
  2369. if (!p_is_root && !p_is_await && function_info.return_val.type == Variant::NIL && ((function_info.return_val.usage & PROPERTY_USAGE_NIL_IS_VARIANT) == 0)) {
  2370. push_error(vformat(R"*(Cannot get return value of call to "%s()" because it returns "void".)*", function_name), p_call);
  2371. }
  2372. if (all_is_constant && GDScriptUtilityFunctions::is_function_constant(function_name)) {
  2373. // Can call on compilation.
  2374. Vector<const Variant *> args;
  2375. for (int i = 0; i < p_call->arguments.size(); i++) {
  2376. args.push_back(&(p_call->arguments[i]->reduced_value));
  2377. }
  2378. Variant value;
  2379. Callable::CallError err;
  2380. GDScriptUtilityFunctions::get_function(function_name)(&value, (const Variant **)args.ptr(), args.size(), err);
  2381. switch (err.error) {
  2382. case Callable::CallError::CALL_ERROR_INVALID_ARGUMENT: {
  2383. PropertyInfo wrong_arg = function_info.arguments[err.argument];
  2384. push_error(vformat(R"*(Invalid argument for "%s()" function: argument %d should be "%s" but is "%s".)*", function_name, err.argument + 1,
  2385. type_from_property(wrong_arg, true).to_string(), p_call->arguments[err.argument]->get_datatype().to_string()),
  2386. p_call->arguments[err.argument]);
  2387. } break;
  2388. case Callable::CallError::CALL_ERROR_INVALID_METHOD:
  2389. push_error(vformat(R"(Invalid call for function "%s".)", function_name), p_call);
  2390. break;
  2391. case Callable::CallError::CALL_ERROR_TOO_MANY_ARGUMENTS:
  2392. push_error(vformat(R"*(Too many arguments for "%s()" call. Expected at most %d but received %d.)*", function_name, err.expected, p_call->arguments.size()), p_call);
  2393. break;
  2394. case Callable::CallError::CALL_ERROR_TOO_FEW_ARGUMENTS:
  2395. push_error(vformat(R"*(Too few arguments for "%s()" call. Expected at least %d but received %d.)*", function_name, err.expected, p_call->arguments.size()), p_call);
  2396. break;
  2397. case Callable::CallError::CALL_ERROR_METHOD_NOT_CONST:
  2398. case Callable::CallError::CALL_ERROR_INSTANCE_IS_NULL:
  2399. break; // Can't happen in a builtin constructor.
  2400. case Callable::CallError::CALL_OK:
  2401. p_call->is_constant = true;
  2402. p_call->reduced_value = value;
  2403. break;
  2404. }
  2405. } else {
  2406. validate_call_arg(function_info, p_call);
  2407. }
  2408. p_call->set_datatype(type_from_property(function_info.return_val));
  2409. return;
  2410. } else if (Variant::has_utility_function(function_name)) {
  2411. MethodInfo function_info = info_from_utility_func(function_name);
  2412. if (!p_is_root && !p_is_await && function_info.return_val.type == Variant::NIL && ((function_info.return_val.usage & PROPERTY_USAGE_NIL_IS_VARIANT) == 0)) {
  2413. push_error(vformat(R"*(Cannot get return value of call to "%s()" because it returns "void".)*", function_name), p_call);
  2414. }
  2415. if (all_is_constant && Variant::get_utility_function_type(function_name) == Variant::UTILITY_FUNC_TYPE_MATH) {
  2416. // Can call on compilation.
  2417. Vector<const Variant *> args;
  2418. for (int i = 0; i < p_call->arguments.size(); i++) {
  2419. args.push_back(&(p_call->arguments[i]->reduced_value));
  2420. }
  2421. Variant value;
  2422. Callable::CallError err;
  2423. Variant::call_utility_function(function_name, &value, (const Variant **)args.ptr(), args.size(), err);
  2424. switch (err.error) {
  2425. case Callable::CallError::CALL_ERROR_INVALID_ARGUMENT: {
  2426. String expected_type_name;
  2427. if (err.argument < function_info.arguments.size()) {
  2428. expected_type_name = type_from_property(function_info.arguments[err.argument], true).to_string();
  2429. } else {
  2430. expected_type_name = Variant::get_type_name((Variant::Type)err.expected);
  2431. }
  2432. push_error(vformat(R"*(Invalid argument for "%s()" function: argument %d should be "%s" but is "%s".)*", function_name, err.argument + 1,
  2433. expected_type_name, p_call->arguments[err.argument]->get_datatype().to_string()),
  2434. p_call->arguments[err.argument]);
  2435. } break;
  2436. case Callable::CallError::CALL_ERROR_INVALID_METHOD:
  2437. push_error(vformat(R"(Invalid call for function "%s".)", function_name), p_call);
  2438. break;
  2439. case Callable::CallError::CALL_ERROR_TOO_MANY_ARGUMENTS:
  2440. push_error(vformat(R"*(Too many arguments for "%s()" call. Expected at most %d but received %d.)*", function_name, err.expected, p_call->arguments.size()), p_call);
  2441. break;
  2442. case Callable::CallError::CALL_ERROR_TOO_FEW_ARGUMENTS:
  2443. push_error(vformat(R"*(Too few arguments for "%s()" call. Expected at least %d but received %d.)*", function_name, err.expected, p_call->arguments.size()), p_call);
  2444. break;
  2445. case Callable::CallError::CALL_ERROR_METHOD_NOT_CONST:
  2446. case Callable::CallError::CALL_ERROR_INSTANCE_IS_NULL:
  2447. break; // Can't happen in a builtin constructor.
  2448. case Callable::CallError::CALL_OK:
  2449. p_call->is_constant = true;
  2450. p_call->reduced_value = value;
  2451. break;
  2452. }
  2453. } else {
  2454. validate_call_arg(function_info, p_call);
  2455. }
  2456. p_call->set_datatype(type_from_property(function_info.return_val));
  2457. return;
  2458. }
  2459. }
  2460. GDScriptParser::DataType base_type;
  2461. call_type.kind = GDScriptParser::DataType::VARIANT;
  2462. bool is_self = false;
  2463. if (p_call->is_super) {
  2464. base_type = parser->current_class->base_type;
  2465. base_type.is_meta_type = false;
  2466. is_self = true;
  2467. if (p_call->callee == nullptr && !lambda_stack.is_empty()) {
  2468. push_error("Cannot use `super()` inside a lambda.", p_call);
  2469. }
  2470. } else if (callee_type == GDScriptParser::Node::IDENTIFIER) {
  2471. base_type = parser->current_class->get_datatype();
  2472. base_type.is_meta_type = false;
  2473. is_self = true;
  2474. } else if (callee_type == GDScriptParser::Node::SUBSCRIPT) {
  2475. GDScriptParser::SubscriptNode *subscript = static_cast<GDScriptParser::SubscriptNode *>(p_call->callee);
  2476. if (subscript->base == nullptr) {
  2477. // Invalid syntax, error already set on parser.
  2478. p_call->set_datatype(call_type);
  2479. mark_node_unsafe(p_call);
  2480. return;
  2481. }
  2482. if (!subscript->is_attribute) {
  2483. // Invalid call. Error already sent in parser.
  2484. // TODO: Could check if Callable here.
  2485. p_call->set_datatype(call_type);
  2486. mark_node_unsafe(p_call);
  2487. return;
  2488. }
  2489. if (subscript->attribute == nullptr) {
  2490. // Invalid call. Error already sent in parser.
  2491. p_call->set_datatype(call_type);
  2492. mark_node_unsafe(p_call);
  2493. return;
  2494. }
  2495. GDScriptParser::IdentifierNode *base_id = nullptr;
  2496. if (subscript->base->type == GDScriptParser::Node::IDENTIFIER) {
  2497. base_id = static_cast<GDScriptParser::IdentifierNode *>(subscript->base);
  2498. }
  2499. if (base_id && GDScriptParser::get_builtin_type(base_id->name) < Variant::VARIANT_MAX) {
  2500. base_type = make_builtin_meta_type(GDScriptParser::get_builtin_type(base_id->name));
  2501. } else {
  2502. reduce_expression(subscript->base);
  2503. base_type = subscript->base->get_datatype();
  2504. is_self = subscript->base->type == GDScriptParser::Node::SELF;
  2505. }
  2506. } else {
  2507. // Invalid call. Error already sent in parser.
  2508. // TODO: Could check if Callable here too.
  2509. p_call->set_datatype(call_type);
  2510. mark_node_unsafe(p_call);
  2511. return;
  2512. }
  2513. bool is_static = false;
  2514. bool is_vararg = false;
  2515. int default_arg_count = 0;
  2516. GDScriptParser::DataType return_type;
  2517. List<GDScriptParser::DataType> par_types;
  2518. bool is_constructor = (base_type.is_meta_type || (p_call->callee && p_call->callee->type == GDScriptParser::Node::IDENTIFIER)) && p_call->function_name == SNAME("new");
  2519. if (get_function_signature(p_call, is_constructor, base_type, p_call->function_name, return_type, par_types, default_arg_count, is_static, is_vararg)) {
  2520. // If the function require typed arrays we must make literals be typed.
  2521. for (const KeyValue<int, GDScriptParser::ArrayNode *> &E : arrays) {
  2522. int index = E.key;
  2523. if (index < par_types.size() && par_types[index].has_container_element_type()) {
  2524. update_array_literal_element_type(E.value, par_types[index].get_container_element_type());
  2525. }
  2526. }
  2527. validate_call_arg(par_types, default_arg_count, is_vararg, p_call);
  2528. if (base_type.kind == GDScriptParser::DataType::ENUM && base_type.is_meta_type) {
  2529. // Enum type is treated as a dictionary value for function calls.
  2530. base_type.is_meta_type = false;
  2531. }
  2532. if (is_self && parser->current_function != nullptr && parser->current_function->is_static && !is_static) {
  2533. // Get the parent function above any lambda.
  2534. GDScriptParser::FunctionNode *parent_function = parser->current_function;
  2535. while (parent_function->source_lambda) {
  2536. parent_function = parent_function->source_lambda->parent_function;
  2537. }
  2538. push_error(vformat(R"*(Cannot call non-static function "%s()" from static function "%s()".)*", p_call->function_name, parent_function->identifier->name), p_call);
  2539. } else if (!is_self && base_type.is_meta_type && !is_static) {
  2540. base_type.is_meta_type = false; // For `to_string()`.
  2541. push_error(vformat(R"*(Cannot call non-static function "%s()" on the class "%s" directly. Make an instance instead.)*", p_call->function_name, base_type.to_string()), p_call);
  2542. } else if (is_self && !is_static) {
  2543. mark_lambda_use_self();
  2544. }
  2545. if (!p_is_root && !p_is_await && return_type.is_hard_type() && return_type.kind == GDScriptParser::DataType::BUILTIN && return_type.builtin_type == Variant::NIL) {
  2546. push_error(vformat(R"*(Cannot get return value of call to "%s()" because it returns "void".)*", p_call->function_name), p_call);
  2547. }
  2548. #ifdef DEBUG_ENABLED
  2549. if (p_is_root && return_type.kind != GDScriptParser::DataType::UNRESOLVED && return_type.builtin_type != Variant::NIL) {
  2550. parser->push_warning(p_call, GDScriptWarning::RETURN_VALUE_DISCARDED, p_call->function_name);
  2551. }
  2552. if (is_static && !base_type.is_meta_type && !(is_self && parser->current_function != nullptr && parser->current_function->is_static)) {
  2553. String caller_type = String(base_type.native_type);
  2554. if (caller_type.is_empty()) {
  2555. caller_type = base_type.to_string();
  2556. }
  2557. parser->push_warning(p_call, GDScriptWarning::STATIC_CALLED_ON_INSTANCE, p_call->function_name, caller_type);
  2558. }
  2559. #endif // DEBUG_ENABLED
  2560. call_type = return_type;
  2561. } else {
  2562. bool found = false;
  2563. // Enums do not have functions other than the built-in dictionary ones.
  2564. if (base_type.kind == GDScriptParser::DataType::ENUM && base_type.is_meta_type) {
  2565. push_error(vformat(R"*(Enums only have Dictionary built-in methods. Function "%s()" does not exist for enum "%s".)*", p_call->function_name, base_type.enum_type), p_call->callee);
  2566. } else if (!p_call->is_super && callee_type != GDScriptParser::Node::NONE) { // Check if the name exists as something else.
  2567. GDScriptParser::IdentifierNode *callee_id;
  2568. if (callee_type == GDScriptParser::Node::IDENTIFIER) {
  2569. callee_id = static_cast<GDScriptParser::IdentifierNode *>(p_call->callee);
  2570. } else {
  2571. // Can only be attribute.
  2572. callee_id = static_cast<GDScriptParser::SubscriptNode *>(p_call->callee)->attribute;
  2573. }
  2574. if (callee_id) {
  2575. reduce_identifier_from_base(callee_id, &base_type);
  2576. GDScriptParser::DataType callee_datatype = callee_id->get_datatype();
  2577. if (callee_datatype.is_set() && !callee_datatype.is_variant()) {
  2578. found = true;
  2579. if (callee_datatype.builtin_type == Variant::CALLABLE) {
  2580. push_error(vformat(R"*(Name "%s" is a Callable. You can call it with "%s.call()" instead.)*", p_call->function_name, p_call->function_name), p_call->callee);
  2581. } else {
  2582. push_error(vformat(R"*(Name "%s" called as a function but is a "%s".)*", p_call->function_name, callee_datatype.to_string()), p_call->callee);
  2583. }
  2584. #ifdef DEBUG_ENABLED
  2585. } else if (!is_self && !(base_type.is_hard_type() && base_type.kind == GDScriptParser::DataType::BUILTIN)) {
  2586. parser->push_warning(p_call, GDScriptWarning::UNSAFE_METHOD_ACCESS, p_call->function_name, base_type.to_string());
  2587. mark_node_unsafe(p_call);
  2588. #endif
  2589. }
  2590. }
  2591. }
  2592. if (!found && (is_self || (base_type.is_hard_type() && base_type.kind == GDScriptParser::DataType::BUILTIN))) {
  2593. String base_name = is_self && !p_call->is_super ? "self" : base_type.to_string();
  2594. #ifdef TOOLS_ENABLED
  2595. #ifndef DISABLE_DEPRECATED
  2596. String rename_hint = String();
  2597. if (GLOBAL_GET(GDScriptWarning::get_settings_path_from_code(GDScriptWarning::Code::RENAMED_IN_GD4_HINT)).booleanize()) {
  2598. const char *renamed_function_name = check_for_renamed_identifier(p_call->function_name, p_call->type);
  2599. if (renamed_function_name) {
  2600. rename_hint = " " + vformat(R"(Did you mean to use "%s"?)", String(renamed_function_name) + "()");
  2601. }
  2602. }
  2603. push_error(vformat(R"*(Function "%s()" not found in base %s.%s)*", p_call->function_name, base_name, rename_hint), p_call->is_super ? p_call : p_call->callee);
  2604. #else // !DISABLE_DEPRECATED
  2605. push_error(vformat(R"*(Function "%s()" not found in base %s.)*", p_call->function_name, base_name), p_call->is_super ? p_call : p_call->callee);
  2606. #endif // DISABLE_DEPRECATED
  2607. #else
  2608. push_error(vformat(R"*(Function "%s()" not found in base %s.)*", p_call->function_name, base_name), p_call->is_super ? p_call : p_call->callee);
  2609. #endif
  2610. } else if (!found && (!p_call->is_super && base_type.is_hard_type() && base_type.kind == GDScriptParser::DataType::NATIVE && base_type.is_meta_type)) {
  2611. push_error(vformat(R"*(Static function "%s()" not found in base "%s".)*", p_call->function_name, base_type.native_type), p_call);
  2612. }
  2613. }
  2614. if (call_type.is_coroutine && !p_is_await && !p_is_root) {
  2615. push_error(vformat(R"*(Function "%s()" is a coroutine, so it must be called with "await".)*", p_call->function_name), p_call);
  2616. }
  2617. p_call->set_datatype(call_type);
  2618. }
  2619. void GDScriptAnalyzer::reduce_cast(GDScriptParser::CastNode *p_cast) {
  2620. reduce_expression(p_cast->operand);
  2621. GDScriptParser::DataType cast_type = type_from_metatype(resolve_datatype(p_cast->cast_type));
  2622. if (!cast_type.is_set()) {
  2623. mark_node_unsafe(p_cast);
  2624. return;
  2625. }
  2626. p_cast->set_datatype(cast_type);
  2627. if (p_cast->operand->is_constant) {
  2628. update_const_expression_builtin_type(p_cast->operand, cast_type, "cast", true);
  2629. if (cast_type.is_variant() || p_cast->operand->get_datatype() == cast_type) {
  2630. p_cast->is_constant = true;
  2631. p_cast->reduced_value = p_cast->operand->reduced_value;
  2632. }
  2633. }
  2634. if (p_cast->operand->type == GDScriptParser::Node::ARRAY && cast_type.has_container_element_type()) {
  2635. update_array_literal_element_type(static_cast<GDScriptParser::ArrayNode *>(p_cast->operand), cast_type.get_container_element_type());
  2636. }
  2637. if (!cast_type.is_variant()) {
  2638. GDScriptParser::DataType op_type = p_cast->operand->get_datatype();
  2639. if (op_type.is_variant() || !op_type.is_hard_type()) {
  2640. mark_node_unsafe(p_cast);
  2641. #ifdef DEBUG_ENABLED
  2642. if (op_type.is_variant() && !op_type.is_hard_type()) {
  2643. parser->push_warning(p_cast, GDScriptWarning::UNSAFE_CAST, cast_type.to_string());
  2644. }
  2645. #endif
  2646. } else {
  2647. bool valid = false;
  2648. if (op_type.builtin_type == Variant::INT && cast_type.kind == GDScriptParser::DataType::ENUM) {
  2649. mark_node_unsafe(p_cast);
  2650. valid = true;
  2651. } else if (op_type.kind == GDScriptParser::DataType::BUILTIN && cast_type.kind == GDScriptParser::DataType::BUILTIN) {
  2652. valid = Variant::can_convert(op_type.builtin_type, cast_type.builtin_type);
  2653. } else if (op_type.kind != GDScriptParser::DataType::BUILTIN && cast_type.kind != GDScriptParser::DataType::BUILTIN) {
  2654. valid = is_type_compatible(cast_type, op_type) || is_type_compatible(op_type, cast_type);
  2655. }
  2656. if (!valid) {
  2657. push_error(vformat(R"(Invalid cast. Cannot convert from "%s" to "%s".)", op_type.to_string(), cast_type.to_string()), p_cast->cast_type);
  2658. }
  2659. }
  2660. }
  2661. }
  2662. void GDScriptAnalyzer::reduce_dictionary(GDScriptParser::DictionaryNode *p_dictionary) {
  2663. HashMap<Variant, GDScriptParser::ExpressionNode *, VariantHasher, StringLikeVariantComparator> elements;
  2664. for (int i = 0; i < p_dictionary->elements.size(); i++) {
  2665. const GDScriptParser::DictionaryNode::Pair &element = p_dictionary->elements[i];
  2666. if (p_dictionary->style == GDScriptParser::DictionaryNode::PYTHON_DICT) {
  2667. reduce_expression(element.key);
  2668. }
  2669. reduce_expression(element.value);
  2670. if (element.key->is_constant) {
  2671. if (elements.has(element.key->reduced_value)) {
  2672. push_error(vformat(R"(Key "%s" was already used in this dictionary (at line %d).)", element.key->reduced_value, elements[element.key->reduced_value]->start_line), element.key);
  2673. } else {
  2674. elements[element.key->reduced_value] = element.value;
  2675. }
  2676. }
  2677. }
  2678. // It's dictionary in any case.
  2679. GDScriptParser::DataType dict_type;
  2680. dict_type.type_source = GDScriptParser::DataType::ANNOTATED_EXPLICIT;
  2681. dict_type.kind = GDScriptParser::DataType::BUILTIN;
  2682. dict_type.builtin_type = Variant::DICTIONARY;
  2683. dict_type.is_constant = true;
  2684. p_dictionary->set_datatype(dict_type);
  2685. }
  2686. void GDScriptAnalyzer::reduce_get_node(GDScriptParser::GetNodeNode *p_get_node) {
  2687. GDScriptParser::DataType result;
  2688. result.type_source = GDScriptParser::DataType::ANNOTATED_EXPLICIT;
  2689. result.kind = GDScriptParser::DataType::NATIVE;
  2690. result.native_type = SNAME("Node");
  2691. result.builtin_type = Variant::OBJECT;
  2692. if (!ClassDB::is_parent_class(parser->current_class->base_type.native_type, result.native_type)) {
  2693. push_error(R"*(Cannot use shorthand "get_node()" notation ("$") on a class that isn't a node.)*", p_get_node);
  2694. }
  2695. mark_lambda_use_self();
  2696. p_get_node->set_datatype(result);
  2697. }
  2698. GDScriptParser::DataType GDScriptAnalyzer::make_global_class_meta_type(const StringName &p_class_name, const GDScriptParser::Node *p_source) {
  2699. GDScriptParser::DataType type;
  2700. String path = ScriptServer::get_global_class_path(p_class_name);
  2701. String ext = path.get_extension();
  2702. if (ext == GDScriptLanguage::get_singleton()->get_extension()) {
  2703. Ref<GDScriptParserRef> ref = get_parser_for(path);
  2704. if (ref.is_null()) {
  2705. push_error(vformat(R"(Could not find script for class "%s".)", p_class_name), p_source);
  2706. type.type_source = GDScriptParser::DataType::UNDETECTED;
  2707. type.kind = GDScriptParser::DataType::VARIANT;
  2708. return type;
  2709. }
  2710. Error err = ref->raise_status(GDScriptParserRef::INHERITANCE_SOLVED);
  2711. if (err) {
  2712. push_error(vformat(R"(Could not resolve class "%s", because of a parser error.)", p_class_name), p_source);
  2713. type.type_source = GDScriptParser::DataType::UNDETECTED;
  2714. type.kind = GDScriptParser::DataType::VARIANT;
  2715. return type;
  2716. }
  2717. return ref->get_parser()->head->get_datatype();
  2718. } else {
  2719. return make_script_meta_type(ResourceLoader::load(path, "Script"));
  2720. }
  2721. }
  2722. void GDScriptAnalyzer::reduce_identifier_from_base_set_class(GDScriptParser::IdentifierNode *p_identifier, GDScriptParser::DataType p_identifier_datatype) {
  2723. ERR_FAIL_NULL(p_identifier);
  2724. p_identifier->set_datatype(p_identifier_datatype);
  2725. Error err = OK;
  2726. Ref<GDScript> scr = GDScriptCache::get_shallow_script(p_identifier_datatype.script_path, err);
  2727. if (err) {
  2728. push_error(vformat(R"(Error while getting cache for script "%s".)", p_identifier_datatype.script_path), p_identifier);
  2729. return;
  2730. }
  2731. p_identifier->reduced_value = scr->find_class(p_identifier_datatype.class_type->fqcn);
  2732. p_identifier->is_constant = true;
  2733. }
  2734. void GDScriptAnalyzer::reduce_identifier_from_base(GDScriptParser::IdentifierNode *p_identifier, GDScriptParser::DataType *p_base) {
  2735. if (!p_identifier->get_datatype().has_no_type()) {
  2736. return;
  2737. }
  2738. GDScriptParser::DataType base;
  2739. if (p_base == nullptr) {
  2740. base = type_from_metatype(parser->current_class->get_datatype());
  2741. } else {
  2742. base = *p_base;
  2743. }
  2744. const StringName &name = p_identifier->name;
  2745. if (base.kind == GDScriptParser::DataType::ENUM) {
  2746. if (base.is_meta_type) {
  2747. if (base.enum_values.has(name)) {
  2748. p_identifier->set_datatype(type_from_metatype(base));
  2749. p_identifier->is_constant = true;
  2750. p_identifier->reduced_value = base.enum_values[name];
  2751. return;
  2752. }
  2753. // Enum does not have this value, return.
  2754. return;
  2755. } else {
  2756. push_error(R"(Cannot get property from enum value.)", p_identifier);
  2757. return;
  2758. }
  2759. }
  2760. if (base.kind == GDScriptParser::DataType::BUILTIN) {
  2761. if (base.is_meta_type) {
  2762. bool valid = true;
  2763. Variant result = Variant::get_constant_value(base.builtin_type, name, &valid);
  2764. if (valid) {
  2765. p_identifier->is_constant = true;
  2766. p_identifier->reduced_value = result;
  2767. p_identifier->set_datatype(type_from_variant(result, p_identifier));
  2768. } else if (base.is_hard_type()) {
  2769. #ifdef TOOLS_ENABLED
  2770. #ifndef DISABLE_DEPRECATED
  2771. String rename_hint = String();
  2772. if (GLOBAL_GET(GDScriptWarning::get_settings_path_from_code(GDScriptWarning::Code::RENAMED_IN_GD4_HINT)).booleanize()) {
  2773. const char *renamed_identifier_name = check_for_renamed_identifier(name, p_identifier->type);
  2774. if (renamed_identifier_name) {
  2775. rename_hint = " " + vformat(R"(Did you mean to use "%s"?)", renamed_identifier_name);
  2776. }
  2777. }
  2778. push_error(vformat(R"(Cannot find constant "%s" on base "%s".%s)", name, base.to_string(), rename_hint), p_identifier);
  2779. #else // !DISABLE_DEPRECATED
  2780. push_error(vformat(R"(Cannot find constant "%s" on base "%s".)", name, base.to_string()), p_identifier);
  2781. #endif // DISABLE_DEPRECATED
  2782. #else
  2783. push_error(vformat(R"(Cannot find constant "%s" on base "%s".)", name, base.to_string()), p_identifier);
  2784. #endif
  2785. }
  2786. } else {
  2787. switch (base.builtin_type) {
  2788. case Variant::NIL: {
  2789. if (base.is_hard_type()) {
  2790. push_error(vformat(R"(Invalid get index "%s" on base Nil)", name), p_identifier);
  2791. }
  2792. return;
  2793. }
  2794. case Variant::DICTIONARY: {
  2795. GDScriptParser::DataType dummy;
  2796. dummy.kind = GDScriptParser::DataType::VARIANT;
  2797. p_identifier->set_datatype(dummy);
  2798. return;
  2799. }
  2800. default: {
  2801. Callable::CallError temp;
  2802. Variant dummy;
  2803. Variant::construct(base.builtin_type, dummy, nullptr, 0, temp);
  2804. List<PropertyInfo> properties;
  2805. dummy.get_property_list(&properties);
  2806. for (const PropertyInfo &prop : properties) {
  2807. if (prop.name == name) {
  2808. p_identifier->set_datatype(type_from_property(prop));
  2809. return;
  2810. }
  2811. }
  2812. if (base.is_hard_type()) {
  2813. #ifdef TOOLS_ENABLED
  2814. #ifndef DISABLE_DEPRECATED
  2815. String rename_hint = String();
  2816. if (GLOBAL_GET(GDScriptWarning::get_settings_path_from_code(GDScriptWarning::Code::RENAMED_IN_GD4_HINT)).booleanize()) {
  2817. const char *renamed_identifier_name = check_for_renamed_identifier(name, p_identifier->type);
  2818. if (renamed_identifier_name) {
  2819. rename_hint = " " + vformat(R"(Did you mean to use "%s"?)", renamed_identifier_name);
  2820. }
  2821. }
  2822. push_error(vformat(R"(Cannot find property "%s" on base "%s".%s)", name, base.to_string(), rename_hint), p_identifier);
  2823. #else // !DISABLE_DEPRECATED
  2824. push_error(vformat(R"(Cannot find property "%s" on base "%s".)", name, base.to_string()), p_identifier);
  2825. #endif // DISABLE_DEPRECATED
  2826. #else
  2827. push_error(vformat(R"(Cannot find property "%s" on base "%s".)", name, base.to_string()), p_identifier);
  2828. #endif
  2829. }
  2830. }
  2831. }
  2832. }
  2833. return;
  2834. }
  2835. GDScriptParser::ClassNode *base_class = base.class_type;
  2836. List<GDScriptParser::ClassNode *> script_classes;
  2837. bool is_base = true;
  2838. if (base_class != nullptr) {
  2839. get_class_node_current_scope_classes(base_class, &script_classes);
  2840. }
  2841. for (GDScriptParser::ClassNode *script_class : script_classes) {
  2842. if (p_base == nullptr && script_class->identifier && script_class->identifier->name == name) {
  2843. reduce_identifier_from_base_set_class(p_identifier, script_class->get_datatype());
  2844. return;
  2845. }
  2846. if (script_class->has_member(name)) {
  2847. resolve_class_member(script_class, name, p_identifier);
  2848. GDScriptParser::ClassNode::Member member = script_class->get_member(name);
  2849. switch (member.type) {
  2850. case GDScriptParser::ClassNode::Member::CONSTANT: {
  2851. p_identifier->set_datatype(member.get_datatype());
  2852. p_identifier->is_constant = true;
  2853. p_identifier->reduced_value = member.constant->initializer->reduced_value;
  2854. p_identifier->source = GDScriptParser::IdentifierNode::MEMBER_CONSTANT;
  2855. p_identifier->constant_source = member.constant;
  2856. return;
  2857. }
  2858. case GDScriptParser::ClassNode::Member::ENUM_VALUE: {
  2859. p_identifier->set_datatype(member.get_datatype());
  2860. p_identifier->is_constant = true;
  2861. p_identifier->reduced_value = member.enum_value.value;
  2862. p_identifier->source = GDScriptParser::IdentifierNode::MEMBER_CONSTANT;
  2863. return;
  2864. }
  2865. case GDScriptParser::ClassNode::Member::ENUM: {
  2866. p_identifier->set_datatype(member.get_datatype());
  2867. p_identifier->is_constant = true;
  2868. p_identifier->reduced_value = member.m_enum->dictionary;
  2869. p_identifier->source = GDScriptParser::IdentifierNode::MEMBER_CONSTANT;
  2870. return;
  2871. }
  2872. case GDScriptParser::ClassNode::Member::VARIABLE: {
  2873. if (is_base && !base.is_meta_type) {
  2874. p_identifier->set_datatype(member.get_datatype());
  2875. p_identifier->source = GDScriptParser::IdentifierNode::MEMBER_VARIABLE;
  2876. p_identifier->variable_source = member.variable;
  2877. member.variable->usages += 1;
  2878. return;
  2879. }
  2880. } break;
  2881. case GDScriptParser::ClassNode::Member::SIGNAL: {
  2882. if (is_base && !base.is_meta_type) {
  2883. p_identifier->set_datatype(member.get_datatype());
  2884. p_identifier->source = GDScriptParser::IdentifierNode::MEMBER_SIGNAL;
  2885. return;
  2886. }
  2887. } break;
  2888. case GDScriptParser::ClassNode::Member::FUNCTION: {
  2889. if (is_base && !base.is_meta_type) {
  2890. p_identifier->set_datatype(make_callable_type(member.function->info));
  2891. return;
  2892. }
  2893. } break;
  2894. case GDScriptParser::ClassNode::Member::CLASS: {
  2895. reduce_identifier_from_base_set_class(p_identifier, member.get_datatype());
  2896. return;
  2897. }
  2898. default: {
  2899. // Do nothing
  2900. }
  2901. }
  2902. }
  2903. if (is_base) {
  2904. is_base = script_class->base_type.class_type != nullptr;
  2905. if (!is_base && p_base != nullptr) {
  2906. break;
  2907. }
  2908. }
  2909. }
  2910. // Check native members. No need for native class recursion because Node exposes all Object's properties.
  2911. const StringName &native = base.native_type;
  2912. if (class_exists(native)) {
  2913. MethodInfo method_info;
  2914. if (ClassDB::has_property(native, name)) {
  2915. StringName getter_name = ClassDB::get_property_getter(native, name);
  2916. MethodBind *getter = ClassDB::get_method(native, getter_name);
  2917. if (getter != nullptr) {
  2918. p_identifier->set_datatype(type_from_property(getter->get_return_info()));
  2919. p_identifier->source = GDScriptParser::IdentifierNode::INHERITED_VARIABLE;
  2920. }
  2921. return;
  2922. }
  2923. if (ClassDB::get_method_info(native, name, &method_info)) {
  2924. // Method is callable.
  2925. p_identifier->set_datatype(make_callable_type(method_info));
  2926. p_identifier->source = GDScriptParser::IdentifierNode::INHERITED_VARIABLE;
  2927. return;
  2928. }
  2929. if (ClassDB::get_signal(native, name, &method_info)) {
  2930. // Signal is a type too.
  2931. p_identifier->set_datatype(make_signal_type(method_info));
  2932. p_identifier->source = GDScriptParser::IdentifierNode::INHERITED_VARIABLE;
  2933. return;
  2934. }
  2935. if (ClassDB::has_enum(native, name)) {
  2936. p_identifier->set_datatype(make_native_enum_type(name, native));
  2937. p_identifier->source = GDScriptParser::IdentifierNode::MEMBER_CONSTANT;
  2938. return;
  2939. }
  2940. bool valid = false;
  2941. int64_t int_constant = ClassDB::get_integer_constant(native, name, &valid);
  2942. if (valid) {
  2943. p_identifier->is_constant = true;
  2944. p_identifier->reduced_value = int_constant;
  2945. p_identifier->source = GDScriptParser::IdentifierNode::MEMBER_CONSTANT;
  2946. // Check whether this constant, which exists, belongs to an enum
  2947. StringName enum_name = ClassDB::get_integer_constant_enum(native, name);
  2948. if (enum_name != StringName()) {
  2949. p_identifier->set_datatype(make_native_enum_type(enum_name, native, false));
  2950. } else {
  2951. p_identifier->set_datatype(type_from_variant(int_constant, p_identifier));
  2952. }
  2953. }
  2954. }
  2955. }
  2956. void GDScriptAnalyzer::reduce_identifier(GDScriptParser::IdentifierNode *p_identifier, bool can_be_builtin) {
  2957. // TODO: This is an opportunity to further infer types.
  2958. // Check if we are inside an enum. This allows enum values to access other elements of the same enum.
  2959. if (current_enum) {
  2960. for (int i = 0; i < current_enum->values.size(); i++) {
  2961. const GDScriptParser::EnumNode::Value &element = current_enum->values[i];
  2962. if (element.identifier->name == p_identifier->name) {
  2963. StringName enum_name = current_enum->identifier ? current_enum->identifier->name : UNNAMED_ENUM;
  2964. GDScriptParser::DataType type = make_enum_type(enum_name, parser->current_class->fqcn, false);
  2965. if (element.parent_enum->identifier) {
  2966. type.enum_type = element.parent_enum->identifier->name;
  2967. }
  2968. p_identifier->set_datatype(type);
  2969. if (element.resolved) {
  2970. p_identifier->is_constant = true;
  2971. p_identifier->reduced_value = element.value;
  2972. } else {
  2973. push_error(R"(Cannot use another enum element before it was declared.)", p_identifier);
  2974. }
  2975. return; // Found anyway.
  2976. }
  2977. }
  2978. }
  2979. bool found_source = false;
  2980. // Check if identifier is local.
  2981. // If that's the case, the declaration already was solved before.
  2982. switch (p_identifier->source) {
  2983. case GDScriptParser::IdentifierNode::FUNCTION_PARAMETER:
  2984. p_identifier->set_datatype(p_identifier->parameter_source->get_datatype());
  2985. found_source = true;
  2986. break;
  2987. case GDScriptParser::IdentifierNode::LOCAL_CONSTANT:
  2988. case GDScriptParser::IdentifierNode::MEMBER_CONSTANT:
  2989. p_identifier->set_datatype(p_identifier->constant_source->get_datatype());
  2990. p_identifier->is_constant = true;
  2991. // TODO: Constant should have a value on the node itself.
  2992. p_identifier->reduced_value = p_identifier->constant_source->initializer->reduced_value;
  2993. found_source = true;
  2994. break;
  2995. case GDScriptParser::IdentifierNode::MEMBER_SIGNAL:
  2996. case GDScriptParser::IdentifierNode::INHERITED_VARIABLE:
  2997. mark_lambda_use_self();
  2998. break;
  2999. case GDScriptParser::IdentifierNode::MEMBER_VARIABLE:
  3000. mark_lambda_use_self();
  3001. p_identifier->variable_source->usages++;
  3002. [[fallthrough]];
  3003. case GDScriptParser::IdentifierNode::LOCAL_VARIABLE:
  3004. p_identifier->set_datatype(p_identifier->variable_source->get_datatype());
  3005. found_source = true;
  3006. break;
  3007. case GDScriptParser::IdentifierNode::LOCAL_ITERATOR:
  3008. p_identifier->set_datatype(p_identifier->bind_source->get_datatype());
  3009. found_source = true;
  3010. break;
  3011. case GDScriptParser::IdentifierNode::LOCAL_BIND: {
  3012. GDScriptParser::DataType result = p_identifier->bind_source->get_datatype();
  3013. result.is_constant = true;
  3014. p_identifier->set_datatype(result);
  3015. found_source = true;
  3016. } break;
  3017. case GDScriptParser::IdentifierNode::UNDEFINED_SOURCE:
  3018. break;
  3019. }
  3020. // Not a local, so check members.
  3021. if (!found_source) {
  3022. reduce_identifier_from_base(p_identifier);
  3023. if (p_identifier->source != GDScriptParser::IdentifierNode::UNDEFINED_SOURCE || p_identifier->get_datatype().is_set()) {
  3024. // Found.
  3025. found_source = true;
  3026. }
  3027. }
  3028. if (found_source) {
  3029. bool source_is_variable = p_identifier->source == GDScriptParser::IdentifierNode::MEMBER_VARIABLE || p_identifier->source == GDScriptParser::IdentifierNode::INHERITED_VARIABLE;
  3030. bool source_is_signal = p_identifier->source == GDScriptParser::IdentifierNode::MEMBER_SIGNAL;
  3031. if ((source_is_variable || source_is_signal) && parser->current_function && parser->current_function->is_static) {
  3032. // Get the parent function above any lambda.
  3033. GDScriptParser::FunctionNode *parent_function = parser->current_function;
  3034. while (parent_function->source_lambda) {
  3035. parent_function = parent_function->source_lambda->parent_function;
  3036. }
  3037. push_error(vformat(R"*(Cannot access %s "%s" from the static function "%s()".)*", source_is_signal ? "signal" : "instance variable", p_identifier->name, parent_function->identifier->name), p_identifier);
  3038. }
  3039. if (!lambda_stack.is_empty()) {
  3040. // If the identifier is a member variable (including the native class properties) or a signal, we consider the lambda to be using `self`, so we keep a reference to the current instance.
  3041. if (source_is_variable || source_is_signal) {
  3042. mark_lambda_use_self();
  3043. return; // No need to capture.
  3044. }
  3045. // If the identifier is local, check if it's any kind of capture by comparing their source function.
  3046. // Only capture locals and enum values. Constants are still accessible from the lambda using the script reference. If not, this method is done.
  3047. if (p_identifier->source == GDScriptParser::IdentifierNode::UNDEFINED_SOURCE || p_identifier->source == GDScriptParser::IdentifierNode::MEMBER_CONSTANT) {
  3048. return;
  3049. }
  3050. GDScriptParser::FunctionNode *function_test = lambda_stack.back()->get()->function;
  3051. // Make sure we aren't capturing variable in the same lambda.
  3052. // This also add captures for nested lambdas.
  3053. while (function_test != nullptr && function_test != p_identifier->source_function && function_test->source_lambda != nullptr && !function_test->source_lambda->captures_indices.has(p_identifier->name)) {
  3054. function_test->source_lambda->captures_indices[p_identifier->name] = function_test->source_lambda->captures.size();
  3055. function_test->source_lambda->captures.push_back(p_identifier);
  3056. function_test = function_test->source_lambda->parent_function;
  3057. }
  3058. }
  3059. return;
  3060. }
  3061. StringName name = p_identifier->name;
  3062. p_identifier->source = GDScriptParser::IdentifierNode::UNDEFINED_SOURCE;
  3063. // Check globals. We make an exception for Variant::OBJECT because it's the base class for
  3064. // non-builtin types so we allow doing e.g. Object.new()
  3065. Variant::Type builtin_type = GDScriptParser::get_builtin_type(name);
  3066. if (builtin_type != Variant::OBJECT && builtin_type < Variant::VARIANT_MAX) {
  3067. if (can_be_builtin) {
  3068. p_identifier->set_datatype(make_builtin_meta_type(builtin_type));
  3069. return;
  3070. } else {
  3071. push_error(R"(Builtin type cannot be used as a name on its own.)", p_identifier);
  3072. }
  3073. }
  3074. if (class_exists(name)) {
  3075. p_identifier->set_datatype(make_native_meta_type(name));
  3076. return;
  3077. }
  3078. if (ScriptServer::is_global_class(name)) {
  3079. p_identifier->set_datatype(make_global_class_meta_type(name, p_identifier));
  3080. return;
  3081. }
  3082. // Try singletons.
  3083. // Do this before globals because this might be a singleton loading another one before it's compiled.
  3084. if (ProjectSettings::get_singleton()->has_autoload(name)) {
  3085. const ProjectSettings::AutoloadInfo &autoload = ProjectSettings::get_singleton()->get_autoload(name);
  3086. if (autoload.is_singleton) {
  3087. // Singleton exists, so it's at least a Node.
  3088. GDScriptParser::DataType result;
  3089. result.kind = GDScriptParser::DataType::NATIVE;
  3090. result.type_source = GDScriptParser::DataType::ANNOTATED_EXPLICIT;
  3091. if (ResourceLoader::get_resource_type(autoload.path) == "GDScript") {
  3092. Ref<GDScriptParserRef> singl_parser = get_parser_for(autoload.path);
  3093. if (singl_parser.is_valid()) {
  3094. Error err = singl_parser->raise_status(GDScriptParserRef::INHERITANCE_SOLVED);
  3095. if (err == OK) {
  3096. result = type_from_metatype(singl_parser->get_parser()->head->get_datatype());
  3097. }
  3098. }
  3099. } else if (ResourceLoader::get_resource_type(autoload.path) == "PackedScene") {
  3100. if (GDScriptLanguage::get_singleton()->has_any_global_constant(name)) {
  3101. Variant constant = GDScriptLanguage::get_singleton()->get_any_global_constant(name);
  3102. Node *node = Object::cast_to<Node>(constant);
  3103. if (node != nullptr) {
  3104. Ref<GDScript> scr = node->get_script();
  3105. if (scr.is_valid()) {
  3106. Ref<GDScriptParserRef> singl_parser = get_parser_for(scr->get_script_path());
  3107. if (singl_parser.is_valid()) {
  3108. Error err = singl_parser->raise_status(GDScriptParserRef::INHERITANCE_SOLVED);
  3109. if (err == OK) {
  3110. result = type_from_metatype(singl_parser->get_parser()->head->get_datatype());
  3111. }
  3112. }
  3113. }
  3114. }
  3115. }
  3116. }
  3117. result.is_constant = true;
  3118. p_identifier->set_datatype(result);
  3119. return;
  3120. }
  3121. }
  3122. if (GDScriptLanguage::get_singleton()->has_any_global_constant(name)) {
  3123. Variant constant = GDScriptLanguage::get_singleton()->get_any_global_constant(name);
  3124. p_identifier->set_datatype(type_from_variant(constant, p_identifier));
  3125. p_identifier->is_constant = true;
  3126. p_identifier->reduced_value = constant;
  3127. return;
  3128. }
  3129. // Not found.
  3130. // Check if it's a builtin function.
  3131. if (GDScriptUtilityFunctions::function_exists(name)) {
  3132. push_error(vformat(R"(Built-in function "%s" cannot be used as an identifier.)", name), p_identifier);
  3133. } else {
  3134. #ifdef TOOLS_ENABLED
  3135. #ifndef DISABLE_DEPRECATED
  3136. String rename_hint = String();
  3137. if (GLOBAL_GET(GDScriptWarning::get_settings_path_from_code(GDScriptWarning::Code::RENAMED_IN_GD4_HINT)).booleanize()) {
  3138. const char *renamed_identifier_name = check_for_renamed_identifier(name, p_identifier->type);
  3139. if (renamed_identifier_name) {
  3140. rename_hint = " " + vformat(R"(Did you mean to use "%s"?)", renamed_identifier_name);
  3141. }
  3142. }
  3143. push_error(vformat(R"(Identifier "%s" not declared in the current scope.%s)", name, rename_hint), p_identifier);
  3144. #else // !DISABLE_DEPRECATED
  3145. push_error(vformat(R"(Identifier "%s" not declared in the current scope.)", name), p_identifier);
  3146. #endif // DISABLE_DEPRECATED
  3147. #else
  3148. push_error(vformat(R"(Identifier "%s" not declared in the current scope.)", name), p_identifier);
  3149. #endif
  3150. }
  3151. GDScriptParser::DataType dummy;
  3152. dummy.kind = GDScriptParser::DataType::VARIANT;
  3153. p_identifier->set_datatype(dummy); // Just so type is set to something.
  3154. }
  3155. void GDScriptAnalyzer::reduce_lambda(GDScriptParser::LambdaNode *p_lambda) {
  3156. // Lambda is always a Callable.
  3157. GDScriptParser::DataType lambda_type;
  3158. lambda_type.type_source = GDScriptParser::DataType::ANNOTATED_INFERRED;
  3159. lambda_type.kind = GDScriptParser::DataType::BUILTIN;
  3160. lambda_type.builtin_type = Variant::CALLABLE;
  3161. p_lambda->set_datatype(lambda_type);
  3162. if (p_lambda->function == nullptr) {
  3163. return;
  3164. }
  3165. lambda_stack.push_back(p_lambda);
  3166. resolve_function_signature(p_lambda->function, p_lambda, true);
  3167. resolve_function_body(p_lambda->function, true);
  3168. lambda_stack.pop_back();
  3169. int captures_amount = p_lambda->captures.size();
  3170. if (captures_amount > 0) {
  3171. // Create space for lambda parameters.
  3172. // At the beginning to not mess with optional parameters.
  3173. int param_count = p_lambda->function->parameters.size();
  3174. p_lambda->function->parameters.resize(param_count + captures_amount);
  3175. for (int i = param_count - 1; i >= 0; i--) {
  3176. p_lambda->function->parameters.write[i + captures_amount] = p_lambda->function->parameters[i];
  3177. p_lambda->function->parameters_indices[p_lambda->function->parameters[i]->identifier->name] = i + captures_amount;
  3178. }
  3179. // Add captures as extra parameters at the beginning.
  3180. for (int i = 0; i < p_lambda->captures.size(); i++) {
  3181. GDScriptParser::IdentifierNode *capture = p_lambda->captures[i];
  3182. GDScriptParser::ParameterNode *capture_param = parser->alloc_node<GDScriptParser::ParameterNode>();
  3183. capture_param->identifier = capture;
  3184. capture_param->usages = capture->usages;
  3185. capture_param->set_datatype(capture->get_datatype());
  3186. p_lambda->function->parameters.write[i] = capture_param;
  3187. p_lambda->function->parameters_indices[capture->name] = i;
  3188. }
  3189. }
  3190. }
  3191. void GDScriptAnalyzer::reduce_literal(GDScriptParser::LiteralNode *p_literal) {
  3192. p_literal->reduced_value = p_literal->value;
  3193. p_literal->is_constant = true;
  3194. p_literal->set_datatype(type_from_variant(p_literal->reduced_value, p_literal));
  3195. }
  3196. void GDScriptAnalyzer::reduce_preload(GDScriptParser::PreloadNode *p_preload) {
  3197. if (!p_preload->path) {
  3198. return;
  3199. }
  3200. reduce_expression(p_preload->path);
  3201. if (!p_preload->path->is_constant) {
  3202. push_error("Preloaded path must be a constant string.", p_preload->path);
  3203. return;
  3204. }
  3205. if (p_preload->path->reduced_value.get_type() != Variant::STRING) {
  3206. push_error("Preloaded path must be a constant string.", p_preload->path);
  3207. } else {
  3208. p_preload->resolved_path = p_preload->path->reduced_value;
  3209. // TODO: Save this as script dependency.
  3210. if (p_preload->resolved_path.is_relative_path()) {
  3211. p_preload->resolved_path = parser->script_path.get_base_dir().path_join(p_preload->resolved_path);
  3212. }
  3213. p_preload->resolved_path = p_preload->resolved_path.simplify_path();
  3214. if (!ResourceLoader::exists(p_preload->resolved_path)) {
  3215. Ref<FileAccess> file_check = FileAccess::create(FileAccess::ACCESS_RESOURCES);
  3216. if (file_check->file_exists(p_preload->resolved_path)) {
  3217. push_error(vformat(R"(Preload file "%s" has no resource loaders (unrecognized file extension).)", p_preload->resolved_path), p_preload->path);
  3218. } else {
  3219. push_error(vformat(R"(Preload file "%s" does not exist.)", p_preload->resolved_path), p_preload->path);
  3220. }
  3221. } else {
  3222. // TODO: Don't load if validating: use completion cache.
  3223. // Must load GDScript and PackedScenes separately to permit cyclic references
  3224. // as ResourceLoader::load() detect and reject those.
  3225. if (ResourceLoader::get_resource_type(p_preload->resolved_path) == "GDScript") {
  3226. Error err = OK;
  3227. Ref<GDScript> res = GDScriptCache::get_shallow_script(p_preload->resolved_path, err, parser->script_path);
  3228. p_preload->resource = res;
  3229. if (err != OK) {
  3230. push_error(vformat(R"(Could not preload resource script "%s".)", p_preload->resolved_path), p_preload->path);
  3231. }
  3232. } else if (ResourceLoader::get_resource_type(p_preload->resolved_path) == "PackedScene") {
  3233. Error err = OK;
  3234. Ref<PackedScene> res = GDScriptCache::get_packed_scene(p_preload->resolved_path, err, parser->script_path);
  3235. p_preload->resource = res;
  3236. if (err != OK) {
  3237. push_error(vformat(R"(Could not preload resource scene "%s".)", p_preload->resolved_path), p_preload->path);
  3238. }
  3239. } else {
  3240. p_preload->resource = ResourceLoader::load(p_preload->resolved_path);
  3241. if (p_preload->resource.is_null()) {
  3242. push_error(vformat(R"(Could not preload resource file "%s".)", p_preload->resolved_path), p_preload->path);
  3243. }
  3244. }
  3245. }
  3246. }
  3247. p_preload->is_constant = true;
  3248. p_preload->reduced_value = p_preload->resource;
  3249. p_preload->set_datatype(type_from_variant(p_preload->reduced_value, p_preload));
  3250. }
  3251. void GDScriptAnalyzer::reduce_self(GDScriptParser::SelfNode *p_self) {
  3252. p_self->is_constant = false;
  3253. p_self->set_datatype(type_from_metatype(parser->current_class->get_datatype()));
  3254. mark_lambda_use_self();
  3255. }
  3256. void GDScriptAnalyzer::reduce_subscript(GDScriptParser::SubscriptNode *p_subscript) {
  3257. if (p_subscript->base == nullptr) {
  3258. return;
  3259. }
  3260. if (p_subscript->base->type == GDScriptParser::Node::IDENTIFIER) {
  3261. reduce_identifier(static_cast<GDScriptParser::IdentifierNode *>(p_subscript->base), true);
  3262. } else {
  3263. reduce_expression(p_subscript->base);
  3264. }
  3265. GDScriptParser::DataType result_type;
  3266. if (p_subscript->is_attribute) {
  3267. if (p_subscript->attribute == nullptr) {
  3268. return;
  3269. }
  3270. GDScriptParser::DataType base_type = p_subscript->base->get_datatype();
  3271. bool valid = false;
  3272. // If the base is a metatype, use the analyzer instead.
  3273. if (p_subscript->base->is_constant && !base_type.is_meta_type) {
  3274. // Just try to get it.
  3275. Variant value = p_subscript->base->reduced_value.get_named(p_subscript->attribute->name, valid);
  3276. if (valid) {
  3277. p_subscript->is_constant = true;
  3278. p_subscript->reduced_value = value;
  3279. result_type = type_from_variant(value, p_subscript);
  3280. }
  3281. } else if (base_type.is_variant() || !base_type.is_hard_type()) {
  3282. valid = true;
  3283. result_type.kind = GDScriptParser::DataType::VARIANT;
  3284. mark_node_unsafe(p_subscript);
  3285. } else {
  3286. reduce_identifier_from_base(p_subscript->attribute, &base_type);
  3287. GDScriptParser::DataType attr_type = p_subscript->attribute->get_datatype();
  3288. if (attr_type.is_set()) {
  3289. valid = true;
  3290. result_type = attr_type;
  3291. p_subscript->is_constant = p_subscript->attribute->is_constant;
  3292. p_subscript->reduced_value = p_subscript->attribute->reduced_value;
  3293. } else if (!base_type.is_meta_type || !base_type.is_constant) {
  3294. valid = base_type.kind != GDScriptParser::DataType::BUILTIN;
  3295. #ifdef DEBUG_ENABLED
  3296. if (valid) {
  3297. parser->push_warning(p_subscript, GDScriptWarning::UNSAFE_PROPERTY_ACCESS, p_subscript->attribute->name, base_type.to_string());
  3298. }
  3299. #endif
  3300. result_type.kind = GDScriptParser::DataType::VARIANT;
  3301. mark_node_unsafe(p_subscript);
  3302. }
  3303. }
  3304. if (!valid) {
  3305. push_error(vformat(R"(Cannot find member "%s" in base "%s".)", p_subscript->attribute->name, type_from_metatype(base_type).to_string()), p_subscript->attribute);
  3306. result_type.kind = GDScriptParser::DataType::VARIANT;
  3307. }
  3308. } else {
  3309. if (p_subscript->index == nullptr) {
  3310. return;
  3311. }
  3312. reduce_expression(p_subscript->index);
  3313. if (p_subscript->base->is_constant && p_subscript->index->is_constant) {
  3314. // Just try to get it.
  3315. bool valid = false;
  3316. Variant value = p_subscript->base->reduced_value.get(p_subscript->index->reduced_value, &valid);
  3317. if (!valid) {
  3318. push_error(vformat(R"(Cannot get index "%s" from "%s".)", p_subscript->index->reduced_value, p_subscript->base->reduced_value), p_subscript->index);
  3319. result_type.kind = GDScriptParser::DataType::VARIANT;
  3320. } else {
  3321. p_subscript->is_constant = true;
  3322. p_subscript->reduced_value = value;
  3323. result_type = type_from_variant(value, p_subscript);
  3324. }
  3325. } else {
  3326. GDScriptParser::DataType base_type = p_subscript->base->get_datatype();
  3327. GDScriptParser::DataType index_type = p_subscript->index->get_datatype();
  3328. if (base_type.is_variant()) {
  3329. result_type.kind = GDScriptParser::DataType::VARIANT;
  3330. mark_node_unsafe(p_subscript);
  3331. } else {
  3332. if (base_type.kind == GDScriptParser::DataType::BUILTIN && !index_type.is_variant()) {
  3333. // Check if indexing is valid.
  3334. bool error = index_type.kind != GDScriptParser::DataType::BUILTIN && base_type.builtin_type != Variant::DICTIONARY;
  3335. if (!error) {
  3336. switch (base_type.builtin_type) {
  3337. // Expect int or real as index.
  3338. case Variant::PACKED_BYTE_ARRAY:
  3339. case Variant::PACKED_COLOR_ARRAY:
  3340. case Variant::PACKED_FLOAT32_ARRAY:
  3341. case Variant::PACKED_FLOAT64_ARRAY:
  3342. case Variant::PACKED_INT32_ARRAY:
  3343. case Variant::PACKED_INT64_ARRAY:
  3344. case Variant::PACKED_STRING_ARRAY:
  3345. case Variant::PACKED_VECTOR2_ARRAY:
  3346. case Variant::PACKED_VECTOR3_ARRAY:
  3347. case Variant::ARRAY:
  3348. case Variant::STRING:
  3349. error = index_type.builtin_type != Variant::INT && index_type.builtin_type != Variant::FLOAT;
  3350. break;
  3351. // Expect String only.
  3352. case Variant::RECT2:
  3353. case Variant::RECT2I:
  3354. case Variant::PLANE:
  3355. case Variant::QUATERNION:
  3356. case Variant::AABB:
  3357. case Variant::OBJECT:
  3358. error = index_type.builtin_type != Variant::STRING && index_type.builtin_type != Variant::STRING_NAME;
  3359. break;
  3360. // Expect String or number.
  3361. case Variant::BASIS:
  3362. case Variant::VECTOR2:
  3363. case Variant::VECTOR2I:
  3364. case Variant::VECTOR3:
  3365. case Variant::VECTOR3I:
  3366. case Variant::VECTOR4:
  3367. case Variant::VECTOR4I:
  3368. case Variant::TRANSFORM2D:
  3369. case Variant::TRANSFORM3D:
  3370. case Variant::PROJECTION:
  3371. error = index_type.builtin_type != Variant::INT && index_type.builtin_type != Variant::FLOAT &&
  3372. index_type.builtin_type != Variant::STRING && index_type.builtin_type != Variant::STRING_NAME;
  3373. break;
  3374. // Expect String or int.
  3375. case Variant::COLOR:
  3376. error = index_type.builtin_type != Variant::INT && index_type.builtin_type != Variant::STRING && index_type.builtin_type != Variant::STRING_NAME;
  3377. break;
  3378. // Don't support indexing, but we will check it later.
  3379. case Variant::RID:
  3380. case Variant::BOOL:
  3381. case Variant::CALLABLE:
  3382. case Variant::FLOAT:
  3383. case Variant::INT:
  3384. case Variant::NIL:
  3385. case Variant::NODE_PATH:
  3386. case Variant::SIGNAL:
  3387. case Variant::STRING_NAME:
  3388. break;
  3389. // Here for completeness.
  3390. case Variant::DICTIONARY:
  3391. case Variant::VARIANT_MAX:
  3392. break;
  3393. }
  3394. if (error) {
  3395. push_error(vformat(R"(Invalid index type "%s" for a base of type "%s".)", index_type.to_string(), base_type.to_string()), p_subscript->index);
  3396. }
  3397. }
  3398. } else if (base_type.kind != GDScriptParser::DataType::BUILTIN && !index_type.is_variant()) {
  3399. if (index_type.builtin_type != Variant::STRING && index_type.builtin_type != Variant::STRING_NAME) {
  3400. push_error(vformat(R"(Only String or StringName can be used as index for type "%s", but received a "%s".)", base_type.to_string(), index_type.to_string()), p_subscript->index);
  3401. }
  3402. }
  3403. // Check resulting type if possible.
  3404. result_type.builtin_type = Variant::NIL;
  3405. result_type.kind = GDScriptParser::DataType::BUILTIN;
  3406. result_type.type_source = base_type.is_hard_type() ? GDScriptParser::DataType::ANNOTATED_INFERRED : GDScriptParser::DataType::INFERRED;
  3407. if (base_type.kind != GDScriptParser::DataType::BUILTIN) {
  3408. base_type.builtin_type = Variant::OBJECT;
  3409. }
  3410. switch (base_type.builtin_type) {
  3411. // Can't index at all.
  3412. case Variant::RID:
  3413. case Variant::BOOL:
  3414. case Variant::CALLABLE:
  3415. case Variant::FLOAT:
  3416. case Variant::INT:
  3417. case Variant::NIL:
  3418. case Variant::NODE_PATH:
  3419. case Variant::SIGNAL:
  3420. case Variant::STRING_NAME:
  3421. result_type.kind = GDScriptParser::DataType::VARIANT;
  3422. push_error(vformat(R"(Cannot use subscript operator on a base of type "%s".)", base_type.to_string()), p_subscript->base);
  3423. break;
  3424. // Return int.
  3425. case Variant::PACKED_BYTE_ARRAY:
  3426. case Variant::PACKED_INT32_ARRAY:
  3427. case Variant::PACKED_INT64_ARRAY:
  3428. case Variant::VECTOR2I:
  3429. case Variant::VECTOR3I:
  3430. case Variant::VECTOR4I:
  3431. result_type.builtin_type = Variant::INT;
  3432. break;
  3433. // Return float.
  3434. case Variant::PACKED_FLOAT32_ARRAY:
  3435. case Variant::PACKED_FLOAT64_ARRAY:
  3436. case Variant::VECTOR2:
  3437. case Variant::VECTOR3:
  3438. case Variant::VECTOR4:
  3439. case Variant::QUATERNION:
  3440. result_type.builtin_type = Variant::FLOAT;
  3441. break;
  3442. // Return Color.
  3443. case Variant::PACKED_COLOR_ARRAY:
  3444. result_type.builtin_type = Variant::COLOR;
  3445. break;
  3446. // Return String.
  3447. case Variant::PACKED_STRING_ARRAY:
  3448. case Variant::STRING:
  3449. result_type.builtin_type = Variant::STRING;
  3450. break;
  3451. // Return Vector2.
  3452. case Variant::PACKED_VECTOR2_ARRAY:
  3453. case Variant::TRANSFORM2D:
  3454. case Variant::RECT2:
  3455. result_type.builtin_type = Variant::VECTOR2;
  3456. break;
  3457. // Return Vector2I.
  3458. case Variant::RECT2I:
  3459. result_type.builtin_type = Variant::VECTOR2I;
  3460. break;
  3461. // Return Vector3.
  3462. case Variant::PACKED_VECTOR3_ARRAY:
  3463. case Variant::AABB:
  3464. case Variant::BASIS:
  3465. result_type.builtin_type = Variant::VECTOR3;
  3466. break;
  3467. // Depends on the index.
  3468. case Variant::TRANSFORM3D:
  3469. case Variant::PROJECTION:
  3470. case Variant::PLANE:
  3471. case Variant::COLOR:
  3472. case Variant::DICTIONARY:
  3473. case Variant::OBJECT:
  3474. result_type.kind = GDScriptParser::DataType::VARIANT;
  3475. result_type.type_source = GDScriptParser::DataType::UNDETECTED;
  3476. break;
  3477. // Can have an element type.
  3478. case Variant::ARRAY:
  3479. if (base_type.has_container_element_type()) {
  3480. result_type = base_type.get_container_element_type();
  3481. result_type.type_source = base_type.type_source;
  3482. } else {
  3483. result_type.kind = GDScriptParser::DataType::VARIANT;
  3484. result_type.type_source = GDScriptParser::DataType::UNDETECTED;
  3485. }
  3486. break;
  3487. // Here for completeness.
  3488. case Variant::VARIANT_MAX:
  3489. break;
  3490. }
  3491. }
  3492. }
  3493. }
  3494. p_subscript->set_datatype(result_type);
  3495. }
  3496. void GDScriptAnalyzer::reduce_ternary_op(GDScriptParser::TernaryOpNode *p_ternary_op, bool p_is_root) {
  3497. reduce_expression(p_ternary_op->condition);
  3498. reduce_expression(p_ternary_op->true_expr, p_is_root);
  3499. reduce_expression(p_ternary_op->false_expr, p_is_root);
  3500. GDScriptParser::DataType result;
  3501. if (p_ternary_op->condition && p_ternary_op->condition->is_constant && p_ternary_op->true_expr->is_constant && p_ternary_op->false_expr && p_ternary_op->false_expr->is_constant) {
  3502. p_ternary_op->is_constant = true;
  3503. if (p_ternary_op->condition->reduced_value.booleanize()) {
  3504. p_ternary_op->reduced_value = p_ternary_op->true_expr->reduced_value;
  3505. } else {
  3506. p_ternary_op->reduced_value = p_ternary_op->false_expr->reduced_value;
  3507. }
  3508. }
  3509. GDScriptParser::DataType true_type;
  3510. if (p_ternary_op->true_expr) {
  3511. true_type = p_ternary_op->true_expr->get_datatype();
  3512. } else {
  3513. true_type.kind = GDScriptParser::DataType::VARIANT;
  3514. }
  3515. GDScriptParser::DataType false_type;
  3516. if (p_ternary_op->false_expr) {
  3517. false_type = p_ternary_op->false_expr->get_datatype();
  3518. } else {
  3519. false_type.kind = GDScriptParser::DataType::VARIANT;
  3520. }
  3521. if (true_type.is_variant() || false_type.is_variant()) {
  3522. result.kind = GDScriptParser::DataType::VARIANT;
  3523. } else {
  3524. result = true_type;
  3525. if (!is_type_compatible(true_type, false_type)) {
  3526. result = false_type;
  3527. if (!is_type_compatible(false_type, true_type)) {
  3528. result.type_source = GDScriptParser::DataType::UNDETECTED;
  3529. result.kind = GDScriptParser::DataType::VARIANT;
  3530. #ifdef DEBUG_ENABLED
  3531. parser->push_warning(p_ternary_op, GDScriptWarning::INCOMPATIBLE_TERNARY);
  3532. #endif
  3533. }
  3534. }
  3535. }
  3536. p_ternary_op->set_datatype(result);
  3537. }
  3538. void GDScriptAnalyzer::reduce_unary_op(GDScriptParser::UnaryOpNode *p_unary_op) {
  3539. reduce_expression(p_unary_op->operand);
  3540. GDScriptParser::DataType result;
  3541. if (p_unary_op->operand == nullptr) {
  3542. result.kind = GDScriptParser::DataType::VARIANT;
  3543. p_unary_op->set_datatype(result);
  3544. return;
  3545. }
  3546. GDScriptParser::DataType operand_type = p_unary_op->operand->get_datatype();
  3547. if (p_unary_op->operand->is_constant) {
  3548. p_unary_op->is_constant = true;
  3549. p_unary_op->reduced_value = Variant::evaluate(p_unary_op->variant_op, p_unary_op->operand->reduced_value, Variant());
  3550. result = type_from_variant(p_unary_op->reduced_value, p_unary_op);
  3551. }
  3552. if (operand_type.is_variant()) {
  3553. result.kind = GDScriptParser::DataType::VARIANT;
  3554. mark_node_unsafe(p_unary_op);
  3555. } else {
  3556. bool valid = false;
  3557. result = get_operation_type(p_unary_op->variant_op, operand_type, valid, p_unary_op);
  3558. if (!valid) {
  3559. push_error(vformat(R"(Invalid operand of type "%s" for unary operator "%s".)", operand_type.to_string(), Variant::get_operator_name(p_unary_op->variant_op)), p_unary_op);
  3560. }
  3561. }
  3562. p_unary_op->set_datatype(result);
  3563. }
  3564. Variant GDScriptAnalyzer::make_expression_reduced_value(GDScriptParser::ExpressionNode *p_expression, bool &is_reduced) {
  3565. Variant value;
  3566. if (p_expression->is_constant) {
  3567. is_reduced = true;
  3568. value = p_expression->reduced_value;
  3569. } else if (p_expression->type == GDScriptParser::Node::ARRAY) {
  3570. value = make_array_reduced_value(static_cast<GDScriptParser::ArrayNode *>(p_expression), is_reduced);
  3571. } else if (p_expression->type == GDScriptParser::Node::DICTIONARY) {
  3572. value = make_dictionary_reduced_value(static_cast<GDScriptParser::DictionaryNode *>(p_expression), is_reduced);
  3573. } else if (p_expression->type == GDScriptParser::Node::SUBSCRIPT) {
  3574. value = make_subscript_reduced_value(static_cast<GDScriptParser::SubscriptNode *>(p_expression), is_reduced);
  3575. }
  3576. return value;
  3577. }
  3578. Variant GDScriptAnalyzer::make_array_reduced_value(GDScriptParser::ArrayNode *p_array, bool &is_reduced) {
  3579. Array array = p_array->get_datatype().has_container_element_type() ? make_array_from_element_datatype(p_array->get_datatype().get_container_element_type()) : Array();
  3580. array.resize(p_array->elements.size());
  3581. for (int i = 0; i < p_array->elements.size(); i++) {
  3582. GDScriptParser::ExpressionNode *element = p_array->elements[i];
  3583. bool is_element_value_reduced = false;
  3584. Variant element_value = make_expression_reduced_value(element, is_element_value_reduced);
  3585. if (!is_element_value_reduced) {
  3586. return Variant();
  3587. }
  3588. array[i] = element_value;
  3589. }
  3590. array.make_read_only();
  3591. is_reduced = true;
  3592. return array;
  3593. }
  3594. Variant GDScriptAnalyzer::make_dictionary_reduced_value(GDScriptParser::DictionaryNode *p_dictionary, bool &is_reduced) {
  3595. Dictionary dictionary;
  3596. for (int i = 0; i < p_dictionary->elements.size(); i++) {
  3597. const GDScriptParser::DictionaryNode::Pair &element = p_dictionary->elements[i];
  3598. bool is_element_key_reduced = false;
  3599. Variant element_key = make_expression_reduced_value(element.key, is_element_key_reduced);
  3600. if (!is_element_key_reduced) {
  3601. return Variant();
  3602. }
  3603. bool is_element_value_reduced = false;
  3604. Variant element_value = make_expression_reduced_value(element.value, is_element_value_reduced);
  3605. if (!is_element_value_reduced) {
  3606. return Variant();
  3607. }
  3608. dictionary[element_key] = element_value;
  3609. }
  3610. dictionary.make_read_only();
  3611. is_reduced = true;
  3612. return dictionary;
  3613. }
  3614. Variant GDScriptAnalyzer::make_subscript_reduced_value(GDScriptParser::SubscriptNode *p_subscript, bool &is_reduced) {
  3615. bool is_base_value_reduced = false;
  3616. Variant base_value = make_expression_reduced_value(p_subscript->base, is_base_value_reduced);
  3617. if (!is_base_value_reduced) {
  3618. return Variant();
  3619. }
  3620. if (p_subscript->is_attribute) {
  3621. bool is_valid = false;
  3622. Variant value = base_value.get_named(p_subscript->attribute->name, is_valid);
  3623. if (is_valid) {
  3624. is_reduced = true;
  3625. return value;
  3626. } else {
  3627. return Variant();
  3628. }
  3629. } else {
  3630. bool is_index_value_reduced = false;
  3631. Variant index_value = make_expression_reduced_value(p_subscript->index, is_index_value_reduced);
  3632. if (!is_index_value_reduced) {
  3633. return Variant();
  3634. }
  3635. bool is_valid = false;
  3636. Variant value = base_value.get(index_value, &is_valid);
  3637. if (is_valid) {
  3638. is_reduced = true;
  3639. return value;
  3640. } else {
  3641. return Variant();
  3642. }
  3643. }
  3644. }
  3645. Array GDScriptAnalyzer::make_array_from_element_datatype(const GDScriptParser::DataType &p_element_datatype, const GDScriptParser::Node *p_source_node) {
  3646. Array array;
  3647. Ref<Script> script_type = p_element_datatype.script_type;
  3648. if (p_element_datatype.kind == GDScriptParser::DataType::CLASS && script_type.is_null()) {
  3649. Error err = OK;
  3650. Ref<GDScript> scr = GDScriptCache::get_shallow_script(p_element_datatype.script_path, err);
  3651. if (err) {
  3652. push_error(vformat(R"(Error while getting cache for script "%s".)", p_element_datatype.script_path), p_source_node);
  3653. return array;
  3654. }
  3655. script_type.reference_ptr(scr->find_class(p_element_datatype.class_type->fqcn));
  3656. }
  3657. array.set_typed(p_element_datatype.builtin_type, p_element_datatype.native_type, script_type);
  3658. return array;
  3659. }
  3660. Variant GDScriptAnalyzer::make_variable_default_value(GDScriptParser::VariableNode *p_variable) {
  3661. Variant result = Variant();
  3662. if (p_variable->initializer) {
  3663. bool is_initializer_value_reduced = false;
  3664. Variant initializer_value = make_expression_reduced_value(p_variable->initializer, is_initializer_value_reduced);
  3665. if (is_initializer_value_reduced) {
  3666. result = initializer_value;
  3667. }
  3668. } else {
  3669. GDScriptParser::DataType datatype = p_variable->get_datatype();
  3670. if (datatype.is_hard_type() && datatype.kind == GDScriptParser::DataType::BUILTIN && datatype.builtin_type != Variant::OBJECT) {
  3671. if (datatype.builtin_type == Variant::ARRAY && datatype.has_container_element_type()) {
  3672. result = make_array_from_element_datatype(datatype.get_container_element_type());
  3673. } else {
  3674. VariantInternal::initialize(&result, datatype.builtin_type);
  3675. }
  3676. }
  3677. }
  3678. return result;
  3679. }
  3680. GDScriptParser::DataType GDScriptAnalyzer::type_from_variant(const Variant &p_value, const GDScriptParser::Node *p_source) {
  3681. GDScriptParser::DataType result;
  3682. result.is_constant = true;
  3683. result.kind = GDScriptParser::DataType::BUILTIN;
  3684. result.builtin_type = p_value.get_type();
  3685. result.type_source = GDScriptParser::DataType::ANNOTATED_EXPLICIT; // Constant has explicit type.
  3686. if (p_value.get_type() == Variant::OBJECT) {
  3687. // Object is treated as a native type, not a builtin type.
  3688. result.kind = GDScriptParser::DataType::NATIVE;
  3689. Object *obj = p_value;
  3690. if (!obj) {
  3691. return GDScriptParser::DataType();
  3692. }
  3693. result.native_type = obj->get_class_name();
  3694. Ref<Script> scr = p_value; // Check if value is a script itself.
  3695. if (scr.is_valid()) {
  3696. result.is_meta_type = true;
  3697. } else {
  3698. result.is_meta_type = false;
  3699. scr = obj->get_script();
  3700. }
  3701. if (scr.is_valid()) {
  3702. Ref<GDScript> gds = scr;
  3703. if (gds.is_valid()) {
  3704. // This might be an inner class, so we want to get the parser for the root.
  3705. // But still get the inner class from that tree.
  3706. String script_path = gds->get_script_path();
  3707. Ref<GDScriptParserRef> ref = get_parser_for(script_path);
  3708. if (ref.is_null()) {
  3709. push_error(vformat(R"(Could not find script "%s".)", script_path), p_source);
  3710. GDScriptParser::DataType error_type;
  3711. error_type.kind = GDScriptParser::DataType::VARIANT;
  3712. return error_type;
  3713. }
  3714. Error err = ref->raise_status(GDScriptParserRef::INHERITANCE_SOLVED);
  3715. GDScriptParser::ClassNode *found = nullptr;
  3716. if (err == OK) {
  3717. found = ref->get_parser()->find_class(gds->fully_qualified_name);
  3718. if (found != nullptr) {
  3719. err = resolve_class_inheritance(found, p_source);
  3720. }
  3721. }
  3722. if (err || found == nullptr) {
  3723. push_error(vformat(R"(Could not resolve script "%s".)", script_path), p_source);
  3724. GDScriptParser::DataType error_type;
  3725. error_type.kind = GDScriptParser::DataType::VARIANT;
  3726. return error_type;
  3727. }
  3728. result.kind = GDScriptParser::DataType::CLASS;
  3729. result.native_type = found->get_datatype().native_type;
  3730. result.class_type = found;
  3731. result.script_path = ref->get_parser()->script_path;
  3732. } else {
  3733. result.kind = GDScriptParser::DataType::SCRIPT;
  3734. result.native_type = scr->get_instance_base_type();
  3735. result.script_path = scr->get_path();
  3736. }
  3737. result.script_type = scr;
  3738. } else {
  3739. result.kind = GDScriptParser::DataType::NATIVE;
  3740. if (result.native_type == GDScriptNativeClass::get_class_static()) {
  3741. result.is_meta_type = true;
  3742. }
  3743. }
  3744. }
  3745. return result;
  3746. }
  3747. GDScriptParser::DataType GDScriptAnalyzer::type_from_metatype(const GDScriptParser::DataType &p_meta_type) {
  3748. GDScriptParser::DataType result = p_meta_type;
  3749. result.is_meta_type = false;
  3750. if (p_meta_type.kind == GDScriptParser::DataType::ENUM) {
  3751. result.builtin_type = Variant::INT;
  3752. } else {
  3753. result.is_constant = false;
  3754. }
  3755. return result;
  3756. }
  3757. GDScriptParser::DataType GDScriptAnalyzer::type_from_property(const PropertyInfo &p_property, bool p_is_arg) const {
  3758. GDScriptParser::DataType result;
  3759. result.type_source = GDScriptParser::DataType::ANNOTATED_EXPLICIT;
  3760. if (p_property.type == Variant::NIL && (p_is_arg || (p_property.usage & PROPERTY_USAGE_NIL_IS_VARIANT))) {
  3761. // Variant
  3762. result.kind = GDScriptParser::DataType::VARIANT;
  3763. return result;
  3764. }
  3765. result.builtin_type = p_property.type;
  3766. if (p_property.type == Variant::OBJECT) {
  3767. result.kind = GDScriptParser::DataType::NATIVE;
  3768. result.native_type = p_property.class_name == StringName() ? SNAME("Object") : p_property.class_name;
  3769. } else {
  3770. result.kind = GDScriptParser::DataType::BUILTIN;
  3771. result.builtin_type = p_property.type;
  3772. if (p_property.type == Variant::ARRAY && p_property.hint == PROPERTY_HINT_ARRAY_TYPE) {
  3773. // Check element type.
  3774. StringName elem_type_name = p_property.hint_string;
  3775. GDScriptParser::DataType elem_type;
  3776. elem_type.type_source = GDScriptParser::DataType::ANNOTATED_EXPLICIT;
  3777. Variant::Type elem_builtin_type = GDScriptParser::get_builtin_type(elem_type_name);
  3778. if (elem_builtin_type < Variant::VARIANT_MAX) {
  3779. // Builtin type.
  3780. elem_type.kind = GDScriptParser::DataType::BUILTIN;
  3781. elem_type.builtin_type = elem_builtin_type;
  3782. } else if (class_exists(elem_type_name)) {
  3783. elem_type.kind = GDScriptParser::DataType::NATIVE;
  3784. elem_type.builtin_type = Variant::OBJECT;
  3785. elem_type.native_type = p_property.hint_string;
  3786. } else if (ScriptServer::is_global_class(elem_type_name)) {
  3787. // Just load this as it shouldn't be a GDScript.
  3788. Ref<Script> script = ResourceLoader::load(ScriptServer::get_global_class_path(elem_type_name));
  3789. elem_type.kind = GDScriptParser::DataType::SCRIPT;
  3790. elem_type.builtin_type = Variant::OBJECT;
  3791. elem_type.native_type = script->get_instance_base_type();
  3792. elem_type.script_type = script;
  3793. } else {
  3794. ERR_FAIL_V_MSG(result, "Could not find element type from property hint of a typed array.");
  3795. }
  3796. elem_type.is_constant = false;
  3797. result.set_container_element_type(elem_type);
  3798. }
  3799. }
  3800. return result;
  3801. }
  3802. bool GDScriptAnalyzer::get_function_signature(GDScriptParser::Node *p_source, bool p_is_constructor, GDScriptParser::DataType p_base_type, const StringName &p_function, GDScriptParser::DataType &r_return_type, List<GDScriptParser::DataType> &r_par_types, int &r_default_arg_count, bool &r_static, bool &r_vararg) {
  3803. r_static = false;
  3804. r_vararg = false;
  3805. r_default_arg_count = 0;
  3806. StringName function_name = p_function;
  3807. bool was_enum = false;
  3808. if (p_base_type.kind == GDScriptParser::DataType::ENUM) {
  3809. was_enum = true;
  3810. if (p_base_type.is_meta_type) {
  3811. // Enum type can be treated as a dictionary value.
  3812. p_base_type.kind = GDScriptParser::DataType::BUILTIN;
  3813. p_base_type.is_meta_type = false;
  3814. } else {
  3815. push_error("Cannot call function on enum value.", p_source);
  3816. return false;
  3817. }
  3818. }
  3819. if (p_base_type.kind == GDScriptParser::DataType::BUILTIN) {
  3820. // Construct a base type to get methods.
  3821. Callable::CallError err;
  3822. Variant dummy;
  3823. Variant::construct(p_base_type.builtin_type, dummy, nullptr, 0, err);
  3824. if (err.error != Callable::CallError::CALL_OK) {
  3825. ERR_FAIL_V_MSG(false, "Could not construct base Variant type.");
  3826. }
  3827. List<MethodInfo> methods;
  3828. dummy.get_method_list(&methods);
  3829. for (const MethodInfo &E : methods) {
  3830. if (E.name == p_function) {
  3831. function_signature_from_info(E, r_return_type, r_par_types, r_default_arg_count, r_static, r_vararg);
  3832. r_static = Variant::is_builtin_method_static(p_base_type.builtin_type, function_name);
  3833. // Cannot use non-const methods on enums.
  3834. if (!r_static && was_enum && !(E.flags & METHOD_FLAG_CONST)) {
  3835. push_error(vformat(R"*(Cannot call non-const Dictionary function "%s()" on enum "%s".)*", p_function, p_base_type.enum_type), p_source);
  3836. }
  3837. return true;
  3838. }
  3839. }
  3840. return false;
  3841. }
  3842. StringName base_native = p_base_type.native_type;
  3843. if (base_native != StringName()) {
  3844. // Empty native class might happen in some Script implementations.
  3845. // Just ignore it.
  3846. if (!class_exists(base_native)) {
  3847. push_error(vformat("Native class %s used in script doesn't exist or isn't exposed.", base_native), p_source);
  3848. return false;
  3849. } else if (p_is_constructor && !ClassDB::can_instantiate(base_native)) {
  3850. if (p_base_type.kind == GDScriptParser::DataType::CLASS) {
  3851. push_error(vformat(R"(Class "%s" cannot be constructed as it is based on abstract native class "%s".)", p_base_type.class_type->fqcn.get_file(), base_native), p_source);
  3852. } else if (p_base_type.kind == GDScriptParser::DataType::SCRIPT) {
  3853. push_error(vformat(R"(Script "%s" cannot be constructed as it is based on abstract native class "%s".)", p_base_type.script_path.get_file(), base_native), p_source);
  3854. } else {
  3855. push_error(vformat(R"(Native class "%s" cannot be constructed as it is abstract.)", base_native), p_source);
  3856. }
  3857. return false;
  3858. }
  3859. }
  3860. if (p_is_constructor) {
  3861. function_name = "_init";
  3862. r_static = true;
  3863. }
  3864. GDScriptParser::ClassNode *base_class = p_base_type.class_type;
  3865. GDScriptParser::FunctionNode *found_function = nullptr;
  3866. while (found_function == nullptr && base_class != nullptr) {
  3867. if (base_class->has_member(function_name)) {
  3868. if (base_class->get_member(function_name).type != GDScriptParser::ClassNode::Member::FUNCTION) {
  3869. // TODO: If this is Callable it can have a better error message.
  3870. push_error(vformat(R"(Member "%s" is not a function.)", function_name), p_source);
  3871. return false;
  3872. }
  3873. resolve_class_member(base_class, function_name, p_source);
  3874. found_function = base_class->get_member(function_name).function;
  3875. }
  3876. resolve_class_inheritance(base_class, p_source);
  3877. base_class = base_class->base_type.class_type;
  3878. }
  3879. if (found_function != nullptr) {
  3880. r_static = p_is_constructor || found_function->is_static;
  3881. for (int i = 0; i < found_function->parameters.size(); i++) {
  3882. r_par_types.push_back(found_function->parameters[i]->get_datatype());
  3883. if (found_function->parameters[i]->initializer != nullptr) {
  3884. r_default_arg_count++;
  3885. }
  3886. }
  3887. r_return_type = p_is_constructor ? p_base_type : found_function->get_datatype();
  3888. r_return_type.is_meta_type = false;
  3889. r_return_type.is_coroutine = found_function->is_coroutine;
  3890. return true;
  3891. }
  3892. Ref<Script> base_script = p_base_type.script_type;
  3893. while (base_script.is_valid() && base_script->has_method(function_name)) {
  3894. MethodInfo info = base_script->get_method_info(function_name);
  3895. if (!(info == MethodInfo())) {
  3896. return function_signature_from_info(info, r_return_type, r_par_types, r_default_arg_count, r_static, r_vararg);
  3897. }
  3898. base_script = base_script->get_base_script();
  3899. }
  3900. // If the base is a script, it might be trying to access members of the Script class itself.
  3901. if (p_base_type.is_meta_type && !p_is_constructor && (p_base_type.kind == GDScriptParser::DataType::SCRIPT || p_base_type.kind == GDScriptParser::DataType::CLASS)) {
  3902. MethodInfo info;
  3903. StringName script_class = p_base_type.kind == GDScriptParser::DataType::SCRIPT ? p_base_type.script_type->get_class_name() : StringName(GDScript::get_class_static());
  3904. if (ClassDB::get_method_info(script_class, function_name, &info)) {
  3905. return function_signature_from_info(info, r_return_type, r_par_types, r_default_arg_count, r_static, r_vararg);
  3906. }
  3907. }
  3908. if (p_is_constructor) {
  3909. // Native types always have a default constructor.
  3910. r_return_type = p_base_type;
  3911. r_return_type.type_source = GDScriptParser::DataType::ANNOTATED_EXPLICIT;
  3912. r_return_type.is_meta_type = false;
  3913. return true;
  3914. }
  3915. MethodInfo info;
  3916. if (ClassDB::get_method_info(base_native, function_name, &info)) {
  3917. bool valid = function_signature_from_info(info, r_return_type, r_par_types, r_default_arg_count, r_static, r_vararg);
  3918. if (valid && Engine::get_singleton()->has_singleton(base_native)) {
  3919. r_static = true;
  3920. }
  3921. return valid;
  3922. }
  3923. return false;
  3924. }
  3925. bool GDScriptAnalyzer::function_signature_from_info(const MethodInfo &p_info, GDScriptParser::DataType &r_return_type, List<GDScriptParser::DataType> &r_par_types, int &r_default_arg_count, bool &r_static, bool &r_vararg) {
  3926. r_return_type = type_from_property(p_info.return_val);
  3927. r_default_arg_count = p_info.default_arguments.size();
  3928. r_vararg = (p_info.flags & METHOD_FLAG_VARARG) != 0;
  3929. r_static = (p_info.flags & METHOD_FLAG_STATIC) != 0;
  3930. for (const PropertyInfo &E : p_info.arguments) {
  3931. r_par_types.push_back(type_from_property(E, true));
  3932. }
  3933. return true;
  3934. }
  3935. void GDScriptAnalyzer::validate_call_arg(const MethodInfo &p_method, const GDScriptParser::CallNode *p_call) {
  3936. List<GDScriptParser::DataType> arg_types;
  3937. for (const PropertyInfo &E : p_method.arguments) {
  3938. arg_types.push_back(type_from_property(E, true));
  3939. }
  3940. validate_call_arg(arg_types, p_method.default_arguments.size(), (p_method.flags & METHOD_FLAG_VARARG) != 0, p_call);
  3941. }
  3942. void GDScriptAnalyzer::validate_call_arg(const List<GDScriptParser::DataType> &p_par_types, int p_default_args_count, bool p_is_vararg, const GDScriptParser::CallNode *p_call) {
  3943. if (p_call->arguments.size() < p_par_types.size() - p_default_args_count) {
  3944. push_error(vformat(R"*(Too few arguments for "%s()" call. Expected at least %d but received %d.)*", p_call->function_name, p_par_types.size() - p_default_args_count, p_call->arguments.size()), p_call);
  3945. }
  3946. if (!p_is_vararg && p_call->arguments.size() > p_par_types.size()) {
  3947. push_error(vformat(R"*(Too many arguments for "%s()" call. Expected at most %d but received %d.)*", p_call->function_name, p_par_types.size(), p_call->arguments.size()), p_call->arguments[p_par_types.size()]);
  3948. }
  3949. for (int i = 0; i < p_call->arguments.size(); i++) {
  3950. if (i >= p_par_types.size()) {
  3951. // Already on vararg place.
  3952. break;
  3953. }
  3954. GDScriptParser::DataType par_type = p_par_types[i];
  3955. if (par_type.is_hard_type() && p_call->arguments[i]->is_constant) {
  3956. update_const_expression_builtin_type(p_call->arguments[i], par_type, "pass");
  3957. }
  3958. GDScriptParser::DataType arg_type = p_call->arguments[i]->get_datatype();
  3959. if ((arg_type.is_variant() || !arg_type.is_hard_type()) && !(par_type.is_hard_type() && par_type.is_variant())) {
  3960. // Argument can be anything, so this is unsafe.
  3961. mark_node_unsafe(p_call->arguments[i]);
  3962. } else if (par_type.is_hard_type() && !is_type_compatible(par_type, arg_type, true)) {
  3963. // Supertypes are acceptable for dynamic compliance, but it's unsafe.
  3964. mark_node_unsafe(p_call);
  3965. if (!is_type_compatible(arg_type, par_type)) {
  3966. push_error(vformat(R"*(Invalid argument for "%s()" function: argument %d should be "%s" but is "%s".)*",
  3967. p_call->function_name, i + 1, par_type.to_string(), arg_type.to_string()),
  3968. p_call->arguments[i]);
  3969. }
  3970. #ifdef DEBUG_ENABLED
  3971. } else if (par_type.kind == GDScriptParser::DataType::BUILTIN && par_type.builtin_type == Variant::INT && arg_type.kind == GDScriptParser::DataType::BUILTIN && arg_type.builtin_type == Variant::FLOAT) {
  3972. parser->push_warning(p_call, GDScriptWarning::NARROWING_CONVERSION, p_call->function_name);
  3973. #endif
  3974. }
  3975. }
  3976. }
  3977. #ifdef DEBUG_ENABLED
  3978. bool GDScriptAnalyzer::is_shadowing(GDScriptParser::IdentifierNode *p_local, const String &p_context) {
  3979. const StringName &name = p_local->name;
  3980. GDScriptParser::DataType base = parser->current_class->get_datatype();
  3981. GDScriptParser::ClassNode *base_class = base.class_type;
  3982. {
  3983. List<MethodInfo> gdscript_funcs;
  3984. GDScriptLanguage::get_singleton()->get_public_functions(&gdscript_funcs);
  3985. for (MethodInfo &info : gdscript_funcs) {
  3986. if (info.name == name) {
  3987. parser->push_warning(p_local, GDScriptWarning::SHADOWED_GLOBAL_IDENTIFIER, p_context, name, "built-in function");
  3988. return true;
  3989. }
  3990. }
  3991. if (Variant::has_utility_function(name)) {
  3992. parser->push_warning(p_local, GDScriptWarning::SHADOWED_GLOBAL_IDENTIFIER, p_context, name, "built-in function");
  3993. return true;
  3994. } else if (ClassDB::class_exists(name)) {
  3995. parser->push_warning(p_local, GDScriptWarning::SHADOWED_GLOBAL_IDENTIFIER, p_context, name, "global class");
  3996. return true;
  3997. }
  3998. }
  3999. while (base_class != nullptr) {
  4000. if (base_class->has_member(name)) {
  4001. parser->push_warning(p_local, GDScriptWarning::SHADOWED_VARIABLE, p_context, p_local->name, base_class->get_member(name).get_type_name(), itos(base_class->get_member(name).get_line()));
  4002. return true;
  4003. }
  4004. base_class = base_class->base_type.class_type;
  4005. }
  4006. StringName parent = base.native_type;
  4007. while (parent != StringName()) {
  4008. ERR_FAIL_COND_V_MSG(!class_exists(parent), false, "Non-existent native base class.");
  4009. if (ClassDB::has_method(parent, name, true)) {
  4010. parser->push_warning(p_local, GDScriptWarning::SHADOWED_VARIABLE_BASE_CLASS, p_context, p_local->name, "method", parent);
  4011. return true;
  4012. } else if (ClassDB::has_signal(parent, name, true)) {
  4013. parser->push_warning(p_local, GDScriptWarning::SHADOWED_VARIABLE_BASE_CLASS, p_context, p_local->name, "signal", parent);
  4014. return true;
  4015. } else if (ClassDB::has_property(parent, name, true)) {
  4016. parser->push_warning(p_local, GDScriptWarning::SHADOWED_VARIABLE_BASE_CLASS, p_context, p_local->name, "property", parent);
  4017. return true;
  4018. } else if (ClassDB::has_integer_constant(parent, name, true)) {
  4019. parser->push_warning(p_local, GDScriptWarning::SHADOWED_VARIABLE_BASE_CLASS, p_context, p_local->name, "constant", parent);
  4020. return true;
  4021. } else if (ClassDB::has_enum(parent, name, true)) {
  4022. parser->push_warning(p_local, GDScriptWarning::SHADOWED_VARIABLE_BASE_CLASS, p_context, p_local->name, "enum", parent);
  4023. return true;
  4024. }
  4025. parent = ClassDB::get_parent_class(parent);
  4026. }
  4027. return false;
  4028. }
  4029. #endif
  4030. GDScriptParser::DataType GDScriptAnalyzer::get_operation_type(Variant::Operator p_operation, const GDScriptParser::DataType &p_a, bool &r_valid, const GDScriptParser::Node *p_source) {
  4031. // Unary version.
  4032. GDScriptParser::DataType nil_type;
  4033. nil_type.builtin_type = Variant::NIL;
  4034. nil_type.type_source = GDScriptParser::DataType::ANNOTATED_INFERRED;
  4035. return get_operation_type(p_operation, p_a, nil_type, r_valid, p_source);
  4036. }
  4037. GDScriptParser::DataType GDScriptAnalyzer::get_operation_type(Variant::Operator p_operation, const GDScriptParser::DataType &p_a, const GDScriptParser::DataType &p_b, bool &r_valid, const GDScriptParser::Node *p_source) {
  4038. Variant::Type a_type = p_a.builtin_type;
  4039. Variant::Type b_type = p_b.builtin_type;
  4040. if (p_a.kind == GDScriptParser::DataType::ENUM) {
  4041. if (p_a.is_meta_type) {
  4042. a_type = Variant::DICTIONARY;
  4043. } else {
  4044. a_type = Variant::INT;
  4045. }
  4046. }
  4047. if (p_b.kind == GDScriptParser::DataType::ENUM) {
  4048. if (p_b.is_meta_type) {
  4049. b_type = Variant::DICTIONARY;
  4050. } else {
  4051. b_type = Variant::INT;
  4052. }
  4053. }
  4054. Variant::ValidatedOperatorEvaluator op_eval = Variant::get_validated_operator_evaluator(p_operation, a_type, b_type);
  4055. bool hard_operation = p_a.is_hard_type() && p_b.is_hard_type();
  4056. bool validated = op_eval != nullptr;
  4057. GDScriptParser::DataType result;
  4058. if (validated) {
  4059. r_valid = true;
  4060. result.type_source = hard_operation ? GDScriptParser::DataType::ANNOTATED_INFERRED : GDScriptParser::DataType::INFERRED;
  4061. result.kind = GDScriptParser::DataType::BUILTIN;
  4062. result.builtin_type = Variant::get_operator_return_type(p_operation, a_type, b_type);
  4063. } else {
  4064. r_valid = !hard_operation;
  4065. result.kind = GDScriptParser::DataType::VARIANT;
  4066. }
  4067. return result;
  4068. }
  4069. // TODO: Add safe/unsafe return variable (for variant cases)
  4070. bool GDScriptAnalyzer::is_type_compatible(const GDScriptParser::DataType &p_target, const GDScriptParser::DataType &p_source, bool p_allow_implicit_conversion, const GDScriptParser::Node *p_source_node) {
  4071. // These return "true" so it doesn't affect users negatively.
  4072. ERR_FAIL_COND_V_MSG(!p_target.is_set(), true, "Parser bug (please report): Trying to check compatibility of unset target type");
  4073. ERR_FAIL_COND_V_MSG(!p_source.is_set(), true, "Parser bug (please report): Trying to check compatibility of unset value type");
  4074. if (p_target.kind == GDScriptParser::DataType::VARIANT) {
  4075. // Variant can receive anything.
  4076. return true;
  4077. }
  4078. if (p_source.kind == GDScriptParser::DataType::VARIANT) {
  4079. // TODO: This is acceptable but unsafe. Make sure unsafe line is set.
  4080. return true;
  4081. }
  4082. if (p_target.kind == GDScriptParser::DataType::BUILTIN) {
  4083. bool valid = p_source.kind == GDScriptParser::DataType::BUILTIN && p_target.builtin_type == p_source.builtin_type;
  4084. if (!valid && p_allow_implicit_conversion) {
  4085. valid = Variant::can_convert_strict(p_source.builtin_type, p_target.builtin_type);
  4086. }
  4087. if (!valid && p_target.builtin_type == Variant::INT && p_source.kind == GDScriptParser::DataType::ENUM && !p_source.is_meta_type) {
  4088. // Enum value is also integer.
  4089. valid = true;
  4090. }
  4091. if (valid && p_target.builtin_type == Variant::ARRAY && p_source.builtin_type == Variant::ARRAY) {
  4092. // Check the element type.
  4093. if (p_target.has_container_element_type() && p_source.has_container_element_type()) {
  4094. valid = p_target.get_container_element_type() == p_source.get_container_element_type();
  4095. }
  4096. }
  4097. return valid;
  4098. }
  4099. if (p_target.kind == GDScriptParser::DataType::ENUM) {
  4100. if (p_source.kind == GDScriptParser::DataType::BUILTIN && p_source.builtin_type == Variant::INT) {
  4101. #ifdef DEBUG_ENABLED
  4102. if (p_source_node) {
  4103. parser->push_warning(p_source_node, GDScriptWarning::INT_AS_ENUM_WITHOUT_CAST);
  4104. }
  4105. #endif
  4106. return true;
  4107. }
  4108. if (p_source.kind == GDScriptParser::DataType::ENUM) {
  4109. if (p_source.native_type == p_target.native_type) {
  4110. return true;
  4111. }
  4112. }
  4113. return false;
  4114. }
  4115. // From here on the target type is an object, so we have to test polymorphism.
  4116. if (p_source.kind == GDScriptParser::DataType::BUILTIN && p_source.builtin_type == Variant::NIL) {
  4117. // null is acceptable in object.
  4118. return true;
  4119. }
  4120. StringName src_native;
  4121. Ref<Script> src_script;
  4122. const GDScriptParser::ClassNode *src_class = nullptr;
  4123. switch (p_source.kind) {
  4124. case GDScriptParser::DataType::NATIVE:
  4125. if (p_target.kind != GDScriptParser::DataType::NATIVE) {
  4126. // Non-native class cannot be supertype of native.
  4127. return false;
  4128. }
  4129. if (p_source.is_meta_type) {
  4130. src_native = GDScriptNativeClass::get_class_static();
  4131. } else {
  4132. src_native = p_source.native_type;
  4133. }
  4134. break;
  4135. case GDScriptParser::DataType::SCRIPT:
  4136. if (p_target.kind == GDScriptParser::DataType::CLASS) {
  4137. // A script type cannot be a subtype of a GDScript class.
  4138. return false;
  4139. }
  4140. if (p_source.is_meta_type) {
  4141. src_native = p_source.script_type->get_class_name();
  4142. } else {
  4143. src_script = p_source.script_type;
  4144. src_native = src_script->get_instance_base_type();
  4145. }
  4146. break;
  4147. case GDScriptParser::DataType::CLASS:
  4148. if (p_source.is_meta_type) {
  4149. src_native = GDScript::get_class_static();
  4150. } else {
  4151. src_class = p_source.class_type;
  4152. const GDScriptParser::ClassNode *base = src_class;
  4153. while (base->base_type.kind == GDScriptParser::DataType::CLASS) {
  4154. base = base->base_type.class_type;
  4155. }
  4156. src_native = base->base_type.native_type;
  4157. src_script = base->base_type.script_type;
  4158. }
  4159. break;
  4160. case GDScriptParser::DataType::VARIANT:
  4161. case GDScriptParser::DataType::BUILTIN:
  4162. case GDScriptParser::DataType::ENUM:
  4163. case GDScriptParser::DataType::RESOLVING:
  4164. case GDScriptParser::DataType::UNRESOLVED:
  4165. break; // Already solved before.
  4166. }
  4167. switch (p_target.kind) {
  4168. case GDScriptParser::DataType::NATIVE: {
  4169. if (p_target.is_meta_type) {
  4170. return ClassDB::is_parent_class(src_native, GDScriptNativeClass::get_class_static());
  4171. }
  4172. return ClassDB::is_parent_class(src_native, p_target.native_type);
  4173. }
  4174. case GDScriptParser::DataType::SCRIPT:
  4175. if (p_target.is_meta_type) {
  4176. return ClassDB::is_parent_class(src_native, p_target.script_type->get_class_name());
  4177. }
  4178. while (src_script.is_valid()) {
  4179. if (src_script == p_target.script_type) {
  4180. return true;
  4181. }
  4182. src_script = src_script->get_base_script();
  4183. }
  4184. return false;
  4185. case GDScriptParser::DataType::CLASS:
  4186. if (p_target.is_meta_type) {
  4187. return ClassDB::is_parent_class(src_native, GDScript::get_class_static());
  4188. }
  4189. while (src_class != nullptr) {
  4190. if (src_class == p_target.class_type || src_class->fqcn == p_target.class_type->fqcn) {
  4191. return true;
  4192. }
  4193. src_class = src_class->base_type.class_type;
  4194. }
  4195. return false;
  4196. case GDScriptParser::DataType::VARIANT:
  4197. case GDScriptParser::DataType::BUILTIN:
  4198. case GDScriptParser::DataType::ENUM:
  4199. case GDScriptParser::DataType::RESOLVING:
  4200. case GDScriptParser::DataType::UNRESOLVED:
  4201. break; // Already solved before.
  4202. }
  4203. return false;
  4204. }
  4205. void GDScriptAnalyzer::push_error(const String &p_message, const GDScriptParser::Node *p_origin) {
  4206. mark_node_unsafe(p_origin);
  4207. parser->push_error(p_message, p_origin);
  4208. }
  4209. void GDScriptAnalyzer::mark_node_unsafe(const GDScriptParser::Node *p_node) {
  4210. #ifdef DEBUG_ENABLED
  4211. if (p_node == nullptr) {
  4212. return;
  4213. }
  4214. for (int i = p_node->start_line; i <= p_node->end_line; i++) {
  4215. parser->unsafe_lines.insert(i);
  4216. }
  4217. #endif
  4218. }
  4219. void GDScriptAnalyzer::downgrade_node_type_source(GDScriptParser::Node *p_node) {
  4220. GDScriptParser::IdentifierNode *identifier = nullptr;
  4221. if (p_node->type == GDScriptParser::Node::IDENTIFIER) {
  4222. identifier = static_cast<GDScriptParser::IdentifierNode *>(p_node);
  4223. } else if (p_node->type == GDScriptParser::Node::SUBSCRIPT) {
  4224. GDScriptParser::SubscriptNode *subscript = static_cast<GDScriptParser::SubscriptNode *>(p_node);
  4225. if (subscript->is_attribute) {
  4226. identifier = subscript->attribute;
  4227. }
  4228. }
  4229. if (identifier == nullptr) {
  4230. return;
  4231. }
  4232. GDScriptParser::Node *source = nullptr;
  4233. switch (identifier->source) {
  4234. case GDScriptParser::IdentifierNode::MEMBER_VARIABLE: {
  4235. source = identifier->variable_source;
  4236. } break;
  4237. case GDScriptParser::IdentifierNode::FUNCTION_PARAMETER: {
  4238. source = identifier->parameter_source;
  4239. } break;
  4240. case GDScriptParser::IdentifierNode::LOCAL_VARIABLE: {
  4241. source = identifier->variable_source;
  4242. } break;
  4243. case GDScriptParser::IdentifierNode::LOCAL_ITERATOR: {
  4244. source = identifier->bind_source;
  4245. } break;
  4246. default:
  4247. break;
  4248. }
  4249. if (source == nullptr) {
  4250. return;
  4251. }
  4252. GDScriptParser::DataType datatype;
  4253. datatype.kind = GDScriptParser::DataType::VARIANT;
  4254. source->set_datatype(datatype);
  4255. }
  4256. void GDScriptAnalyzer::mark_lambda_use_self() {
  4257. for (GDScriptParser::LambdaNode *lambda : lambda_stack) {
  4258. lambda->use_self = true;
  4259. }
  4260. }
  4261. bool GDScriptAnalyzer::class_exists(const StringName &p_class) const {
  4262. return ClassDB::class_exists(p_class) && ClassDB::is_class_exposed(p_class);
  4263. }
  4264. Ref<GDScriptParserRef> GDScriptAnalyzer::get_parser_for(const String &p_path) {
  4265. Ref<GDScriptParserRef> ref;
  4266. if (depended_parsers.has(p_path)) {
  4267. ref = depended_parsers[p_path];
  4268. } else {
  4269. Error err = OK;
  4270. ref = GDScriptCache::get_parser(p_path, GDScriptParserRef::EMPTY, err, parser->script_path);
  4271. if (ref.is_valid()) {
  4272. depended_parsers[p_path] = ref;
  4273. }
  4274. }
  4275. return ref;
  4276. }
  4277. Error GDScriptAnalyzer::resolve_inheritance() {
  4278. // Apply annotations.
  4279. for (GDScriptParser::AnnotationNode *&E : parser->head->annotations) {
  4280. resolve_annotation(E);
  4281. E->apply(parser, parser->head);
  4282. }
  4283. return resolve_class_inheritance(parser->head, true);
  4284. }
  4285. Error GDScriptAnalyzer::resolve_interface() {
  4286. resolve_class_interface(parser->head, true);
  4287. return parser->errors.is_empty() ? OK : ERR_PARSE_ERROR;
  4288. }
  4289. Error GDScriptAnalyzer::resolve_body() {
  4290. resolve_class_body(parser->head, true);
  4291. return parser->errors.is_empty() ? OK : ERR_PARSE_ERROR;
  4292. }
  4293. Error GDScriptAnalyzer::resolve_dependencies() {
  4294. for (KeyValue<String, Ref<GDScriptParserRef>> &K : depended_parsers) {
  4295. if (K.value.is_null()) {
  4296. return ERR_PARSE_ERROR;
  4297. }
  4298. K.value->raise_status(GDScriptParserRef::INHERITANCE_SOLVED);
  4299. }
  4300. return parser->errors.is_empty() ? OK : ERR_PARSE_ERROR;
  4301. }
  4302. Error GDScriptAnalyzer::analyze() {
  4303. parser->errors.clear();
  4304. Error err = OK;
  4305. err = resolve_inheritance();
  4306. if (err) {
  4307. return err;
  4308. }
  4309. resolve_interface();
  4310. resolve_body();
  4311. if (!parser->errors.is_empty()) {
  4312. return ERR_PARSE_ERROR;
  4313. }
  4314. return resolve_dependencies();
  4315. }
  4316. GDScriptAnalyzer::GDScriptAnalyzer(GDScriptParser *p_parser) {
  4317. parser = p_parser;
  4318. }