123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191 |
- #include "BfAutoComplete.h"
- #include "BfParser.h"
- #include "BfExprEvaluator.h"
- #include "BfSourceClassifier.h"
- #include "BfResolvePass.h"
- #include "BfFixits.h"
- #include "BfResolvedTypeUtils.h"
- #include "CeMachine.h"
- #include "CeDebugger.h"
- #define FTS_FUZZY_MATCH_IMPLEMENTATION
- #include "../third_party/FtsFuzzyMatch.h"
- #include "BeefySysLib/util/UTF8.h"
- #pragma warning(disable:4996)
- using namespace llvm;
- USING_NS_BF;
- AutoCompleteBase::AutoCompleteBase()
- {
- mIsGetDefinition = false;
- mIsAutoComplete = true;
- mDoFuzzyAutoComplete = false;
- mInsertStartIdx = -1;
- mInsertEndIdx = -1;
- }
- AutoCompleteBase::~AutoCompleteBase()
- {
- Clear();
- }
- AutoCompleteEntry* AutoCompleteBase::AddEntry(const AutoCompleteEntry& entry, const StringImpl& filter)
- {
- uint8 matches[256];
- if (!DoesFilterMatch(entry.mDisplay, filter.c_str(), entry.mScore, matches, 256) || (entry.mNamePrefixCount < 0))
- return NULL;
- entry.mMatchesLength = mDoFuzzyAutoComplete ? u8_strlen((char*)filter.c_str()) : 0;
- entry.mMatches = (entry.mMatchesLength > 0) ? matches : nullptr;
- auto result = AddEntry(entry);
- // Reset matches because the array will be invalid after return
- entry.mMatches = nullptr;
- entry.mMatchesLength = 0;
- return result;
- }
- AutoCompleteEntry* AutoCompleteBase::AddEntry(const AutoCompleteEntry& entry, const char* filter)
- {
- uint8 matches[256];
- if (!DoesFilterMatch(entry.mDisplay, filter, entry.mScore, matches, 256) || (entry.mNamePrefixCount < 0))
- return NULL;
- entry.mMatchesLength = mDoFuzzyAutoComplete ? u8_strlen((char*)filter) : 0;
- entry.mMatches = (entry.mMatchesLength > 0) ? matches : nullptr;
- auto result = AddEntry(entry);
- // Reset matches because the array will be invalid after return
- entry.mMatches = nullptr;
- entry.mMatchesLength = 0;
- return result;
- }
- AutoCompleteEntry* AutoCompleteBase::AddEntry(const AutoCompleteEntry& entry)
- {
- if (mEntriesSet.mAllocSize == 0)
- {
- mEntriesSet.Reserve(128);
- }
- AutoCompleteEntry* insertedEntry = NULL;
- if (mEntriesSet.TryAdd(entry, &insertedEntry))
- {
- insertedEntry->mEntryType = entry.mEntryType;
- const char* display = entry.mDisplay;
- int size = (int)strlen(display) + 1;
- insertedEntry->mDisplay = (char*)mAlloc.AllocBytes(size);
- memcpy((char*)insertedEntry->mDisplay, display, size);
- if (entry.mMatchesLength > 0)
- {
- insertedEntry->mMatches = (uint8*)mAlloc.AllocBytes(insertedEntry->mMatchesLength);
- memcpy((char*)insertedEntry->mMatches, entry.mMatches, insertedEntry->mMatchesLength);
- }
- }
- return insertedEntry;
- }
- bool AutoCompleteBase::DoesFilterMatch(const char* entry, const char* filter, int& score, uint8* matches, int maxMatches)
- {
- if (mIsGetDefinition)
- {
- int entryLen = (int)strlen(entry);
- if (entry[entryLen - 1] == '=')
- return (strncmp(filter, entry, entryLen - 1) == 0);
- return (strcmp(filter, entry) == 0);
- }
- if (!mIsAutoComplete)
- return false;
- if (filter[0] == '\0')
- return true;
- int filterLen = (int)strlen(filter);
- int entryLen = (int)strlen(entry);
- if (filterLen > entryLen)
- return false;
- if (mDoFuzzyAutoComplete)
- {
- return fts::fuzzy_match(filter, entry, score, matches, maxMatches);
- }
- else
- {
- bool hasUnderscore = false;
- bool checkInitials = filterLen > 1;
- for (int i = 0; i < (int)filterLen; i++)
- {
- char c = filter[i];
- if (c == '_')
- hasUnderscore = true;
- else if (islower((uint8)filter[i]))
- checkInitials = false;
- }
- if (hasUnderscore)
- return strnicmp(filter, entry, filterLen) == 0;
- char initialStr[256];
- char* initialStrP = initialStr;
- //String initialStr;
- bool prevWasUnderscore = false;
- for (int entryIdx = 0; entryIdx < entryLen; entryIdx++)
- {
- char entryC = entry[entryIdx];
- if (entryC == '_')
- {
- prevWasUnderscore = true;
- continue;
- }
- if ((entryIdx == 0) || (prevWasUnderscore) || (isupper((uint8)entryC) || (isdigit((uint8)entryC))))
- {
- if (strnicmp(filter, entry + entryIdx, filterLen) == 0)
- return true;
- if (checkInitials)
- *(initialStrP++) = entryC;
- }
- prevWasUnderscore = false;
- if (filterLen == 1)
- break; // Don't check inners for single-character case
- }
- if (!checkInitials)
- return false;
- *(initialStrP++) = 0;
- return strnicmp(filter, initialStr, filterLen) == 0;
- }
- }
- void AutoCompleteBase::Clear()
- {
- //mEntries.clear();
- mAlloc.Clear();
- mEntriesSet.Clear();
- }
- //////////////////////////////////////////////////////////////////////////
- BfAutoComplete::BfAutoComplete(BfResolveType resolveType, bool doFuzzyAutoComplete)
- {
- mResolveType = resolveType;
- mModule = NULL;
- mCompiler = NULL;
- mSystem = NULL;
- mIsCapturingMethodMatchInfo = false;
- mIgnoreFixits = false;
- mHasFriendSet = false;
- mUncertain = false;
- mForceAllowNonStatic = false;
- mMethodMatchInfo = NULL;
- mIsGetDefinition =
- (resolveType == BfResolveType_GetSymbolInfo) ||
- (resolveType == BfResolveType_GoToDefinition);
- mIsAutoComplete = (resolveType == BfResolveType_Autocomplete);
- mDoFuzzyAutoComplete = doFuzzyAutoComplete;
- mGetDefinitionNode = NULL;
- mShowAttributeProperties = NULL;
- mIdentifierUsed = NULL;
- //mReplaceMethodInstance = NULL;
- mReplaceLocalId = -1;
- mDefType = NULL;
- mDefField = NULL;
- mDefMethod = NULL;
- mDefProp = NULL;
- mDefMethodGenericParamIdx = -1;
- mDefTypeGenericParamIdx = -1;
- mCursorLineStart = -1;
- mCursorLineEnd = -1;
- }
- BfAutoComplete::~BfAutoComplete()
- {
- Clear();
- RemoveMethodMatchInfo();
- }
- void BfAutoComplete::SetModule(BfModule* module)
- {
- if (module != NULL)
- {
- mModule = module;
- mCompiler = mModule->mCompiler;
- mSystem = mCompiler->mSystem;
- }
- else
- {
- mModule = NULL;
- mCompiler = NULL;
- mSystem = NULL;
- }
- }
- void BfAutoComplete::Clear()
- {
- if (mMethodMatchInfo != NULL)
- {
- if (mMethodMatchInfo->mInstanceList.size() == 0)
- {
- delete mMethodMatchInfo;
- mMethodMatchInfo = NULL;
- }
- else
- {
- // Keep mBestIdx - for when we match but then backspace
- mMethodMatchInfo->mPrevBestIdx = mMethodMatchInfo->mBestIdx;
- mMethodMatchInfo->mMostParamsMatched = 0;
- mMethodMatchInfo->mHadExactMatch = false;
- mMethodMatchInfo->mInstanceList.Clear();
- mMethodMatchInfo->mSrcPositions.Clear();
- }
- }
- mInsertStartIdx = -1;
- mInsertEndIdx = -1;
- mIsCapturingMethodMatchInfo = false;
- AutoCompleteBase::Clear();
- }
- void BfAutoComplete::RemoveMethodMatchInfo()
- {
- mIsCapturingMethodMatchInfo = false;
- delete mMethodMatchInfo;
- mMethodMatchInfo = NULL;
- }
- void BfAutoComplete::ClearMethodMatchEntries()
- {
- mMethodMatchInfo->mInstanceList.Clear();
- }
- int BfAutoComplete::GetCursorIdx(BfAstNode* node)
- {
- if (node == NULL)
- return -1;
- // if (!node->IsFromParser(mCompiler->mResolvePassData->mParser))
- // return -1;
- if (node->IsTemporary())
- return false;
- auto bfParser = node->GetSourceData()->ToParser();
- if (bfParser == NULL)
- return -1;
- if ((bfParser->mParserFlags & ParserFlag_Autocomplete) == 0)
- return -1;
- return bfParser->mCursorIdx;
- }
- bool BfAutoComplete::IsAutocompleteNode(BfAstNode* node, int lengthAdd, int startAdd)
- {
- if (mModule == NULL)
- return false;
- if (node == NULL)
- return false;
- // if (!node->IsFromParser(mCompiler->mResolvePassData->mParser))
- // return false;
- if (node->IsTemporary())
- return false;
- auto bfParser = node->GetSourceData()->ToParser();
- if (bfParser == NULL)
- return false;
- if ((bfParser->mParserFlags & ParserFlag_Autocomplete) == 0)
- return false;
- //if (mCompiler->mResolvePassData->mResolveType != BfResolveType_Autocomplete)
- lengthAdd++;
- int cursorIdx = bfParser->mCursorCheckIdx;
- int nodeSrcStart = node->GetSrcStart();
- if ((cursorIdx < nodeSrcStart + startAdd) || (cursorIdx >= node->GetSrcEnd() + lengthAdd))
- return false;
- return true;
- }
- bool BfAutoComplete::IsAutocompleteNode(BfAstNode* startNode, BfAstNode* endNode, int lengthAdd, int startAdd)
- {
- if ((startNode == NULL) || (endNode == NULL))
- return false;
- // if (!startNode->IsFromParser(mCompiler->mResolvePassData->mParser))
- // return false;
- if (startNode->IsTemporary())
- return false;
- auto bfParser = startNode->GetSourceData()->ToParser();
- if (bfParser == NULL)
- return false;
- if ((bfParser->mParserFlags & ParserFlag_Autocomplete) == 0)
- return false;
- //if (mCompiler->mResolvePassData->mResolveType != BfResolveType_Autocomplete)
- lengthAdd++;
- int cursorIdx = bfParser->mCursorCheckIdx;
- int nodeSrcStart = startNode->GetSrcStart();
- if ((cursorIdx < nodeSrcStart + startAdd) || (cursorIdx >= endNode->GetSrcEnd() + lengthAdd))
- return false;
- return true;
- }
- bool BfAutoComplete::IsAutocompleteLineNode(BfAstNode* node)
- {
- if (node == NULL)
- return false;
- // if (!node->IsFromParser(mCompiler->mResolvePassData->mParser))
- // return false;
- if (node->IsTemporary())
- return false;
- auto bfParser = node->GetSourceData()->ToParser();
- if (bfParser == NULL)
- return false;
- if ((bfParser->mParserFlags & ParserFlag_Autocomplete) == 0)
- return false;
- int startAdd = 0;
- if (mCursorLineStart == -1)
- {
- auto nodeSource = node->GetSourceData();
- mCursorLineStart = bfParser->mCursorIdx;
- while (mCursorLineStart > 0)
- {
- if (nodeSource->mSrc[mCursorLineStart - 1] == '\n')
- break;
- mCursorLineStart--;
- }
- mCursorLineEnd = bfParser->mCursorIdx;
- while (mCursorLineEnd < nodeSource->mSrcLength)
- {
- if (nodeSource->mSrc[mCursorLineEnd] == '\n')
- break;
- mCursorLineEnd++;
- }
- }
- int srcStart = node->GetSrcStart();
- return (srcStart >= mCursorLineStart) && (srcStart <= mCursorLineEnd);
- }
- // The parser thought this was a type reference but it may not be
- BfTypedValue BfAutoComplete::LookupTypeRefOrIdentifier(BfAstNode* node, bool* isStatic, BfEvalExprFlags evalExprFlags, BfType* expectingType)
- {
- SetAndRestoreValue<bool> prevIgnoreClassifying(mModule->mIsInsideAutoComplete, true);
- auto _FixType = [](const BfTypedValue& typedValue)
- {
- if ((typedValue.mType != NULL) && (typedValue.mType->IsAllocType()))
- {
- BfTypedValue ret = typedValue;
- ret.mType = ret.mType->GetUnderlyingType();
- return ret;
- }
- return typedValue;
- };
- if (auto typeRef = BfNodeDynCast<BfTypeReference>(node))
- {
- if (auto namedTypeRef = BfNodeDynCast<BfNamedTypeReference>(typeRef))
- {
- BfExprEvaluator exprEvaluator(mModule);
- auto identifierResult = exprEvaluator.LookupIdentifier(namedTypeRef->mNameNode);
- if (identifierResult)
- return identifierResult;
- identifierResult = exprEvaluator.GetResult();// We need 'GetResult' to read property values
- if (identifierResult.HasType())
- return _FixType(identifierResult);
- }
- else if (auto qualifiedTypeRef = BfNodeDynCast<BfQualifiedTypeReference>(typeRef))
- {
- auto leftValue = LookupTypeRefOrIdentifier(qualifiedTypeRef->mLeft, isStatic);
- if (leftValue.mType)
- {
- if (leftValue.mType->IsPointer())
- {
- mModule->LoadValue(leftValue);
- leftValue.mType = leftValue.mType->GetUnderlyingType();
- leftValue.mKind = BfTypedValueKind_Addr;
- }
- if (auto rightNamedTypeRef = BfNodeDynCast<BfNamedTypeReference>(qualifiedTypeRef->mRight))
- {
- // This keeps the classifier from colorizing properties - this causes 'flashing' when we go back over this with a resolve pass
- // that wouldn't catch this
- SetAndRestoreValue<bool> prevClassifier(mModule->mCompiler->mResolvePassData->mIsClassifying, false);
- BfExprEvaluator exprEvaluator(mModule);
- auto fieldResult = exprEvaluator.LookupField(qualifiedTypeRef->mRight, leftValue, rightNamedTypeRef->mNameNode->ToString());
- if (!fieldResult) // Was property?
- fieldResult = exprEvaluator.GetResult();
- if (fieldResult.HasType())
- {
- *isStatic = false;
- return _FixType(fieldResult);
- }
- }
- }
- }
- BfResolveTypeRefFlags resolveTypeRefFlags = BfResolveTypeRefFlag_AllowUnboundGeneric;
- if (mResolveType == BfResolveType_VerifyTypeName)
- resolveTypeRefFlags = (BfResolveTypeRefFlags)(resolveTypeRefFlags | BfResolveTypeRefFlag_ForceUnboundGeneric);
- BfType* type = mModule->ResolveTypeRef(typeRef, BfPopulateType_Identity, resolveTypeRefFlags);
- if (type != NULL)
- {
- *isStatic = true;
- return _FixType(BfTypedValue(type));
- }
- }
- if (auto identifier = BfNodeDynCast<BfIdentifierNode>(node))
- {
- BfExprEvaluator exprEvaluator(mModule);
- auto identifierResult = exprEvaluator.LookupIdentifier(identifier, false, NULL);
- if (!identifierResult)
- identifierResult = exprEvaluator.GetResult();
- if (identifierResult)
- return _FixType(identifierResult);
- if (auto qualifiedIdentifier = BfNodeDynCast<BfQualifiedNameNode>(node))
- {
- bool leftIsStatic = false;
- auto leftValue = LookupTypeRefOrIdentifier(qualifiedIdentifier->mLeft, &leftIsStatic);
- if (leftValue.mType)
- {
- auto findName = qualifiedIdentifier->mRight->ToString();
- if (findName == "base")
- {
- return BfTypedValue(leftValue);
- }
- BfExprEvaluator exprEvaluator(mModule);
- auto fieldResult = exprEvaluator.LookupField(node, leftValue, findName);
- if (fieldResult)
- return fieldResult;
- auto result = exprEvaluator.GetResult();
- if (result)
- return _FixType(result);
- }
- }
- auto type = mModule->ResolveTypeRef(identifier, NULL);
- if (type != NULL)
- {
- *isStatic = true;
- return _FixType(BfTypedValue(type));
- }
- }
- else if (auto memberRefExpr = BfNodeDynCast<BfMemberReferenceExpression>(node))
- {
- return _FixType(mModule->CreateValueFromExpression(memberRefExpr, expectingType, evalExprFlags));
- }
- else if (auto parenExpr = BfNodeDynCast<BfParenthesizedExpression>(node))
- {
- // Don't pass BfEvalExprFlags_IgnoreNullConditional, since parenExprs end nullable chains and we actually
- // DO want the nullable at this point
- return _FixType(mModule->CreateValueFromExpression(parenExpr));
- }
- else if (auto targetExpr = BfNodeDynCast<BfExpression>(node))
- {
- return _FixType(mModule->CreateValueFromExpression(targetExpr, expectingType, evalExprFlags));
- }
- return BfTypedValue();
- }
- void BfAutoComplete::SetDefinitionLocation(BfAstNode* astNode, bool force)
- {
- if (mIsGetDefinition)
- {
- if ((mGetDefinitionNode == NULL) || (force))
- mGetDefinitionNode = astNode;
- }
- }
- bool BfAutoComplete::IsAttribute(BfTypeInstance* typeInst)
- {
- auto checkTypeInst = typeInst;
- while (checkTypeInst != NULL)
- {
- if (checkTypeInst->mTypeDef->GetLatest() == mModule->mCompiler->mAttributeTypeDef->GetLatest())
- return true;
- checkTypeInst = checkTypeInst->mBaseType;
- }
- return false;
- }
- void BfAutoComplete::AddMethod(BfTypeInstance* typeInstance, BfMethodDef* methodDef, BfMethodInstance* methodInstance, BfMethodDeclaration* methodDecl, const StringImpl& methodName, const StringImpl& filter)
- {
- int wantPrefixCount = 0;
- const char* filterStr = filter.c_str();
- while (filterStr[0] == '@')
- {
- filterStr++;
- wantPrefixCount++;
- }
- String replaceName;
- AutoCompleteEntry entry("method", methodName, methodDef->mNamePrefixCount - wantPrefixCount);
- if (methodDecl != NULL)
- {
- if (methodDecl->mMixinSpecifier != NULL)
- {
- replaceName = entry.mDisplay;
- replaceName += "!";
- entry.mDisplay = replaceName.c_str();
- entry.mEntryType = "mixin";
- }
- }
- if (methodDef->mMethodType == BfMethodType_Extension)
- entry.mEntryType = "extmethod";
- if (auto entryAdded = AddEntry(entry, filterStr))
- {
- if (methodDecl != NULL)
- {
- if ((methodInstance != NULL) && (methodInstance->mMethodDef->mIsLocalMethod) && (methodDecl->mReturnType != NULL) && (GetCursorIdx(methodDecl) == methodDecl->mReturnType->mSrcEnd))
- {
- // This isn't really a local method decl, it just looks like one
- return;
- }
- if (CheckDocumentation(entryAdded, NULL))
- {
- String str;
- if ((methodInstance == NULL) && (methodDef != NULL))
- methodInstance = mModule->GetRawMethodInstance(typeInstance, methodDef);
- if (methodInstance != NULL)
- {
- SetAndRestoreValue<BfTypeInstance*> prevTypeInstance(mModule->mCurTypeInstance, typeInstance);
- SetAndRestoreValue<BfMethodInstance*> prevCurMethodInstance(mModule->mCurMethodInstance, methodInstance);
- str = mModule->MethodToString(methodInstance, (BfMethodNameFlags)(BfMethodNameFlag_IncludeReturnType | BfMethodNameFlag_ResolveGenericParamNames));
- }
- if (entryAdded->mDocumentation != NULL)
- {
- str += "\x04";
- str.Append(entryAdded->mDocumentation);
- }
- else if (methodDecl->mDocumentation != NULL)
- {
- if (!str.IsEmpty())
- str += "\x05";
- methodDecl->mDocumentation->GetDocString(str);
- }
- if (!str.IsEmpty())
- entryAdded->mDocumentation = mAlloc.AllocString(str);
- }
- }
- if ((mResolveType == BfResolveType_GoToDefinition) && (mGetDefinitionNode == NULL) && (methodDecl != NULL) && (methodDecl->mNameNode != NULL))
- SetDefinitionLocation(methodDecl->mNameNode);
- }
- }
- void BfAutoComplete::AddTypeDef(BfTypeDef* typeDef, const StringImpl& filter, bool onlyAttribute)
- {
- BF_ASSERT(typeDef->mDefState != BfTypeDef::DefState_Emitted);
- if (typeDef->mTypeDeclaration == NULL)
- return;
- StringT<64> name(typeDef->mName->ToString());
- if (name == "@")
- return;
- int gravePos = (int)name.IndexOf('`');
- if (gravePos != -1)
- name = name.Substring(0, gravePos) + "<>";
- if (onlyAttribute)
- {
- if ((mIsGetDefinition) && (name == filter + "Attribute"))
- {
- SetDefinitionLocation(typeDef->mTypeDeclaration->mNameNode);
- return;
- }
- int score;
- uint8 matches[256];
- if (!DoesFilterMatch(name.c_str(), filter.c_str(), score, matches, sizeof(matches)))
- return;
- auto type = mModule->ResolveTypeDef(typeDef, BfPopulateType_Declaration);
- if (type != NULL)
- {
- auto typeInst = type->ToTypeInstance();
- if (!IsAttribute(typeInst))
- return;
- }
- const char* attrStr = "Attribute";
- const int attrStrLen = (int)strlen(attrStr);
- if (((int)name.length() > attrStrLen) && ((int)name.length() - (int)attrStrLen >= filter.length()) && (strcmp(name.c_str() + (int)name.length() - attrStrLen, attrStr) == 0))
- {
- // Shorter name - remove "Attribute"
- name = name.Substring(0, name.length() - attrStrLen);
- }
- }
- AutoCompleteEntry* entryAdded = NULL;
- if (typeDef->mTypeCode == BfTypeCode_Object)
- entryAdded = AddEntry(AutoCompleteEntry("class", name), filter);
- else if (typeDef->mTypeCode == BfTypeCode_Interface)
- entryAdded = AddEntry(AutoCompleteEntry("interface", name), filter);
- else
- entryAdded = AddEntry(AutoCompleteEntry("valuetype", name), filter);
- if (entryAdded != NULL)
- {
- if ((CheckDocumentation(entryAdded, NULL)) && (entryAdded->mDocumentation == NULL))
- {
- auto type = mModule->ResolveTypeDef(typeDef, BfPopulateType_IdentityNoRemapAlias);
- StringT<1024> str;
- if (type != NULL)
- {
- SetAndRestoreValue<BfTypeInstance*> prevTypeInst(mModule->mCurTypeInstance, type->ToTypeInstance());
- SetAndRestoreValue<BfMethodInstance*> prevMethodInst(mModule->mCurMethodInstance, NULL);
- str = mModule->TypeToString(type, (BfTypeNameFlags)(BfTypeNameFlag_ExtendedInfo | BfTypeNameFlag_ResolveGenericParamNames));
- }
- if (typeDef->mTypeDeclaration->mDocumentation != NULL)
- {
- if (!str.IsEmpty())
- str += "\x05";
- typeDef->mTypeDeclaration->mDocumentation->GetDocString(str);
- }
- entryAdded->mDocumentation = mAlloc.AllocString(str);
- }
- }
- }
- bool BfAutoComplete::CheckProtection(BfProtection protection, BfTypeDef* typeDef, bool allowProtected, bool allowPrivate)
- {
- if (mResolveType == BfResolveType_GetSymbolInfo)
- {
- // This is needed for nameof on private inner types
- return true;
- }
- if ((protection == BfProtection_Internal) && (typeDef != NULL))
- {
- return mModule->CheckProtection(protection, typeDef, allowProtected, allowPrivate);
- }
- return (mHasFriendSet) || (protection == BfProtection_Public) ||
- ((protection == BfProtection_Protected) && (allowProtected)) ||
- ((protection == BfProtection_Private) && (allowPrivate));
- }
- const char* BfAutoComplete::GetTypeName(BfType* type)
- {
- if (type != NULL)
- {
- if (type->IsPointer())
- return "pointer";
- if (type->IsObjectOrInterface())
- return "object";
- }
- return "value";
- }
- void BfAutoComplete::AddInnerTypes(BfTypeInstance* typeInst, const StringImpl& filter, BfTypeInstance* startType, bool allowProtected, bool allowPrivate)
- {
- if (typeInst->IsEnum())
- AddEntry(AutoCompleteEntry("valuetype", "UnderlyingType"), filter);
- BfShow checkShow = (typeInst == startType) ? BfShow_Hide : BfShow_HideIndirect;
- for (auto innerType : typeInst->mTypeDef->mNestedTypes)
- {
- if (innerType->mShow >= checkShow)
- continue;
- if (innerType->mOuterType->mTypeCode == BfTypeCode_Extension)
- {
- if (typeInst->mDefineState < BfTypeDefineState_Defined)
- mModule->PopulateType(typeInst);
- if ((typeInst->mGenericTypeInfo != NULL) && (typeInst->mGenericTypeInfo->mGenericExtensionInfo != NULL))
- {
- if (!typeInst->mGenericTypeInfo->mGenericExtensionInfo->mConstraintsPassedSet.IsSet(innerType->mOuterType->mPartialIdx))
- continue;
- }
- }
- if (CheckProtection(innerType->mProtection, innerType, allowProtected, allowPrivate))
- AddTypeDef(innerType, filter);
- }
- allowPrivate = false;
- if (typeInst->mBaseType != NULL)
- AddInnerTypes(typeInst->mBaseType, filter, startType, allowProtected, allowPrivate);
- }
- void BfAutoComplete::AddCurrentTypes(BfTypeInstance* typeInst, const StringImpl& filter, bool allowProtected, bool allowPrivate, bool onlyAttribute)
- {
- if (typeInst != mModule->mCurTypeInstance)
- AddTypeDef(typeInst->mTypeDef->GetDefinition(), filter, onlyAttribute);
- auto typeDef = typeInst->mTypeDef->GetDefinition();
- for (auto nestedTypeDef : typeDef->mNestedTypes)
- {
- if (nestedTypeDef->mIsPartial)
- {
- nestedTypeDef = mSystem->GetCombinedPartial(nestedTypeDef);
- if (nestedTypeDef == NULL)
- continue;
- }
- if (CheckProtection(nestedTypeDef->mProtection, nestedTypeDef, allowProtected, allowPrivate))
- AddTypeDef(nestedTypeDef, filter, onlyAttribute);
- }
- auto outerType = mModule->GetOuterType(typeInst);
- if (outerType != NULL)
- AddCurrentTypes(outerType, filter, allowProtected, allowPrivate, onlyAttribute);
- allowPrivate = false;
- auto baseType = mModule->GetBaseType(typeInst);
- if (baseType != NULL)
- AddCurrentTypes(baseType, filter, allowProtected, allowPrivate, onlyAttribute);
- }
- void BfAutoComplete::AddField(BfTypeInstance* typeInst, BfFieldDef* fieldDef, BfFieldInstance* fieldInstance, const StringImpl& filter)
- {
- int wantPrefixCount = 0;
- const char* filterStr = filter.c_str();
- while (filterStr[0] == '@')
- {
- filterStr++;
- wantPrefixCount++;
- }
- AutoCompleteEntry entry(GetTypeName(fieldInstance->mResolvedType), fieldDef->mName, fieldDef->mNamePrefixCount - wantPrefixCount);
- if (auto entryAdded = AddEntry(entry, filterStr))
- {
- auto fieldDecl = fieldDef->GetFieldDeclaration();
- auto documentation = (fieldDecl != NULL) ? fieldDecl->mDocumentation : NULL;
- if (CheckDocumentation(entryAdded, documentation))
- {
- mModule->PopulateType(typeInst);
- bool isTag = typeInst->IsEnum() && typeInst->IsOnDemand();
- String str;
- if (!isTag)
- {
- if (!fieldInstance->GetFieldDef()->IsEnumCaseEntry())
- {
- str += mModule->TypeToString(fieldInstance->mResolvedType);
- str += " ";
- }
- str += mModule->TypeToString(typeInst);
- str += ".";
- str += fieldDef->mName;
- }
- if (entryAdded->mDocumentation != NULL)
- {
- str += "\x04";
- str.Append(entryAdded->mDocumentation);
- }
- else if (documentation != NULL)
- {
- str += "\x05";
- documentation->GetDocString(str);
- }
- if (!str.IsEmpty())
- entryAdded->mDocumentation = mAlloc.AllocString(str);
- }
- if ((mIsGetDefinition) && (mDefType == NULL))
- {
- mDefType = typeInst->mTypeDef;
- mDefField = fieldDef;
- if (auto nameNode = fieldDef->GetNameNode())
- SetDefinitionLocation(nameNode);
- }
- }
- }
- void BfAutoComplete::AddProp(BfTypeInstance* typeInst, BfPropertyDef* propDef, const StringImpl& filter)
- {
- int wantPrefixCount = 0;
- const char* filterStr = filter.c_str();
- while (filterStr[0] == '@')
- {
- filterStr++;
- wantPrefixCount++;
- }
- BfCommentNode* documentation = NULL;
- auto fieldDecl = propDef->GetFieldDeclaration();
- if (fieldDecl != NULL)
- documentation = fieldDecl->mDocumentation;
- AutoCompleteEntry entry("property", propDef->mName, propDef->mNamePrefixCount - wantPrefixCount);
- if (auto entryAdded = AddEntry(entry, filterStr))
- {
- if (CheckDocumentation(entryAdded, documentation))
- {
- BfType* propType = NULL;
- bool hasGetter = false;
- bool hasSetter = false;
- for (auto methodDef : propDef->mMethods)
- {
- auto methodInstance = mModule->GetRawMethodInstance(typeInst, methodDef);
- if (methodInstance == NULL)
- continue;
- if (methodDef->mMethodType == BfMethodType_PropertyGetter)
- {
- hasGetter = true;
- propType = methodInstance->mReturnType;
- }
- if (methodDef->mMethodType == BfMethodType_PropertySetter)
- {
- hasSetter = true;
- if (methodInstance->GetParamCount() > 0)
- propType = methodInstance->GetParamType(0);
- }
- }
- String str;
- if (propType != NULL)
- {
- str += mModule->TypeToString(propType);
- str += " ";
- }
- str += mModule->TypeToString(typeInst);
- str += ".";
- str += propDef->mName;
- str += " { ";
- if (hasGetter)
- str += "get; ";
- if (hasSetter)
- str += "set; ";
- str += "}";
- if (entryAdded->mDocumentation != NULL)
- {
- str += "\x04";
- str.Append(entryAdded->mDocumentation);
- }
- else if (documentation != NULL)
- {
- str += "\x05";
- documentation->GetDocString(str);
- }
- entryAdded->mDocumentation = mAlloc.AllocString(str);
- }
- if ((mIsGetDefinition) && (fieldDecl != NULL))
- SetDefinitionLocation(fieldDecl->mNameNode);
- }
- }
- void BfAutoComplete::AddTypeMembers(BfTypeInstance* typeInst, bool addStatic, bool addNonStatic, const StringImpl& filter, BfTypeInstance* startType, bool allowInterfaces, bool allowImplicitThis, bool checkOuterType)
- {
- bool isInterface = false;
- if (mForceAllowNonStatic)
- addNonStatic = true;
- auto activeTypeDef = mModule->GetActiveTypeDef();
- if ((addStatic) && (mModule->mCurMethodInstance == NULL) && (typeInst->IsEnum()) && (allowImplicitThis))
- {
- AddEntry(AutoCompleteEntry("value", "_"), filter);
- }
- #define CHECK_STATIC(staticVal) ((staticVal && addStatic) || (!staticVal && addNonStatic))
- mModule->PopulateType(typeInst, BfPopulateType_Data);
- BfShow checkShow = (startType == typeInst) ? BfShow_Hide : BfShow_HideIndirect;
- BfProtectionCheckFlags protectionCheckFlags = BfProtectionCheckFlag_None;
- for (auto& fieldInst : typeInst->mFieldInstances)
- {
- auto fieldDef = fieldInst.GetFieldDef();
- if (fieldDef == NULL)
- continue;
- if (fieldDef->mShow >= checkShow)
- continue;
- if ((CHECK_STATIC(fieldDef->mIsStatic)) &&
- ((mIsGetDefinition) || (mModule->CheckProtection(protectionCheckFlags, typeInst, fieldDef->mDeclaringType->mProject, fieldDef->mProtection, startType))))
- {
- if ((!typeInst->IsTypeMemberIncluded(fieldDef->mDeclaringType, activeTypeDef, mModule)) ||
- (!typeInst->IsTypeMemberAccessible(fieldDef->mDeclaringType, activeTypeDef)))
- continue;
- AddField(typeInst, fieldDef, &fieldInst, filter);
- }
- }
- for (auto methodDef : typeInst->mTypeDef->mMethods)
- {
- if (methodDef->mIsOverride)
- continue;
- if (methodDef->mShow >= checkShow)
- continue;
- if (methodDef->mName.IsEmpty())
- continue;
- if (methodDef->mExplicitInterface != NULL)
- continue;
- if ((!typeInst->IsTypeMemberIncluded(methodDef->mDeclaringType, activeTypeDef, mModule)) ||
- (!typeInst->IsTypeMemberAccessible(methodDef->mDeclaringType, activeTypeDef)))
- continue;
- bool canUseMethod;
- canUseMethod = (methodDef->mMethodType == BfMethodType_Normal) || (methodDef->mMethodType == BfMethodType_Mixin);
- if (isInterface)
- {
- // Always allow
- canUseMethod &= addNonStatic;
- }
- else
- {
- canUseMethod &= (CHECK_STATIC(methodDef->mIsStatic) &&
- (mModule->CheckProtection(protectionCheckFlags, typeInst, methodDef->mDeclaringType->mProject, methodDef->mProtection, startType)));
- }
- if (canUseMethod)
- {
- AddMethod(typeInst, methodDef, NULL, methodDef->GetMethodDeclaration(), methodDef->mName, filter);
- }
- }
- for (auto propDef : typeInst->mTypeDef->mProperties)
- {
- if (propDef->mShow >= checkShow)
- continue;
- if ((!typeInst->IsTypeMemberIncluded(propDef->mDeclaringType, activeTypeDef, mModule)) ||
- (!typeInst->IsTypeMemberAccessible(propDef->mDeclaringType, activeTypeDef)))
- continue;
- if ((CHECK_STATIC(propDef->mIsStatic)) && (mModule->CheckProtection(protectionCheckFlags, typeInst, propDef->mDeclaringType->mProject, propDef->mProtection, startType)))
- {
- if ((!allowInterfaces) && (propDef->HasExplicitInterface()))
- continue;
- if (propDef->mName == "[]")
- continue;
- AddProp(typeInst, propDef, filter);
- }
- }
- if (allowInterfaces)
- {
- for (auto iface : typeInst->mInterfaces)
- AddTypeMembers(iface.mInterfaceType, addStatic, addNonStatic, filter, startType, false, allowImplicitThis, false);
- }
- if (typeInst->mBaseType != NULL)
- AddTypeMembers(typeInst->mBaseType, addStatic, addNonStatic, filter, startType, false, allowImplicitThis, false);
- else
- {
- if (typeInst->IsStruct())
- AddTypeMembers(mModule->mContext->mBfObjectType, addStatic, addNonStatic, filter, startType, false, allowImplicitThis, false);
- }
- if (typeInst->IsInterface())
- {
- for (auto interface : typeInst->mInterfaces)
- AddTypeMembers(interface.mInterfaceType, addStatic, addNonStatic, filter, startType, false, allowImplicitThis, false);
- }
- if ((addStatic) && (allowImplicitThis) && (checkOuterType))
- {
- auto outerType = mModule->GetOuterType(typeInst);
- if (outerType != NULL)
- {
- AddTypeMembers(outerType, true, false, filter, startType, false, allowImplicitThis, false);
- }
- }
- if ((typeInst->mTypeDef->mHasUsingFields) &&
- ((typeInst->mTypeInfoEx == NULL) || (typeInst->mTypeInfoEx->mUsingFieldData == NULL)))
- mModule->PopulateUsingFieldData(typeInst);
- if ((typeInst->mTypeInfoEx != NULL) && (typeInst->mTypeInfoEx->mUsingFieldData != NULL))
- {
- for (int pass = 0; pass < 2; pass++)
- {
- auto& dict = (pass == 0) ? typeInst->mTypeInfoEx->mUsingFieldData->mEntries : typeInst->mTypeInfoEx->mUsingFieldData->mMethods;
- for (auto& entryKV : dict)
- {
- for (auto& entryList : entryKV.mValue.mLookups)
- {
- auto& endEntry = entryList.back();
- bool isStatic = endEntry.IsStatic();
- if ((isStatic) && (!addStatic))
- continue;
- if ((!isStatic) && (!addNonStatic))
- continue;
- bool passesProtection = true;
- for (int entryIdx = 0; entryIdx < entryList.mSize; entryIdx++)
- {
- auto& entry = entryList[entryIdx];
- if (!mModule->CheckProtection(protectionCheckFlags, entry.mTypeInstance, entry.GetDeclaringType(mModule)->mProject,
- (entryIdx < entryList.mSize - 1) ? entry.GetUsingProtection() : entry.GetProtection(), typeInst))
- {
- passesProtection = false;
- break;
- }
- }
- if (!passesProtection)
- continue;
- switch (endEntry.mKind)
- {
- case BfUsingFieldData::MemberRef::Kind_Field:
- if (endEntry.mTypeInstance->mDefineState < BfTypeDefineState_Defined)
- mModule->PopulateType(endEntry.mTypeInstance);
- AddField(endEntry.mTypeInstance, endEntry.mTypeInstance->mTypeDef->mFields[endEntry.mIdx], &endEntry.mTypeInstance->mFieldInstances[endEntry.mIdx], filter);
- break;
- case BfUsingFieldData::MemberRef::Kind_Property:
- AddProp(endEntry.mTypeInstance, endEntry.mTypeInstance->mTypeDef->mProperties[endEntry.mIdx], filter);
- break;
- case BfUsingFieldData::MemberRef::Kind_Method:
- {
- auto methodDef = endEntry.mTypeInstance->mTypeDef->mMethods[endEntry.mIdx];
- AddMethod(endEntry.mTypeInstance, methodDef, NULL, methodDef->GetMethodDeclaration(), methodDef->mName, filter);
- }
- break;
- }
- }
- }
- }
- }
- }
- void BfAutoComplete::AddSelfResultTypeMembers(BfTypeInstance* typeInst, BfTypeInstance* selfType, const StringImpl& filter, bool allowPrivate)
- {
- bool isInterface = false;
- bool allowProtected = allowPrivate;
- auto activeTypeDef = mModule->GetActiveTypeDef();
- mModule->PopulateType(typeInst, BfPopulateType_Data);
- BfShow checkShow = allowPrivate ? BfShow_Hide : BfShow_HideIndirect;
- for (auto& fieldInst : typeInst->mFieldInstances)
- {
- auto fieldDef = fieldInst.GetFieldDef();
- if (fieldDef == NULL)
- continue;
- if (fieldDef->mShow > checkShow)
- continue;
- if ((fieldDef->mIsStatic) && (CheckProtection(fieldDef->mProtection, fieldDef->mDeclaringType, allowProtected, allowPrivate)))
- {
- if (!mModule->CanCast(BfTypedValue(mModule->mBfIRBuilder->GetFakeVal(), fieldInst.mResolvedType), selfType))
- continue;
- if ((!typeInst->IsTypeMemberIncluded(fieldDef->mDeclaringType, activeTypeDef, mModule)) ||
- (!typeInst->IsTypeMemberAccessible(fieldDef->mDeclaringType, activeTypeDef)))
- continue;
- AddField(typeInst, fieldDef, &fieldInst, filter);
- }
- }
- for (auto methodDef : typeInst->mTypeDef->mMethods)
- {
- if (methodDef->mIsOverride)
- continue;
- if (methodDef->mShow > checkShow)
- continue;
- if (methodDef->mName.IsEmpty())
- continue;
- if (methodDef->mExplicitInterface != NULL)
- continue;
- if ((!typeInst->IsTypeMemberIncluded(methodDef->mDeclaringType, activeTypeDef, mModule)) ||
- (!typeInst->IsTypeMemberAccessible(methodDef->mDeclaringType, activeTypeDef)))
- continue;
- if (!methodDef->mIsStatic)
- continue;
- bool canUseMethod;
- canUseMethod = (methodDef->mMethodType == BfMethodType_Normal) || (methodDef->mMethodType == BfMethodType_Mixin);
- canUseMethod &= CheckProtection(methodDef->mProtection, methodDef->mDeclaringType, allowProtected, allowPrivate);
- if (methodDef->mMethodType != BfMethodType_Normal)
- continue;
- auto methodInstance = mModule->GetRawMethodInstanceAtIdx(typeInst, methodDef->mIdx);
- if (methodInstance == NULL)
- continue;
- if (methodInstance->mReturnType->IsUnspecializedType())
- continue;
- if (!mModule->CanCast(BfTypedValue(mModule->mBfIRBuilder->GetFakeVal(), methodInstance->mReturnType), selfType))
- continue;
- if (canUseMethod)
- {
- if (auto methodDeclaration = methodDef->GetMethodDeclaration())
- {
- AddMethod(typeInst, methodDef, NULL, methodDeclaration, methodDef->mName, filter);
- }
- }
- }
- for (auto propDef : typeInst->mTypeDef->mProperties)
- {
- if (propDef->mShow > checkShow)
- continue;
- if ((!typeInst->IsTypeMemberIncluded(propDef->mDeclaringType, activeTypeDef, mModule)) ||
- (!typeInst->IsTypeMemberAccessible(propDef->mDeclaringType, activeTypeDef)))
- continue;
- if (!propDef->mIsStatic)
- continue;
- BfMethodDef* getMethod = NULL;
- for (auto methodDef : propDef->mMethods)
- {
- if (methodDef->mMethodType == BfMethodType_PropertyGetter)
- {
- getMethod = methodDef;
- break;
- }
- }
- if (getMethod == NULL)
- continue;
- auto methodInstance = mModule->GetRawMethodInstanceAtIdx(typeInst, getMethod->mIdx);
- if (methodInstance == NULL)
- continue;
- if (methodInstance->mReturnType != selfType)
- continue;
- if (CheckProtection(propDef->mProtection, propDef->mDeclaringType, allowProtected, allowPrivate))
- {
- if (propDef->HasExplicitInterface())
- continue;
- if (propDef->mName == "[]")
- continue;
- AddProp(typeInst, propDef, filter);
- }
- }
- auto outerType = mModule->GetOuterType(typeInst);
- if (outerType != NULL)
- {
- AddSelfResultTypeMembers(outerType, selfType, filter, false);
- }
- }
- bool BfAutoComplete::InitAutocomplete(BfAstNode* dotNode, BfAstNode* nameNode, String& filter)
- {
- bool isDot = (dotNode != NULL) && (dotNode->mToken == BfToken_Dot);
- if (IsAutocompleteNode(nameNode))
- {
- auto bfParser = nameNode->GetSourceData()->ToParser();
- if ((mIsGetDefinition) || (!isDot))
- {
- mInsertStartIdx = nameNode->GetSrcStart();
- mInsertEndIdx = nameNode->GetSrcEnd();
- }
- else
- {
- mInsertStartIdx = dotNode->GetSrcEnd();
- mInsertEndIdx = std::min(bfParser->mCursorIdx + 1, nameNode->GetSrcEnd());
- }
- filter.Append(bfParser->mSrc + nameNode->GetSrcStart(), mInsertEndIdx - nameNode->GetSrcStart());
- return true;
- }
- int lenAdd = 0;
- if (!isDot)
- lenAdd++;
- if ((dotNode != NULL) && (IsAutocompleteNode(dotNode, lenAdd, 1)))
- {
- mInsertStartIdx = dotNode->GetSrcEnd();
- mInsertEndIdx = dotNode->GetSrcEnd();
- return true;
- }
- return false;
- }
- void BfAutoComplete::AddEnumTypeMembers(BfTypeInstance* typeInst, const StringImpl& filter, bool allowProtected, bool allowPrivate)
- {
- mModule->PopulateType(typeInst, BfPopulateType_Data);
- auto activeTypeDef = mModule->GetActiveTypeDef();
- for (auto& fieldInst : typeInst->mFieldInstances)
- {
- auto fieldDef = fieldInst.GetFieldDef();
- if ((fieldDef != NULL) && (fieldDef->mIsConst) &&
- ((fieldInst.mResolvedType == typeInst) || (fieldInst.mIsEnumPayloadCase)) &&
- (CheckProtection(fieldDef->mProtection, fieldDef->mDeclaringType, allowProtected, allowPrivate)))
- {
- if ((!typeInst->IsTypeMemberIncluded(fieldDef->mDeclaringType, activeTypeDef, mModule)) ||
- (!typeInst->IsTypeMemberAccessible(fieldDef->mDeclaringType, activeTypeDef)))
- continue;
- bool hasPayload = false;
- if ((fieldInst.mIsEnumPayloadCase) && (fieldInst.mResolvedType->IsTuple()))
- {
- auto payloadType = (BfTypeInstance*)fieldInst.mResolvedType;
- if (!payloadType->mFieldInstances.empty())
- hasPayload = true;
- }
- AutoCompleteEntry entry(hasPayload ? "payloadEnum" : "value", fieldDef->mName);
- if (auto entryAdded = AddEntry(entry, filter))
- {
- auto fieldDecl = fieldDef->GetFieldDeclaration();
- if (fieldDecl == NULL)
- continue;
- if (CheckDocumentation(entryAdded, fieldDecl->mDocumentation))
- {
- }
- if (mIsGetDefinition)
- {
- mDefType = typeInst->mTypeDef;
- mDefField = fieldDef;
- if (fieldDecl != NULL)
- SetDefinitionLocation(fieldDecl->mNameNode);
- }
- }
- }
- }
- }
- void BfAutoComplete::AddExtensionMethods(BfTypeInstance* targetType, BfTypeInstance* extensionContainer, const StringImpl & filter, bool allowProtected, bool allowPrivate)
- {
- if (!extensionContainer->mTypeDef->mHasExtensionMethods)
- return;
- mModule->PopulateType(extensionContainer, BfPopulateType_Data);
- BfShow checkShow = allowPrivate ? BfShow_Hide : BfShow_HideIndirect;
- for (auto methodDef : extensionContainer->mTypeDef->mMethods)
- {
- if (methodDef->mMethodType != BfMethodType_Extension)
- continue;
- if (methodDef->mShow >= checkShow)
- continue;
- if (methodDef->mName.IsEmpty())
- continue;
- bool canUseMethod = true;
- canUseMethod &= CheckProtection(methodDef->mProtection, methodDef->mDeclaringType, allowProtected, allowPrivate);
- auto methodInstance = mModule->GetRawMethodInstanceAtIdx(extensionContainer, methodDef->mIdx);
- if (methodInstance == NULL)
- continue;
- int score;
- uint8 matches[256];
- // Do filter match first- may be cheaper than generic validation
- if (!DoesFilterMatch(methodDef->mName.c_str(), filter.c_str(), score, matches, sizeof(matches)))
- continue;
- auto thisType = methodInstance->GetParamType(0);
- bool paramValidated = false;
- if (methodInstance->GetNumGenericParams() > 0)
- {
- if ((thisType->IsGenericParam()) && (methodInstance->GetNumGenericParams() == 1))
- {
- auto genericParamType = (BfGenericParamType*)thisType;
- if (genericParamType->mGenericParamKind == BfGenericParamKind_Method)
- {
- auto& genericParams = methodInstance->mMethodInfoEx->mGenericParams;
- if (!mModule->CheckGenericConstraints(BfGenericParamSource(methodInstance), targetType, NULL, genericParams[genericParamType->mGenericParamIdx], NULL, NULL))
- continue;
- paramValidated = true;
- }
- }
- if (((thisType->IsUnspecializedTypeVariation()) || (thisType->IsGenericParam())) &&
- (!paramValidated))
- {
- BfTypeVector genericTypeVector;
- genericTypeVector.resize(methodInstance->GetNumGenericParams());
- BfGenericInferContext genericInferContext;
- genericInferContext.mCheckMethodGenericArguments = &genericTypeVector;
- genericInferContext.mModule = mModule;
- genericInferContext.mPrevArgValues.resize(methodInstance->GetNumGenericParams());
- if (!genericInferContext.InferGenericArgument(methodInstance, targetType, thisType, BfIRValue()))
- continue;
- genericInferContext.InferGenericArguments(methodInstance);
- thisType = mModule->ResolveGenericType(thisType, NULL, &genericTypeVector, mModule->mCurTypeInstance, false);
- if (thisType == NULL)
- continue;
- auto& genericParams = methodInstance->mMethodInfoEx->mGenericParams;
- bool validateError = false;
- for (int genericIdx = 0; genericIdx < (int)genericTypeVector.size(); genericIdx++)
- {
- auto genericArg = genericTypeVector[genericIdx];
- if (genericArg == NULL)
- continue;
- if (!mModule->CheckGenericConstraints(BfGenericParamSource(methodInstance), genericArg, NULL, genericParams[genericIdx], &genericTypeVector, NULL))
- {
- validateError = true;
- break;
- }
- }
- if (validateError)
- continue;
- }
- }
- if (!paramValidated)
- {
- if (!mModule->CanCast(BfTypedValue(mModule->mBfIRBuilder->GetFakeVal(), targetType), thisType))
- continue;
- }
- if (canUseMethod)
- {
- if (auto methodDeclaration = methodDef->GetMethodDeclaration())
- {
- AddMethod(extensionContainer, methodDef, NULL, methodDeclaration, methodDef->mName, filter);
- }
- }
- }
- }
- BfProject* BfAutoComplete::GetActiveProject()
- {
- BfProject* bfProject = NULL;
- auto activeTypeDef = mModule->GetActiveTypeDef();
- if (activeTypeDef != NULL)
- bfProject = activeTypeDef->mProject;
- else if (!mCompiler->mResolvePassData->mParsers.IsEmpty())
- bfProject = mCompiler->mResolvePassData->mParsers[0]->mProject;
- return bfProject;
- }
- bool BfAutoComplete::WantsEntries()
- {
- if (mModule == NULL)
- return false;
- return (mResolveType == BfResolveType_Autocomplete) ||
- (mResolveType == BfResolveType_Autocomplete_HighPri) ||
- (mResolveType == BfResolveType_GetSymbolInfo) ||
- (mResolveType == BfResolveType_GoToDefinition) ||
- (mResolveType == BfResolveType_VerifyTypeName);
- }
- void BfAutoComplete::AddTopLevelNamespaces(BfAstNode* identifierNode)
- {
- String filter;
- if (identifierNode != NULL)
- {
- filter = identifierNode->ToString();
- mInsertStartIdx = identifierNode->GetSrcStart();
- mInsertEndIdx = identifierNode->GetSrcEnd();
- }
- BfProject* bfProject = GetActiveProject();
- auto _AddProjectNamespaces = [&](BfProject* project)
- {
- for (auto namespacePair : project->mNamespaces)
- {
- const BfAtomComposite& namespaceComposite = namespacePair.mKey;
- if (namespaceComposite.GetPartsCount() == 1)
- {
- AddEntry(AutoCompleteEntry("namespace", namespaceComposite.ToString()), filter);
- }
- }
- };
- if (bfProject != NULL)
- {
- for (int depIdx = -1; depIdx < (int) bfProject->mDependencies.size(); depIdx++)
- {
- BfProject* depProject = (depIdx == -1) ? bfProject : bfProject->mDependencies[depIdx];
- _AddProjectNamespaces(depProject);
- }
- }
- else
- {
- for (auto project : mSystem->mProjects)
- _AddProjectNamespaces(project);
- }
- }
- void BfAutoComplete::AddTopLevelTypes(BfAstNode* identifierNode, bool onlyAttribute)
- {
- String filter;
- if (identifierNode != NULL)
- {
- filter = identifierNode->ToString();
- mInsertStartIdx = identifierNode->GetSrcStart();
- mInsertEndIdx = identifierNode->GetSrcEnd();
- }
- AddEntry(AutoCompleteEntry("token", "function"), filter);
- AddEntry(AutoCompleteEntry("token", "delegate"), filter);
- AddEntry(AutoCompleteEntry("token", "decltype"), filter);
- if (mModule->mCurTypeInstance != NULL)
- {
- if (!onlyAttribute)
- {
- auto activeTypeDef = mModule->GetActiveTypeDef();
- for (auto genericParam : activeTypeDef->mGenericParamDefs)
- AddEntry(AutoCompleteEntry("generic", genericParam->mName), filter);
- }
- AddCurrentTypes(mModule->mCurTypeInstance, filter, true, true, onlyAttribute);
- }
- if (mModule->mCurMethodInstance != NULL)
- {
- if (!onlyAttribute)
- {
- for (auto genericParam : mModule->mCurMethodInstance->mMethodDef->mGenericParams)
- AddEntry(AutoCompleteEntry("generic", genericParam->mName), filter);
- }
- }
- if (!onlyAttribute)
- {
- BfTypeDef* showTypeDef = NULL;
- for (auto& systemTypeDefEntry : mModule->mSystem->mSystemTypeDefs)
- {
- auto systemTypeDef = systemTypeDefEntry.mValue;
- if ((systemTypeDef->mTypeCode == BfTypeCode_IntUnknown) || (systemTypeDef->mTypeCode == BfTypeCode_UIntUnknown))
- continue;
- if ((AddEntry(AutoCompleteEntry("valuetype", systemTypeDef->mName->mString.mPtr), filter)) && (mIsGetDefinition))
- showTypeDef = systemTypeDef;
- }
- AddEntry(AutoCompleteEntry("valuetype", "SelfBase"), filter);
- AddEntry(AutoCompleteEntry("valuetype", "SelfOuter"), filter);
- if (showTypeDef != NULL)
- {
- auto showType = mModule->ResolveTypeDef(showTypeDef);
- BfTypeInstance* showTypeInst = NULL;
- if (showType->IsPrimitiveType())
- showTypeInst = mModule->GetWrappedStructType(showType);
- else
- showTypeInst = showType->ToTypeInstance();
- if (showTypeInst != NULL)
- SetDefinitionLocation(showTypeInst->mTypeDef->mTypeDeclaration->mNameNode);
- }
- }
- auto activeTypeDef = mModule->GetActiveTypeDef();
- if (activeTypeDef != NULL)
- {
- BfProject* curProject = activeTypeDef->mProject;
- if (mModule->mCurTypeInstance != NULL)
- {
- for (auto innerTypeDef : mModule->mCurTypeInstance->mTypeDef->mNestedTypes)
- {
- if (!mModule->mCurTypeInstance->IsTypeMemberAccessible(innerTypeDef, activeTypeDef))
- continue;
- AddTypeDef(innerTypeDef, filter, onlyAttribute);
- }
- }
- auto& namespaceSearch = activeTypeDef->mNamespaceSearch;
- String prevName;
- for (auto typeDef : mModule->mSystem->mTypeDefs)
- {
- if (typeDef->mIsPartial)
- continue;
- //TODO :Check protection
- if ((curProject != NULL) && (curProject->ContainsReference(typeDef->mProject)))
- {
- bool matches = false;
- if (typeDef->mOuterType == NULL)
- {
- if (((typeDef->mNamespace.IsEmpty()) ||
- (namespaceSearch.Contains(typeDef->mNamespace))))
- matches = true;
- }
- if (matches)
- {
- AddTypeDef(typeDef, filter, onlyAttribute);
- }
- }
- }
- }
- else
- {
- BfProject* curProject = NULL;
- if (!mModule->mCompiler->mResolvePassData->mParsers.IsEmpty())
- curProject = mModule->mCompiler->mResolvePassData->mParsers[0]->mProject;
- String prevName;
- for (auto typeDef : mModule->mSystem->mTypeDefs)
- {
- if (typeDef->mIsPartial)
- continue;
- //TODO :Check protection
- if ((curProject != NULL) && (curProject->ContainsReference(typeDef->mProject)))
- {
- bool matches = false;
- if (typeDef->mOuterType == NULL)
- {
- if (typeDef->mNamespace.IsEmpty())
- matches = true;
- }
- if (matches)
- {
- AddTypeDef(typeDef, filter, onlyAttribute);
- }
- }
- }
- }
- }
- void BfAutoComplete::CheckIdentifier(BfAstNode* identifierNode, bool isInExpression, bool isUsingDirective)
- {
- if ((identifierNode != NULL) && (!IsAutocompleteNode(identifierNode)))
- return;
- mIdentifierUsed = identifierNode;
- if ((mModule->mParentNodeEntry != NULL) && (mModule->mCurMethodState != NULL))
- {
- if (auto binExpr = BfNodeDynCast<BfBinaryOperatorExpression>(mModule->mParentNodeEntry->mNode))
- {
- auto parentBlock = mModule->mCurMethodState->mCurScope->mAstBlock;
- if ((identifierNode == binExpr->mRight) && (binExpr->mOp == BfBinaryOp_Multiply) && (parentBlock != NULL))
- {
- // If we are the last identifier in a block then we MAY be a partially-typed variable declaration
- if (parentBlock->mChildArr.back() == binExpr)
- {
- mUncertain = true;
- }
- }
- }
- }
- if (auto qualifiedNameNode = BfNodeDynCast<BfQualifiedNameNode>(identifierNode))
- {
- CheckMemberReference(qualifiedNameNode->mLeft, qualifiedNameNode->mDot, qualifiedNameNode->mRight, false, NULL, isUsingDirective);
- return;
- }
- AddTopLevelNamespaces(identifierNode);
- if (isUsingDirective)
- return; // Only do namespaces
- AddTopLevelTypes(identifierNode);
- String filter;
- if (identifierNode != NULL)
- {
- filter = identifierNode->ToString();
- mInsertStartIdx = identifierNode->GetSrcStart();
- mInsertEndIdx = identifierNode->GetSrcEnd();
- }
- String addStr;
- if (mShowAttributeProperties != NULL)
- {
- auto showAttrTypeDef = mShowAttributeProperties->mTypeDef;
- for (auto prop : showAttrTypeDef->mProperties)
- {
- if (auto entryAdded = AddEntry(AutoCompleteEntry("property", prop->mName + "="), filter))
- {
- auto propertyDeclaration = prop->GetFieldDeclaration();
- if (propertyDeclaration != NULL)
- {
- if (CheckDocumentation(entryAdded, propertyDeclaration->mDocumentation))
- {
- }
- if (mIsGetDefinition)
- SetDefinitionLocation(propertyDeclaration->mNameNode);
- }
- }
- }
- for (auto field : showAttrTypeDef->mFields)
- {
- if (auto entryAdded = AddEntry(AutoCompleteEntry("field", field->mName + "="), filter))
- {
- auto fieldDeclaration = field->GetFieldDeclaration();
- if (fieldDeclaration != NULL)
- {
- if (CheckDocumentation(entryAdded, fieldDeclaration->mDocumentation))
- {
- }
- if (mIsGetDefinition)
- SetDefinitionLocation(fieldDeclaration->mNameNode);
- }
- }
- }
- }
- if ((mModule->mContext->mCurTypeState != NULL) && (mModule->mContext->mCurTypeState->mType != NULL))
- {
- BF_ASSERT(mModule->mCurTypeInstance == mModule->mContext->mCurTypeState->mType);
- BfGlobalLookup globalLookup;
- globalLookup.mKind = BfGlobalLookup::Kind_All;
- mModule->PopulateGlobalContainersList(globalLookup);
- for (auto& globalContainer : mModule->mContext->mCurTypeState->mGlobalContainers)
- {
- if (globalContainer.mTypeInst != NULL)
- AddTypeMembers(globalContainer.mTypeInst, true, false, filter, globalContainer.mTypeInst, true, true, false);
- }
- }
- BfStaticSearch* staticSearch = mModule->GetStaticSearch();
- if (staticSearch != NULL)
- {
- for (auto typeInst : staticSearch->mStaticTypes)
- {
- AddTypeMembers(typeInst, true, false, filter, typeInst, true, true, false);
- AddInnerTypes(typeInst, filter, typeInst, false, false);
- }
- }
- if (auto ceDbgState = mModule->GetCeDbgState())
- {
- auto ceDebugger = mModule->mCompiler->mCeMachine->mDebugger;
- auto ceContext = ceDebugger->mCurDbgState->mCeContext;
- auto activeFrame = ceDebugger->mCurDbgState->mActiveFrame;
- if (activeFrame->mFunction->mDbgInfo != NULL)
- {
- int instIdx = activeFrame->GetInstIdx();
- for (auto& dbgVar : activeFrame->mFunction->mDbgInfo->mVariables)
- {
- if ((instIdx >= dbgVar.mStartCodePos) && (instIdx < dbgVar.mEndCodePos))
- AddEntry(AutoCompleteEntry(GetTypeName(dbgVar.mType), dbgVar.mName), filter);
- }
- }
- }
- //////////////////////////////////////////////////////////////////////////
- BfMethodInstance* curMethodInstance = mModule->mCurMethodInstance;
- if (mModule->mCurMethodState != NULL)
- curMethodInstance = mModule->mCurMethodState->GetRootMethodState()->mMethodInstance;
- if (curMethodInstance != NULL)
- {
- if (!curMethodInstance->mMethodDef->mIsStatic)
- {
- if (mModule->mCurTypeInstance->IsObject())
- AddEntry(AutoCompleteEntry("object", "this"), filter);
- else
- AddEntry(AutoCompleteEntry("pointer", "this"), filter);
- AddTypeMembers(mModule->mCurTypeInstance, true, true, filter, mModule->mCurTypeInstance, mModule->mCurTypeInstance->IsInterface(), true, true);
- }
- else
- {
- AddTypeMembers(mModule->mCurTypeInstance, true, false, filter, mModule->mCurTypeInstance, mModule->mCurTypeInstance->IsInterface(), true, true);
- }
- if (mModule->mCurMethodState != NULL)
- {
- int varSkipCount = 0;
- StringT<128> wantName = filter;
- while (wantName.StartsWith("@"))
- {
- varSkipCount++;
- wantName.Remove(0);
- }
- if (varSkipCount > 0)
- {
- Dictionary<String, int> localCount;
- auto varMethodState = mModule->mCurMethodState;
- while (varMethodState != NULL)
- {
- for (int localIdx = (int)varMethodState->mLocals.size() - 1; localIdx >= 0; localIdx--)
- {
- auto local = varMethodState->mLocals[localIdx];
- int* findIdx = NULL;
- if (localCount.TryAdd(local->mName, NULL, &findIdx))
- {
- *findIdx = 0;
- }
- else
- {
- (*findIdx)++;
- }
- if (varSkipCount - local->mNamePrefixCount - *findIdx == 0)
- {
- if ((AddEntry(AutoCompleteEntry(GetTypeName(local->mResolvedType), local->mName, varSkipCount - local->mNamePrefixCount - *findIdx), wantName)) && (mIsGetDefinition))
- {
- }
- }
- }
- varMethodState = varMethodState->mPrevMethodState;
- if ((varMethodState == NULL) ||
- (varMethodState->mMixinState != NULL) ||
- ((varMethodState->mClosureState != NULL) && (!varMethodState->mClosureState->mCapturing)))
- break;
- }
- mInsertStartIdx += varSkipCount;
- }
- else
- {
- auto varMethodState = mModule->mCurMethodState;
- while (varMethodState != NULL)
- {
- for (auto& local : varMethodState->mLocals)
- {
- if ((AddEntry(AutoCompleteEntry(GetTypeName(local->mResolvedType), local->mName), wantName)) && (mIsGetDefinition))
- {
- }
- }
- varMethodState = varMethodState->mPrevMethodState;
- if ((varMethodState == NULL) ||
- (varMethodState->mMixinState != NULL) ||
- ((varMethodState->mClosureState != NULL) && (!varMethodState->mClosureState->mCapturing)))
- break;
- }
- }
- }
- }
- else if (mModule->mCurTypeInstance != NULL)
- {
- bool staticOnly = true;
- if ((mModule->mCurMethodState != NULL) && (mModule->mCurMethodState->mTempKind == BfMethodState::TempKind_NonStatic))
- staticOnly = false;
- //BF_ASSERT(mModule->mCurTypeInstance->mResolvingConstField);
- AddTypeMembers(mModule->mCurTypeInstance, true, !staticOnly, filter, mModule->mCurTypeInstance, false, true, true);
- }
- auto checkMethodState = mModule->mCurMethodState;
- while (checkMethodState != NULL)
- {
- for (auto localMethod : checkMethodState->mLocalMethods)
- {
- if (localMethod->mMethodInstanceGroup != NULL)
- AddMethod(mModule->mCurTypeInstance, localMethod->mMethodDef, localMethod->mMethodInstanceGroup->mDefault, localMethod->mMethodDeclaration, localMethod->mMethodName, filter);
- }
- checkMethodState = checkMethodState->mPrevMethodState;
- }
- if (isInExpression)
- {
- const char* tokens [] =
- {
- "alignof", "append", "as", "asm", "base", "break", "case", "catch", "checked", "continue", "const", "default", "defer",
- "delegate", "delete", "do", "else", "false", "finally",
- "fixed", "for", "function", "if", "implicit", "in", "internal", "is", "isconst", "new", "mixin", "null",
- "offsetof", "out", "params", "readonly", "ref", "rettype", "return",
- "sealed", "sizeof", "scope", "static", "strideof", "struct", "switch", /*"this",*/ "try", "true", "typeof", "unchecked",
- "using", "var", "virtual", "volatile", "where", "while",
- "alloctype", "comptype", "decltype", "nullable",
- };
- for (int i = 0; i < sizeof(tokens) / sizeof(char*); i++)
- AddEntry(AutoCompleteEntry("token", tokens[i]), filter);
- if ((mModule->mCurMethodState != NULL) && (mModule->mCurMethodState->mBreakData != NULL) && (mModule->mCurMethodState->mBreakData->mIRFallthroughBlock))
- {
- AddEntry(AutoCompleteEntry("token", "fallthrough"), filter);
- }
- }
- else
- {
- const char* tokens[] =
- {
- "abstract", "append", "base", "class", "const",
- "delegate", "extern", "enum", "explicit", "extension", "function",
- "interface", "in", "implicit", "internal", "mixin", "namespace", "new",
- "operator", "out", "override", "params", "private", "protected", "public", "readonly", "ref", "rettype", "return",
- "scope", "sealed", "static", "struct", "this", "typealias",
- "using", "virtual", "volatile", "T", "where"
- };
- for (int i = 0; i < sizeof(tokens)/sizeof(char*); i++)
- AddEntry(AutoCompleteEntry("token", tokens[i]), filter);
- }
- //if ((identifierNode != NULL) && ((mModule->mCurMethodInstance == NULL) || (BfNodeDynCast<BfExpression>(identifierNode->mParent) != NULL)))
- /*if ((identifierNode != NULL) && ((mModule->mCurMethodInstance == NULL) || (isInExpression)))
- {
- AddEntry(AutoCompleteEntry("token", "#if"), filter);
- AddEntry(AutoCompleteEntry("token", "#elif"), filter);
- AddEntry(AutoCompleteEntry("token", "#endif"), filter);
- }*/
- //OutputDebugStrF("Autocomplete: %s\n", str.c_str());
- }
- String BfAutoComplete::GetFilter(BfAstNode* node)
- {
- String filter = node->ToString();
- if (mIsGetDefinition)
- {
- mInsertEndIdx = node->GetSrcEnd();
- }
- else
- {
- // Only use member name up to cursor
- auto bfParser = node->GetSourceData()->ToParser();
- int cursorIdx = bfParser->mCursorIdx;
- filter = filter.Substring(0, BF_CLAMP(cursorIdx - node->GetSrcStart(), 0, (int)filter.length()));
- mInsertEndIdx = cursorIdx;
- }
- const char* cPtr = filter.c_str();
- while (cPtr[0] == '@')
- {
- mInsertStartIdx++;
- cPtr++;
- }
- return filter;
- }
- bool BfAutoComplete::CheckMemberReference(BfAstNode* target, BfAstNode* dotToken, BfAstNode* memberName, bool onlyShowTypes, BfType* expectingType, bool isUsingDirective, bool onlyAttribute)
- {
- if (!WantsEntries())
- return false;
- BfAttributedIdentifierNode* attrIdentifier = NULL;
- bool isAutocompletingName = false;
- if ((attrIdentifier = BfNodeDynCast<BfAttributedIdentifierNode>(memberName)))
- {
- memberName = attrIdentifier->mIdentifier;
- if (IsAutocompleteNode(attrIdentifier->mAttributes))
- {
- auto bfParser = attrIdentifier->mAttributes->GetSourceData()->ToParser();
- int cursorIdx = bfParser->mCursorIdx;
- if (cursorIdx == attrIdentifier->mAttributes->GetSrcEnd())
- isAutocompletingName = true;
- else
- return false;
- }
- }
- if (memberName != NULL)
- isAutocompletingName = IsAutocompleteNode(dotToken, memberName, 0, 1);
- if ((IsAutocompleteNode(dotToken, 0, 1)) || (isAutocompletingName))
- {
- BfLogSys(mModule->mSystem, "Triggered autocomplete\n");
- bool isFriend = false;
- mInsertStartIdx = dotToken->GetSrcEnd();
- if (attrIdentifier != NULL)
- {
- BfAttributeState attributeState;
- attributeState.mTarget = (BfAttributeTargets)(BfAttributeTargets_MemberAccess | BfAttributeTargets_Invocation);
- attributeState.mCustomAttributes = mModule->GetCustomAttributes(attrIdentifier->mAttributes, attributeState.mTarget);
- if ((attributeState.mCustomAttributes != NULL) && (attributeState.mCustomAttributes->Contains(mModule->mCompiler->mFriendAttributeTypeDef)))
- {
- isFriend = true;
- attributeState.mUsed = true;
- }
- mInsertStartIdx = attrIdentifier->mAttributes->GetSrcEnd();
- }
- if (memberName != NULL)
- {
- //Member name MAY be incorrectly identified in cases like:
- // val._
- // OtherCall();
- int cursorIdx = GetCursorIdx(memberName);
- if ((cursorIdx != -1) && (cursorIdx >= memberName->GetSrcStart()))
- mInsertStartIdx = memberName->GetSrcStart();
- }
- SetAndRestoreValue<bool> prevFriendSet(mHasFriendSet, mHasFriendSet || isFriend);
- String filter;
- if ((memberName != NULL) && (IsAutocompleteNode(memberName)))
- {
- filter = GetFilter(memberName);
- }
- else if (mResolveType != BfResolveType_Autocomplete)
- mInsertStartIdx = -1; // Require a full span for everything but autocomplete
- SetAndRestoreValue<bool> prevIgnoreErrors(mModule->mIgnoreErrors, true);
- bool isStatic = false;
- BfTypedValue targetValue = LookupTypeRefOrIdentifier(target, &isStatic, (BfEvalExprFlags)(BfEvalExprFlags_IgnoreNullConditional | BfEvalExprFlags_NoCast), expectingType);
- if ((targetValue) && (dotToken->mToken == BfToken_Arrow))
- {
- SetAndRestoreValue<bool> prevIgnoreClassifying(mModule->mIsInsideAutoComplete, true);
- BfExprEvaluator exprEvaluator(mModule);
- auto arrowValue = exprEvaluator.PerformUnaryOperation_TryOperator(targetValue, NULL, BfUnaryOp_Arrow, BfNodeDynCast<BfTokenNode>(dotToken), BfUnaryOpFlag_None);
- if (arrowValue)
- targetValue = arrowValue;
- }
- bool hadResults = false;
- bool doAsNamespace = true;
- if ((targetValue.mType) && (!isUsingDirective))
- {
- doAsNamespace = false;
- if (auto dotTokenNode = BfNodeDynCast<BfTokenNode>(dotToken))
- {
- if (dotTokenNode->GetToken() == BfToken_QuestionDot)
- {
- if (!targetValue.mType->IsNullable())
- {
- // We need this for Result<T>
- SetAndRestoreValue<bool> prevIgnore(mModule->mBfIRBuilder->mIgnoreWrites, true);
- BfExprEvaluator exprEvaluator(mModule);
- auto opResult = exprEvaluator.PerformUnaryOperation_TryOperator(targetValue, NULL, BfUnaryOp_NullConditional, dotTokenNode, BfUnaryOpFlag_None);
- if (opResult)
- targetValue = opResult;
- }
- // ?. should look inside nullable types
- if (targetValue.mType->IsNullable())
- {
- BfTypeInstance* nullableType = (BfTypeInstance*)targetValue.mType->ToTypeInstance();
- targetValue = mModule->MakeAddressable(targetValue);
- BfIRValue valuePtr = mModule->mBfIRBuilder->CreateInBoundsGEP(targetValue.mValue, 0, 1); // mValue
- targetValue = BfTypedValue(valuePtr, nullableType->mGenericTypeInfo->mTypeGenericArguments[0], true);
- }
- }
- }
- // Statics, inner types
- auto checkType = targetValue.mType;
- if (checkType->IsConcreteInterfaceType())
- checkType = checkType->GetUnderlyingType();
- if (checkType->IsGenericParam())
- {
- auto genericParamType = (BfGenericParamType*)checkType;
- auto genericParamInstance = mModule->GetGenericParamInstance(genericParamType);
- auto _HandleGenericParamInstance = [&](BfGenericParamInstance* genericParamInstance)
- {
- bool showStatics = !targetValue.mValue;
- for (auto interfaceConstraint : genericParamInstance->mInterfaceConstraints)
- AddTypeMembers(interfaceConstraint, showStatics, !showStatics, filter, interfaceConstraint, true, false, false);
- if (genericParamInstance->mTypeConstraint != NULL)
- checkType = genericParamInstance->mTypeConstraint;
- else
- checkType = mModule->mContext->mBfObjectType;
- if ((genericParamInstance->IsEnum()))
- {
- if (isStatic)
- AddEntry(AutoCompleteEntry("valuetype", "UnderlyingType"), filter);
- else
- {
- AddEntry(AutoCompleteEntry("value", "Underlying"), filter);
- AddEntry(AutoCompleteEntry("value", "UnderlyingRef"), filter);
- }
- }
- };
- _HandleGenericParamInstance(genericParamInstance);
- // Check method generic constraints
- if ((mModule->mCurMethodInstance != NULL) && (mModule->mCurMethodInstance->mIsUnspecialized) && (mModule->mCurMethodInstance->mMethodInfoEx != NULL))
- {
- for (int genericParamIdx = (int)mModule->mCurMethodInstance->mMethodInfoEx->mMethodGenericArguments.size();
- genericParamIdx < mModule->mCurMethodInstance->mMethodInfoEx->mGenericParams.size(); genericParamIdx++)
- {
- auto genericParam = mModule->mCurMethodInstance->mMethodInfoEx->mGenericParams[genericParamIdx];
- if (genericParam->mExternType == genericParamType)
- _HandleGenericParamInstance(genericParam);
- }
- }
- }
- if (checkType->IsPointer())
- {
- auto underlyingType = checkType->GetUnderlyingType();
- if ((underlyingType != NULL) && (underlyingType->IsValueType()))
- checkType = underlyingType;
- }
- auto typeInst = checkType->ToTypeInstance();
- if ((typeInst == NULL) &&
- ((checkType->IsPrimitiveType()) || (checkType->IsSizedArray())))
- typeInst = mModule->GetWrappedStructType(checkType);
- if (typeInst != NULL)
- {
- if (typeInst->mTypeDef->IsGlobalsContainer())
- doAsNamespace = true; // Also list the types in this namespace
- bool allowPrivate = (mModule->mCurTypeInstance == typeInst) || (mModule->IsInnerType(mModule->mCurTypeInstance, typeInst));
- bool allowProtected = allowPrivate;
- if (isStatic)
- AddInnerTypes(typeInst, filter, typeInst, allowProtected, allowPrivate);
- if (!onlyShowTypes)
- {
- AddTypeMembers(typeInst, isStatic, !isStatic, filter, typeInst, false, false, false);
- if (!isStatic)
- {
- auto checkTypeInst = mModule->mCurTypeInstance;
- while (checkTypeInst != NULL)
- {
- AddExtensionMethods(typeInst, checkTypeInst, filter, true, true);
- checkTypeInst = mModule->GetOuterType(checkTypeInst);
- }
- if ((mModule->mContext->mCurTypeState != NULL) && (mModule->mContext->mCurTypeState->mType != NULL))
- {
- BF_ASSERT(mModule->mCurTypeInstance == mModule->mContext->mCurTypeState->mType);
- BfGlobalLookup globalLookup;
- globalLookup.mKind = BfGlobalLookup::Kind_All;
- mModule->PopulateGlobalContainersList(globalLookup);
- for (auto& globalContainer : mModule->mContext->mCurTypeState->mGlobalContainers)
- if (globalContainer.mTypeInst != NULL)
- AddExtensionMethods(typeInst, globalContainer.mTypeInst, filter, false, false);
- }
- BfStaticSearch* staticSearch = mModule->GetStaticSearch();
- if (staticSearch != NULL)
- {
- for (auto staticTypeInst : staticSearch->mStaticTypes)
- AddExtensionMethods(typeInst, staticTypeInst, filter, false, false);
- }
- }
- }
- if (typeInst->IsInterface())
- {
- AddTypeMembers(mModule->mContext->mBfObjectType, isStatic, !isStatic, filter, mModule->mContext->mBfObjectType, true, false, false);
- }
- }
- hadResults = true;
- }
- if (doAsNamespace) // Lookup namespaces
- {
- String targetStr = target->ToString();
- BfAtomComposite targetComposite;
- bool isValid = mSystem->ParseAtomComposite(targetStr, targetComposite);
- BfProject* bfProject = GetActiveProject();
- auto _CheckProject = [&](BfProject* project)
- {
- if ((isValid) && (project->mNamespaces.ContainsKey(targetComposite)))
- {
- for (auto namespacePair : project->mNamespaces)
- {
- const BfAtomComposite& namespaceComposite = namespacePair.mKey;
- if ((namespaceComposite.StartsWith(targetComposite)) && (namespaceComposite.GetPartsCount() > targetComposite.GetPartsCount()))
- {
- BfAtom* subNamespace = namespaceComposite.mParts[targetComposite.mSize];
- AutoCompleteEntry entry("namespace", subNamespace->mString.mPtr);
- AddEntry(entry, filter);
- }
- }
- if (!isUsingDirective)
- {
- BfProject* activeProject = GetActiveProject();
- for (auto typeDef : mSystem->mTypeDefs)
- {
- if ((typeDef->mNamespace == targetComposite) && (typeDef->mOuterType == NULL) &&
- (!typeDef->mIsPartial) &&
- ((activeProject == NULL) || (activeProject->ContainsReference(typeDef->mProject))))
- {
- if (typeDef->IsGlobalsContainer())
- {
- auto type = mModule->ResolveTypeDef(typeDef, BfPopulateType_Declaration);
- if (type != NULL)
- {
- auto typeInst = type->ToTypeInstance();
- if (typeInst != NULL)
- AddTypeMembers(typeInst, true, false, filter, typeInst, false, false, false);
- }
- }
- else
- AddTypeDef(typeDef, filter, onlyAttribute);
- }
- }
- }
- hadResults = true;
- }
- };
- if (bfProject != NULL)
- {
- for (int depIdx = -1; depIdx < (int)bfProject->mDependencies.size(); depIdx++)
- {
- BfProject* depProject = (depIdx == -1) ? bfProject : bfProject->mDependencies[depIdx];
- _CheckProject(depProject);
- }
- }
- else
- {
- for (auto project : mSystem->mProjects)
- _CheckProject(project);
- }
- }
- return hadResults;
- }
- else
- {
- auto identifierNode = BfNodeDynCast<BfIdentifierNode>(target);
- if (identifierNode != NULL)
- CheckIdentifier(identifierNode);
- CheckTypeRef(BfNodeDynCast<BfTypeReference>(target), true, false, onlyAttribute);
- }
- return false;
- }
- bool BfAutoComplete::CheckExplicitInterface(BfTypeInstance* interfaceType, BfAstNode* dotToken, BfAstNode* memberName)
- {
- bool isAutocompletingName = false;
- if (memberName != NULL)
- isAutocompletingName = IsAutocompleteNode(dotToken, memberName, 0, 1);
- if (isAutocompletingName)
- {
- //
- }
- else if (IsAutocompleteNode(dotToken, 0, 1))
- {
- mInsertStartIdx = dotToken->GetSrcEnd();
- mInsertEndIdx = mInsertStartIdx;
- }
- else
- return false;
- mModule->PopulateType(interfaceType, BfPopulateType_DataAndMethods);
- String filter;
- if (isAutocompletingName)
- filter = GetFilter(memberName);
- auto activeTypeDef = mModule->GetActiveTypeDef();
- BfShow checkShow = BfShow_Hide;
- for (auto methodDef : interfaceType->mTypeDef->mMethods)
- {
- if (methodDef->mIsOverride)
- continue;
- if (methodDef->mShow >= checkShow)
- continue;
- if (methodDef->mName.IsEmpty())
- continue;
- if (methodDef->mExplicitInterface != NULL)
- continue;
- if ((!interfaceType->IsTypeMemberIncluded(methodDef->mDeclaringType, activeTypeDef, mModule)) ||
- (!interfaceType->IsTypeMemberAccessible(methodDef->mDeclaringType, activeTypeDef)))
- continue;
- if (methodDef->mIsStatic)
- continue;
- bool canUseMethod;
- canUseMethod = (methodDef->mMethodType == BfMethodType_Normal);
- if (canUseMethod)
- {
- AddMethod(interfaceType, methodDef, NULL, methodDef->GetMethodDeclaration(), methodDef->mName, filter);
- }
- }
- return false;
- }
- void BfAutoComplete::CheckTypeRef(BfTypeReference* typeRef, bool mayBeIdentifier, bool isInExpression, bool onlyAttribute)
- {
- if ((typeRef == NULL) || (typeRef->IsTemporary()) || (!IsAutocompleteNode(typeRef)))
- return;
- if (auto genericTypeRef = BfNodeDynCast<BfGenericInstanceTypeRef>(typeRef))
- {
- CheckTypeRef(genericTypeRef->mElementType, mayBeIdentifier, isInExpression, onlyAttribute);
- for (auto genericArg : genericTypeRef->mGenericArguments)
- CheckNode(genericArg, false, isInExpression);
- return;
- }
- if (!onlyAttribute)
- {
- if (auto tupleTypeRef = BfNodeDynCast<BfTupleTypeRef>(typeRef))
- {
- for (auto fieldTypeRef : tupleTypeRef->mFieldTypes)
- CheckTypeRef(fieldTypeRef, false, isInExpression, false);
- return;
- }
- if (auto delegateTypeRef = BfNodeDynCast<BfDelegateTypeRef>(typeRef))
- {
- CheckTypeRef(delegateTypeRef->mReturnType, false, isInExpression);
- for (auto param : delegateTypeRef->mParams)
- {
- auto attributes = param->mAttributes;
- while (attributes != NULL)
- {
- if (attributes->mAttributeTypeRef != NULL)
- {
- CheckAttributeTypeRef(attributes->mAttributeTypeRef);
- }
- attributes = attributes->mNextAttribute;
- }
- CheckTypeRef(param->mTypeRef, false, isInExpression);
- }
- return;
- }
- if (auto elementedTypeRef = BfNodeDynCast<BfElementedTypeRef>(typeRef))
- {
- // "May be identifier" where pointer types could actually end up be multiplies, etc.
- CheckTypeRef(elementedTypeRef->mElementType, true, isInExpression);
- return;
- }
- }
- if ((mayBeIdentifier) && (mResolveType != BfResolveType_GoToDefinition))
- {
- if (auto namedTypeRef = BfNodeDynCast<BfNamedTypeReference>(typeRef))
- {
- CheckIdentifier(namedTypeRef->mNameNode, isInExpression);
- return;
- }
- else if (auto varTypeRef = BfNodeDynCast<BfVarTypeReference>(typeRef))
- {
- CheckIdentifier(varTypeRef->mVarToken, isInExpression);
- return;
- }
- else if (auto varTypeRef = BfNodeDynCast<BfLetTypeReference>(typeRef))
- {
- CheckIdentifier(varTypeRef->mLetToken, isInExpression);
- return;
- }
- }
- if (auto qualifiedTypeRef = BfNodeDynCast<BfQualifiedTypeReference>(typeRef))
- {
- // Only consider the left side as an identifier if there's space after the dot. Consider this:
- // mVal.
- // Type a = null;
- // vs
- // mVal.Type a = null;
- // The first one is clearly a member reference being typed out even though it looks the same
- // to the parser except for the spacing
- if ((qualifiedTypeRef->mRight == NULL) || (qualifiedTypeRef->mDot->GetSrcEnd() < qualifiedTypeRef->mRight->GetSrcStart()))
- {
- BfAutoParentNodeEntry autoParentNodeEntry(mModule, qualifiedTypeRef);
- //CheckMemberReference(qualifiedTypeRef->mLeft, qualifiedTypeRef->mDot, NULL, !mayBeIdentifier, NULL, false, onlyAttribute);
- CheckMemberReference(qualifiedTypeRef->mLeft, qualifiedTypeRef->mDot, qualifiedTypeRef->mRight, !mayBeIdentifier, NULL, false, onlyAttribute);
- }
- else if (auto rightNamedTypeRef = BfNodeDynCast<BfNamedTypeReference>(qualifiedTypeRef->mRight))
- {
- BfAutoParentNodeEntry autoParentNodeEntry(mModule, qualifiedTypeRef);
- if (CheckMemberReference(qualifiedTypeRef->mLeft, qualifiedTypeRef->mDot, rightNamedTypeRef->mNameNode, false, NULL, false, onlyAttribute))
- return;
- }
- }
- if (auto namedTypeRef = BfNodeDynCast<BfNamedTypeReference>(typeRef))
- {
- AddTopLevelNamespaces(namedTypeRef->mNameNode);
- AddTopLevelTypes(namedTypeRef->mNameNode, onlyAttribute);
- }
- }
- void BfAutoComplete::CheckAttributeTypeRef(BfTypeReference* typeRef)
- {
- if (!IsAutocompleteNode(typeRef))
- return;
- CheckTypeRef(typeRef, false, false, true);
- }
- void BfAutoComplete::CheckInvocation(BfAstNode* invocationNode, BfTokenNode* openParen, BfTokenNode* closeParen, const BfSizedArray<ASTREF(BfTokenNode*)>& commas)
- {
- if (!mIsAutoComplete)
- return;
- bool wasCapturingMethodMatchInfo = mIsCapturingMethodMatchInfo;
- mIsCapturingMethodMatchInfo = false;
- int lenAdd = 0;
- if (closeParen == NULL)
- {
- // Unterminated invocation expression - allow for space after last comma in param list
- lenAdd = 1;
- }
- else
- {
- // Ignore close paren
- lenAdd = -1;
- }
- if (!IsAutocompleteNode(invocationNode, lenAdd))
- return;
- if (openParen == NULL)
- {
- mModule->AssertErrorState();
- return;
- }
- auto bfParser = invocationNode->GetSourceData()->ToParser();
- if (bfParser == NULL)
- return;
- int cursorIdx = bfParser->mCursorIdx;
- BfAstNode* target = invocationNode;
- if (auto invocationExpr = BfNodeDynCast<BfInvocationExpression>(invocationNode))
- {
- target = invocationExpr->mTarget;
- if (auto memberTarget = BfNodeDynCast<BfMemberReferenceExpression>(target))
- {
- if (memberTarget->mMemberName != NULL)
- target = memberTarget->mMemberName;
- }
- else if (auto qualifiedTypeRef = BfNodeDynCast<BfQualifiedTypeReference>(target))
- {
- if (qualifiedTypeRef->mRight != NULL)
- target = qualifiedTypeRef->mRight;
- }
- else if (auto qualifiedNameNode = BfNodeDynCast<BfQualifiedNameNode>(target))
- {
- if (qualifiedNameNode->mRight != NULL)
- target = qualifiedNameNode->mRight;
- }
- if (auto attributedMember = BfNodeDynCast<BfAttributedIdentifierNode>(target))
- if (attributedMember->mIdentifier != NULL)
- target = attributedMember->mIdentifier;
- }
- bool doCapture = (bfParser->mCursorIdx >= openParen->GetSrcStart());
- if (mIsGetDefinition)
- {
- doCapture |= (target != NULL) && (bfParser->mCursorIdx >= target->GetSrcStart());
- }
- if (doCapture)
- {
- mIsCapturingMethodMatchInfo = true;
- delete mMethodMatchInfo;
- mMethodMatchInfo = new MethodMatchInfo();
- mMethodMatchInfo->mInvocationSrcIdx = target->GetSrcStart();
- mMethodMatchInfo->mCurMethodInstance = mModule->mCurMethodInstance;
- mMethodMatchInfo->mCurTypeInstance = mModule->mCurTypeInstance;
- mMethodMatchInfo->mSrcPositions.Clear();
- mMethodMatchInfo->mSrcPositions.push_back(openParen->GetSrcStart());
- for (auto comma : commas)
- mMethodMatchInfo->mSrcPositions.push_back(comma->GetSrcStart());
- mMethodMatchInfo->mSrcPositions.push_back(invocationNode->GetSrcEnd() + lenAdd);
- }
- }
- void BfAutoComplete::CheckNode(BfAstNode* node, bool mayBeIdentifier, bool isInExpression)
- {
- if (!IsAutocompleteNode(node))
- return;
- if (auto identifer = BfNodeDynCast<BfIdentifierNode>(node))
- CheckIdentifier(identifer);
- if (auto typeRef = BfNodeDynCast<BfTypeReference>(node))
- CheckTypeRef(typeRef, mayBeIdentifier, isInExpression);
- if (auto memberRef = BfNodeDynCast<BfMemberReferenceExpression>(node))
- {
- if (memberRef->mTarget != NULL)
- CheckMemberReference(memberRef->mTarget, memberRef->mDotToken, memberRef->mMemberName);
- }
- }
- bool BfAutoComplete::GetMethodInfo(BfMethodInstance* methodInst, StringImpl* showString, StringImpl* insertString, bool isImplementing, bool isExplicitInterface)
- {
- SetAndRestoreValue<BfMethodInstance*> prevMethodInstance(mModule->mCurMethodInstance, methodInst);
- auto methodDef = methodInst->mMethodDef;
- bool isInterface = methodInst->GetOwner()->IsInterface();
- BfTypeNameFlags nameFlags = (BfTypeNameFlags)(BfTypeNameFlag_ReduceName | BfTypeNameFlag_ResolveGenericParamNames);
- if ((methodDef->mMethodType == BfMethodType_Normal) || (methodDef->mMethodType == BfMethodType_Ctor))
- {
- StringT<128> methodPrefix;
- StringT<128> methodName;
- StringT<256> impString;
- bool isAbstract = (methodDef->mIsAbstract) || (isInterface) || (!methodDef->mIsVirtual);
- if (methodDef->mMethodType == BfMethodType_Ctor)
- {
- impString += " : base(";
- isAbstract = false;
- }
- else if (isAbstract)
- {
- if (!methodInst->mReturnType->IsVoid())
- impString += "return default;";
- }
- else if (!isAbstract)
- {
- if (!methodInst->mReturnType->IsVoid())
- impString = "return ";
- impString += "base.";
- impString += methodDef->mName;
- impString += "(";
- }
- auto methodDeclaration = methodDef->GetMethodDeclaration();
- if (methodDef->mHasAppend)
- methodPrefix += "[AllowAppend]\r";
- if (isInterface)
- {
- if (!isExplicitInterface)
- methodPrefix += "public ";
- }
- else if (methodDeclaration->mProtectionSpecifier != NULL)
- methodPrefix += methodDeclaration->mProtectionSpecifier->ToString() + " ";
-
- if ((!isInterface) && (methodDef->mMethodType != BfMethodType_Ctor))
- methodPrefix += "override ";
- if (methodDef->mIsStatic)
- methodPrefix += "static ";
- if (methodDef->mMethodType != BfMethodType_Ctor)
- {
- methodPrefix += mModule->TypeToString(methodInst->mReturnType, nameFlags);
- methodPrefix += " ";
- }
- if (isExplicitInterface)
- {
- methodName += mModule->TypeToString(methodInst->GetOwner(), nameFlags);
- methodName += ".";
- }
- if (methodDef->mMethodType == BfMethodType_Ctor)
- methodName += "this";
- else
- methodName += methodDef->mName;
- if (methodInst->GetNumGenericArguments() > 0)
- {
- methodName += "<";
- for (int genericArgIdx = 0; genericArgIdx < (int)methodInst->mMethodInfoEx->mGenericParams.size(); genericArgIdx++)
- {
- if (genericArgIdx > 0)
- methodName += ", ";
- auto genericParam = methodInst->mMethodInfoEx->mGenericParams[genericArgIdx];
- methodName += genericParam->GetName();
- }
- methodName += ">";
- }
- int usedParamIdx = 0;
- methodName += "(";
- for (int paramIdx = 0; paramIdx < (int)methodInst->GetParamCount(); paramIdx++)
- {
- if (methodInst->GetParamKind(paramIdx) == BfParamKind_AppendIdx)
- continue;
-
- if (usedParamIdx > 0)
- {
- methodName += ", ";
- if (!isAbstract)
- impString += ", ";
- }
- if (methodInst->GetParamKind(paramIdx) == BfParamKind_Params)
- methodName += "params ";
-
- methodName += mModule->TypeToString(methodInst->GetParamType(paramIdx), nameFlags);
- methodName += " ";
- methodName += methodDef->mParams[paramIdx]->mName;
- auto paramInitializer = methodInst->GetParamInitializer(paramIdx);
- if (paramInitializer != NULL)
- {
- methodName += " = ";
- paramInitializer->ToString(methodName);
- }
- if (!isAbstract)
- {
- if (methodInst->GetParamKind(paramIdx) == BfParamKind_Params)
- impString += "params ";
- auto paramType = methodInst->GetParamType(paramIdx);
- if (paramType->IsRef())
- {
- auto refType = (BfRefType*)paramType;
- if (refType->mRefKind == BfRefType::RefKind_Ref)
- impString += "ref ";
- if (refType->mRefKind == BfRefType::RefKind_Out)
- impString += "out ";
- }
- impString += methodDef->mParams[paramIdx]->mName;
- }
- usedParamIdx++;
- }
- methodName += ")";
- if (methodInst->GetNumGenericArguments() > 0)
- {
- for (int genericArgIdx = 0; genericArgIdx < (int)methodInst->mMethodInfoEx->mGenericParams.size(); genericArgIdx++)
- {
- auto genericParam = methodInst->mMethodInfoEx->mGenericParams[genericArgIdx];
- if (genericParam->mTypeConstraint != NULL)
- methodName += " where " + genericParam->GetName() + " : " + mModule->TypeToString(genericParam->mTypeConstraint, nameFlags);
- for (auto ifaceConstraint : genericParam->mInterfaceConstraints)
- methodName += " where " + genericParam->GetName() + " : " + mModule->TypeToString(ifaceConstraint, nameFlags);
- if ((genericParam->mGenericParamFlags & BfGenericParamFlag_Class) != 0)
- methodName += " where " + genericParam->GetName() + " : class";
- if ((genericParam->mGenericParamFlags & BfGenericParamFlag_Struct) != 0)
- methodName += " where " + genericParam->GetName() + " : struct";
- if ((genericParam->mGenericParamFlags & BfGenericParamFlag_StructPtr) != 0)
- methodName += " where " + genericParam->GetName() + " : struct*";
- if ((genericParam->mGenericParamFlags & BfGenericParamFlag_New) != 0)
- methodName += " where " + genericParam->GetName() + " : new";
- if ((genericParam->mGenericParamFlags & BfGenericParamFlag_Delete) != 0)
- methodName += " where " + genericParam->GetName() + " : delete";
- if ((genericParam->mGenericParamFlags & BfGenericParamFlag_Var) != 0)
- methodName += " where " + genericParam->GetName() + " : var";
- }
- }
- if (methodDef->mMethodType == BfMethodType_Ctor)
- impString += ")";
- else if (!isAbstract)
- impString += ");";
- if (showString != NULL)
- *showString += methodName;
- if (insertString != NULL)
- {
- if (showString == insertString)
- *insertString += "\t";
- if (methodDef->mMethodType == BfMethodType_Ctor)
- *insertString += methodPrefix + methodName + impString + "\t";
- else
- *insertString += methodPrefix + methodName + "\t" + impString;
- }
- return true;
- }
- else if ((methodDef->mMethodType == BfMethodType_PropertyGetter) || (methodDef->mMethodType == BfMethodType_PropertySetter))
- {
- auto propDeclaration = methodDef->GetPropertyDeclaration();
- bool hasGet = propDeclaration->GetMethod("get") != NULL;
- bool hasSet = propDeclaration->GetMethod("set") != NULL;
- if ((methodDef->mMethodType == BfMethodType_PropertyGetter) || (!hasGet))
- {
- StringT<128> propName;
- StringT<256> impl;
- if (propDeclaration->mNameNode != NULL)
- propDeclaration->mNameNode->ToString(propName);
- else
- {
- StringT<128> args;
- propName += "this[";
- for (int paramIdx = 0, count = methodInst->GetParamCount(); paramIdx < count; ++paramIdx)
- {
- if (paramIdx > 0)
- args += ", ";
- args += mModule->TypeToString(methodInst->GetParamType(paramIdx), nameFlags);
- args += " ";
- args += methodDef->mParams[paramIdx]->mName;
- }
- propName += args;
- propName += "]";
- }
- bool isAbstract = methodDef->mIsAbstract;
- if (propDeclaration->mProtectionSpecifier != NULL)
- impl += propDeclaration->mProtectionSpecifier->ToString() + " ";
- else if (isInterface && !isExplicitInterface)
- impl += "public ";
- if (!isInterface)
- impl += "override ";
- else if (methodDef->mIsStatic)
- impl += "static ";
- BfType* propType = methodInst->mReturnType;
- if (methodDef->mMethodType == BfMethodType_PropertySetter)
- propType = methodInst->GetParamType(0);
- impl += mModule->TypeToString(propType, nameFlags);
- impl += " ";
- if (isExplicitInterface)
- {
- impl += mModule->TypeToString(methodInst->GetOwner(), nameFlags);
- impl += ".";
- }
- impl += propName;
- impl += "\t";
- if (hasGet)
- {
- impl += "get\t";
- if (!isAbstract)
- {
- if (isInterface)
- {
- impl += "return default;";
- }
- else
- {
- impl += "return base.";
- impl += propName;
- impl += ";";
- }
- }
- impl += "\b";
- }
- if (hasSet)
- {
- if (hasGet)
- impl += "\r\r";
- impl += "set\t";
- if (!isAbstract)
- {
- if (!isInterface)
- {
- impl += "base.";
- impl += propName;
- impl += " = value;";
- }
- }
- impl += "\b";
- }
- if (showString != NULL)
- *showString += propName;
- if (insertString != NULL)
- {
- if (showString == insertString)
- *insertString += "\t";
- *insertString += impl;
- }
- return true;
- }
- }
- return false;
- }
- void BfAutoComplete::AddOverrides(const StringImpl& filter, bool forceAll)
- {
- if (!mIsAutoComplete)
- return;
- auto activeTypeDef = mModule->GetActiveTypeDef();
- BfShow checkShow = BfShow_Hide;
- BfTypeInstance* curType = mModule->mCurTypeInstance;
- while (curType != NULL)
- {
- for (auto methodDef : curType->mTypeDef->mMethods)
- {
- if (methodDef->mShow >= checkShow)
- continue;
- bool allowInternalOverride = false;
- if (curType == mModule->mCurTypeInstance)
- {
- // The "normal" case, and only case for types without extensions
- if ((methodDef->mDeclaringType == activeTypeDef) && (!forceAll))
- continue;
- if ((methodDef->mDeclaringType->IsExtension()) && (methodDef->mDeclaringType->mProject == activeTypeDef->mProject))
- continue;
- if (!curType->IsTypeMemberAccessible(methodDef->mDeclaringType, activeTypeDef))
- continue;
- if (methodDef->mIsExtern)
- allowInternalOverride = true;
- }
- auto& methodGroup = curType->mMethodInstanceGroups[methodDef->mIdx];
- if (methodGroup.mDefault == NULL)
- {
- continue;
- }
- auto methodInst = methodGroup.mDefault;
- if (allowInternalOverride)
- {
- //
- }
- else if ((!methodDef->mIsVirtual) || (methodDef->mIsOverride))
- continue;
- if ((methodDef->mMethodType != BfMethodType_Normal) &&
- (methodDef->mMethodType != BfMethodType_PropertyGetter) &&
- (methodDef->mMethodType != BfMethodType_PropertySetter))
- continue;
- if ((methodInst->mVirtualTableIdx >= 0) && (methodInst->mVirtualTableIdx < mModule->mCurTypeInstance->mVirtualMethodTable.size()) && (!forceAll))
- {
- auto& vEntry = mModule->mCurTypeInstance->mVirtualMethodTable[methodInst->mVirtualTableIdx];
- if (vEntry.mImplementingMethod.mTypeInstance == mModule->mCurTypeInstance)
- continue;
- }
- StringT<512> insertString;
- GetMethodInfo(methodInst, &insertString, &insertString, true, false);
- if (insertString.IsEmpty())
- continue;
- AddEntry(AutoCompleteEntry("override", insertString), filter);
- }
- if (curType->IsStruct())
- curType = mModule->mContext->mBfObjectType;
- else
- curType = curType->mBaseType;
- }
- }
- void BfAutoComplete::AddCtorPassthroughs()
- {
- if (!mIsAutoComplete)
- return;
- auto activeTypeDef = mModule->GetActiveTypeDef();
- BfTypeInstance* curType = mModule->mCurTypeInstance;
- auto baseType = curType->mBaseType;
- String totalInsertString;
- Array<BfMethodInstance*> declMethods;
- for (auto methodDef : curType->mTypeDef->mMethods)
- {
- if (methodDef->mMethodType != BfMethodType_Ctor)
- continue;
-
- auto& methodGroup = curType->mMethodInstanceGroups[methodDef->mIdx];
- auto methodInst = methodGroup.mDefault;
- if (methodInst == NULL)
- continue;
- if (methodDef->mMethodType != BfMethodType_Ctor)
- continue;
- declMethods.Add(methodInst);
- }
-
- for (auto methodDef : baseType->mTypeDef->mMethods)
- {
- if (methodDef->mShow != BfShow_Show)
- continue;
- if (methodDef->mProtection < BfProtection_Protected)
- continue;
- if (methodDef->mIsStatic)
- continue;
- auto& methodGroup = baseType->mMethodInstanceGroups[methodDef->mIdx];
- auto methodInst = methodGroup.mDefault;
- if (methodInst == NULL)
- continue;
- if (methodDef->mMethodType != BfMethodType_Ctor)
- continue;
-
- if (methodInst->GetParamCount() == 0)
- continue;
- bool hasDecl = false;
- for (auto declMethod : declMethods)
- {
- if (mModule->CompareMethodSignatures(methodInst, declMethod))
- {
- hasDecl = true;
- break;
- }
- }
- if (hasDecl)
- continue;
- StringT<512> insertString;
- GetMethodInfo(methodInst, &insertString, &insertString, true, false);
- if (insertString.IsEmpty())
- continue;
- AddEntry(AutoCompleteEntry("this", insertString), "");
- int tabPos = (int)insertString.IndexOf('\t');
- if (tabPos >= 0)
- {
- if (!totalInsertString.IsEmpty())
- totalInsertString += "\r\r";
- totalInsertString += insertString.Substring(tabPos + 1);
- }
- }
- if ((!totalInsertString.IsEmpty()) && (mEntriesSet.GetCount() >= 2))
- {
- totalInsertString.Replace("\t", "\t\b");
- totalInsertString.Insert(0, "this - all\t");
- auto entry = AddEntry(AutoCompleteEntry("this", totalInsertString), "");
- }
- }
- void BfAutoComplete::UpdateReplaceData()
- {
- }
- void BfAutoComplete::CheckMethod(BfMethodDeclaration* methodDeclaration, bool isLocalMethod)
- {
- if (/*(propertyDeclaration->mDefinitionBlock == NULL) &&*/ (methodDeclaration->mVirtualSpecifier != NULL) &&
- (methodDeclaration->mVirtualSpecifier->GetToken() == BfToken_Override))
- {
- auto bfParser = methodDeclaration->mVirtualSpecifier->GetSourceData()->ToParser();
- if (bfParser == NULL)
- return;
- int cursorIdx = bfParser->mCursorIdx;
- bool isInTypeRef = IsAutocompleteNode(methodDeclaration->mReturnType);
- bool isInNameNode = IsAutocompleteNode(methodDeclaration->mNameNode);
- if (((IsAutocompleteNode(methodDeclaration, 1)) && (cursorIdx == methodDeclaration->mVirtualSpecifier->GetSrcEnd())) ||
- (isInTypeRef) || (isInNameNode))
- {
- if (mIsAutoComplete)
- {
- mInsertStartIdx = methodDeclaration->GetSrcStart();
- mInsertEndIdx = methodDeclaration->GetSrcEnd();
- if (methodDeclaration->mBody != NULL)
- {
- if (methodDeclaration->mBody->mTriviaStart != -1)
- mInsertEndIdx = methodDeclaration->mBody->mTriviaStart;
- else
- mInsertEndIdx = methodDeclaration->mBody->GetSrcStart();
- }
- }
- String filter;
- if ((isInNameNode || isInTypeRef))
- {
- if (methodDeclaration->mNameNode != NULL)
- filter = methodDeclaration->mNameNode->ToString();
- else if (methodDeclaration->mReturnType != NULL)
- filter = methodDeclaration->mReturnType->ToString();
- }
- else if (methodDeclaration->mBody != NULL)
- {
- // We're just inside 'override' - we may be inserting a new method
- mInsertEndIdx = methodDeclaration->mVirtualSpecifier->GetSrcEnd();
- }
- AddOverrides(filter);
- }
- }
- if (auto ctorDeclaration = BfNodeDynCast<BfConstructorDeclaration>(methodDeclaration))
- {
- if ((ctorDeclaration->mThisToken != NULL) && (ctorDeclaration->mOpenParen == NULL))
- {
- auto bfParser = ctorDeclaration->mThisToken->GetSourceData()->ToParser();
- if (bfParser == NULL)
- return;
- int cursorIdx = bfParser->mCursorIdx;
- if ((IsAutocompleteNode(methodDeclaration, 1)) && (cursorIdx == ctorDeclaration->mThisToken->GetSrcEnd()))
- {
- if (mIsAutoComplete)
- {
- mInsertStartIdx = ctorDeclaration->GetSrcStart();
- mInsertEndIdx = ctorDeclaration->mThisToken->GetSrcEnd();
- }
- AddCtorPassthroughs();
- }
- }
- }
- if (methodDeclaration->mReturnType != NULL)
- CheckTypeRef(methodDeclaration->mReturnType, true, isLocalMethod);
- }
- void BfAutoComplete::CheckProperty(BfPropertyDeclaration* propertyDeclaration)
- {
- if (IsAutocompleteNode(propertyDeclaration->mNameNode))
- {
- mInsertStartIdx = propertyDeclaration->mNameNode->GetSrcStart();
- mInsertEndIdx = propertyDeclaration->mNameNode->GetSrcEnd();
- }
- if (propertyDeclaration->mExplicitInterface != NULL)
- {
- BfTypeInstance* typeInst = NULL;
- auto type = mModule->ResolveTypeRef(propertyDeclaration->mExplicitInterface, BfPopulateType_Identity);
- if (type != NULL)
- typeInst = type->ToTypeInstance();
- if (typeInst != NULL)
- CheckExplicitInterface(typeInst, propertyDeclaration->mExplicitInterfaceDotToken, propertyDeclaration->mNameNode);
- }
- if ((propertyDeclaration->mVirtualSpecifier != NULL) &&
- (propertyDeclaration->mVirtualSpecifier->GetToken() == BfToken_Override))
- {
- if (!mIsAutoComplete)
- return;
- auto bfParser = propertyDeclaration->mVirtualSpecifier->GetSourceData()->ToParser();
- if (bfParser == NULL)
- return;
- int cursorIdx = bfParser->mCursorIdx;
- bool isInTypeRef = IsAutocompleteNode(propertyDeclaration->mTypeRef);
- bool isInNameNode = IsAutocompleteNode(propertyDeclaration->mNameNode);
- if (((IsAutocompleteNode(propertyDeclaration, 1)) && (cursorIdx == propertyDeclaration->mVirtualSpecifier->GetSrcEnd())) ||
- (isInTypeRef) || (isInNameNode))
- {
- mInsertStartIdx = propertyDeclaration->mVirtualSpecifier->GetSrcStart();
- String filter;
- if ((isInNameNode || isInTypeRef))
- {
- BfAstNode* defNode = NULL;
- if (isInNameNode)
- defNode = propertyDeclaration->mNameNode;
- else if (isInTypeRef)
- defNode = propertyDeclaration->mTypeRef;
- filter = defNode->ToString();
- mInsertEndIdx = defNode->GetSrcEnd();
- }
- else if (propertyDeclaration->mTypeRef != NULL)
- {
- // We're just inside 'override' - we may be inserting a new method
- mInsertEndIdx = propertyDeclaration->mVirtualSpecifier->GetSrcEnd();
- }
- else
- {
- mInsertEndIdx = propertyDeclaration->mVirtualSpecifier->GetSrcEnd();
- }
- AddOverrides(filter);
- mInsertStartIdx = propertyDeclaration->mSrcStart;
- }
- }
- else
- {
- if (propertyDeclaration->mTypeRef != NULL)
- CheckTypeRef(propertyDeclaration->mTypeRef, true);
- }
- }
- void BfAutoComplete::CheckVarResolution(BfAstNode* varTypeRef, BfType* resolvedType)
- {
- if (IsAutocompleteNode(varTypeRef))
- {
- if ((resolvedType == NULL) || (resolvedType->IsVar()) || (resolvedType->IsLet()))
- return;
- if (mIsGetDefinition)
- {
- auto typeInst = resolvedType->ToTypeInstance();
- if (typeInst != NULL)
- {
- if (typeInst->mTypeDef->mTypeDeclaration != NULL)
- SetDefinitionLocation(typeInst->mTypeDef->mTypeDeclaration->mNameNode);
- }
- }
- if (mResolveType == BfResolveType_GetResultString)
- {
- mResultString = ":";
- mResultString += mModule->TypeToString(resolvedType, (BfTypeNameFlags)(BfTypeNameFlag_ExtendedInfo | BfTypeNameFlag_ResolveGenericParamNames));
- }
- }
- }
- class BfAutocompleteNodeChecker : public BfStructuralVisitor
- {
- public:
- BfAutoComplete* mAutoComplete;
- bool mSelected;
- public:
- BfAutocompleteNodeChecker(BfAutoComplete* autoComplete)
- {
- mAutoComplete = autoComplete;
- mSelected = false;
- }
- virtual void Visit(BfAstNode* bfAstNode) override
- {
- mSelected = mAutoComplete->IsAutocompleteNode(bfAstNode);
- }
- virtual void Visit(BfBinaryOperatorExpression* binOpExpr) override
- {
- mSelected = mAutoComplete->IsAutocompleteNode(binOpExpr->mOpToken);
- }
- virtual void Visit(BfUnaryOperatorExpression* unaryOpExpr) override
- {
- VisitChild(unaryOpExpr->mExpression);
- }
- virtual void Visit(BfCastExpression* castExpr) override
- {
- VisitChild(castExpr->mExpression);
- }
- virtual void Visit(BfLiteralExpression* literalExpr) override
- {
- mSelected = mAutoComplete->IsAutocompleteNode(literalExpr);
- }
- virtual void Visit(BfIdentifierNode* identifierNode) override
- {
- mSelected = mAutoComplete->IsAutocompleteNode(identifierNode);
- }
- virtual void Visit(BfMemberReferenceExpression* memberRefExpr) override
- {
- mSelected = mAutoComplete->IsAutocompleteNode(memberRefExpr->mMemberName);
- }
- };
- void BfAutoComplete::CheckResult(BfAstNode* node, const BfTypedValue& typedValue)
- {
- if (mResolveType != BfResolveType_GetResultString)
- return;
- if (!IsAutocompleteNode(node))
- return;
-
- if (!typedValue.mValue.IsConst())
- return;
- if (typedValue.mType->IsPointer())
- return;
- if (typedValue.mType->IsObject())
- return;
- BfAutocompleteNodeChecker autocompleteNodeChecker(this);
- autocompleteNodeChecker.VisitChildNoRef(node);
- if (!autocompleteNodeChecker.mSelected)
- return;
- String constStr = ConstantToString(mModule->mBfIRBuilder, typedValue);
- if (!constStr.IsEmpty())
- {
- mResultString = ":";
- mResultString += constStr;
- AddResultTypeKind(typedValue.mType);
- }
- else
- {
- SetResultStringType(typedValue.mType);
- }
- }
- void BfAutoComplete::CheckLocalDef(BfAstNode* identifierNode, BfLocalVariable* varDecl)
- {
- CheckLocalRef(identifierNode, varDecl);
- }
- void BfAutoComplete::CheckLocalRef(BfAstNode* identifierNode, BfLocalVariable* varDecl)
- {
- if (mReplaceLocalId != -1)
- return;
- if (mResolveType == BfResolveType_GoToDefinition)
- {
- if (IsAutocompleteNode(identifierNode))
- {
- if (varDecl->mNameNode != NULL)
- SetDefinitionLocation(varDecl->mNameNode, true);
- else if (varDecl->mIsThis)
- SetDefinitionLocation(mModule->mCurTypeInstance->mTypeDef->GetRefNode(), true);
- }
- }
- else if (mResolveType == BfResolveType_GetSymbolInfo)
- {
- if ((IsAutocompleteNode(identifierNode)) &&
- ((!varDecl->mIsShadow) || (varDecl->mShadowedLocal != NULL)))
- {
- if ((mModule->mCurMethodState != NULL) && (mModule->mCurMethodState->mClosureState != NULL) &&
- (!mModule->mCurMethodState->mClosureState->mCapturing))
- {
- // For closures, only get locals during the 'capturing' stage
- return;
- }
- auto rootMethodInstance = mModule->mCurMethodState->GetRootMethodState()->mMethodInstance;
- if (rootMethodInstance == NULL)
- return;
- if (varDecl->mIsThis)
- return;
- auto resolvePassData = mModule->mCompiler->mResolvePassData;
- mDefType = mModule->mCurTypeInstance->mTypeDef;
- mReplaceLocalId = varDecl->mLocalVarId;
- mDefMethod = rootMethodInstance->mMethodDef;
- if (mInsertStartIdx == -1)
- {
- mInsertStartIdx = identifierNode->GetSrcStart();
- mInsertEndIdx = identifierNode->GetSrcEnd();
- }
- }
- }
- else if (mResolveType == BfResolveType_GetResultString)
- {
- if (IsAutocompleteNode(identifierNode))
- {
- String constStr;
- if (varDecl->mConstValue.IsConst())
- constStr = ConstantToString(mModule->mBfIRBuilder, BfTypedValue(varDecl->mConstValue, varDecl->mResolvedType));
- if (!constStr.IsEmpty())
- {
- mResultString = constStr;
- }
- else
- {
- SetResultStringType(varDecl->mResolvedType);
- }
- }
- }
- }
- void BfAutoComplete::CheckFieldRef(BfAstNode* identifierNode, BfFieldInstance* fieldInst)
- {
- if (mResolveType == BfResolveType_GetSymbolInfo)
- {
- if (mDefField != NULL)
- return;
- if (IsAutocompleteNode(identifierNode))
- {
- while (true)
- {
- if (auto qualifiedName = BfNodeDynCast<BfQualifiedNameNode>(identifierNode))
- {
- identifierNode = qualifiedName->mRight;
- if (!IsAutocompleteNode(identifierNode))
- return;
- }
- else
- break;
- }
- //mReplaceTypeDef = fieldInst->mOwner->mTypeDef;
- //mReplaceFieldDef = fieldInst->GetFieldDef();
- mDefType = fieldInst->mOwner->mTypeDef;
- mDefField = fieldInst->GetFieldDef();
- mInsertStartIdx = identifierNode->GetSrcStart();
- mInsertEndIdx = identifierNode->GetSrcEnd();
- }
- }
- }
- void BfAutoComplete::CheckLabel(BfIdentifierNode* identifierNode, BfAstNode* precedingNode, BfScopeData* scopeData)
- {
- String filter;
- if (identifierNode != NULL)
- {
- if ((mModule->mCompiler->mResolvePassData != NULL) && (scopeData != NULL))
- {
- auto rootMethodState = mModule->mCurMethodState->GetRootMethodState();
- mModule->mCompiler->mResolvePassData->HandleLocalReference(identifierNode, rootMethodState->mMethodInstance->GetOwner()->mTypeDef, rootMethodState->mMethodInstance->mMethodDef, scopeData->mScopeLocalId);
- }
- if (!IsAutocompleteNode(identifierNode))
- return;
- if (scopeData != NULL)
- {
- if (mResolveType == BfResolveType_GoToDefinition)
- {
- SetDefinitionLocation(scopeData->mLabelNode);
- }
- else if (mResolveType == BfResolveType_GetSymbolInfo)
- {
- auto rootMethodInstance = mModule->mCurMethodState->GetRootMethodState()->mMethodInstance;
- if (rootMethodInstance == NULL)
- return;
- mDefType = mModule->mCurTypeInstance->mTypeDef;
- mReplaceLocalId = scopeData->mScopeLocalId;
- mDefMethod = rootMethodInstance->mMethodDef;
- if (mInsertStartIdx == -1)
- {
- mInsertStartIdx = identifierNode->GetSrcStart();
- mInsertEndIdx = identifierNode->GetSrcEnd();
- }
- }
- if (scopeData->mLabelNode == identifierNode)
- return;
- }
- filter = identifierNode->ToString();
- mInsertStartIdx = identifierNode->GetSrcStart();
- mInsertEndIdx = identifierNode->GetSrcEnd();
- }
- else
- {
- if (precedingNode == NULL)
- return;
- int expectSpacing = 1;
- if (auto precedingToken = BfNodeDynCast<BfTokenNode>(precedingNode))
- if (precedingToken->GetToken() == BfToken_Colon)
- expectSpacing = 0;
- if (!IsAutocompleteNode(precedingNode, expectSpacing))
- return;
- auto bfParser = precedingNode->GetSourceData()->ToParser();
- if (bfParser->mCursorIdx != precedingNode->GetSrcEnd() + expectSpacing - 1)
- return;
- mInsertStartIdx = precedingNode->GetSrcEnd() + expectSpacing;
- mInsertEndIdx = mInsertStartIdx;
- }
- auto checkScope = mModule->mCurMethodState->mCurScope;
- while (checkScope != NULL)
- {
- if (!checkScope->mLabel.empty())
- AddEntry(AutoCompleteEntry("label", checkScope->mLabel), filter);
- checkScope = checkScope->mPrevScope;
- }
- }
- void BfAutoComplete::CheckNamespace(BfAstNode* node, const BfAtomComposite& namespaceName)
- {
- if (mResolveType == BfResolveType_GetSymbolInfo)
- {
- if (IsAutocompleteNode(node))
- {
- int namespaceCount = namespaceName.mSize;
- auto checkNode = node;
- while (auto qualifiedTypeRef = BfNodeDynCast<BfQualifiedTypeReference>(checkNode))
- {
- if (!IsAutocompleteNode(qualifiedTypeRef->mLeft))
- break;
- namespaceCount--;
- checkNode = qualifiedTypeRef->mLeft;
- }
- while (auto qualifiedNameNode = BfNodeDynCast<BfQualifiedNameNode>(checkNode))
- {
- if (!IsAutocompleteNode(qualifiedNameNode->mLeft))
- break;
- namespaceCount--;
- checkNode = qualifiedNameNode->mLeft;
- }
- while (auto qualifiedTypeRef = BfNodeDynCast<BfQualifiedTypeReference>(checkNode))
- checkNode = qualifiedTypeRef->mRight;
- while (auto qualifiedNameNode = BfNodeDynCast<BfQualifiedNameNode>(checkNode))
- checkNode = qualifiedNameNode->mRight;
- if (checkNode != NULL)
- {
- mInsertStartIdx = checkNode->GetSrcStart();
- mInsertEndIdx = checkNode->GetSrcEnd();
- mDefNamespace.Set(namespaceName.mParts, namespaceCount, NULL, 0);
- }
- }
- }
- }
- void BfAutoComplete::AddTypeInstanceEntry(BfTypeInstance* typeInst)
- {
- String bestTypeName = mModule->TypeToString(typeInst, BfTypeNameFlag_ReduceName);
- if (typeInst->IsValueType())
- AddEntry(AutoCompleteEntry("valuetype", bestTypeName));
- else
- AddEntry(AutoCompleteEntry("class", bestTypeName));
- mDefaultSelection = bestTypeName;
- }
- bool BfAutoComplete::CheckDocumentation(AutoCompleteEntry* entry, BfCommentNode* documentation)
- {
- if (mDocumentationEntryName.IsEmpty())
- return false;
- if (mDocumentationEntryName != entry->mDisplay)
- return false;
- if (documentation != NULL)
- {
- StringT<128> str;
- documentation->GetDocString(str);
- entry->mDocumentation = mAlloc.AllocString(str);
- }
- return true;
- }
- void BfAutoComplete::CheckEmptyStart(BfAstNode* prevNode, BfType* type)
- {
- // Temporarily (?) removed?
- return;
- if (IsAutocompleteNode(prevNode, 2))
- {
- if (!type->IsEnum())
- return;
- int wantCursorIdx = prevNode->GetSrcEnd() - 1;
- String prevNodeString = prevNode->ToString();
- if (prevNodeString != "(")
- wantCursorIdx++;
- if (prevNode->GetSourceData()->ToParser()->mCursorIdx != wantCursorIdx)
- return;
- AddTypeInstanceEntry(type->ToTypeInstance());
- CheckIdentifier(NULL);
- mInsertStartIdx = wantCursorIdx + 1;
- mInsertEndIdx = mInsertStartIdx;
- }
- }
- bool BfAutoComplete::CheckFixit(BfAstNode* node)
- {
- if (mIgnoreFixits)
- return false;
- if (mModule == NULL)
- return false;
- if (mCompiler->mResolvePassData->mResolveType != BfResolveType_GetFixits)
- return false;
- if (!IsAutocompleteLineNode(node))
- return false;
- if (mInsertStartIdx == -1)
- {
- mInsertStartIdx = node->GetSrcStart();
- mInsertEndIdx = node->GetSrcStart();
- }
- return true;
- }
- int BfAutoComplete::FixitGetMemberInsertPos(BfTypeDef* typeDef)
- {
- BfTypeDeclaration* typeDecl = typeDef->mTypeDeclaration;
- BfTokenNode* openNode = NULL;
- BfTokenNode* closeNode = NULL;
- if (auto blockNode = BfNodeDynCast<BfBlock>(typeDecl->mDefineNode))
- {
- openNode = blockNode->mOpenBrace;
- closeNode = blockNode->mCloseBrace;
- }
- int insertPos = -1;
- BfParserData* parser = typeDef->mTypeDeclaration->GetSourceData()->ToParserData();
- if ((parser != NULL) && (closeNode != NULL))
- {
- int startPos = openNode->mSrcStart + 1;
- insertPos = closeNode->mSrcStart;
- while (insertPos > startPos)
- {
- char prevC = parser->mSrc[insertPos - 1];
- if (prevC == '\n')
- break;
- insertPos--;
- }
- if (insertPos > startPos)
- insertPos--;
- }
- return insertPos;
- }
- void BfAutoComplete::CheckInterfaceFixit(BfTypeInstance* typeInstance, BfAstNode* node)
- {
- if (!CheckFixit(node))
- return;
- if (typeInstance == NULL)
- return;
- if (typeInstance->IsInterface())
- return;
- for (auto& ifaceTypeInst : typeInstance->mInterfaces)
- {
- Array<BfMethodInstance*> missingMethods;
- auto ifaceInst = ifaceTypeInst.mInterfaceType;
- int startIdx = ifaceTypeInst.mStartInterfaceTableIdx;
- int iMethodCount = (int)ifaceInst->mMethodInstanceGroups.size();
- auto declTypeDef = ifaceTypeInst.mDeclaringType;
- for (int iMethodIdx = 0; iMethodIdx < iMethodCount; iMethodIdx++)
- {
- auto matchedMethodRef = &typeInstance->mInterfaceMethodTable[iMethodIdx + startIdx].mMethodRef;
- BfMethodInstance* matchedMethod = *matchedMethodRef;
- auto ifaceMethodInst = ifaceInst->mMethodInstanceGroups[iMethodIdx].mDefault;
- if (ifaceMethodInst == NULL)
- continue;
- auto iReturnType = ifaceMethodInst->mReturnType;
- if (iReturnType->IsSelf())
- iReturnType = typeInstance;
- if (ifaceMethodInst->mMethodDef->mIsOverride)
- continue; // Don't consider overrides here
- // If we have "ProjA depends on LibBase", "ProjB depends on LibBase", then a type ClassC in LibBase implementing IFaceD,
- // where IFaceD gets extended with MethodE in ProjA, an implementing MethodE is still required to exist on ClassC --
- // the visibility is bidirectional. A type ClassF implementing IFaceD inside ProjB will not be required to implement
- // MethodE, however
- if ((!ifaceInst->IsTypeMemberAccessible(ifaceMethodInst->mMethodDef->mDeclaringType, ifaceTypeInst.mDeclaringType)) &&
- (!ifaceInst->IsTypeMemberAccessible(ifaceTypeInst.mDeclaringType, ifaceMethodInst->mMethodDef->mDeclaringType)))
- continue;
- if (!ifaceInst->IsTypeMemberIncluded(ifaceMethodInst->mMethodDef->mDeclaringType, ifaceTypeInst.mDeclaringType))
- continue;
- bool hadMatch = matchedMethod != NULL;
- bool hadPubFailure = false;
- bool hadMutFailure = false;
- if (!hadMatch)
- missingMethods.Add(ifaceMethodInst);
- }
- if (!missingMethods.IsEmpty())
- {
- BfParserData* parser = declTypeDef->mTypeDeclaration->GetSourceData()->ToParserData();
- if (parser != NULL)
- {
- int insertPos = FixitGetMemberInsertPos(declTypeDef);
- bool wantsBreak = false;
- String insertStr = "\f";
- for (auto methodInst : missingMethods)
- {
- if (wantsBreak)
- {
- insertStr += "\r\r";
- wantsBreak = false;
- }
- if (GetMethodInfo(methodInst, NULL, &insertStr, true, false))
- {
- insertStr += "\b";
- wantsBreak = true;
- }
- }
- wantsBreak = false;
- String explicitInsertStr = "\f";
- for (auto methodInst : missingMethods)
- {
- if (wantsBreak)
- {
- explicitInsertStr += "\r\r";
- wantsBreak = false;
- }
- if (GetMethodInfo(methodInst, NULL, &explicitInsertStr, true, true))
- {
- explicitInsertStr += "\b";
- wantsBreak = true;
- }
- }
- if (insertPos != -1)
- {
- mCompiler->mResolvePassData->mAutoComplete->AddEntry(AutoCompleteEntry("fixit", StrFormat("Implement interface '%s'\tusing|%s|%s",
- mModule->TypeToString(ifaceInst).c_str(), FixitGetLocation(parser, insertPos).c_str(), insertStr.c_str()).c_str()));
- mCompiler->mResolvePassData->mAutoComplete->AddEntry(AutoCompleteEntry("fixit", StrFormat("Implement interface '%s' explicitly\tusing|%s|%s",
- mModule->TypeToString(ifaceInst).c_str(), FixitGetLocation(parser, insertPos).c_str(), explicitInsertStr.c_str()).c_str()));
- }
- }
- }
- }
- if ((!typeInstance->IsInterface()) && (!typeInstance->IsUnspecializedTypeVariation()) && (!typeInstance->IsBoxed()))
- {
- if (!typeInstance->mTypeDef->mIsAbstract)
- {
- Array<BfMethodInstance*> missingMethods;
- for (int methodIdx = 0; methodIdx < (int)typeInstance->mVirtualMethodTable.size(); methodIdx++)
- {
- auto& methodRef = typeInstance->mVirtualMethodTable[methodIdx].mImplementingMethod;
- if (methodRef.mMethodNum == -1)
- {
- BF_ASSERT(mCompiler->mOptions.mHasVDataExtender);
- if (methodRef.mTypeInstance == typeInstance)
- {
- if (typeInstance->GetImplBaseType() != NULL)
- BF_ASSERT(methodIdx == (int)typeInstance->GetImplBaseType()->mVirtualMethodTableSize);
- }
- continue;
- }
- auto methodInstance = (BfMethodInstance*)methodRef;
- if ((methodInstance != NULL) && (methodInstance->mMethodDef->mIsAbstract))
- {
- if (methodInstance->mMethodDef->mIsAbstract)
- {
- if (!typeInstance->IsUnspecializedTypeVariation())
- missingMethods.Add(methodInstance);
- }
- }
- }
- if (!missingMethods.IsEmpty())
- {
- auto declTypeDef = typeInstance->mTypeDef;
- BfParserData* parser = declTypeDef->mTypeDeclaration->GetSourceData()->ToParserData();
- if (parser != NULL)
- {
- int insertPos = FixitGetMemberInsertPos(declTypeDef);
- bool wantsBreak = false;
- String insertStr = "\f";
- for (auto methodInst : missingMethods)
- {
- if (wantsBreak)
- {
- insertStr += "\r\r";
- wantsBreak = false;
- }
- if (GetMethodInfo(methodInst, NULL, &insertStr, true, false))
- {
- insertStr += "\b";
- wantsBreak = true;
- }
- }
- if (insertPos != -1)
- {
- mCompiler->mResolvePassData->mAutoComplete->AddEntry(AutoCompleteEntry("fixit", StrFormat("Implement abstract methods\tmethod|%s|%s",
- FixitGetLocation(parser, insertPos).c_str(), insertStr.c_str()).c_str()));
- }
- }
- }
- }
- }
- }
- void BfAutoComplete::FixitAddMember(BfTypeInstance* typeInst, BfType* fieldType, const StringImpl& fieldName, bool isStatic, BfTypeInstance* referencedFrom)
- {
- if (typeInst == mModule->mContext->mBfObjectType)
- return;
- auto parser = typeInst->mTypeDef->GetDefinition()->mSource->ToParser();
- if (parser == NULL)
- return;
- String fullName = typeInst->mTypeDef->mFullName.ToString();
- String fieldStr;
- if (typeInst == referencedFrom)
- {
- // Implicitly private
- }
- else if ((referencedFrom != NULL) && (mModule->TypeIsSubTypeOf(referencedFrom, typeInst)))
- {
- fieldStr += "protected ";
- }
- else
- {
- fieldStr += "public ";
- }
- if (isStatic)
- fieldStr += "static ";
- if (fieldType != NULL)
- fieldStr += mModule->TypeToString(fieldType, BfTypeNameFlag_ReduceName);
- else
- fieldStr += "Object";
- fieldStr += " " + fieldName + ";";
- int fileLoc = typeInst->mTypeDef->mTypeDeclaration->GetSrcEnd();
- if (auto defineBlock = BfNodeDynCast<BfBlock>(typeInst->mTypeDef->mTypeDeclaration->mDefineNode))
- fileLoc = BfFixitFinder::FindLineStartAfter(defineBlock->mOpenBrace);
- if (!typeInst->mTypeDef->mFields.empty())
- {
- auto fieldDecl = typeInst->mTypeDef->mFields.back()->mFieldDeclaration;
- if (fieldDecl != NULL)
- {
- fileLoc = BfFixitFinder::FindLineStartAfter(fieldDecl);
- }
- }
- const char* memberName = "field";
- if (isStatic)
- memberName = "static field";
- AddEntry(AutoCompleteEntry("fixit", StrFormat("Create %s '%s' in '%s'\taddField|%s||%s", memberName, fieldName.c_str(), fullName.c_str(),
- FixitGetLocation(parser->mParserData, fileLoc).c_str(), fieldStr.c_str()).c_str()));
- }
- void BfAutoComplete::FixitAddCase(BfTypeInstance* typeInst, const StringImpl& caseName, const BfTypeVector& fieldTypes)
- {
- if (typeInst == mModule->mContext->mBfObjectType)
- return;
- auto parser = typeInst->mTypeDef->GetDefinition()->mSource->ToParser();
- if (parser == NULL)
- return;
- String fullName = typeInst->mTypeDef->mFullName.ToString();
- String fieldStr;
- int fileLoc = typeInst->mTypeDef->mTypeDeclaration->GetSrcEnd();
- if (auto defineBlock = BfNodeDynCast<BfBlock>(typeInst->mTypeDef->mTypeDeclaration->mDefineNode))
- fileLoc = BfFixitFinder::FindLineStartAfter(defineBlock->mOpenBrace);
- if (!typeInst->mTypeDef->mFields.empty())
- {
- auto fieldDecl = typeInst->mTypeDef->mFields.back()->mFieldDeclaration;
- if (fieldDecl != NULL)
- {
- fileLoc = BfFixitFinder::FindLineStartAfter(fieldDecl);
- }
- }
- bool isSimpleCase = false;
- if (!typeInst->mTypeDef->mFields.IsEmpty())
- {
- if (auto block = BfNodeDynCast<BfBlock>(typeInst->mTypeDef->mTypeDeclaration->mDefineNode))
- {
- bool endsInComma = false;
- if (!block->mChildArr.IsEmpty())
- {
- auto lastNode = block->mChildArr.back();
- if (auto tokenNode = BfNodeDynCast<BfTokenNode>(lastNode))
- {
- if (tokenNode->mToken == BfToken_Comma)
- {
- isSimpleCase = true;
- endsInComma = true;
- }
- }
- else if (auto enumEntryDecl = BfNodeDynCast<BfEnumEntryDeclaration>(lastNode))
- {
- isSimpleCase = true;
- }
- }
- if (isSimpleCase)
- {
- if (endsInComma)
- {
- fieldStr += "|";
- fieldStr += caseName;
- }
- else
- {
- auto fieldDef = typeInst->mTypeDef->mFields.back();
- fileLoc = fieldDef->mFieldDeclaration->GetSrcEnd();
- fieldStr += ",\r";
- fieldStr += caseName;
- }
- }
- }
- }
- if (!isSimpleCase)
- {
- fieldStr += "|case ";
- fieldStr += caseName;
- if (!fieldTypes.IsEmpty())
- {
- fieldStr += "(";
- FixitGetParamString(fieldTypes, fieldStr);
- fieldStr += ")";
- }
- fieldStr += ";";
- }
- AddEntry(AutoCompleteEntry("fixit", StrFormat("Create case '%s' in '%s'\taddField|%s|%s", caseName.c_str(), fullName.c_str(),
- FixitGetLocation(parser->mParserData, fileLoc).c_str(), fieldStr.c_str()).c_str()));
- }
- void BfAutoComplete::FixitGetParamString(const BfTypeVector& paramTypes, StringImpl& outStr)
- {
- std::set<String> usedNames;
- for (int argIdx = 0; argIdx < (int)paramTypes.size(); argIdx++)
- {
- if (argIdx > 0)
- outStr += ", ";
- BfType* paramType = paramTypes[argIdx];
- String checkName = "param";
- if (paramType != NULL)
- {
- bool isOut = false;
- bool isArr = false;
- BfType* checkType = paramType;
- while (true)
- {
- if ((checkType->IsArray()) || (checkType->IsSizedArray()))
- {
- isArr = true;
- checkType = checkType->GetUnderlyingType();
- }
- else if (checkType->IsRef())
- {
- BfRefType* refType = (BfRefType*)checkType;
- if (refType->mRefKind == BfRefType::RefKind_Out)
- isOut = true;
- checkType = refType->GetUnderlyingType();
- }
- else if (checkType->IsTypeInstance())
- {
- BfTypeInstance* typeInst = (BfTypeInstance*)checkType;
- checkName = typeInst->mTypeDef->mName->ToString();
- if (checkName == "String")
- checkName = "Str";
- if (checkName == "Object")
- checkName = "Obj";
- if (isOut)
- checkName = "out" + checkName;
- else if (isupper(checkName[0]))
- {
- checkName[0] = tolower(checkName[0]);
- for (int i = 1; i < (int)checkName.length(); i++)
- {
- if ((i + 1 < (int)checkName.length()) &&
- (islower(checkName[i + 1])))
- break;
- checkName[i] = tolower(checkName[i]);
- }
- }
- if (isArr)
- checkName += "Arr";
- break;
- }
- else
- break;
- }
- outStr += mModule->TypeToString(paramType, BfTypeNameFlag_ReduceName);
- }
- else
- {
- checkName = "param";
- outStr += "Object";
- }
- for (int i = 1; i < 10; i++)
- {
- String lookupName = checkName;
- if (i > 1)
- lookupName += StrFormat("%d", i);
- if (usedNames.insert(lookupName).second)
- {
- outStr += " " + lookupName;
- break;
- }
- }
- }
- }
- String BfAutoComplete::FixitGetLocation(BfParserData* parser, int insertPos)
- {
- int line = 0;
- int lineChar = 0;
- parser->GetLineCharAtIdx(insertPos, line, lineChar);
- return StrFormat("%s|%d:%d", parser->mFileName.c_str(), line, lineChar);
- }
- String BfAutoComplete::ConstantToString(BfIRConstHolder* constHolder, BfTypedValue typedValue)
- {
- SetAndRestoreValue<BfTypeInstance*> prevTypeInst(mModule->mCurTypeInstance, typedValue.mType->ToTypeInstance());
- SetAndRestoreValue<BfMethodInstance*> prevMethodInst(mModule->mCurMethodInstance, NULL);
- BF_ASSERT(typedValue.mValue.IsConst());
- String result;
- result = "(";
- result += mModule->TypeToString(typedValue.mType);
- result += ")";
- char str[32];
- int stringId = mModule->GetStringPoolIdx(typedValue.mValue, constHolder);
- if (stringId != -1)
- {
- BfStringPoolEntry* entry;
- if (mModule->mContext->mStringObjectIdMap.TryGetValue(stringId, &entry))
- {
- String result = "\"";
- result += SlashString(entry->mString, true, true, true);
- result += "\"";
- return result;
- }
- }
- auto constant = constHolder->GetConstant(typedValue.mValue);
- switch (constant->mTypeCode)
- {
- case BfTypeCode_Boolean:
- result += StrFormat(" %s", constant->mBool ? "true" : "false");
- break;
- case BfTypeCode_UInt8:
- result += StrFormat(" %llu", constant->mUInt64);
- break;
- case BfTypeCode_UInt16:
- result += StrFormat(" %llu", constant->mUInt64);
- break;
- case BfTypeCode_UInt32:
- result += StrFormat(" %llu", constant->mUInt64);
- break;
- case BfTypeCode_UInt64:
- result += StrFormat(" %llu", constant->mUInt64);
- break;
- case BfTypeCode_Int8:
- result += StrFormat(" %lld", constant->mInt64);
- break;
- case BfTypeCode_Int16:
- result += StrFormat(" %lld", constant->mInt64);
- break;
- case BfTypeCode_Int32:
- result += StrFormat(" %lld", constant->mInt64);
- break;
- case BfTypeCode_Int64:
- result += StrFormat(" %lld", constant->mInt64);
- break;
- case BfTypeCode_Float:
- ExactMinimalFloatToStr((float)constant->mDouble, str);
- result += " ";
- result += str;
- result += "f";
- break;
- case BfTypeCode_Double:
- ExactMinimalDoubleToStr(constant->mDouble, str);
- result += " ";
- result += str;
- break;
- default:
- return "";
- }
- return result;
- }
- void BfAutoComplete::FixitAddMethod(BfTypeInstance* typeInst, const StringImpl& methodName, BfType* returnType, const BfTypeVector& paramTypes, bool wantStatic)
- {
- if ((typeInst->IsEnum()) && (returnType == typeInst) && (wantStatic))
- {
- FixitAddCase(typeInst, methodName, paramTypes);
- return;
- }
- if ((typeInst->mTypeDef->mSource != NULL) && (typeInst != mModule->mContext->mBfObjectType))
- {
- auto parser = typeInst->mTypeDef->GetDefinition()->mSource->ToParser();
- if (parser != NULL)
- {
- String fullName = typeInst->mTypeDef->mFullName.ToString();
- String methodStr;
- methodStr += "\f\a";
- if (typeInst == mModule->mCurTypeInstance)
- {
- // Implicitly private
- }
- else if (mModule->TypeIsSubTypeOf(mModule->mCurTypeInstance, typeInst))
- {
- methodStr += "protected ";
- }
- else
- {
- methodStr += "public ";
- }
- if (wantStatic)
- methodStr += "static ";
- if (returnType != NULL)
- methodStr += mModule->TypeToString(returnType, BfTypeNameFlag_ReduceName);
- else
- methodStr += "void";
- methodStr += " " + methodName + "(";
- FixitGetParamString(paramTypes, methodStr);
- int insertPos = FixitGetMemberInsertPos(typeInst->mTypeDef);
- methodStr += ")";
- methodStr += "\t";
- AddEntry(AutoCompleteEntry("fixit", StrFormat("Create method '%s' in '%s'\taddMethod|%s|%s", methodName.c_str(), fullName.c_str(), FixitGetLocation(parser->mParserData, insertPos).c_str(), methodStr.c_str()).c_str()));
- }
- }
- }
- void BfAutoComplete::FixitAddNamespace(BfAstNode* refNode, const StringImpl& namespaceStr)
- {
- auto parserData = refNode->GetParserData();
- BfUsingFinder usingFinder;
- usingFinder.mFromIdx = refNode->mSrcStart;
- usingFinder.VisitMembers(refNode->GetSourceData()->mRootNode);
- AddEntry(AutoCompleteEntry("fixit", StrFormat("using %s;\t.using|%s|%d||using %s;", namespaceStr.c_str(), parserData->mFileName.c_str(),
- usingFinder.mLastIdx, namespaceStr.c_str()).c_str()));
- }
- void BfAutoComplete::FixitCheckNamespace(BfTypeDef* activeTypeDef, BfAstNode* typeRef, BfTokenNode* nextDotToken)
- {
- if (nextDotToken == NULL)
- return;
- auto parserData = typeRef->GetParserData();
- BfSizedAtomComposite namespaceComposite;
- String namespaceString = typeRef->ToString();
- bool isValid = mSystem->ParseAtomComposite(namespaceString, namespaceComposite);
- bool hasNamespace = false;
- if (activeTypeDef != NULL)
- hasNamespace = activeTypeDef->mNamespaceSearch.Contains(namespaceComposite);
- if (hasNamespace)
- {
- AddEntry(AutoCompleteEntry("fixit", StrFormat("Remove unneeded '%s'\taddMethod|%s-%d|", typeRef->ToString().c_str(),
- FixitGetLocation(parserData, typeRef->GetSrcStart()).c_str(), nextDotToken->GetSrcEnd() - typeRef->GetSrcStart()).c_str()));
- }
- else
- {
- FixitAddNamespace(typeRef, namespaceString);
- }
- }
- void BfAutoComplete::FixitAddConstructor(BfTypeInstance *typeInstance)
- {
- auto baseType = typeInstance->mBaseType;
- auto parser = typeInstance->mTypeDef->GetDefinition()->mSource->ToParser();
- if (parser != NULL)
- {
- for (auto methodDef : baseType->mTypeDef->mMethods)
- {
- if (methodDef->mMethodType != BfMethodType_Ctor)
- continue;
- if (methodDef->mIsStatic)
- continue;
- if (methodDef->mProtection <= BfProtection_Private)
- continue;
- auto methodInstance = mModule->GetRawMethodInstanceAtIdx(baseType, methodDef->mIdx);
- String ctorShowName;
- int insertPos = FixitGetMemberInsertPos(mModule->mCurTypeInstance->mTypeDef);
- String methodStr = "\f\a";
- if (methodInstance->mMethodDef->mHasAppend)
- methodStr += "[AllowAppend]\r";
- methodStr += "public this(";
- int useParamIdx = 0;
- for (int paramIdx = 0; paramIdx < methodInstance->GetParamCount(); paramIdx++)
- {
- if (useParamIdx > 0)
- methodStr += ", ";
- auto paramKind = methodInstance->GetParamKind(paramIdx);
- if (paramKind == BfParamKind_AppendIdx)
- continue;
- switch (paramKind)
- {
- case BfParamKind_Params:
- methodStr += "params ";
- break;
- default:
- break;
- }
- methodStr += mModule->TypeToString(methodInstance->GetParamType(paramIdx), BfTypeNameFlag_ReduceName);
- methodStr += " ";
- methodStr += methodInstance->GetParamName(paramIdx);
- useParamIdx++;
- }
- methodStr += ") : base(";
- ctorShowName += "this(";
- useParamIdx = 0;
- for (int paramIdx = 0; paramIdx < methodInstance->GetParamCount(); paramIdx++)
- {
- if (useParamIdx > 0)
- {
- ctorShowName += ", ";
- methodStr += ", ";
- }
- auto paramKind = methodInstance->GetParamKind(paramIdx);
- if (paramKind == BfParamKind_AppendIdx)
- continue;
- switch (paramKind)
- {
- case BfParamKind_Params:
- methodStr += "params ";
- break;
- default:
- break;
- }
- auto paramType = methodInstance->GetParamType(paramIdx);
- if (paramType->IsRef())
- {
- switch (((BfRefType*)paramType)->mRefKind)
- {
- case BfRefType::RefKind_Ref: methodStr += "ref "; break;
- case BfRefType::RefKind_Out: methodStr += "out "; break;
- case BfRefType::RefKind_Mut: methodStr += "mut "; break;
- }
- }
- methodStr += methodInstance->GetParamName(paramIdx);
- ctorShowName += methodInstance->GetParamName(paramIdx);
- useParamIdx++;
- }
- ctorShowName += ")";
- methodStr += ")\t";
- AddEntry(AutoCompleteEntry("fixit", StrFormat("Create constructor '%s'\taddMethod|%s|%s", ctorShowName.c_str(),
- FixitGetLocation(parser->mParserData, insertPos).c_str(), methodStr.c_str()).c_str()));
- }
- }
- }
- void BfAutoComplete::AddResultTypeKind(BfType* type)
- {
- if (type->IsObject())
- mResultString += "\n:type\tclass";
- else if (type->IsInterface())
- mResultString += "\n:type\tinterface";
- else if (type->IsPointer())
- mResultString += "\n:type\tpointer";
- else
- mResultString += "\n:type\tvaluetype";
- }
- void BfAutoComplete::SetResultStringType(BfType* type)
- {
- SetAndRestoreValue<BfTypeInstance*> prevTypeInst(mModule->mCurTypeInstance, type->ToTypeInstance());
- SetAndRestoreValue<BfMethodInstance*> prevMethodInst(mModule->mCurMethodInstance, NULL);
- mResultString = ":";
- mResultString += mModule->TypeToString(type);
- AddResultTypeKind(type);
- }
- void BfAutoComplete::FixitAddFullyQualify(BfAstNode* refNode, const StringImpl& findName, const SizedArrayImpl<BfUsingFieldData::MemberRef>& foundList)
- {
- BfProtectionCheckFlags protectionCheckFlags = BfProtectionCheckFlag_None;
- String fullName;
- for (int entryIdx = 0; entryIdx < foundList.mSize - 1; entryIdx++)
- {
- auto& entry = foundList[entryIdx];
- if (entryIdx > 0)
- fullName += ".";
- if (!mModule->CheckProtection(protectionCheckFlags, entry.mTypeInstance, entry.GetDeclaringType(mModule)->mProject, entry.GetProtection(), mModule->mCurTypeInstance))
- fullName += "[Friend]";
- fullName += entry.GetName(mModule);
- }
- BfParserData* parser = refNode->GetSourceData()->ToParserData();
- if (parser != NULL)
- {
- AddEntry(AutoCompleteEntry("fixit", StrFormat("Fully qualify 'using' name as '%s.%s'\tqualify|%s|%d|%s.",
- fullName.c_str(), findName.c_str(),
- parser->mFileName.c_str(), refNode->mSrcStart,
- fullName.c_str()).c_str()));
- }
- }
|