gdscript_analyzer.cpp 208 KB

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