2
0

gdscript_analyzer.cpp 196 KB

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