replay_pid40024.log 1.1 MB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429
  1. version 2
  2. JvmtiExport can_access_local_variables 0
  3. JvmtiExport can_hotswap_or_post_breakpoint 1
  4. JvmtiExport can_post_on_exceptions 0
  5. # 472 ciObject found
  6. instanceKlass org/eclipse/jdt/internal/compiler/ClassFile
  7. ciMethod org/eclipse/jdt/internal/compiler/codegen/StackMapFrameCodeStream getExceptionMarkers ()[Lorg/eclipse/jdt/internal/compiler/codegen/StackMapFrameCodeStream$ExceptionMarker; 276 114 1550 0 0
  8. ciMethod org/eclipse/jdt/internal/compiler/codegen/StackMapFrameCodeStream getFramePositions ()[I 276 1370 1550 0 0
  9. ciMethodData org/eclipse/jdt/internal/compiler/lookup/Scope getJavaLangClass ()Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding; 1 480 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 30 0x10005 0x1e0 0x0 0x0 0x0 0x0 0x0 0x90005 0x0 0x0 0x2037c470df8 0x1e0 0x0 0x0 0x140005 0x0 0x0 0x2037c4712e8 0x1e0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0xffffffffffffffff oops 2 10 org/eclipse/jdt/internal/compiler/lookup/CompilationUnitScope 17 org/eclipse/jdt/internal/compiler/lookup/LookupEnvironment methods 0
  10. ciMethod org/eclipse/jdt/internal/compiler/codegen/StackMapFrame <init> (I)V 1214 0 7240 0 -1
  11. ciMethod org/eclipse/jdt/internal/compiler/codegen/StackMapFrame addStackItem (Lorg/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo;)V 792 0 13075 0 -1
  12. ciMethod org/eclipse/jdt/internal/compiler/codegen/StackMapFrame duplicate ()Lorg/eclipse/jdt/internal/compiler/codegen/StackMapFrame; 4096 34438 7762 0 -1
  13. ciMethod org/eclipse/jdt/internal/compiler/codegen/StackMapFrame getCachedValue (Ljava/util/Map;Lorg/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo;)Lorg/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo; 778 0 34869 0 -1
  14. ciMethod org/eclipse/jdt/internal/compiler/codegen/StackMapFrame putLocal (ILorg/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo;)V 1024 0 3309 0 -1
  15. ciMethod org/eclipse/jdt/internal/compiler/codegen/StackMapFrame replaceWithElementType ()V 136 0 110 0 -1
  16. ciMethod org/eclipse/jdt/internal/compiler/codegen/StackMapFrame merge (Lorg/eclipse/jdt/internal/compiler/codegen/StackMapFrame;Lorg/eclipse/jdt/internal/compiler/lookup/Scope;)Lorg/eclipse/jdt/internal/compiler/codegen/StackMapFrame; 4156 260 19753 0 -1
  17. ciMethod org/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo <init> (ILorg/eclipse/jdt/internal/compiler/lookup/TypeBinding;)V 684 0 24734 0 -1
  18. ciMethod org/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo <init> (Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding;)V 684 0 20056 0 -1
  19. ciMethod org/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo id ()I 522 0 261 0 -1
  20. ciMethod org/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo duplicate ()Lorg/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo; 682 0 21873 0 -1
  21. ciMethod org/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo replaceWithElementType ()V 242 0 110 0 -1
  22. ciMethod org/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo merge (Lorg/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo;Lorg/eclipse/jdt/internal/compiler/lookup/Scope;)Lorg/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo; 4156 0 5179 0 -1
  23. ciMethodData org/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo <init> (Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding;)V 2 19714 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 57 0x10002 0x4d02 0x50007 0x4d02 0x20 0x0 0x1a0008 0x18 0x2ca0 0x148 0x32 0xd0 0x145 0xd0 0x1d 0xd0 0x210 0xd0 0x0 0x148 0xb5 0x100 0x35 0x118 0x1 0xe8 0xd53 0xd0 0xe49 0x148 0x37 0x130 0x590003 0x10f7 0x78 0x610003 0x1 0x60 0x690003 0xb5 0x48 0x710003 0x35 0x30 0x790003 0x37 0x18 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0xe 0x0 oops 0 methods 0
  24. ciMethod org/eclipse/jdt/internal/compiler/ClassFile$3 <init> (Lorg/eclipse/jdt/internal/compiler/ClassFile;)V 746 0 1571 0 -1
  25. ciMethodData org/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo <init> (ILorg/eclipse/jdt/internal/compiler/lookup/TypeBinding;)V 2 24751 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 11 0x20002 0x60af 0x0 0x0 0x0 0x0 0x9 0x3 0xe 0x0 0x0 oops 0 methods 0
  26. ciMethodData org/eclipse/jdt/internal/compiler/ClassFile u1At ([BII)I 2 328115 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 8 0x0 0x0 0x9 0x4 0x0 0x0 0x0 0x0 oops 0 methods 0
  27. ciMethodData org/eclipse/jdt/internal/compiler/ClassFile u2At ([BII)I 2 342928 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 9 0x0 0x0 0x0 0x9 0x4 0x0 0x0 0x0 0x0 oops 0 methods 0
  28. ciMethodData org/eclipse/jdt/internal/compiler/ClassFile utf8At ([BII)[C 2 3766 orig 80 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 36 0xe0003 0xeb6 0x70 0x270007 0x10915 0x58 0x0 0x2f0007 0x0 0x38 0x0 0x580003 0x0 0x18 0x800007 0x10915 0xffffffffffffffa8 0xeb7 0x860007 0xeb7 0x30 0x0 0x960002 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x4 0x0 0x0 0x0 0x0 oops 0 methods 0
  29. ciMethod org/eclipse/jdt/internal/compiler/codegen/StackMapFrameCodeStream$ExceptionMarker compareTo (Ljava/lang/Object;)I 278 0 138 0 0
  30. ciMethod org/eclipse/jdt/internal/compiler/codegen/StackMapFrameCodeStream$ExceptionMarker getBinding ()Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding; 116 0 58 0 -1
  31. ciMethodData org/eclipse/jdt/internal/compiler/ClassFile inspectFrame (ILorg/eclipse/jdt/internal/compiler/codegen/StackMapFrame;)V 2 253395 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 6 0x0 0x9 0x3 0x0 0x0 0x0 oops 0 methods 0
  32. ciMethodData org/eclipse/jdt/internal/compiler/codegen/StackMapFrame addStackItem (Lorg/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo;)V 2 12679 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 45 0x10007 0x3187 0x30 0x0 0xa0002 0x0 0x120007 0x2d63 0x70 0x424 0x230004 0x0 0x0 0x20376f6b590 0x424 0x0 0x0 0x290003 0x424 0x80 0x370007 0x26ec 0x30 0x677 0x4c0002 0x677 0x5f0004 0x0 0x0 0x20376f6b590 0x2d63 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x64 0x0 oops 2 13 org/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo 29 org/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo methods 0
  33. ciMethodData org/eclipse/jdt/internal/compiler/codegen/StackMapFrame <init> (I)V 2 6695 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 10 0x10002 0x1a27 0x0 0x0 0x0 0x0 0x9 0x2 0x3c 0x0 oops 0 methods 0
  34. ciMethodData org/eclipse/jdt/internal/compiler/codegen/StackMapFrame duplicate ()Lorg/eclipse/jdt/internal/compiler/codegen/StackMapFrame; 2 5714 orig 80 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 62 0x40002 0x1652 0x130002 0x1652 0x2e0007 0x461 0x38 0x11f1 0x350003 0x11f1 0x18 0x3d0007 0x4 0xa0 0x164e 0x4b0003 0x164e 0x60 0x600002 0x16a8a 0x630104 0x0 0x0 0x20376f6b590 0xccbf 0x0 0x0 0x6a0007 0x16a8a 0xffffffffffffffb8 0x164f 0x730007 0x12c7 0xa0 0x38c 0x810003 0x38c 0x60 0x960002 0x583 0x990004 0x0 0x0 0x20376f6b590 0x583 0x0 0x0 0xa00007 0x583 0xffffffffffffffb8 0x38c 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 2 23 org/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo 43 org/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo methods 0
  35. ciMethodData org/eclipse/jdt/internal/compiler/ClassFile getTypeBinding ([CLorg/eclipse/jdt/internal/compiler/lookup/Scope;Z)Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding; 2 19868 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 411 0x30007 0x3a12 0xe0 0x138b 0x70007 0x0 0xc0 0x138b 0xd0008 0x12 0xb40 0xa0 0x0 0xa0 0x3 0xa0 0x1a 0xa0 0x0 0xa0 0x274 0xa0 0x4b 0xa0 0x1 0xa0 0x56e 0xa0 0x7f0007 0x39de 0x6c0 0x34 0x840005 0x34 0x0 0x0 0x0 0x0 0x0 0x8f0007 0x1c 0x1c8 0x18 0x9b0008 0x14 0x0 0x170 0x15 0xc8 0x3 0xe0 0x0 0xf8 0x0 0x110 0x0 0x128 0x0 0x140 0x0 0x158 0x0 0x170 0x0 0xb0 0xf10003 0x0 0xc0 0xf90003 0x15 0xa8 0x1010003 0x3 0x90 0x1090003 0x0 0x78 0x1110003 0x0 0x60 0x1190003 0x0 0x48 0x1210003 0x0 0x30 0x1290003 0x0 0x18 0x1360005 0x0 0x0 0x20376f6b640 0x18 0x0 0x0 0x1430002 0x1c 0x14d0002 0x1c 0x1500005 0x1c 0x0 0x0 0x0 0x0 0x0 0x1530004 0x0 0x0 0x20374c7b200 0x1a 0x20378283348 0x2 0x15a0005 0x1c 0x0 0x0 0x0 0x0 0x0 0x15d0007 0x1c 0x3a0 0x0 0x1620004 0x0 0x0 0x0 0x0 0x0 0x0 0x1690005 0x0 0x0 0x0 0x0 0x0 0x0 0x16e0007 0x0 0x78 0x0 0x1730005 0x0 0x0 0x0 0x0 0x0 0x0 0x1780007 0x0 0x70 0x0 0x17d0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1820003 0x0 0x260 0x1870005 0x0 0x0 0x0 0x0 0x0 0x0 0x18c0007 0x0 0x210 0x0 0x1930007 0x0 0x1f0 0x0 0x19a0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1a30005 0x0 0x0 0x0 0x0 0x0 0x0 0x1aa0003 0x0 0x108 0x1af0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1b40004 0x0 0x0 0x0 0x0 0x0 0x0 0x1bb0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1c00002 0x0 0x1c30007 0x0 0x38 0x0 0x1ca0003 0x0 0x70 0x1cf0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1d40007 0x0 0xfffffffffffffed8 0x0 0x1dc0005 0x0 0x0 0x20376f6b640 0x1c 0x0 0x0 0x1e10007 0x37f9 0x38 0x1e5 0x1e50003 0x1e5 0x28 0x1ee0002 0x37f9 0x1f80002 0x39de 0x1fb0005 0x39de 0x0 0x0 0x0 0x0 0x0 0x1fe0004 0x0 0x0 0x20374c7b200 0x2e5f 0x20374c7b2b0 0x440 0x2050005 0x39de 0x0 0x0 0x0 0x0 0x0 0x2080007 0x39b4 0x3a0 0x2a 0x20d0004 0x0 0x0 0x203783a8de8 0x2a 0x0 0x0 0x2140005 0x0 0x0 0x203783a8de8 0x2a 0x0 0x0 0x2190007 0x2a 0x78 0x0 0x21e0005 0x0 0x0 0x0 0x0 0x0 0x0 0x2230007 0x0 0x70 0x0 0x2280005 0x0 0x0 0x203783a8de8 0x2a 0x0 0x0 0x22d0003 0x2a 0x260 0x2320005 0x0 0x0 0x0 0x0 0x0 0x0 0x2370007 0x0 0x210 0x0 0x23e0007 0x0 0x1f0 0x0 0x2450005 0x0 0x0 0x0 0x0 0x0 0x0 0x24e0005 0x0 0x0 0x0 0x0 0x0 0x0 0x2550003 0x0 0x108 0x25a0005 0x0 0x0 0x0 0x0 0x0 0x0 0x25f0004 0x0 0x0 0x0 0x0 0x0 0x0 0x2660005 0x0 0x0 0x0 0x0 0x0 0x0 0x26b0002 0x0 0x26e0007 0x0 0x38 0x0 0x2750003 0x0 0x70 0x27a0005 0x0 0x0 0x0 0x0 0x0 0x0 0x27f0007 0x0 0xfffffffffffffed8 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x4 0x0 0x0 0x0 0x0 oops 9 92 org/eclipse/jdt/internal/compiler/lookup/MethodScope 110 org/eclipse/jdt/internal/compiler/lookup/BinaryTypeBinding 112 org/eclipse/jdt/internal/compiler/lookup/SourceTypeBinding 240 org/eclipse/jdt/internal/compiler/lookup/MethodScope 265 org/eclipse/jdt/internal/compiler/lookup/BinaryTypeBinding 267 org/eclipse/jdt/internal/compiler/lookup/RawTypeBinding 283 org/eclipse/jdt/internal/compiler/lookup/ProblemReferenceBinding 290 org/eclipse/jdt/internal/compiler/lookup/ProblemReferenceBinding 312 org/eclipse/jdt/internal/compiler/lookup/ProblemReferenceBinding methods 0
  36. ciMethodData org/eclipse/jdt/internal/compiler/ClassFile getParametersCount ([C)I 2 18525 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 68 0x30002 0x485e 0x110007 0x31ef 0x20 0x166f 0x200007 0x4912 0x20 0x31ef 0x270008 0x16 0x0 0x150 0x1 0x138 0x13 0x138 0x25 0x138 0x2 0x138 0x920 0x138 0x2f 0x138 0x3efc 0x110 0xa 0x138 0x2a 0x138 0x58 0xc0 0x850005 0x58 0x0 0x0 0x0 0x0 0x0 0x920003 0x58 0xfffffffffffffee8 0x9b0002 0x3efc 0xa80003 0x3efc 0xfffffffffffffec0 0xb10003 0x9be 0xfffffffffffffea8 0xb9000a 0x0 0x1 0x2036bd3af18 0xbe0002 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 1 55 java/lang/String methods 0
  37. ciMethodData org/eclipse/jdt/internal/compiler/ClassFile getReturnType ([C)[C 2 54161 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 14 0x30002 0xd392 0xd0002 0xd392 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0xffffffffffffffff oops 0 methods 0
  38. ciMethodData org/eclipse/jdt/internal/compiler/ClassFile retrieveLocal (II)Lorg/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo; 2 4573 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 49 0xb0003 0x11de 0x110 0x1b0007 0x532a 0x38 0x0 0x1e0003 0x0 0xd8 0x270007 0x3feb 0xc0 0x133f 0x2d0003 0x133f 0x80 0x4d0007 0x133f 0x38 0x6 0x500003 0x6 0x48 0x560007 0x161 0x30 0x11de 0x620002 0x11de 0x700007 0x1345 0xffffffffffffff98 0x161 0x790007 0x532a 0xffffffffffffff08 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x3 0x0 0x0 0x0 oops 0 methods 0
  39. ciMethodData org/eclipse/jdt/internal/compiler/ClassFile add (Ljava/util/Map;Lorg/eclipse/jdt/internal/compiler/codegen/StackMapFrame;Lorg/eclipse/jdt/internal/compiler/lookup/Scope;)V 2 17779 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 56 0x40002 0x4573 0xc0005 0x0 0x0 0x20376f6b4e0 0x4573 0x0 0x0 0x110104 0x0 0x0 0x20376f6b380 0xb35 0x0 0x0 0x180007 0xb35 0x70 0x3a3e 0x1f0005 0x0 0x0 0x20376f6b4e0 0x3a3e 0x0 0x0 0x250003 0x3a3e 0x88 0x2f0005 0x0 0x0 0x20376f6b380 0xb35 0x0 0x0 0x320005 0x0 0x0 0x20376f6b4e0 0xb35 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x4 0x0 0x0 0x0 0x0 oops 5 5 java/util/HashMap 12 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 23 java/util/HashMap 33 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 40 java/util/HashMap methods 0
  40. ciMethodData org/eclipse/jdt/internal/compiler/codegen/StackMapFrame merge (Lorg/eclipse/jdt/internal/compiler/codegen/StackMapFrame;Lorg/eclipse/jdt/internal/compiler/lookup/Scope;)Lorg/eclipse/jdt/internal/compiler/codegen/StackMapFrame; 2 17675 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 40 0x50007 0x4251 0x20 0x2ba 0x120007 0x924 0xc8 0x392d 0x1d0003 0x392d 0x88 0x320005 0x0 0x0 0x20376f6b590 0x13b9 0x0 0x0 0x350004 0x0 0x0 0x20376f6b590 0x13b9 0x0 0x0 0x3c0007 0x13b9 0xffffffffffffff90 0x392d 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x3 0x0 0x0 0xffffffffffffffff oops 2 14 org/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo 21 org/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo methods 0
  41. ciMethodData org/eclipse/jdt/internal/compiler/ClassFile addRealJumpTarget (Ljava/util/Set;I)V 2 21101 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 20 0x20002 0x526d 0x50005 0x0 0x0 0x2036bd5d9c8 0x526d 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x3 0x0 0xffffffffffffffff 0x0 oops 1 5 java/util/HashSet methods 0
  42. ciMethodData org/eclipse/jdt/internal/compiler/ClassFile createNewFrame (ILorg/eclipse/jdt/internal/compiler/codegen/StackMapFrame;ZLorg/eclipse/jdt/internal/compiler/lookup/MethodBinding;)Lorg/eclipse/jdt/internal/compiler/codegen/StackMapFrame; 2 16734 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 41 0x10005 0x0 0x0 0x20376f6b380 0x415e 0x0 0x0 0xe0007 0x415c 0x38 0x2 0x120003 0x2 0x50 0x170005 0x415c 0x0 0x0 0x0 0x0 0x0 0x1d0005 0x415e 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x5 0xffffffffffffffff 0x0 0xffffffffffffffff 0x0 0x0 oops 1 3 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame methods 0
  43. ciMethodData org/eclipse/jdt/internal/compiler/ClassFile i2At ([BII)I 2 35146 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 9 0x0 0x0 0x0 0x9 0x4 0x0 0x0 0x0 0x0 oops 0 methods 0
  44. ciMethodData org/eclipse/jdt/internal/compiler/ClassFile addRealJumpTarget (Ljava/util/Set;ILjava/util/Map;Lorg/eclipse/jdt/internal/compiler/codegen/StackMapFrame;Lorg/eclipse/jdt/internal/compiler/lookup/Scope;)V 2 35150 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 30 0x20002 0x894e 0x50005 0x0 0x0 0x2036bd5d9c8 0x894e 0x0 0x0 0x110005 0x894e 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x6 0x0 0x0 0x0 0x0 0x0 0x0 oops 1 5 java/util/HashSet methods 0
  45. ciMethodData org/eclipse/jdt/internal/compiler/ClassFile traverse (Lorg/eclipse/jdt/internal/compiler/lookup/MethodBinding;I[BIILjava/util/Map;ZLorg/eclipse/jdt/internal/compiler/lookup/Scope;)Ljava/util/List; 2 1129 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 3770 0x40002 0x469 0xd0004 0x0 0x0 0x20376f6b2d0 0x469 0x0 0x0 0x140005 0x0 0x0 0x20376f6b2d0 0x469 0x0 0x0 0x420005 0x0 0x0 0x20376f6b2d0 0x469 0x0 0x0 0x490007 0x44d 0x38 0x1c 0x4d0003 0x1c 0x18 0x570007 0x288 0x38 0x1e1 0x5b0003 0x1e1 0x18 0x660007 0x288 0x20 0x1e1 0x740002 0x469 0x7b0007 0x0 0x58 0x469 0x850005 0x469 0x0 0x0 0x0 0x0 0x0 0x930005 0x0 0x0 0x20376f6b380 0x469 0x0 0x0 0x980005 0x469 0x0 0x0 0x0 0x0 0x0 0x9f0005 0x469 0x0 0x0 0x0 0x0 0x0 0xae0003 0x469 0x70 0xbf0007 0x0 0x58 0x224 0xca0005 0x224 0x0 0x0 0x0 0x0 0x0 0xd40007 0x224 0xffffffffffffffa8 0x469 0xe00007 0x2ce4b 0xf8 0xd3f6 0xea0007 0xd1d5 0xd8 0x221 0xfb0005 0x0 0x0 0x20376f6b430 0x221 0x0 0x0 0xfe0002 0x221 0x1010005 0x0 0x0 0x20376f6b380 0x221 0x0 0x0 0x1110007 0x1e2 0x38 0x3f 0x11b0003 0x3f 0x18 0x1250007 0x3a241 0x78 0x0 0x12f0007 0x0 0x38 0x0 0x1390003 0x0 0x18 0x1450007 0x0 0xffffffffffffffc8 0x0 0x14c0007 0x3318e 0x228 0x70b3 0x1530002 0x70b3 0x1560005 0x0 0x0 0x20376f6b4e0 0x70b3 0x0 0x0 0x15b0104 0x0 0x0 0x20376f6b380 0x6d7c 0x0 0x0 0x1620007 0x6d7c 0xa8 0x337 0x16d0005 0x337 0x0 0x0 0x0 0x0 0x0 0x1790005 0x337 0x0 0x0 0x0 0x0 0x0 0x17c0003 0x337 0xc0 0x1830005 0x0 0x0 0x20376f6b380 0x6d7c 0x0 0x0 0x1880005 0x0 0x0 0x20376f6b380 0x6d7c 0x0 0x0 0x18b0005 0x0 0x0 0x20376f6b380 0x6d7c 0x0 0x0 0x1970007 0x469 0x38 0x6c4a 0x1a10003 0x6c4a 0x18 0x1ae0005 0x3a241 0x0 0x0 0x0 0x0 0x0 0x1b90005 0x3a241 0x0 0x0 0x0 0x0 0x0 0x1c40008 0x202 0x0 0x6508 0x0 0x32a0 0x0 0x32a0 0x0 0x32a0 0x28 0x32a0 0x2b 0x32d0 0xc 0x32e8 0x0 0x3348 0x14 0x33a8 0x29 0x3408 0x0 0x3468 0x0 0x34c8 0x0 0x3528 0x0 0x3588 0x0 0x35e8 0x2 0x3648 0x0 0x36a8 0x0 0x3708 0x0 0x3768 0x0 0x37c8 0x0 0x3828 0x32 0x3888 0x0 0x3888 0x0 0x3888 0x1 0x3888 0x1 0x3888 0x58c 0x38e8 0x1668 0x38e8 0x4 0x38e8 0x5 0x38e8 0x19 0x38e8 0xe4 0x38e8 0x17 0x39a8 0x5d 0x39a8 0x2f 0x39a8 0xd 0x39a8 0x1 0x39a8 0x17 0x39a8 0x0 0x39a8 0xe9 0x39a8 0x2871 0x3a68 0x0 0x6508 0x0 0x6508 0x0 0x3b60 0x1 0x3da8 0x17a6 0x3fb8 0x0 0x3fb8 0x0 0x3fb8 0x0 0x3fb8 0x943 0x3fb8 0x48 0x4008 0x411 0x4058 0x3 0x4228 0x70a 0x4240 0x26 0x4410 0x7e97 0x4428 0x585 0x4950 0x125d 0x4c68 0x2469 0x4f50 0xa4 0x4710 0x52f 0x5238 0x0 0x53b0 0x1e 0x5750 0x9 0x5a80 0x36 0x5ae0 0x3ba 0x5b30 0xec 0x5cc8 0x0 0x5d28 0x0 0x5d28 0x21f 0x5d40 0x0 0x6180 0x153b 0x6350 0x2866 0x6350 0x0 0x6410 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x6508 0x0 0x1020 0x198 0x1038 0x69e 0x1098 0x180b 0x1098 0x3de 0x1098 0x4b 0x1098 0x13 0x1098 0x35 0x1098 0x4 0x1098 0x6 0x10f8 0x7 0x10f8 0x0 0x1158 0x0 0x1158 0x0 0x1158 0x10 0x11b8 0x10 0x11b8 0x26f0 0x1218 0x17 0x1278 0x1970 0x12d8 0xbfb 0x15b8 0xe 0x1898 0xfb 0x1a08 0x3d 0x1a68 0x0 0x1ac8 0x4 0x1b28 0x8d4b 0x1b88 0x0 0x1c48 0x2 0x1c48 0x13c5 0x1c48 0x27 0x1c48 0x0 0x1ca8 0x0 0x1ca8 0x0 0x1ca8 0x1c 0x1ca8 0x0 0x1d08 0x0 0x1d08 0x0 0x1d08 0x0 0x1d08 0x0 0x1d68 0x0 0x1d68 0x0 0x1d68 0x0 0x1d68 0x2ebc 0x1dc8 0x1016 0x1e90 0x235d 0x1f18 0x127e 0x1fa0 0x0 0x2028 0x0 0x2088 0x0 0x20e8 0x0 0x2148 0x13 0x21a8 0x0 0x21f8 0x0 0x2258 0x0 0x22b8 0x8b 0x2318 0x21 0x2318 0x0 0x2318 0x5 0x2318 0x4039 0x2330 0x0 0x23d0 0xe6 0x23d0 0x13c2 0x23d0 0x2e 0x23d0 0x0 0x23d0 0x0 0x23d0 0x0 0x23d0 0xe 0x23d0 0x0 0x23d0 0x0 0x23d0 0x0 0x23d0 0x0 0x23d0 0x0 0x23d0 0x0 0x23d0 0x0 0x23d0 0x0 0x23d0 0x3 0x2380 0x82 0x23d0 0x278 0x23d0 0x446 0x23d0 0x0 0x23e8 0x0 0x23e8 0x0 0x23e8 0x0 0x23e8 0x34 0x23e8 0x0 0x23e8 0x0 0x23e8 0x0 0x23e8 0x16a9 0x2400 0x0 0x2418 0x56a 0x24c0 0x0 0x2510 0x0 0x25d0 0x0 0x2800 0x0 0x29f8 0x0 0x2c60 0x0 0x3218 0x1325 0x32a0 0x5 0x32a0 0x0 0x32a0 0x7 0x32a0 0x17 0x32a0 0x0 0x32a0 0x0 0x32a0 0x1 0x32a0 0x12dc 0x32a0 0x2 0x32a0 0x0 0x32a0 0x2 0x32a0 0x1 0x32a0 0x0 0x32a0 0x0 0x32a0 0x3 0x32a0 0x2 0x32a0 0x1 0x32a0 0x0 0x32a0 0x0 0x32a0 0x1 0x32b8 0x0 0x32b8 0x0 0x32b8 0x0 0x32b8 0x0 0x32a0 0x0 0x32a0 0x0 0x32a0 0x0 0x32a0 0x0 0x32a0 0x28 0x32a0 0x0 0x32a0 0x0 0x32a0 0x5d70003 0x0 0x5840 0x5e30002 0x198 0x5e60005 0x0 0x0 0x20376f6b380 0x198 0x0 0x0 0x5ec0003 0x198 0x57e0 0x5f80002 0x231e 0x5fb0005 0x0 0x0 0x20376f6b380 0x231e 0x0 0x0 0x6010003 0x231e 0x5780 0x60d0002 0xd 0x6100005 0x0 0x0 0x20376f6b380 0xd 0x0 0x0 0x6160003 0xd 0x5720 0x6220002 0x0 0x6250005 0x0 0x0 0x0 0x0 0x0 0x0 0x62b0003 0x0 0x56c0 0x6370002 0x20 0x63a0005 0x0 0x0 0x20376f6b380 0x20 0x0 0x0 0x6400003 0x20 0x5660 0x64c0002 0x26f0 0x64f0005 0x0 0x0 0x20376f6b380 0x26f0 0x0 0x0 0x6550003 0x26f0 0x5600 0x6610002 0x17 0x6640005 0x0 0x0 0x20376f6b380 0x17 0x0 0x0 0x66a0003 0x17 0x55a0 0x6720005 0x1970 0x0 0x0 0x0 0x0 0x0 0x6800005 0x1970 0x0 0x0 0x0 0x0 0x0 0x6830008 0xe 0x0 0x258 0x0 0x118 0x0 0x178 0x0 0x258 0x0 0x258 0xe 0x1d8 0x1962 0x80 0x6b00005 0x1962 0x0 0x0 0x0 0x0 0x0 0x6b30002 0x1962 0x6b60005 0x0 0x0 0x20376f6b380 0x1962 0x0 0x0 0x6b90003 0x1962 0x158 0x6c50002 0x0 0x6c80005 0x0 0x0 0x0 0x0 0x0 0x0 0x6cb0003 0x0 0xf8 0x6d70002 0x0 0x6da0005 0x0 0x0 0x0 0x0 0x0 0x0 0x6dd0003 0x0 0x98 0x6e80005 0xe 0x0 0x0 0x0 0x0 0x0 0x6eb0002 0xe 0x6ee0005 0x0 0x0 0x20376f6b380 0xe 0x0 0x0 0x6f40003 0x1970 0x52c0 0x6fc0005 0xbfb 0x0 0x0 0x0 0x0 0x0 0x70a0005 0xbfb 0x0 0x0 0x0 0x0 0x0 0x70d0008 0xe 0x0 0x258 0x0 0x118 0x0 0x178 0x0 0x258 0x0 0x258 0x6 0x1d8 0xbf5 0x80 0x73c0005 0xbf5 0x0 0x0 0x0 0x0 0x0 0x73f0002 0xbf5 0x7420005 0x0 0x0 0x20376f6b380 0xbf5 0x0 0x0 0x7450003 0xbf5 0x158 0x7510002 0x0 0x7540005 0x0 0x0 0x0 0x0 0x0 0x0 0x7570003 0x0 0xf8 0x7630002 0x0 0x7660005 0x0 0x0 0x0 0x0 0x0 0x0 0x7690003 0x0 0x98 0x7740005 0x6 0x0 0x0 0x0 0x0 0x0 0x7770002 0x6 0x77a0005 0x0 0x0 0x20376f6b380 0x6 0x0 0x0 0x7800003 0xbfb 0x4fe0 0x7880005 0xe 0x0 0x0 0x0 0x0 0x0 0x7960005 0xe 0x0 0x0 0x0 0x0 0x0 0x7990008 0x6 0x0 0xe8 0xc 0xa0 0x2 0x40 0x7b90002 0x2 0x7bc0005 0x0 0x0 0x20376f6b380 0x2 0x0 0x0 0x7bf0003 0x2 0x60 0x7cb0002 0xc 0x7ce0005 0x0 0x0 0x20376f6b380 0xc 0x0 0x0 0x7d40003 0xe 0x4e70 0x7e00002 0xfb 0x7e30005 0x0 0x0 0x20376f6b380 0xfb 0x0 0x0 0x7e90003 0xfb 0x4e10 0x7f50002 0x3d 0x7f80005 0x0 0x0 0x20376f6b380 0x3d 0x0 0x0 0x7fe0003 0x3d 0x4db0 0x80a0002 0x0 0x80d0005 0x0 0x0 0x0 0x0 0x0 0x0 0x8130003 0x0 0x4d50 0x81f0002 0x4 0x8220005 0x0 0x0 0x20376f6b380 0x4 0x0 0x0 0x8280003 0x4 0x4cf0 0x8300005 0x8d4b 0x0 0x0 0x0 0x0 0x0 0x83a0005 0x8d4b 0x0 0x0 0x0 0x0 0x0 0x8430005 0x0 0x0 0x20376f6b380 0x8d4b 0x0 0x0 0x8490003 0x8d4b 0x4c30 0x8550002 0x13ee 0x8580005 0x0 0x0 0x20376f6b380 0x13ee 0x0 0x0 0x85e0003 0x13ee 0x4bd0 0x86a0002 0x1c 0x86d0005 0x0 0x0 0x20376f6b380 0x1c 0x0 0x0 0x8730003 0x1c 0x4b70 0x87f0002 0x0 0x8820005 0x0 0x0 0x0 0x0 0x0 0x0 0x8880003 0x0 0x4b10 0x8940002 0x0 0x8970005 0x0 0x0 0x0 0x0 0x0 0x0 0x89d0003 0x0 0x4ab0 0x8ab0007 0x0 0x40 0x2ebc 0x8b50007 0x1 0x58 0x2ebb 0x8bc0005 0x2ebb 0x0 0x0 0x0 0x0 0x0 0x8c50005 0x0 0x0 0x20376f6b380 0x2ebc 0x0 0x0 0x8cb0003 0x2ebc 0x49e8 0x8d20005 0x1016 0x0 0x0 0x0 0x0 0x0 0x8db0005 0x0 0x0 0x20376f6b380 0x1016 0x0 0x0 0x8e10003 0x1016 0x4960 0x8e80005 0x235d 0x0 0x0 0x0 0x0 0x0 0x8f10005 0x0 0x0 0x20376f6b380 0x235d 0x0 0x0 0x8f70003 0x235d 0x48d8 0x8fe0005 0x127e 0x0 0x0 0x0 0x0 0x0 0x9070005 0x0 0x0 0x20376f6b380 0x127e 0x0 0x0 0x90d0003 0x127e 0x4850 0x9240002 0x0 0x9270005 0x0 0x0 0x0 0x0 0x0 0x0 0x92d0003 0x0 0x47f0 0x9440002 0x0 0x9470005 0x0 0x0 0x0 0x0 0x0 0x0 0x94d0003 0x0 0x4790 0x9640002 0x0 0x9670005 0x0 0x0 0x0 0x0 0x0 0x0 0x96d0003 0x0 0x4730 0x9840002 0x0 0x9870005 0x0 0x0 0x0 0x0 0x0 0x0 0x98d0003 0x0 0x46d0 0x99d0005 0x0 0x0 0x20376f6b380 0x13 0x0 0x0 0x9a30003 0x13 0x4680 0x9ba0002 0x0 0x9bd0005 0x0 0x0 0x0 0x0 0x0 0x0 0x9c30003 0x0 0x4620 0x9da0002 0x0 0x9dd0005 0x0 0x0 0x0 0x0 0x0 0x0 0x9e30003 0x0 0x45c0 0x9fa0002 0x0 0x9fd0005 0x0 0x0 0x0 0x0 0x0 0x0 0xa030003 0x0 0x4560 0xa140003 0xb1 0x4548 0xa1c0005 0x4039 0x0 0x0 0x0 0x0 0x0 0xa2f0003 0x4039 0x44f8 0xa450004 0x0 0x0 0x20376f6b590 0x3 0x0 0x0 0xa540003 0x3 0x44a8 0xa650003 0x1c24 0x4490 0xa760003 0x34 0x4478 0xa870003 0x16a9 0x4460 0xa9b0005 0x0 0x0 0x0 0x0 0x0 0x0 0xa9e0008 0x6 0x0 0x58 0x0 0x40 0x0 0x40 0xabf0003 0x0 0x18 0xad00003 0x0 0x43b8 0xae20005 0x0 0x0 0x20376f6b380 0x56a 0x0 0x0 0xae80003 0x56a 0x4368 0xb230005 0x0 0x0 0x0 0x0 0x0 0x0 0xb2a0005 0x0 0x0 0x0 0x0 0x0 0x0 0xb310005 0x0 0x0 0x0 0x0 0x0 0x0 0xb370003 0x0 0x42a8 0xb700005 0x0 0x0 0x0 0x0 0x0 0x0 0xb730008 0x6 0x0 0x100 0x0 0x40 0x0 0x40 0xb8c0005 0x0 0x0 0x0 0x0 0x0 0x0 0xb930005 0x0 0x0 0x0 0x0 0x0 0x0 0xb9a0005 0x0 0x0 0x0 0x0 0x0 0x0 0xb9d0003 0x0 0xf8 0xbc20005 0x0 0x0 0x0 0x0 0x0 0x0 0xbc90005 0x0 0x0 0x0 0x0 0x0 0x0 0xbd00005 0x0 0x0 0x0 0x0 0x0 0x0 0xbd70005 0x0 0x0 0x0 0x0 0x0 0x0 0xbdd0003 0x0 0x4078 0xbfc0005 0x0 0x0 0x0 0x0 0x0 0x0 0xbff0008 0x6 0x0 0xc8 0x0 0x40 0x0 0x40 0xc180005 0x0 0x0 0x0 0x0 0x0 0x0 0xc1f0005 0x0 0x0 0x0 0x0 0x0 0x0 0xc220003 0x0 0xf8 0xc430005 0x0 0x0 0x0 0x0 0x0 0x0 0xc4a0005 0x0 0x0 0x0 0x0 0x0 0x0 0xc510005 0x0 0x0 0x0 0x0 0x0 0x0 0xc580005 0x0 0x0 0x0 0x0 0x0 0x0 0xc5e0003 0x0 0x3e80 0xc970005 0x0 0x0 0x0 0x0 0x0 0x0 0xc9a0008 0x6 0x0 0x100 0x0 0x40 0x0 0x40 0xcb40005 0x0 0x0 0x0 0x0 0x0 0x0 0xcbb0005 0x0 0x0 0x0 0x0 0x0 0x0 0xcc20005 0x0 0x0 0x0 0x0 0x0 0x0 0xcc50003 0x0 0x130 0xce60005 0x0 0x0 0x0 0x0 0x0 0x0 0xced0005 0x0 0x0 0x0 0x0 0x0 0x0 0xcf40005 0x0 0x0 0x0 0x0 0x0 0x0 0xcfb0005 0x0 0x0 0x0 0x0 0x0 0x0 0xd020005 0x0 0x0 0x0 0x0 0x0 0x0 0xd080003 0x0 0x3c18 0xd450005 0x0 0x0 0x0 0x0 0x0 0x0 0xd480008 0x6 0x0 0x270 0x0 0x40 0x0 0x40 0xd620005 0x0 0x0 0x0 0x0 0x0 0x0 0xd650008 0x6 0x0 0x100 0x0 0x40 0x0 0x40 0xd800005 0x0 0x0 0x0 0x0 0x0 0x0 0xd870005 0x0 0x0 0x0 0x0 0x0 0x0 0xd8e0005 0x0 0x0 0x0 0x0 0x0 0x0 0xd910003 0x0 0x408 0xdb60005 0x0 0x0 0x0 0x0 0x0 0x0 0xdbd0005 0x0 0x0 0x0 0x0 0x0 0x0 0xdc40005 0x0 0x0 0x0 0x0 0x0 0x0 0xdcb0005 0x0 0x0 0x0 0x0 0x0 0x0 0xdce0003 0x0 0x310 0xdf10005 0x0 0x0 0x0 0x0 0x0 0x0 0xdf40008 0x6 0x0 0x170 0x0 0x40 0x0 0x40 0xe100005 0x0 0x0 0x0 0x0 0x0 0x0 0xe170005 0x0 0x0 0x0 0x0 0x0 0x0 0xe1e0005 0x0 0x0 0x0 0x0 0x0 0x0 0xe250005 0x0 0x0 0x0 0x0 0x0 0x0 0xe2c0005 0x0 0x0 0x0 0x0 0x0 0x0 0xe2f0003 0x0 0x168 0xe540005 0x0 0x0 0x0 0x0 0x0 0x0 0xe5b0005 0x0 0x0 0x0 0x0 0x0 0x0 0xe620005 0x0 0x0 0x0 0x0 0x0 0x0 0xe690005 0x0 0x0 0x0 0x0 0x0 0x0 0xe700005 0x0 0x0 0x0 0x0 0x0 0x0 0xe770005 0x0 0x0 0x0 0x0 0x0 0x0 0xe7d0003 0x0 0x3660 0xeaa0004 0x0 0x0 0x0 0x0 0x0 0x0 0xeb60004 0x0 0x0 0x0 0x0 0x0 0x0 0xeba0003 0x0 0x35d8 0xecb0003 0x2680 0x35c0 0xed10003 0x1 0x35a8 0xed70003 0x2b 0x3590 0xeed0002 0xc 0xef00004 0x0 0x0 0x20376f6b590 0xc 0x0 0x0 0xef40003 0xc 0x3530 0xf0a0002 0x0 0xf0d0004 0x0 0x0 0x0 0x0 0x0 0x0 0xf110003 0x0 0x34d0 0xf270002 0x14 0xf2a0004 0x0 0x0 0x20376f6b590 0x14 0x0 0x0 0xf2e0003 0x14 0x3470 0xf440002 0x29 0xf470004 0x0 0x0 0x20376f6b590 0x29 0x0 0x0 0xf4b0003 0x29 0x3410 0xf610002 0x0 0xf640004 0x0 0x0 0x0 0x0 0x0 0x0 0xf680003 0x0 0x33b0 0xf7e0002 0x0 0xf810004 0x0 0x0 0x0 0x0 0x0 0x0 0xf850003 0x0 0x3350 0xf9b0002 0x0 0xf9e0004 0x0 0x0 0x0 0x0 0x0 0x0 0xfa20003 0x0 0x32f0 0xfb80002 0x0 0xfbb0004 0x0 0x0 0x0 0x0 0x0 0x0 0xfbf0003 0x0 0x3290 0xfd50002 0x0 0xfd80004 0x0 0x0 0x0 0x0 0x0 0x0 0xfdc0003 0x0 0x3230 0xff20002 0x2 0xff50004 0x0 0x0 0x20376f6b590 0x2 0x0 0x0 0xff90003 0x2 0x31d0 0x100f0002 0x0 0x10120004 0x0 0x0 0x0 0x0 0x0 0x0 0x10160003 0x0 0x3170 0x102c0002 0x0 0x102f0004 0x0 0x0 0x0 0x0 0x0 0x0 0x10330003 0x0 0x3110 0x10490002 0x0 0x104c0004 0x0 0x0 0x0 0x0 0x0 0x0 0x10500003 0x0 0x30b0 0x10660002 0x0 0x10690004 0x0 0x0 0x0 0x0 0x0 0x0 0x106d0003 0x0 0x3050 0x10830002 0x0 0x10860004 0x0 0x0 0x0 0x0 0x0 0x0 0x108a0003 0x0 0x2ff0 0x10a10002 0x34 0x10a40005 0x0 0x0 0x20376f6b380 0x34 0x0 0x0 0x10aa0003 0x34 0x2f90 0x10bf0005 0x1cfa 0x0 0x0 0x0 0x0 0x0 0x10d40005 0x1cfa 0x0 0x0 0x0 0x0 0x0 0x10d90005 0x1cfa 0x0 0x0 0x0 0x0 0x0 0x10df0003 0x1cfa 0x2ed0 0x10f40005 0x1b1 0x0 0x0 0x0 0x0 0x0 0x11090005 0x1b1 0x0 0x0 0x0 0x0 0x0 0x110e0005 0x1b1 0x0 0x0 0x0 0x0 0x0 0x11140003 0x1b1 0x2e10 0x111e0005 0x2871 0x0 0x0 0x0 0x0 0x0 0x11330005 0x2871 0x0 0x0 0x0 0x0 0x0 0x11380005 0x2871 0x0 0x0 0x0 0x0 0x0 0x11460005 0x2871 0x0 0x0 0x0 0x0 0x0 0x114f0003 0x2871 0x2d18 0x11600003 0x0 0x18 0x116d0007 0x0 0x0 0x0 0x11770005 0x0 0x0 0x0 0x0 0x0 0x0 0x118c0005 0x0 0x0 0x0 0x0 0x0 0x0 0x11910005 0x0 0x0 0x0 0x0 0x0 0x0 0x119c0005 0x0 0x0 0x0 0x0 0x0 0x0 0x11a90005 0x0 0x0 0x0 0x0 0x0 0x0 0x11bd0003 0x0 0xc0 0x11c70005 0x0 0x0 0x0 0x0 0x0 0x0 0x11dc0005 0x0 0x0 0x0 0x0 0x0 0x0 0x11e10005 0x0 0x0 0x0 0x0 0x0 0x0 0x11ee0007 0x0 0xffffffffffffff58 0x0 0x11f70003 0x0 0x2ad0 0x12080003 0x1 0x18 0x12150007 0x0 0x0 0x1 0x121f0005 0x1 0x0 0x0 0x0 0x0 0x0 0x12340005 0x1 0x0 0x0 0x0 0x0 0x0 0x12390005 0x1 0x0 0x0 0x0 0x0 0x0 0x12440005 0x1 0x0 0x0 0x0 0x0 0x0 0x12500003 0x1 0xc0 0x125d0005 0x3 0x0 0x0 0x0 0x0 0x0 0x12720005 0x3 0x0 0x0 0x0 0x0 0x0 0x12770005 0x3 0x0 0x0 0x0 0x0 0x0 0x12840007 0x3 0xffffffffffffff58 0x1 0x128d0003 0x1 0x28c0 0x12a60005 0x20e9 0x0 0x0 0x0 0x0 0x0 0x12af0003 0x20e9 0x2870 0x12bd0005 0x48 0x0 0x0 0x0 0x0 0x0 0x12c60003 0x48 0x2820 0x12ce0005 0x411 0x0 0x0 0x0 0x0 0x0 0x12dc0005 0x411 0x0 0x0 0x0 0x0 0x0 0x12ea0005 0x411 0x0 0x0 0x0 0x0 0x0 0x13020005 0x411 0x0 0x0 0x0 0x0 0x0 0x13050005 0x0 0x0 0x2037c488e10 0x411 0x0 0x0 0x13100005 0x411 0x0 0x0 0x0 0x0 0x0 0x13170007 0x0 0x68 0x411 0x13220002 0x411 0x13250005 0x0 0x0 0x20376f6b380 0x411 0x0 0x0 0x132b0003 0x411 0x2650 0x133c0003 0x3 0x2638 0x13440005 0x70a 0x0 0x0 0x0 0x0 0x0 0x13520005 0x70a 0x0 0x0 0x0 0x0 0x0 0x13600005 0x70a 0x0 0x0 0x0 0x0 0x0 0x13780005 0x70a 0x0 0x0 0x0 0x0 0x0 0x137b0005 0x0 0x0 0x2037c488e10 0x70a 0x0 0x0 0x13910005 0x70a 0x0 0x0 0x0 0x0 0x0 0x13980007 0x0 0x68 0x70a 0x13a30002 0x70a 0x13a60005 0x0 0x0 0x20376f6b380 0x70a 0x0 0x0 0x13ac0003 0x70a 0x2468 0x13bd0003 0x26 0x2450 0x13c50005 0x7e97 0x0 0x0 0x0 0x0 0x0 0x13d30005 0x7e97 0x0 0x0 0x0 0x0 0x0 0x13e10005 0x7e97 0x0 0x0 0x0 0x0 0x0 0x13f90005 0x7e97 0x0 0x0 0x0 0x0 0x0 0x13fc0005 0x0 0x0 0x2037c488e10 0x7e97 0x0 0x0 0x140a0005 0x7e97 0x0 0x0 0x0 0x0 0x0 0x14220005 0x7e97 0x0 0x0 0x0 0x0 0x0 0x14250005 0x0 0x0 0x2037c488e10 0x7e97 0x0 0x0 0x14330005 0x7e97 0x0 0x0 0x0 0x0 0x0 0x143f0005 0x7e97 0x0 0x0 0x0 0x0 0x0 0x144a0005 0x7e97 0x0 0x0 0x0 0x0 0x0 0x14510007 0x738 0x68 0x775f 0x145c0002 0x775f 0x145f0005 0x0 0x0 0x20376f6b380 0x775f 0x0 0x0 0x14650003 0x7e97 0x2168 0x146d0005 0xa4 0x0 0x0 0x0 0x0 0x0 0x147b0005 0xa4 0x0 0x0 0x0 0x0 0x0 0x14890005 0xa4 0x0 0x0 0x0 0x0 0x0 0x14a10005 0xa4 0x0 0x0 0x0 0x0 0x0 0x14a40005 0x0 0x0 0x2037c488e10 0xa4 0x0 0x0 0x14b20005 0xa4 0x0 0x0 0x0 0x0 0x0 0x14bc0005 0xa4 0x0 0x0 0x0 0x0 0x0 0x14c70005 0xa4 0x0 0x0 0x0 0x0 0x0 0x14ce0007 0x0 0x68 0xa4 0x14d90002 0xa4 0x14dc0005 0x0 0x0 0x20376f6b380 0xa4 0x0 0x0 0x14e20003 0xa4 0x1f28 0x14ea0005 0x585 0x0 0x0 0x0 0x0 0x0 0x14f80005 0x585 0x0 0x0 0x0 0x0 0x0 0x15060005 0x585 0x0 0x0 0x0 0x0 0x0 0x151e0005 0x585 0x0 0x0 0x0 0x0 0x0 0x15210005 0x0 0x0 0x2037c488e10 0x585 0x0 0x0 0x152f0005 0x585 0x0 0x0 0x0 0x0 0x0 0x15470005 0x585 0x0 0x0 0x0 0x0 0x0 0x154a0005 0x0 0x0 0x2037c488e10 0x585 0x0 0x0 0x15580005 0x585 0x0 0x0 0x0 0x0 0x0 0x15640002 0x585 0x15670007 0x55 0x20 0x530 0x158a0005 0x585 0x0 0x0 0x0 0x0 0x0 0x15950005 0x585 0x0 0x0 0x0 0x0 0x0 0x159c0007 0x556 0x68 0x2f 0x15a70002 0x2f 0x15aa0005 0x0 0x0 0x20376f6b380 0x2f 0x0 0x0 0x15b00003 0x585 0x1c10 0x15b80005 0x125d 0x0 0x0 0x0 0x0 0x0 0x15c60005 0x125d 0x0 0x0 0x0 0x0 0x0 0x15d40005 0x125d 0x0 0x0 0x0 0x0 0x0 0x15ec0005 0x125d 0x0 0x0 0x0 0x0 0x0 0x15ef0005 0x0 0x0 0x2037c488e10 0x125d 0x0 0x0 0x15fd0005 0x125d 0x0 0x0 0x0 0x0 0x0 0x16150005 0x125d 0x0 0x0 0x0 0x0 0x0 0x16180005 0x0 0x0 0x2037c488e10 0x125d 0x0 0x0 0x16260005 0x125d 0x0 0x0 0x0 0x0 0x0 0x16300005 0x125d 0x0 0x0 0x0 0x0 0x0 0x163b0005 0x125d 0x0 0x0 0x0 0x0 0x0 0x16420007 0x21 0x68 0x123c 0x164d0002 0x123c 0x16500005 0x0 0x0 0x20376f6b380 0x123c 0x0 0x0 0x16560003 0x125d 0x1928 0x165e0005 0x2469 0x0 0x0 0x0 0x0 0x0 0x166c0005 0x2469 0x0 0x0 0x0 0x0 0x0 0x167a0005 0x2469 0x0 0x0 0x0 0x0 0x0 0x16920005 0x2469 0x0 0x0 0x0 0x0 0x0 0x16950005 0x0 0x0 0x2037c488e10 0x2469 0x0 0x0 0x16a30005 0x2469 0x0 0x0 0x0 0x0 0x0 0x16bb0005 0x2469 0x0 0x0 0x0 0x0 0x0 0x16be0005 0x0 0x0 0x2037c488e10 0x2469 0x0 0x0 0x16cc0005 0x2469 0x0 0x0 0x0 0x0 0x0 0x16d80005 0x2469 0x0 0x0 0x0 0x0 0x0 0x16e30005 0x2469 0x0 0x0 0x0 0x0 0x0 0x16ea0007 0x297 0x68 0x21d2 0x16f50002 0x21d2 0x16f80005 0x0 0x0 0x20376f6b380 0x21d2 0x0 0x0 0x16fe0003 0x2469 0x1640 0x17060005 0x52f 0x0 0x0 0x0 0x0 0x0 0x17140005 0x52f 0x0 0x0 0x0 0x0 0x0 0x172c0005 0x52f 0x0 0x0 0x0 0x0 0x0 0x172f0005 0x0 0x0 0x2037c488e10 0x52f 0x0 0x0 0x17390005 0x52f 0x0 0x0 0x0 0x0 0x0 0x17460002 0x52f 0x17560005 0x0 0x0 0x20376f6b380 0x52f 0x0 0x0 0x175c0003 0x52f 0x14c8 0x17670005 0x0 0x0 0x0 0x0 0x0 0x0 0x176a0008 0x12 0x0 0x308 0x0 0x140 0x0 0x1e0 0x0 0x280 0x0 0x2d0 0x0 0xf0 0x0 0x190 0x0 0xa0 0x0 0x230 0x179e0005 0x0 0x0 0x0 0x0 0x0 0x0 0x17a30003 0x0 0x230 0x17ac0005 0x0 0x0 0x0 0x0 0x0 0x0 0x17b10003 0x0 0x1e0 0x17ba0005 0x0 0x0 0x0 0x0 0x0 0x0 0x17bf0003 0x0 0x190 0x17c80005 0x0 0x0 0x0 0x0 0x0 0x0 0x17cd0003 0x0 0x140 0x17d60005 0x0 0x0 0x0 0x0 0x0 0x0 0x17db0003 0x0 0xf0 0x17e40005 0x0 0x0 0x0 0x0 0x0 0x0 0x17e90003 0x0 0xa0 0x17f20005 0x0 0x0 0x0 0x0 0x0 0x0 0x17f70003 0x0 0x50 0x18000005 0x0 0x0 0x0 0x0 0x0 0x0 0x18170002 0x0 0x181a0004 0x0 0x0 0x0 0x0 0x0 0x0 0x181e0003 0x0 0x1128 0x18260005 0x1e 0x0 0x0 0x0 0x0 0x0 0x18340005 0x1e 0x0 0x0 0x0 0x0 0x0 0x184c0005 0x1e 0x0 0x0 0x0 0x0 0x0 0x184f0005 0x0 0x0 0x2037c488e10 0x1e 0x0 0x0 0x18640005 0x1e 0x0 0x0 0x0 0x0 0x0 0x186b0007 0x0 0x200 0x1e 0x18700005 0x1e 0x0 0x0 0x0 0x0 0x0 0x18730007 0x1e 0x128 0x0 0x18780004 0x0 0x0 0x0 0x0 0x0 0x0 0x18870005 0x0 0x0 0x0 0x0 0x0 0x0 0x18910005 0x0 0x0 0x0 0x0 0x0 0x0 0x18940002 0x0 0x18970005 0x0 0x0 0x0 0x0 0x0 0x0 0x189a0003 0x0 0x98 0x18a80005 0x0 0x0 0x20376f6b640 0x1e 0x0 0x0 0x18ab0002 0x1e 0x18ae0005 0x0 0x0 0x20376f6b380 0x1e 0x0 0x0 0x18b40003 0x1e 0xdf8 0x18ca0002 0x9 0x18cd0004 0x0 0x0 0x20376f6b590 0x9 0x0 0x0 0x18d10003 0x9 0xd98 0x18ea0005 0x36 0x0 0x0 0x0 0x0 0x0 0x18f30003 0x36 0xd48 0x18fb0005 0x3ba 0x0 0x0 0x0 0x0 0x0 0x19090005 0x3ba 0x0 0x0 0x0 0x0 0x0 0x19210005 0x3ba 0x0 0x0 0x0 0x0 0x0 0x19240005 0x0 0x0 0x2037c488e10 0x3ba 0x0 0x0 0x192f0005 0x3ba 0x0 0x0 0x0 0x0 0x0 0x19360007 0x0 0x68 0x3ba 0x194b0002 0x3ba 0x194e0004 0x0 0x0 0x20376f6b590 0x3ba 0x0 0x0 0x19520003 0x3ba 0xbb0 0x19680002 0xec 0x196b0004 0x0 0x0 0x20376f6b590 0xec 0x0 0x0 0x196f0003 0xec 0xb50 0x19800003 0x0 0xb38 0x19880005 0x21f 0x0 0x0 0x0 0x0 0x0 0x19920007 0x21f 0x38 0x0 0x19980003 0x0 0xac8 0x19a00005 0x21f 0x0 0x0 0x0 0x0 0x0 0x19a70008 0x16 0x0 0x380 0x0 0xc0 0x0 0x228 0x0 0x120 0x0 0x288 0x16a 0x180 0x0 0x2e8 0x0 0x368 0x0 0x300 0x0 0x380 0xb5 0x318 0x1a090002 0x0 0x1a0c0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1a0f0003 0x0 0x278 0x1a1b0002 0x0 0x1a1e0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1a210003 0x0 0x218 0x1a300007 0x16a 0x58 0x0 0x1a380005 0x0 0x0 0x0 0x0 0x0 0x0 0x1a410005 0x0 0x0 0x20376f6b380 0x16a 0x0 0x0 0x1a440003 0x16a 0x170 0x1a500002 0x0 0x1a530005 0x0 0x0 0x0 0x0 0x0 0x0 0x1a560003 0x0 0x110 0x1a620002 0x0 0x1a650005 0x0 0x0 0x0 0x0 0x0 0x0 0x1a680003 0x0 0xb0 0x1a760003 0x0 0x98 0x1a840003 0x0 0x80 0x1a9b0004 0x0 0x0 0x20376f6b590 0xb5 0x0 0x0 0x1aa70003 0xb5 0x30 0x1ab50003 0x0 0x18 0x1ac60003 0x21f 0x6f8 0x1ace0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1adc0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1af40005 0x0 0x0 0x0 0x0 0x0 0x0 0x1af70005 0x0 0x0 0x0 0x0 0x0 0x0 0x1b010005 0x0 0x0 0x0 0x0 0x0 0x0 0x1b180005 0x0 0x0 0x0 0x0 0x0 0x0 0x1b1f0007 0x0 0x68 0x0 0x1b2a0002 0x0 0x1b2d0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1b330003 0x0 0x528 0x1b480005 0x3da1 0x0 0x0 0x0 0x0 0x0 0x1b5d0005 0x3da1 0x0 0x0 0x0 0x0 0x0 0x1b620005 0x3da1 0x0 0x0 0x0 0x0 0x0 0x1b680003 0x3da1 0x468 0x1b720005 0x0 0x0 0x0 0x0 0x0 0x0 0x1b870005 0x0 0x0 0x0 0x0 0x0 0x0 0x1b8c0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1b9a0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1ba30003 0x0 0x370 0x1bad0007 0x0 0x1c8 0x0 0x1bba0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1bc80002 0x0 0x1bcb0004 0x0 0x0 0x0 0x0 0x0 0x0 0x1bd00002 0x0 0x1bd30004 0x0 0x0 0x0 0x0 0x0 0x0 0x1bdb0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1bde0002 0x0 0x1be10004 0x0 0x0 0x0 0x0 0x0 0x0 0x1be20002 0x0 0x1bec0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1bef0003 0x0 0x1a8 0x1bfc0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1c0a0002 0x0 0x1c0d0004 0x0 0x0 0x0 0x0 0x0 0x0 0x1c120002 0x0 0x1c150004 0x0 0x0 0x0 0x0 0x0 0x0 0x1c1d0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1c200002 0x0 0x1c230004 0x0 0x0 0x0 0x0 0x0 0x0 0x1c240002 0x0 0x1c2e0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1c380007 0x39dd8 0xffffffffffff9398 0x469 0x1c420005 0x469 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x9 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 oops 70 5 org/eclipse/jdt/internal/compiler/codegen/TypeAnnotationCodeStream 12 org/eclipse/jdt/internal/compiler/codegen/TypeAnnotationCodeStream 19 org/eclipse/jdt/internal/compiler/codegen/TypeAnnotationCodeStream 57 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 104 org/eclipse/jdt/internal/compiler/codegen/StackMapFrameCodeStream$ExceptionMarker 113 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 148 java/util/HashMap 155 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 183 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 190 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 197 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 746 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 758 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 770 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 794 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 806 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 818 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 867 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 910 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 959 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 1002 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 1036 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 1048 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 1060 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 1072 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 1096 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 1120 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 1132 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 1144 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 1193 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 1210 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 1227 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 1244 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 1302 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 1361 org/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo 1401 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 1856 org/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo 1880 org/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo 1892 org/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo 1964 org/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo 2036 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 2312 org/eclipse/jdt/internal/compiler/ClassFile 2332 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 2373 org/eclipse/jdt/internal/compiler/ClassFile 2393 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 2434 org/eclipse/jdt/internal/compiler/ClassFile 2455 org/eclipse/jdt/internal/compiler/ClassFile 2489 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 2527 org/eclipse/jdt/internal/compiler/ClassFile 2561 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 2599 org/eclipse/jdt/internal/compiler/ClassFile 2620 org/eclipse/jdt/internal/compiler/ClassFile 2660 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 2698 org/eclipse/jdt/internal/compiler/ClassFile 2719 org/eclipse/jdt/internal/compiler/ClassFile 2753 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 2791 org/eclipse/jdt/internal/compiler/ClassFile 2812 org/eclipse/jdt/internal/compiler/ClassFile 2846 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 2877 org/eclipse/jdt/internal/compiler/ClassFile 2893 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 3040 org/eclipse/jdt/internal/compiler/ClassFile 3102 org/eclipse/jdt/internal/compiler/lookup/MethodScope 3111 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 3123 org/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo 3164 org/eclipse/jdt/internal/compiler/ClassFile 3184 org/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo 3196 org/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo 3289 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 3329 org/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo methods 0
  46. ciMethodData org/eclipse/jdt/internal/compiler/codegen/StackMapFrameCodeStream getFramePositions ()[I 2 1412 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 67 0x40005 0x0 0x0 0x20376f6b4e0 0x584 0x0 0x0 0x90005 0x0 0x0 0x20375d4f0a0 0x584 0x0 0x0 0x170005 0x0 0x0 0x20375d4f0a0 0x584 0x0 0x0 0x1e0003 0x584 0xc0 0x230005 0x0 0x0 0x20375d4f150 0x7555 0x0 0x0 0x320004 0x0 0x0 0x2036bd3f348 0x7555 0x0 0x0 0x350005 0x7555 0x0 0x0 0x0 0x0 0x0 0x3b0005 0x0 0x0 0x20375d4f150 0x7ad9 0x0 0x0 0x400007 0x7555 0xffffffffffffff20 0x584 0x440002 0x584 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 6 3 java/util/HashMap 10 java/util/HashMap$KeySet 17 java/util/HashMap$KeySet 27 java/util/HashMap$KeyIterator 34 java/lang/Integer 48 java/util/HashMap$KeyIterator methods 0
  47. ciMethodData org/eclipse/jdt/internal/compiler/codegen/StackMapFrameCodeStream getExceptionMarkers ()[Lorg/eclipse/jdt/internal/compiler/codegen/StackMapFrameCodeStream$ExceptionMarker; 2 1412 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 64 0x90007 0x568 0x20 0x1c 0xf0005 0x0 0x0 0x2036bd5d9c8 0x568 0x0 0x0 0x1e0005 0x0 0x0 0x2036bd5d9c8 0x568 0x0 0x0 0x250003 0x568 0xc0 0x2a0005 0x0 0x0 0x20375d4f150 0x2c7 0x0 0x0 0x390004 0x0 0x0 0x20376f6b430 0x2c7 0x0 0x0 0x3c0004 0x0 0x0 0x20376f6b430 0x2c7 0x0 0x0 0x3f0005 0x0 0x0 0x20375d4f150 0x82f 0x0 0x0 0x440007 0x2c7 0xffffffffffffff20 0x568 0x480002 0x568 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 6 7 java/util/HashSet 14 java/util/HashSet 24 java/util/HashMap$KeyIterator 31 org/eclipse/jdt/internal/compiler/codegen/StackMapFrameCodeStream$ExceptionMarker 38 org/eclipse/jdt/internal/compiler/codegen/StackMapFrameCodeStream$ExceptionMarker 45 java/util/HashMap$KeyIterator methods 0
  48. ciMethodData org/eclipse/jdt/internal/compiler/ClassFile initializeDefaultLocals (Lorg/eclipse/jdt/internal/compiler/codegen/StackMapFrame;Lorg/eclipse/jdt/internal/compiler/lookup/MethodBinding;II)V 2 1416 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 503 0x10007 0x1 0xed0 0x587 0x80005 0x587 0x0 0x0 0x0 0x0 0x0 0xf0007 0x1 0x78 0x586 0x130005 0x586 0x0 0x0 0x0 0x0 0x0 0x160007 0x61 0x158 0x525 0x260002 0x526 0x370005 0x0 0x0 0x20376f6b2d0 0x526 0x0 0x0 0x3d0005 0x0 0x0 0x203782800e8 0x526 0x0 0x0 0x440005 0x0 0x0 0x203782800e8 0x526 0x0 0x0 0x500007 0x525 0x38 0x1 0x550003 0x1 0x18 0x5e0002 0x526 0x610005 0x0 0x0 0x20376f6b380 0x526 0x0 0x0 0x690007 0x586 0x9f8 0x1 0x700005 0x0 0x0 0x20378283348 0x1 0x0 0x0 0x730007 0x1 0x300 0x0 0x7d0005 0x0 0x0 0x0 0x0 0x0 0x0 0x870005 0x0 0x0 0x0 0x0 0x0 0x0 0x8c0002 0x0 0x9e0005 0x0 0x0 0x0 0x0 0x0 0x0 0xa40005 0x0 0x0 0x0 0x0 0x0 0x0 0xab0005 0x0 0x0 0x0 0x0 0x0 0x0 0xbc0005 0x0 0x0 0x0 0x0 0x0 0x0 0xbf0002 0x0 0xc20005 0x0 0x0 0x0 0x0 0x0 0x0 0xcf0005 0x0 0x0 0x0 0x0 0x0 0x0 0xd70002 0x0 0xe90005 0x0 0x0 0x0 0x0 0x0 0x0 0xef0005 0x0 0x0 0x0 0x0 0x0 0x0 0xf60005 0x0 0x0 0x0 0x0 0x0 0x0 0x1030002 0x0 0x1060005 0x0 0x0 0x0 0x0 0x0 0x0 0x1100005 0x1 0x0 0x0 0x0 0x0 0x0 0x1130007 0x1 0x558 0x0 0x11a0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1200007 0x0 0x1b0 0x0 0x12b0003 0x0 0x170 0x134000a 0x0 0x1 0x2036bd3af18 0x1390005 0x0 0x0 0x0 0x0 0x0 0x0 0x1430002 0x0 0x1550005 0x0 0x0 0x0 0x0 0x0 0x0 0x15b0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1620005 0x0 0x0 0x0 0x0 0x0 0x0 0x1710002 0x0 0x1740005 0x0 0x0 0x0 0x0 0x0 0x0 0x1810007 0x0 0xfffffffffffffea8 0x0 0x18b0007 0x0 0xf8 0x0 0x1990003 0x0 0xb8 0x1ac0002 0x0 0x1af0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1b70008 0x6 0x0 0x58 0x0 0x40 0x0 0x40 0x1cf0003 0x0 0x18 0x1dc0007 0x0 0xffffffffffffff60 0x0 0x1e30005 0x0 0x0 0x0 0x0 0x0 0x0 0x1e90007 0x0 0x600 0x0 0x1f40003 0x0 0x1c8 0x207000a 0x0 0x1 0x2036bd3af18 0x20c0005 0x0 0x0 0x0 0x0 0x0 0x0 0x2130002 0x0 0x2250005 0x0 0x0 0x0 0x0 0x0 0x0 0x22b0005 0x0 0x0 0x0 0x0 0x0 0x0 0x2320005 0x0 0x0 0x0 0x0 0x0 0x0 0x23e0002 0x0 0x2410005 0x0 0x0 0x0 0x0 0x0 0x0 0x2490008 0x6 0x0 0x58 0x0 0x40 0x0 0x40 0x2630003 0x0 0x18 0x2700007 0x0 0xfffffffffffffe50 0x0 0x2730003 0x0 0x3f8 0x27d0007 0x0 0x3e0 0x1 0x28b0003 0x1 0xb8 0x29e0002 0x4 0x2a10005 0x0 0x0 0x20376f6b380 0x4 0x0 0x0 0x2a90008 0x6 0x4 0x58 0x0 0x40 0x0 0x40 0x2c30003 0x0 0x18 0x2d00007 0x4 0xffffffffffffff60 0x1 0x2d30003 0x1 0x2e8 0x2d70004 0xfffffffffffffa98 0x0 0x2037c489038 0xff 0x203782819d0 0x1e 0x2da0007 0x568 0x1a0 0x1e 0x2de0004 0x0 0x0 0x203782819d0 0x1e 0x0 0x0 0x2ea0007 0x1e 0x148 0x0 0x2f40005 0x0 0x0 0x0 0x0 0x0 0x0 0x2fe0005 0x0 0x0 0x0 0x0 0x0 0x0 0x3030002 0x0 0x3140005 0x0 0x0 0x0 0x0 0x0 0x0 0x31a0005 0x0 0x0 0x0 0x0 0x0 0x0 0x3210005 0x0 0x0 0x0 0x0 0x0 0x0 0x32b0007 0x0 0xf8 0x586 0x3360003 0x586 0xb8 0x3490002 0x6a8 0x34c0005 0x0 0x0 0x20376f6b380 0x6a8 0x0 0x0 0x3540008 0x6 0x6a8 0x58 0x0 0x40 0x0 0x40 0x36f0003 0x0 0x18 0x37c0007 0x6a8 0xffffffffffffff60 0x586 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x5 0x0 0x0 0x0 0x0 0x0 oops 12 31 org/eclipse/jdt/internal/compiler/codegen/TypeAnnotationCodeStream 38 org/eclipse/jdt/internal/compiler/lookup/LocalVariableBinding 45 org/eclipse/jdt/internal/compiler/lookup/LocalVariableBinding 61 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 72 org/eclipse/jdt/internal/compiler/lookup/SourceTypeBinding 200 java/lang/String 292 java/lang/String 362 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 387 org/eclipse/jdt/internal/compiler/lookup/MethodBinding 389 org/eclipse/jdt/internal/compiler/lookup/SyntheticMethodBinding 398 org/eclipse/jdt/internal/compiler/lookup/SyntheticMethodBinding 455 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame methods 0
  49. ciMethodData org/eclipse/jdt/internal/compiler/ClassFile i4At ([BII)I 1 4 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 10 0x0 0x0 0x0 0x0 0x9 0x4 0x0 0x0 0x0 0x0 oops 0 methods 0
  50. ciMethodData org/eclipse/jdt/internal/compiler/ClassFile u4At ([BII)J 1 1 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 10 0x0 0x0 0x0 0x0 0x9 0x4 0x0 0x0 0x0 0x0 oops 0 methods 0
  51. ciMethodData org/eclipse/jdt/internal/compiler/ClassFile getNewTypeBinding ([CLorg/eclipse/jdt/internal/compiler/lookup/Scope;)Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding; 2 1869 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 144 0x60007 0x585 0x230 0x1c8 0xb0005 0x1c8 0x0 0x0 0x0 0x0 0x0 0xe0007 0x1c6 0x1d8 0x2 0x150005 0x0 0x0 0x20376f6b4e0 0x2 0x0 0x0 0x1e0005 0x0 0x0 0x20375d4f0a0 0x2 0x0 0x0 0x250003 0x2 0xf0 0x2a0005 0x0 0x0 0x20375d4f150 0x3 0x0 0x0 0x2f0004 0x0 0x0 0x20374c17cc0 0x1 0x20374c17d70 0x2 0x360005 0x0 0x0 0x20374c17cc0 0x1 0x20374c17d70 0x2 0x3a0002 0x3 0x3d0007 0x1 0x20 0x2 0x450005 0x0 0x0 0x20375d4f150 0x3 0x0 0x0 0x4a0007 0x3 0xfffffffffffffef0 0x0 0x510002 0x74b 0x540005 0x74b 0x0 0x0 0x0 0x0 0x0 0x570004 0x0 0x0 0x20374c7b200 0x2b0 0x20374c7b2b0 0x3a4 0x5e0005 0x74b 0x0 0x0 0x0 0x0 0x0 0x610007 0x749 0x140 0x2 0x660004 0x0 0x0 0x203783a8de8 0x2 0x0 0x0 0x6d0005 0x0 0x0 0x203783a8de8 0x2 0x0 0x0 0x720007 0x2 0x78 0x0 0x770005 0x0 0x0 0x0 0x0 0x0 0x0 0x7c0007 0x0 0x58 0x0 0x810005 0x0 0x0 0x203783a8de8 0x2 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x3 0x0 0xffffffffffffffff 0xffffffffffffffff oops 13 18 java/util/HashMap 25 java/util/HashMap$KeySet 35 java/util/HashMap$KeyIterator 42 org/eclipse/jdt/internal/compiler/lookup/MemberTypeBinding 44 org/eclipse/jdt/internal/compiler/lookup/LocalTypeBinding 49 org/eclipse/jdt/internal/compiler/lookup/MemberTypeBinding 51 org/eclipse/jdt/internal/compiler/lookup/LocalTypeBinding 62 java/util/HashMap$KeyIterator 82 org/eclipse/jdt/internal/compiler/lookup/BinaryTypeBinding 84 org/eclipse/jdt/internal/compiler/lookup/RawTypeBinding 100 org/eclipse/jdt/internal/compiler/lookup/ProblemReferenceBinding 107 org/eclipse/jdt/internal/compiler/lookup/ProblemReferenceBinding 129 org/eclipse/jdt/internal/compiler/lookup/ProblemReferenceBinding methods 0
  52. ciMethodData org/eclipse/jdt/internal/compiler/ClassFile getANewArrayTypeBinding ([CLorg/eclipse/jdt/internal/compiler/lookup/Scope;)Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding; 1 54 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 367 0x50007 0x36 0x6c0 0x0 0xa0005 0x0 0x0 0x0 0x0 0x0 0x0 0x130007 0x0 0x1c8 0x0 0x1f0008 0x14 0x0 0x170 0x0 0xc8 0x0 0xe0 0x0 0xf8 0x0 0x110 0x0 0x128 0x0 0x140 0x0 0x158 0x0 0x170 0x0 0xb0 0x750003 0x0 0xc0 0x7d0003 0x0 0xa8 0x850003 0x0 0x90 0x8d0003 0x0 0x78 0x950003 0x0 0x60 0x9d0003 0x0 0x48 0xa50003 0x0 0x30 0xad0003 0x0 0x18 0xb90005 0x0 0x0 0x0 0x0 0x0 0x0 0xc50002 0x0 0xcf0002 0x0 0xd20005 0x0 0x0 0x0 0x0 0x0 0x0 0xd50004 0x0 0x0 0x0 0x0 0x0 0x0 0xdc0005 0x0 0x0 0x0 0x0 0x0 0x0 0xdf0007 0x0 0x3a0 0x0 0xe40004 0x0 0x0 0x0 0x0 0x0 0x0 0xeb0005 0x0 0x0 0x0 0x0 0x0 0x0 0xf00007 0x0 0x78 0x0 0xf50005 0x0 0x0 0x0 0x0 0x0 0x0 0xfa0007 0x0 0x70 0x0 0xff0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1040003 0x0 0x260 0x1090005 0x0 0x0 0x0 0x0 0x0 0x0 0x10e0007 0x0 0x210 0x0 0x1150007 0x0 0x1f0 0x0 0x11c0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1250005 0x0 0x0 0x0 0x0 0x0 0x0 0x12c0003 0x0 0x108 0x1310005 0x0 0x0 0x0 0x0 0x0 0x0 0x1360004 0x0 0x0 0x0 0x0 0x0 0x0 0x13d0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1420002 0x0 0x1450007 0x0 0x38 0x0 0x14c0003 0x0 0x70 0x1510005 0x0 0x0 0x0 0x0 0x0 0x0 0x1560007 0x0 0xfffffffffffffed8 0x0 0x15d0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1650002 0x36 0x1680005 0x36 0x0 0x0 0x0 0x0 0x0 0x16b0004 0x0 0x0 0x20374c7b200 0x2c 0x20378283348 0x8 0x1700005 0x36 0x0 0x0 0x0 0x0 0x0 0x1730007 0x36 0x3a0 0x0 0x1770004 0x0 0x0 0x0 0x0 0x0 0x0 0x17e0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1830007 0x0 0x78 0x0 0x1880005 0x0 0x0 0x0 0x0 0x0 0x0 0x18d0007 0x0 0x70 0x0 0x1920005 0x0 0x0 0x0 0x0 0x0 0x0 0x1960003 0x0 0x260 0x19b0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1a00007 0x0 0x210 0x0 0x1a70007 0x0 0x1f0 0x0 0x1ae0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1b70005 0x0 0x0 0x0 0x0 0x0 0x0 0x1be0003 0x0 0x108 0x1c30005 0x0 0x0 0x0 0x0 0x0 0x0 0x1c80004 0x0 0x0 0x0 0x0 0x0 0x0 0x1cf0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1d30002 0x0 0x1d60007 0x0 0x38 0x0 0x1dc0003 0x0 0x70 0x1e10005 0x0 0x0 0x0 0x0 0x0 0x0 0x1e60007 0x0 0xfffffffffffffed8 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x3 0x0 0x0 0x0 oops 2 228 org/eclipse/jdt/internal/compiler/lookup/BinaryTypeBinding 230 org/eclipse/jdt/internal/compiler/lookup/SourceTypeBinding methods 0
  53. ciMethodData org/eclipse/jdt/internal/compiler/codegen/StackMapFrame replaceWithElementType ()V 1 44 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 30 0xd0005 0x0 0x0 0x20376f6b590 0x2c 0x0 0x0 0x120005 0x0 0x0 0x20376f6b590 0x2c 0x0 0x0 0x200004 0x0 0x0 0x20376f6b590 0x2c 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 3 3 org/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo 10 org/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo 17 org/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo methods 0
  54. ciMethodData org/eclipse/jdt/internal/compiler/ClassFile filterFakeFrames (Ljava/util/Set;Ljava/util/Map;I)Ljava/util/List; 2 1432 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 87 0x20002 0x598 0x50005 0x0 0x0 0x2036bd5d9c8 0x598 0x0 0x0 0xf0002 0x598 0x150005 0x0 0x0 0x2036bd5d9c8 0x598 0x0 0x0 0x1c0003 0x598 0x150 0x210005 0x0 0x0 0x20375d4f150 0x7c12 0x0 0x0 0x260004 0x0 0x0 0x2036bd3f348 0x7c12 0x0 0x0 0x2e0005 0x0 0x0 0x20376f6b4e0 0x7c12 0x0 0x0 0x330004 0x0 0x0 0x20376f6b380 0x7c12 0x0 0x0 0x3a0007 0x0 0x58 0x7c12 0x410005 0x0 0x0 0x2036bd3e978 0x7c12 0x0 0x0 0x490005 0x0 0x0 0x20375d4f150 0x81aa 0x0 0x0 0x4e0007 0x7c12 0xfffffffffffffe90 0x598 0x580002 0x598 0x5b0002 0x598 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x4 0x0 0xffffffffffffffff 0xffffffffffffffff 0x0 oops 8 5 java/util/HashSet 14 java/util/HashSet 24 java/util/HashMap$KeyIterator 31 java/lang/Integer 38 java/util/HashMap 45 org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 56 java/util/ArrayList 63 java/util/HashMap$KeyIterator methods 0
  55. ciInstanceKlass java/lang/Cloneable 1 0 7 100 1 100 1 1 1
  56. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/MethodVerifier checkForRedundantSuperinterfaces (Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding;[Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding;)V 475 <appendix> argL0 ; # org/eclipse/jdt/internal/compiler/lookup/MethodVerifier$$Lambda+0x000002032b81c000
  57. instanceKlass org/eclipse/jdt/internal/core/search/indexing/AddFolderToIndex$2
  58. instanceKlass org/eclipse/jdt/internal/core/search/indexing/AddFolderToIndex$1
  59. instanceKlass @bci org/eclipse/jdt/internal/core/index/MetaIndex addIndexEntry ([C[CLjava/lang/String;)V 18 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/core/index/MetaIndex$$Lambda+0x000002032b811880
  60. instanceKlass org/eclipse/jdt/internal/core/index/IndexQualifier
  61. instanceKlass org/eclipse/jdt/internal/core/index/EntryResult
  62. instanceKlass @bci org/eclipse/jdt/internal/core/search/indexing/IndexManager saveIndex (Lorg/eclipse/jdt/internal/core/index/Index;)V 95 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/core/search/indexing/IndexManager$$Lambda+0x000002032b811028
  63. instanceKlass org/eclipse/jdt/internal/core/index/DiskIndex$IntList
  64. instanceKlass org/eclipse/jdt/internal/compiler/util/HashtableOfIntValues
  65. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b818400
  66. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b818000
  67. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b817c00
  68. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b817800
  69. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b817400
  70. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b817000
  71. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b816c00
  72. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b816800
  73. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b816400
  74. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b816000
  75. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b815c00
  76. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b815800
  77. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b815400
  78. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b815000
  79. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b814c00
  80. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b814800
  81. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b814400
  82. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b814000
  83. instanceKlass lombok/launch/PatchFixesHider$PatchFixes
  84. instanceKlass org/eclipse/jdt/core/Flags
  85. instanceKlass org/eclipse/jdt/internal/core/MemberValuePair
  86. instanceKlass lombok/permit/Permit$Fake
  87. instanceKlass lombok/permit/Permit
  88. instanceKlass lombok/launch/PatchFixesHider$FieldInitializer
  89. instanceKlass org/eclipse/jdt/ls/core/internal/DocumentAdapter
  90. instanceKlass @bci org/eclipse/jdt/internal/core/CompilationUnitStructureRequestor getChildren (Ljava/lang/Object;)[Lorg/eclipse/jdt/core/IJavaElement; 17 <appendix> argL0 ; # org/eclipse/jdt/internal/core/CompilationUnitStructureRequestor$$Lambda+0x000002032b8070b8
  91. instanceKlass org/eclipse/jdt/internal/compiler/env/ISourceImport
  92. instanceKlass org/eclipse/jdt/internal/compiler/env/ISourceModule
  93. instanceKlass org/eclipse/jdt/core/ILocalVariable
  94. instanceKlass org/eclipse/jdt/internal/compiler/env/ISourceMethod
  95. instanceKlass org/eclipse/jdt/core/IMemberValuePair
  96. instanceKlass org/eclipse/jdt/internal/compiler/env/ISourceField
  97. instanceKlass org/eclipse/jdt/internal/core/Buffer
  98. instanceKlass org/eclipse/jdt/internal/core/BufferManager$1
  99. instanceKlass @bci org/eclipse/jdt/ls/core/internal/handlers/WorkspaceDiagnosticsHandler isInteresting (Lorg/eclipse/core/resources/IMarker;)Z 15 <appendix> member <vmtarget> ; # org/eclipse/jdt/ls/core/internal/handlers/WorkspaceDiagnosticsHandler$$Lambda+0x000002032b7bbb10
  100. instanceKlass @bci org/eclipse/jdt/ls/core/internal/handlers/WorkspaceDiagnosticsHandler visit (Lorg/eclipse/core/resources/IResourceDelta;)Z 30 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/handlers/WorkspaceDiagnosticsHandler$$Lambda+0x000002032b7bb8d0
  101. instanceKlass @bci org/eclipse/jdt/ls/core/internal/handlers/WorkspaceDiagnosticsHandler visit (Lorg/eclipse/core/resources/IResourceDelta;)Z 20 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/handlers/WorkspaceDiagnosticsHandler$$Lambda+0x000002032b7bb6a0
  102. instanceKlass org/eclipse/jdt/internal/compiler/codegen/FloatCache
  103. instanceKlass @bci org/eclipse/jdt/internal/compiler/ast/SwitchStatement$SwitchTranslator$StringSwitchTranslator initializeLabels (Lorg/eclipse/jdt/internal/compiler/codegen/CodeStream;)V 27 <appendix> argL0 ; # org/eclipse/jdt/internal/compiler/ast/SwitchStatement$SwitchTranslator$StringSwitchTranslator$$Lambda+0x000002032b7f94c8
  104. instanceKlass org/eclipse/jdt/internal/compiler/env/AccessRestriction
  105. instanceKlass org/eclipse/jdt/internal/compiler/codegen/IntegerCache
  106. instanceKlass @bci org/eclipse/jdt/internal/compiler/ast/FakedTrackingVariable reportError (Lorg/eclipse/jdt/internal/compiler/problem/ProblemReporter;Lorg/eclipse/jdt/internal/compiler/ast/ASTNode;I)I 108 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/ast/FakedTrackingVariable$$Lambda+0x000002032b7f8a58
  107. instanceKlass @bci org/eclipse/jdt/internal/compiler/ast/FakedTrackingVariable markClose (Lorg/eclipse/jdt/internal/compiler/flow/FlowInfo;Lorg/eclipse/jdt/internal/compiler/flow/FlowContext;)V 3 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/ast/FakedTrackingVariable$$Lambda+0x000002032b7f8830
  108. instanceKlass org/eclipse/jdt/internal/compiler/flow/LoopingFlowContext$EscapingExceptionCatchSite
  109. instanceKlass @bci org/eclipse/jdt/internal/compiler/ast/FakedTrackingVariable markPassedToOutside (Lorg/eclipse/jdt/internal/compiler/lookup/BlockScope;Lorg/eclipse/jdt/internal/compiler/ast/Expression;Lorg/eclipse/jdt/internal/compiler/flow/FlowInfo;Lorg/eclipse/jdt/internal/compiler/flow/FlowContext;Z)Lorg/eclipse/jdt/internal/compiler/flow/FlowInfo; 54 <adapter> ; # java/lang/invoke/LambdaForm$MH+0x000002032b7fd400
  110. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b7fd000
  111. instanceKlass @bci org/eclipse/jdt/internal/compiler/ast/FakedTrackingVariable markPassedToOutside (Lorg/eclipse/jdt/internal/compiler/lookup/BlockScope;Lorg/eclipse/jdt/internal/compiler/ast/Expression;Lorg/eclipse/jdt/internal/compiler/flow/FlowInfo;Lorg/eclipse/jdt/internal/compiler/flow/FlowContext;Z)Lorg/eclipse/jdt/internal/compiler/flow/FlowInfo; 54 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b7fcc00
  112. instanceKlass @bci org/eclipse/jdt/internal/compiler/ast/FakedTrackingVariable markPassedToOutside (Lorg/eclipse/jdt/internal/compiler/lookup/BlockScope;Lorg/eclipse/jdt/internal/compiler/ast/Expression;Lorg/eclipse/jdt/internal/compiler/flow/FlowInfo;Lorg/eclipse/jdt/internal/compiler/flow/FlowContext;Z)Lorg/eclipse/jdt/internal/compiler/flow/FlowInfo; 54 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/ast/FakedTrackingVariable$$Lambda+0x000002032b7f8400
  113. instanceKlass @cpi org/eclipse/jdt/internal/compiler/ast/FakedTrackingVariable 1056 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b7fc800
  114. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7fc400
  115. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7fc000
  116. instanceKlass org/eclipse/jdt/internal/compiler/codegen/DoubleCache
  117. instanceKlass @bci org/eclipse/jdt/internal/compiler/problem/ProblemReporter deprecatedMethod (Lorg/eclipse/jdt/internal/compiler/lookup/MethodBinding;Lorg/eclipse/jdt/internal/compiler/ast/ASTNode;)V 193 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/problem/ProblemReporter$$Lambda+0x000002032b7f5c08
  118. instanceKlass org/eclipse/jdt/internal/compiler/codegen/LongCache
  119. instanceKlass org/eclipse/jdt/internal/compiler/codegen/StackMapFrameCodeStream$ExceptionMarker
  120. instanceKlass org/eclipse/jdt/internal/compiler/ClassFile$1
  121. instanceKlass org/eclipse/jdt/internal/compiler/ast/FunctionalExpression$1BridgeCollector
  122. instanceKlass @bci org/eclipse/jdt/internal/compiler/ast/LambdaExpression generateCode (Lorg/eclipse/jdt/internal/compiler/ClassFile;)V 456 <appendix> argL0 ; # org/eclipse/jdt/internal/compiler/ast/LambdaExpression$$Lambda+0x000002032b7f75a8
  123. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/SyntheticMethodBinding <init> (Lorg/eclipse/jdt/internal/compiler/ast/LambdaExpression;[CLorg/eclipse/jdt/internal/compiler/lookup/SourceTypeBinding;)V 153 <appendix> argL0 ; # org/eclipse/jdt/internal/compiler/lookup/SyntheticMethodBinding$$Lambda+0x000002032b7f7398
  124. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/SyntheticMethodBinding <init> (Lorg/eclipse/jdt/internal/compiler/ast/LambdaExpression;[CLorg/eclipse/jdt/internal/compiler/lookup/SourceTypeBinding;)V 143 <appendix> argL0 ; # org/eclipse/jdt/internal/compiler/lookup/SyntheticMethodBinding$$Lambda+0x000002032b7f7158
  125. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/SyntheticMethodBinding <init> (Lorg/eclipse/jdt/internal/compiler/ast/LambdaExpression;[CLorg/eclipse/jdt/internal/compiler/lookup/SourceTypeBinding;)V 111 <appendix> argL0 ; # org/eclipse/jdt/internal/compiler/lookup/SyntheticMethodBinding$$Lambda+0x000002032b7f6f18
  126. instanceKlass org/eclipse/jdt/internal/compiler/ClassFile$3
  127. instanceKlass org/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo
  128. instanceKlass org/eclipse/jdt/internal/compiler/codegen/StackMapFrame
  129. instanceKlass @bci org/eclipse/jdt/internal/compiler/ast/FakedTrackingVariable getCloseTrackingVariable (Lorg/eclipse/jdt/internal/compiler/ast/Expression;Lorg/eclipse/jdt/internal/compiler/flow/FlowInfo;Lorg/eclipse/jdt/internal/compiler/flow/FlowContext;Z)Lorg/eclipse/jdt/internal/compiler/ast/FakedTrackingVariable; 60 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/ast/FakedTrackingVariable$$Lambda+0x000002032b7f63d0
  130. instanceKlass org/eclipse/jdt/internal/compiler/ast/FakedTrackingVariable$IteratorForReporting
  131. instanceKlass @bci org/eclipse/jdt/internal/compiler/ast/FakedTrackingVariable$1 handle (Lorg/eclipse/jdt/internal/compiler/ast/FakedTrackingVariable;Lorg/eclipse/jdt/internal/compiler/flow/FlowInfo;Lorg/eclipse/jdt/internal/compiler/ast/ASTNode;Lorg/eclipse/jdt/internal/compiler/lookup/BlockScope;)Z 47 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/ast/FakedTrackingVariable$1$$Lambda+0x000002032b7f3918
  132. instanceKlass @cpi org/eclipse/jdt/internal/compiler/ast/FakedTrackingVariable$1 123 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b7f5400
  133. instanceKlass org/eclipse/core/runtime/SlicedProgressMonitor
  134. instanceKlass @bci org/eclipse/jdt/internal/compiler/ast/FakedTrackingVariable markNullStatus (Lorg/eclipse/jdt/internal/compiler/flow/FlowInfo;Lorg/eclipse/jdt/internal/compiler/flow/FlowContext;I)V 4 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/ast/FakedTrackingVariable$$Lambda+0x000002032b7f36f0
  135. instanceKlass @cpi org/eclipse/jdt/internal/compiler/ast/FakedTrackingVariable 1046 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b7f5000
  136. instanceKlass @bci org/eclipse/core/internal/resources/File internalSetMultipleContents (Ljava/util/concurrent/ConcurrentMap;IZLorg/eclipse/core/runtime/IProgressMonitor;Ljava/util/concurrent/ExecutorService;)V 63 <adapter> ; # java/lang/invoke/LambdaForm$MH+0x000002032b7f4c00
  137. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b7f4800
  138. instanceKlass @bci org/eclipse/core/internal/resources/File internalSetMultipleContents (Ljava/util/concurrent/ConcurrentMap;IZLorg/eclipse/core/runtime/IProgressMonitor;Ljava/util/concurrent/ExecutorService;)V 63 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b7f4400
  139. instanceKlass @bci org/eclipse/core/internal/resources/File internalSetMultipleContents (Ljava/util/concurrent/ConcurrentMap;IZLorg/eclipse/core/runtime/IProgressMonitor;Ljava/util/concurrent/ExecutorService;)V 63 <appendix> member <vmtarget> ; # org/eclipse/core/internal/resources/File$$Lambda+0x000002032b7d5260
  140. instanceKlass @cpi org/eclipse/core/internal/resources/File 783 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b7f4000
  141. instanceKlass @bci org/eclipse/core/internal/resources/Workspace createMultiple (Ljava/util/concurrent/ConcurrentMap;ILorg/eclipse/core/runtime/IProgressMonitor;Ljava/util/concurrent/ExecutorService;)V 115 <appendix> argL0 ; # org/eclipse/core/internal/resources/Workspace$$Lambda+0x000002032b7d5050
  142. instanceKlass @bci org/eclipse/core/internal/resources/Workspace createMultiple (Ljava/util/concurrent/ConcurrentMap;ILorg/eclipse/core/runtime/IProgressMonitor;Ljava/util/concurrent/ExecutorService;)V 105 <appendix> member <vmtarget> ; # org/eclipse/core/internal/resources/Workspace$$Lambda+0x000002032b7d4e18
  143. instanceKlass org/eclipse/jdt/internal/core/builder/NameSet
  144. instanceKlass org/eclipse/jdt/internal/core/builder/QualifiedNameSet
  145. instanceKlass @bci org/eclipse/jdt/internal/core/builder/AbstractImageBuilder acceptResult (Lorg/eclipse/jdt/internal/compiler/CompilationResult;)V 733 <appendix> argL0 ; # org/eclipse/jdt/internal/core/builder/AbstractImageBuilder$$Lambda+0x000002032b7ce5b8
  146. instanceKlass @bci org/eclipse/jdt/internal/core/builder/AbstractImageBuilder acceptResult (Lorg/eclipse/jdt/internal/compiler/CompilationResult;)V 723 <appendix> argL0 ; # org/eclipse/jdt/internal/core/builder/AbstractImageBuilder$$Lambda+0x000002032b7ce378
  147. instanceKlass @bci org/eclipse/jdt/internal/core/builder/AbstractImageBuilder acceptResult (Lorg/eclipse/jdt/internal/compiler/CompilationResult;)V 713 <appendix> argL0 ; # org/eclipse/jdt/internal/core/builder/AbstractImageBuilder$$Lambda+0x000002032b7ce148
  148. instanceKlass @bci org/eclipse/jdt/internal/compiler/ast/AbstractMethodDeclaration generateCode (Lorg/eclipse/jdt/internal/compiler/ClassFile;)V 295 <appendix> argL0 ; # org/eclipse/jdt/internal/compiler/ast/AbstractMethodDeclaration$$Lambda+0x000002032b7f34b0
  149. instanceKlass @bci org/eclipse/jdt/internal/compiler/ClassFile completeMethodInfo (Lorg/eclipse/jdt/internal/compiler/lookup/MethodBinding;II)V 437 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/ClassFile$$Lambda+0x000002032b7f2e78
  150. instanceKlass @bci org/eclipse/jdt/internal/compiler/ClassFile completeMethodInfo (Lorg/eclipse/jdt/internal/compiler/lookup/MethodBinding;II)V 430 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/ClassFile$$Lambda+0x000002032b7f2c38
  151. instanceKlass @bci org/eclipse/jdt/internal/compiler/codegen/CodeStream exitUserScope (Lorg/eclipse/jdt/internal/compiler/lookup/BlockScope;)V 2 <appendix> argL0 ; # org/eclipse/jdt/internal/compiler/codegen/CodeStream$$Lambda+0x000002032b7f29f8
  152. instanceKlass @bci org/eclipse/jdt/internal/compiler/ast/ConstructorDeclaration internalGenerateCode (Lorg/eclipse/jdt/internal/compiler/lookup/ClassScope;Lorg/eclipse/jdt/internal/compiler/ClassFile;)V 700 <appendix> argL0 ; # org/eclipse/jdt/internal/compiler/ast/ConstructorDeclaration$$Lambda+0x000002032b7f27b8
  153. instanceKlass @bci org/eclipse/jdt/internal/compiler/ClassFile generateTypeAnnotationsOnCodeAttribute ()I 245 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/ClassFile$$Lambda+0x000002032b7f25a0
  154. instanceKlass @bci org/eclipse/jdt/internal/compiler/ClassFile generateTypeAnnotationsOnCodeAttribute ()I 239 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/ClassFile$$Lambda+0x000002032b7f2360
  155. instanceKlass org/eclipse/jdt/internal/compiler/codegen/StackMapFrameCodeStream$FramePosition
  156. instanceKlass org/eclipse/jdt/internal/compiler/codegen/CachedIndexEntry
  157. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/Scope initializeCommonTypeBindings ()Ljava/util/Map; 515 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/lookup/Scope$$Lambda+0x000002032b7f1d50
  158. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/Scope initializeCommonTypeBindings ()Ljava/util/Map; 492 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/lookup/Scope$$Lambda+0x000002032b7f1b38
  159. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/Scope initializeCommonTypeBindings ()Ljava/util/Map; 469 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/lookup/Scope$$Lambda+0x000002032b7f1920
  160. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/Scope initializeCommonTypeBindings ()Ljava/util/Map; 446 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/lookup/Scope$$Lambda+0x000002032b7f1708
  161. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/Scope initializeCommonTypeBindings ()Ljava/util/Map; 423 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/lookup/Scope$$Lambda+0x000002032b7f14f0
  162. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/Scope initializeCommonTypeBindings ()Ljava/util/Map; 400 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/lookup/Scope$$Lambda+0x000002032b7f12d8
  163. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/Scope initializeCommonTypeBindings ()Ljava/util/Map; 377 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/lookup/Scope$$Lambda+0x000002032b7f10c0
  164. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/Scope initializeCommonTypeBindings ()Ljava/util/Map; 354 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/lookup/Scope$$Lambda+0x000002032b7f0ea8
  165. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/Scope initializeCommonTypeBindings ()Ljava/util/Map; 331 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/lookup/Scope$$Lambda+0x000002032b7f0c90
  166. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/Scope initializeCommonTypeBindings ()Ljava/util/Map; 308 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/lookup/Scope$$Lambda+0x000002032b7f0a78
  167. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/Scope initializeCommonTypeBindings ()Ljava/util/Map; 285 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/lookup/Scope$$Lambda+0x000002032b7f0860
  168. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/Scope initializeCommonTypeBindings ()Ljava/util/Map; 262 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/lookup/Scope$$Lambda+0x000002032b7f0648
  169. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/Scope initializeCommonTypeBindings ()Ljava/util/Map; 239 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/lookup/Scope$$Lambda+0x000002032b7f0430
  170. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/Scope initializeCommonTypeBindings ()Ljava/util/Map; 216 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/lookup/Scope$$Lambda+0x000002032b7f0218
  171. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/Scope initializeCommonTypeBindings ()Ljava/util/Map; 193 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/lookup/Scope$$Lambda+0x000002032b7f0000
  172. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/Scope initializeCommonTypeBindings ()Ljava/util/Map; 170 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/lookup/Scope$$Lambda+0x000002032b7efc90
  173. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/Scope initializeCommonTypeBindings ()Ljava/util/Map; 147 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/lookup/Scope$$Lambda+0x000002032b7efa78
  174. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/Scope initializeCommonTypeBindings ()Ljava/util/Map; 124 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/lookup/Scope$$Lambda+0x000002032b7ef860
  175. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/Scope initializeCommonTypeBindings ()Ljava/util/Map; 101 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/lookup/Scope$$Lambda+0x000002032b7ef648
  176. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/Scope initializeCommonTypeBindings ()Ljava/util/Map; 78 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/lookup/Scope$$Lambda+0x000002032b7ef430
  177. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/Scope initializeCommonTypeBindings ()Ljava/util/Map; 55 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/lookup/Scope$$Lambda+0x000002032b7ef218
  178. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/Scope initializeCommonTypeBindings ()Ljava/util/Map; 32 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/lookup/Scope$$Lambda+0x000002032b7ef000
  179. instanceKlass @bci org/eclipse/jdt/internal/compiler/ClassFile addFieldAttributes (Lorg/eclipse/jdt/internal/compiler/lookup/FieldBinding;I)I 220 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/ClassFile$$Lambda+0x000002032b7ebd68
  180. instanceKlass @bci org/eclipse/jdt/internal/compiler/ClassFile addFieldAttributes (Lorg/eclipse/jdt/internal/compiler/lookup/FieldBinding;I)I 213 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/ClassFile$$Lambda+0x000002032b7ebb28
  181. instanceKlass org/eclipse/jdt/internal/compiler/util/HashtableOfInteger
  182. instanceKlass org/eclipse/jdt/internal/compiler/codegen/CharArrayCache
  183. instanceKlass org/eclipse/jdt/internal/compiler/codegen/OperandStack
  184. instanceKlass @bci org/eclipse/jdt/internal/compiler/ast/MethodDeclaration analyseCode (Lorg/eclipse/jdt/internal/compiler/lookup/ClassScope;Lorg/eclipse/jdt/internal/compiler/flow/FlowContext;Lorg/eclipse/jdt/internal/compiler/flow/FlowInfo;)V 273 <appendix> argL0 ; # org/eclipse/jdt/internal/compiler/ast/MethodDeclaration$$Lambda+0x000002032b7e9370
  185. instanceKlass @bci org/eclipse/jdt/internal/compiler/ProcessTaskManager <init> (Lorg/eclipse/jdt/internal/compiler/Compiler;I)V 37 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/ProcessTaskManager$$Lambda+0x000002032b7e8d38
  186. instanceKlass @bci org/eclipse/jdt/internal/compiler/ProcessTaskManager <clinit> ()V 10 <appendix> argL0 ; # org/eclipse/jdt/internal/compiler/ProcessTaskManager$$Lambda+0x000002032b7e8b28
  187. instanceKlass org/eclipse/jdt/internal/compiler/ProcessTaskManager
  188. instanceKlass org/eclipse/jdt/internal/compiler/apt/model/NameImpl
  189. instanceKlass javax/annotation/processing/SupportedAnnotationTypes
  190. instanceKlass javax/annotation/processing/SupportedOptions
  191. instanceKlass org/eclipse/jdt/internal/compiler/apt/dispatch/ProcessorInfo
  192. instanceKlass lombok/launch/AnnotationProcessorHider$AstModificationNotifierData
  193. instanceKlass lombok/core/AnnotationProcessor$ProcessorDescriptor
  194. instanceKlass org/eclipse/jdt/internal/compiler/apt/dispatch/RoundDispatcher
  195. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7eec00
  196. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7ee800
  197. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7ee400
  198. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7ee000
  199. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b7edc00
  200. instanceKlass lombok/eclipse/agent/PatchExtensionMethod$PostponedInvalidMethodError
  201. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7ed800
  202. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7ed400
  203. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7ed000
  204. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7ecc00
  205. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7ec800
  206. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7ec400
  207. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7ec000
  208. instanceKlass @bci org/eclipse/jdt/internal/compiler/ast/CaseStatement peeledLabelExpressions ()[Lorg/eclipse/jdt/internal/compiler/ast/Expression; 80 <appendix> argL0 ; # org/eclipse/jdt/internal/compiler/ast/CaseStatement$$Lambda+0x000002032b7e8000
  209. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7e1c00
  210. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7e1800
  211. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7e1400
  212. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7e1000
  213. instanceKlass org/eclipse/osgi/framework/internal/reliablefile/ReliableFile$CacheInfo
  214. instanceKlass org/eclipse/osgi/storagemanager/StorageManager$Entry
  215. instanceKlass org/eclipse/osgi/container/ModuleDatabase$Persistence
  216. instanceKlass javax/lang/model/element/AnnotationValue
  217. instanceKlass javax/lang/model/element/ExecutableElement
  218. instanceKlass javax/lang/model/element/VariableElement
  219. instanceKlass org/eclipse/jdt/internal/compiler/apt/model/ElementImpl
  220. instanceKlass org/eclipse/jdt/internal/compiler/apt/model/IElementInfo
  221. instanceKlass org/eclipse/jdt/internal/compiler/apt/util/ManyToMany
  222. instanceKlass org/eclipse/jdt/internal/compiler/apt/dispatch/RoundEnvImpl
  223. instanceKlass org/eclipse/jdt/apt/core/internal/ClassServiceFactory
  224. instanceKlass javax/annotation/processing/AbstractProcessor
  225. instanceKlass org/eclipse/jdt/apt/core/internal/LoadFailureHandler
  226. instanceKlass org/eclipse/jdt/apt/core/internal/AnnotationProcessorFactoryLoader$ResourceListener
  227. instanceKlass org/eclipse/jdt/apt/core/internal/IServiceFactory
  228. instanceKlass org/eclipse/jdt/apt/core/internal/AnnotationProcessorFactoryLoader
  229. instanceKlass org/eclipse/jdt/internal/compiler/lookup/ReferenceBindingSetWrapper
  230. instanceKlass @bci org/eclipse/jdt/internal/core/builder/NameEnvironment getModulesDeclaringPackage ([[C[C)[[C 167 <appendix> argL0 ; # org/eclipse/jdt/internal/core/builder/NameEnvironment$$Lambda+0x000002032b7cdf08
  231. instanceKlass @bci org/eclipse/jdt/internal/core/builder/NameEnvironment getModulesDeclaringPackage ([[C[C)[[C 96 <appendix> argL0 ; # org/eclipse/jdt/internal/core/builder/NameEnvironment$$Lambda+0x000002032b7cdcc8
  232. instanceKlass org/eclipse/jdt/internal/compiler/ast/CaseStatement$LabelExpression
  233. instanceKlass org/eclipse/jdt/internal/compiler/ast/SwitchStatement$SwitchTranslator
  234. instanceKlass org/eclipse/jdt/internal/compiler/lookup/InferenceContext18$1
  235. instanceKlass org/eclipse/jdt/internal/compiler/util/Sorting$1
  236. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7e0c00
  237. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7e0800
  238. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7e0400
  239. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7e0000
  240. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7dbc00
  241. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7db800
  242. instanceKlass @bci org/eclipse/jdt/internal/compiler/util/SortedCharArrays <clinit> ()V 8 <appendix> argL0 ; # org/eclipse/jdt/internal/compiler/util/SortedCharArrays$$Lambda+0x000002032b7de670
  243. instanceKlass @bci org/eclipse/jdt/internal/compiler/util/SortedCharArrays <clinit> ()V 0 <appendix> argL0 ; # org/eclipse/jdt/internal/compiler/util/SortedCharArrays$$Lambda+0x000002032b7de3e8
  244. instanceKlass org/eclipse/jdt/internal/compiler/util/SortedCharArrays
  245. instanceKlass @bci org/eclipse/jdt/internal/core/builder/NameEnvironment findClass (Ljava/lang/String;[CLorg/eclipse/jdt/internal/compiler/env/IModuleAwareNameEnvironment$LookupStrategy;Ljava/lang/String;)Lorg/eclipse/jdt/internal/compiler/env/NameEnvironmentAnswer; 339 <appendix> argL0 ; # org/eclipse/jdt/internal/core/builder/NameEnvironment$$Lambda+0x000002032b7cda88
  246. instanceKlass org/eclipse/jdt/internal/compiler/lookup/SortedSimpleNameVector
  247. instanceKlass org/eclipse/jdt/internal/compiler/lookup/SortedCompoundNameVector
  248. instanceKlass @bci org/eclipse/jdt/internal/compiler/ReadManager queueNextReadAhead ()Z 46 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/ReadManager$$Lambda+0x000002032b7ddbd8
  249. instanceKlass @bci org/eclipse/jdt/internal/compiler/ReadManager createExecutor (I)Ljava/util/concurrent/ExecutorService; 25 <appendix> argL0 ; # org/eclipse/jdt/internal/compiler/ReadManager$$Lambda+0x000002032b7dd9c8
  250. instanceKlass @bci org/eclipse/jdt/internal/compiler/ast/ParameterizedSingleTypeReference internalResolveType (Lorg/eclipse/jdt/internal/compiler/lookup/Scope;Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding;ZI)Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding; 218 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/ast/ParameterizedSingleTypeReference$$Lambda+0x000002032b7dd5b8
  251. instanceKlass org/eclipse/jdt/internal/core/builder/SourceFile
  252. instanceKlass org/eclipse/jdt/internal/core/builder/AbstractImageBuilder$1
  253. instanceKlass org/eclipse/jdt/internal/core/builder/BatchImageBuilder$3
  254. instanceKlass org/eclipse/jdt/internal/compiler/lookup/Substitution$NullSubstitution
  255. instanceKlass org/eclipse/jdt/internal/compiler/lookup/ParameterNonNullDefaultProvider$2
  256. instanceKlass org/eclipse/jdt/internal/compiler/lookup/ParameterNonNullDefaultProvider$1
  257. instanceKlass org/eclipse/jdt/internal/compiler/util/Sorting
  258. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7db400
  259. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7db000
  260. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7dac00
  261. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7da800
  262. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7da400
  263. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7da000
  264. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7d9c00
  265. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7d9800
  266. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7d9400
  267. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7d9000
  268. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7d8c00
  269. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7d8800
  270. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7d8400
  271. instanceKlass @bci org/eclipse/core/internal/filesystem/local/LocalFile lambda$2 (Lorg/eclipse/core/internal/filesystem/local/InfiniteProgress;Ljava/util/concurrent/ExecutorService;Ljava/util/List;Ljava/nio/file/Path;)V 6 <appendix> member <vmtarget> ; # org/eclipse/core/internal/filesystem/local/LocalFile$$Lambda+0x000002032b5cf348
  272. instanceKlass @bci org/eclipse/core/internal/filesystem/local/LocalFile internalDelete (Ljava/io/File;Lorg/eclipse/core/internal/filesystem/local/InfiniteProgress;Ljava/util/concurrent/ExecutorService;)Lorg/eclipse/core/runtime/IStatus; 95 <appendix> member <vmtarget> ; # org/eclipse/core/internal/filesystem/local/LocalFile$$Lambda+0x000002032b5cf120
  273. instanceKlass org/eclipse/core/internal/localstore/DeleteVisitor
  274. instanceKlass @bci org/eclipse/core/internal/resources/Workspace countResources (Lorg/eclipse/core/runtime/IPath;IZ)I 61 <appendix> member <vmtarget> ; # org/eclipse/core/internal/resources/Workspace$$Lambda+0x000002032b7d47c0
  275. instanceKlass @cpi org/eclipse/core/internal/resources/Workspace 2642 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b7d8000
  276. instanceKlass org/eclipse/core/internal/resources/MoveDeleteHook
  277. instanceKlass org/eclipse/core/internal/resources/ResourceTree
  278. instanceKlass @bci org/eclipse/core/internal/resources/Resource accept (Lorg/eclipse/core/resources/IResourceVisitor;II)V 7 <appendix> member <vmtarget> ; # org/eclipse/core/internal/resources/Resource$$Lambda+0x000002032b7d4000
  279. instanceKlass org/eclipse/jdt/internal/core/builder/BatchImageBuilder$1
  280. instanceKlass org/eclipse/jdt/internal/core/builder/WorkQueue
  281. instanceKlass org/eclipse/jdt/internal/apt/pluggable/core/dispatch/IdeMessagerImpl
  282. instanceKlass javax/tools/JavaFileManager$Location
  283. instanceKlass org/eclipse/jdt/internal/apt/pluggable/core/filer/IdeFilerImpl
  284. instanceKlass javax/lang/model/element/AnnotationMirror
  285. instanceKlass javax/lang/model/element/TypeParameterElement
  286. instanceKlass javax/lang/model/type/ErrorType
  287. instanceKlass javax/lang/model/type/DeclaredType
  288. instanceKlass javax/lang/model/type/ReferenceType
  289. instanceKlass javax/lang/model/element/PackageElement
  290. instanceKlass javax/lang/model/type/NoType
  291. instanceKlass org/eclipse/jdt/internal/compiler/apt/model/Factory
  292. instanceKlass javax/lang/model/type/WildcardType
  293. instanceKlass javax/lang/model/type/PrimitiveType
  294. instanceKlass javax/lang/model/type/TypeMirror
  295. instanceKlass org/eclipse/jdt/internal/compiler/apt/model/TypesImpl$MemberInTypeFinder
  296. instanceKlass org/eclipse/jdt/internal/compiler/apt/model/TypesImpl
  297. instanceKlass javax/lang/model/element/ModuleElement
  298. instanceKlass javax/tools/JavaFileObject
  299. instanceKlass javax/tools/FileObject
  300. instanceKlass javax/lang/model/element/TypeElement
  301. instanceKlass javax/lang/model/element/QualifiedNameable
  302. instanceKlass javax/lang/model/element/Parameterizable
  303. instanceKlass javax/lang/model/element/Element
  304. instanceKlass javax/lang/model/AnnotatedConstruct
  305. instanceKlass javax/lang/model/element/Name
  306. instanceKlass org/eclipse/jdt/internal/compiler/apt/model/ElementsImpl
  307. instanceKlass javax/annotation/processing/Messager
  308. instanceKlass javax/annotation/processing/Filer
  309. instanceKlass javax/lang/model/util/Types
  310. instanceKlass javax/lang/model/util/Elements
  311. instanceKlass org/eclipse/jdt/internal/compiler/apt/dispatch/BaseProcessingEnvImpl
  312. instanceKlass javax/annotation/processing/ProcessingEnvironment
  313. instanceKlass javax/annotation/processing/RoundEnvironment
  314. instanceKlass org/eclipse/jdt/internal/compiler/apt/dispatch/IProcessorProvider
  315. instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$9
  316. instanceKlass org/eclipse/jdt/internal/compiler/AbstractAnnotationProcessorManager
  317. instanceKlass org/eclipse/jdt/internal/compiler/impl/CompilerStats
  318. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7c8c00
  319. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7c8800
  320. instanceKlass @bci org/eclipse/jdt/apt/core/internal/AptCompilationParticipant getAnnotationProcessorPaths (Lorg/eclipse/jdt/core/IJavaProject;Z)[Ljava/net/URI; 32 <appendix> member <vmtarget> ; # org/eclipse/jdt/apt/core/internal/AptCompilationParticipant$$Lambda+0x000002032b6e9a30
  321. instanceKlass org/eclipse/jdt/internal/compiler/DefaultCompilerFactory
  322. instanceKlass org/eclipse/jdt/internal/core/builder/ReferenceCollection
  323. instanceKlass org/eclipse/jdt/internal/core/builder/State
  324. instanceKlass @bci org/eclipse/jdt/internal/core/builder/BatchImageBuilder createExecutor (I)Ljava/util/concurrent/ThreadPoolExecutor; 19 <appendix> argL0 ; # org/eclipse/jdt/internal/core/builder/BatchImageBuilder$$Lambda+0x000002032b7c7388
  325. instanceKlass org/eclipse/core/resources/IResourceVisitor
  326. instanceKlass org/eclipse/jdt/core/compiler/BuildContext
  327. instanceKlass org/eclipse/jdt/core/compiler/CompilationProgress
  328. instanceKlass org/eclipse/jdt/internal/compiler/ICompilerFactory
  329. instanceKlass org/eclipse/jdt/internal/core/builder/AbstractImageBuilder
  330. instanceKlass org/eclipse/jdt/internal/core/builder/ICompilationUnitLocator
  331. instanceKlass org/eclipse/jdt/internal/core/builder/ModuleEntryProcessor
  332. instanceKlass org/eclipse/jdt/internal/core/builder/NameEnvironment
  333. instanceKlass org/eclipse/jdt/apt/core/internal/AptCompilationParticipantExtensionFactory
  334. instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$CompilationParticipants$1
  335. instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$CompilationParticipants$2
  336. instanceKlass @bci org/eclipse/jdt/internal/core/builder/JavaBuilder build (ILjava/util/Map;Lorg/eclipse/core/runtime/IProgressMonitor;)[Lorg/eclipse/core/resources/IProject; 90 <appendix> argL0 ; # org/eclipse/jdt/internal/core/builder/JavaBuilder$$Lambda+0x000002032b7c48a8
  337. instanceKlass @cpi org/eclipse/jdt/internal/core/builder/JavaBuilder 1025 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b7c3400
  338. instanceKlass org/eclipse/jdt/internal/core/builder/BuildNotifier
  339. instanceKlass org/eclipse/core/internal/events/BuildManager$2
  340. instanceKlass org/eclipse/core/internal/events/BuildManager$1
  341. instanceKlass org/eclipse/core/internal/events/BuildContext
  342. instanceKlass org/eclipse/core/internal/resources/Workspace$ProjectBuildConfigOrder
  343. instanceKlass org/eclipse/core/internal/resources/ComputeProjectOrder$VertexOrder
  344. instanceKlass org/eclipse/core/internal/resources/ComputeProjectOrder$Digraph$Vertex
  345. instanceKlass org/eclipse/core/internal/resources/ComputeProjectOrder$Digraph
  346. instanceKlass org/eclipse/core/internal/resources/ComputeProjectOrder
  347. instanceKlass @bci org/eclipse/jdt/internal/core/DynamicProjectReferences getDependentProjects (Lorg/eclipse/core/resources/IBuildConfiguration;)Ljava/util/List; 62 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/core/DynamicProjectReferences$$Lambda+0x000002032b7c4400
  348. instanceKlass org/eclipse/jdt/internal/core/DynamicProjectReferences
  349. instanceKlass org/eclipse/core/resources/IDynamicReferenceProvider
  350. instanceKlass org/eclipse/core/internal/resources/Workspace$BuildConfigurationComparator
  351. instanceKlass org/eclipse/jdt/apt/core/internal/generatedfile/GeneratedResourceChangeListener$PreBuildVisitor
  352. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7c3000
  353. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7c2c00
  354. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7c2800
  355. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7c2400
  356. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7c2000
  357. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7c1c00
  358. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b7c1800
  359. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b7c1400
  360. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b7c1000
  361. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b7c0c00
  362. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b7c0800
  363. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7c0000
  364. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b7c0400
  365. instanceKlass @bci org/eclipse/jdt/ls/core/internal/managers/StandardProjectsManager isBuildLikeFileName (Ljava/lang/String;)Z 5 <appendix> member <vmtarget> ; # org/eclipse/jdt/ls/core/internal/managers/StandardProjectsManager$$Lambda+0x000002032b7bb458
  366. instanceKlass @bci org/eclipse/jdt/ls/core/internal/managers/StandardProjectsManager isBuildFile (Lorg/eclipse/core/resources/IResource;)Z 5 <appendix> member <vmtarget> ; # org/eclipse/jdt/ls/core/internal/managers/StandardProjectsManager$$Lambda+0x000002032b7bb210
  367. instanceKlass @bci org/eclipse/jdt/ls/core/internal/handlers/WorkspaceDiagnosticsHandler toDiagnosticsArray (Lorg/eclipse/jface/text/IDocument;[Lorg/eclipse/core/resources/IMarker;Z)Ljava/util/List; 36 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/handlers/WorkspaceDiagnosticsHandler$$Lambda+0x000002032b7bb000
  368. instanceKlass @bci org/eclipse/jdt/ls/core/internal/handlers/WorkspaceDiagnosticsHandler toDiagnosticsArray (Lorg/eclipse/jface/text/IDocument;[Lorg/eclipse/core/resources/IMarker;Z)Ljava/util/List; 26 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/handlers/WorkspaceDiagnosticsHandler$$Lambda+0x000002032b7afd28
  369. instanceKlass @bci org/eclipse/jdt/ls/core/internal/handlers/WorkspaceDiagnosticsHandler toDiagnosticsArray (Lorg/eclipse/jface/text/IDocument;[Lorg/eclipse/core/resources/IMarker;Z)Ljava/util/List; 16 <appendix> member <vmtarget> ; # org/eclipse/jdt/ls/core/internal/handlers/WorkspaceDiagnosticsHandler$$Lambda+0x000002032b7afaf0
  370. instanceKlass @bci org/eclipse/jdt/ls/core/internal/handlers/WorkspaceDiagnosticsHandler toDiagnosticsArray (Lorg/eclipse/jface/text/IDocument;[Lorg/eclipse/core/resources/IMarker;Z)Ljava/util/List; 4 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/handlers/WorkspaceDiagnosticsHandler$$Lambda+0x000002032b7af8b0
  371. instanceKlass org/eclipse/jface/text/Line
  372. instanceKlass org/eclipse/jface/text/DocumentEvent
  373. instanceKlass org/eclipse/core/filebuffers/IDocumentSetupParticipant
  374. instanceKlass org/eclipse/jface/text/Position
  375. instanceKlass org/eclipse/jface/text/DefaultPositionUpdater
  376. instanceKlass org/eclipse/jface/text/AbstractLineTracker$DelimiterInfo
  377. instanceKlass org/eclipse/jface/text/AbstractLineTracker$SessionData
  378. instanceKlass org/eclipse/jface/text/ListLineTracker
  379. instanceKlass org/eclipse/jface/text/AbstractLineTracker
  380. instanceKlass org/eclipse/jface/text/ILineTrackerExtension
  381. instanceKlass org/eclipse/jface/text/CopyOnWriteTextStore$StringTextStore
  382. instanceKlass org/eclipse/jface/text/GapTextStore
  383. instanceKlass org/eclipse/jface/text/CopyOnWriteTextStore
  384. instanceKlass org/eclipse/jface/text/ILineTracker
  385. instanceKlass org/eclipse/jface/text/ITextStore
  386. instanceKlass org/eclipse/jface/text/IPositionUpdater
  387. instanceKlass org/eclipse/jface/text/ITypedRegion
  388. instanceKlass org/eclipse/jface/text/AbstractDocument
  389. instanceKlass org/eclipse/jface/text/IRepairableDocumentExtension
  390. instanceKlass org/eclipse/jface/text/IRepairableDocument
  391. instanceKlass org/eclipse/jface/text/IDocumentExtension4
  392. instanceKlass org/eclipse/jface/text/IDocumentExtension3
  393. instanceKlass org/eclipse/jface/text/IDocumentExtension2
  394. instanceKlass org/eclipse/jface/text/IDocumentExtension
  395. instanceKlass org/eclipse/jface/text/ISynchronizable
  396. instanceKlass org/eclipse/core/internal/filebuffers/ExtensionsRegistry$ContentTypeAdapter
  397. instanceKlass org/eclipse/osgi/internal/serviceregistry/ServiceFactoryUse$2
  398. instanceKlass @bci org/eclipse/core/internal/content/XMLRootHandler parseContents (Lorg/xml/sax/InputSource;)Z 8 <appendix> member <vmtarget> ; # org/eclipse/core/internal/content/XMLRootHandler$$Lambda+0x000002032b687990
  399. instanceKlass org/eclipse/core/runtime/content/XMLRootElementContentDescriber2$QualifiedElement
  400. instanceKlass com/sun/org/apache/xerces/internal/util/URI
  401. instanceKlass org/eclipse/m2e/core/internal/content/TextContentDescriber
  402. instanceKlass org/eclipse/core/internal/filebuffers/ResourceFileBuffer$SafeFileChange
  403. instanceKlass org/eclipse/core/internal/filebuffers/ResourceFileBuffer$FileSynchronizer
  404. instanceKlass org/eclipse/core/internal/filebuffers/ResourceTextFileBuffer$DocumentListener
  405. instanceKlass org/eclipse/jface/text/IDocumentListener
  406. instanceKlass org/eclipse/core/filebuffers/LocationKind
  407. instanceKlass org/eclipse/core/internal/filebuffers/ExtensionsRegistry
  408. instanceKlass org/eclipse/core/filebuffers/ITextFileBuffer
  409. instanceKlass org/eclipse/core/internal/filebuffers/AbstractFileBuffer
  410. instanceKlass org/eclipse/core/filebuffers/IStateValidationSupport
  411. instanceKlass org/eclipse/core/filebuffers/IFileBuffer
  412. instanceKlass org/eclipse/core/internal/filebuffers/TextFileBufferManager
  413. instanceKlass org/eclipse/core/internal/filebuffers/FileBuffersPlugin
  414. instanceKlass org/eclipse/core/filebuffers/ITextFileBufferManager
  415. instanceKlass org/eclipse/core/filebuffers/IFileBufferManager
  416. instanceKlass org/eclipse/core/filebuffers/FileBuffers
  417. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/JsonRpcHelpers
  418. instanceKlass org/eclipse/lsp4j/DiagnosticRelatedInformation
  419. instanceKlass org/eclipse/lsp4j/DiagnosticCodeDescription
  420. instanceKlass @bci org/eclipse/jdt/ls/core/internal/handlers/WorkspaceDiagnosticsHandler toDiagnosticArray (Lorg/eclipse/lsp4j/Range;Ljava/util/Collection;Z)Ljava/util/List; 28 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/handlers/WorkspaceDiagnosticsHandler$$Lambda+0x000002032b7af478
  421. instanceKlass @bci org/eclipse/jdt/ls/core/internal/handlers/WorkspaceDiagnosticsHandler toDiagnosticArray (Lorg/eclipse/lsp4j/Range;Ljava/util/Collection;Z)Ljava/util/List; 18 <appendix> member <vmtarget> ; # org/eclipse/jdt/ls/core/internal/handlers/WorkspaceDiagnosticsHandler$$Lambda+0x000002032b7af240
  422. instanceKlass @cpi org/eclipse/jdt/ls/core/internal/handlers/WorkspaceDiagnosticsHandler 910 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b7ae800
  423. instanceKlass org/eclipse/lsp4j/Diagnostic
  424. instanceKlass @bci org/eclipse/jdt/ls/core/internal/handlers/WorkspaceDiagnosticsHandler toDiagnosticArray (Lorg/eclipse/lsp4j/Range;Ljava/util/Collection;Z)Ljava/util/List; 6 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/handlers/WorkspaceDiagnosticsHandler$$Lambda+0x000002032b7af000
  425. instanceKlass org/eclipse/core/runtime/URIUtil
  426. instanceKlass org/eclipse/lsp4j/Position
  427. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b7ae400
  428. instanceKlass org/eclipse/jdt/internal/compiler/ISourceElementRequestor$TypeParameterInfo
  429. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7ae000
  430. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7adc00
  431. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7ad800
  432. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7ad400
  433. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7ad000
  434. instanceKlass org/eclipse/jdt/internal/compiler/ast/NullAnnotationMatching
  435. instanceKlass org/eclipse/core/runtime/jobs/IJobStatus
  436. instanceKlass org/eclipse/jdt/ls/core/internal/JobHelpers$BuildJobMatcher
  437. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/IndexUtils
  438. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7acc00
  439. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7ac800
  440. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7ac400
  441. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7ac000
  442. instanceKlass org/eclipse/jdt/internal/compiler/ast/UnlikelyArgumentCheck
  443. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7a2c00
  444. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7a2800
  445. instanceKlass @bci org/eclipse/jdt/internal/compiler/ast/ArrayTypeReference internalResolveType (Lorg/eclipse/jdt/internal/compiler/lookup/Scope;I)Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding; 18 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/ast/ArrayTypeReference$$Lambda+0x000002032b79f798
  446. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7a2400
  447. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7a2000
  448. instanceKlass lombok/NoArgsConstructor$AnyAnnotation
  449. instanceKlass lombok/AllArgsConstructor$AnyAnnotation
  450. instanceKlass lombok/Builder$ObtainVia
  451. instanceKlass lombok/Singular
  452. instanceKlass lombok/eclipse/handlers/HandleBuilder$BuilderFieldData
  453. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7a1c00
  454. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7a1800
  455. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7a1400
  456. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7a1000
  457. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7a0c00
  458. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7a0800
  459. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7a0400
  460. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b7a0000
  461. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b79dc00
  462. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b79d800
  463. instanceKlass lombok/experimental/Tolerate
  464. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b79d400
  465. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b79d000
  466. instanceKlass org/eclipse/jdt/internal/compiler/lookup/SourceTypeBinding$1
  467. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b79cc00
  468. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b79c800
  469. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b79c400
  470. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b79c000
  471. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b79bc00
  472. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b79b800
  473. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b79b400
  474. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b79b000
  475. instanceKlass org/eclipse/jdt/internal/compiler/lookup/ElementValuePair$UnresolvedEnumConstant
  476. instanceKlass org/eclipse/jdt/internal/compiler/env/EnumConstantSignature
  477. instanceKlass org/eclipse/jdt/internal/compiler/lookup/AnnotationHolder
  478. instanceKlass lombok/eclipse/handlers/HandleLog
  479. instanceKlass lombok/core/handlers/LoggingFramework
  480. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b79ac00
  481. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b79a800
  482. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b79a400
  483. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b79a000
  484. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b799c00
  485. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b799800
  486. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b799400
  487. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b799000
  488. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b798c00
  489. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b798800
  490. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b798400
  491. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b798000
  492. instanceKlass org/eclipse/jdt/internal/compiler/classfmt/ElementValuePairInfo
  493. instanceKlass org/eclipse/jdt/internal/compiler/lookup/InferenceContext18$SuspendedInferenceRecord
  494. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/ParameterizedTypeBinding capture (Lorg/eclipse/jdt/internal/compiler/lookup/Scope;II)Lorg/eclipse/jdt/internal/compiler/lookup/ParameterizedTypeBinding; 152 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/lookup/ParameterizedTypeBinding$$Lambda+0x000002032b793c60
  495. instanceKlass org/eclipse/jdt/internal/compiler/lookup/InferenceContext18$2
  496. instanceKlass org/eclipse/jdt/internal/compiler/lookup/InferenceContext18$3
  497. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/InferenceContext18 addJDK_8153748ConstraintsFromFunctionalExpr (Lorg/eclipse/jdt/internal/compiler/ast/FunctionalExpression;Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding;Lorg/eclipse/jdt/internal/compiler/lookup/MethodBinding;)Lorg/eclipse/jdt/internal/compiler/lookup/ReductionResult; 71 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/lookup/InferenceContext18$$Lambda+0x000002032b792ee8
  498. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/InferenceContext18 addJDK_8153748ConstraintsFromFunctionalExpr (Lorg/eclipse/jdt/internal/compiler/ast/FunctionalExpression;Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding;Lorg/eclipse/jdt/internal/compiler/lookup/MethodBinding;)Lorg/eclipse/jdt/internal/compiler/lookup/ReductionResult; 41 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/lookup/InferenceContext18$$Lambda+0x000002032b792cd0
  499. instanceKlass lombok/var
  500. instanceKlass lombok/val
  501. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/InferenceContext18 addJDK_8153748ConstraintsFromFunctionalExpr (Lorg/eclipse/jdt/internal/compiler/ast/FunctionalExpression;Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding;Lorg/eclipse/jdt/internal/compiler/lookup/MethodBinding;)Lorg/eclipse/jdt/internal/compiler/lookup/ReductionResult; 26 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/lookup/InferenceContext18$$Lambda+0x000002032b792120
  502. instanceKlass org/eclipse/jdt/internal/compiler/lookup/InferenceContext18$InferenceOperation
  503. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/Scope greaterLowerBound ([Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding;Lorg/eclipse/jdt/internal/compiler/lookup/Scope;Lorg/eclipse/jdt/internal/compiler/lookup/LookupEnvironment;)[Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding; 7 <appendix> argL0 ; # org/eclipse/jdt/internal/compiler/lookup/Scope$$Lambda+0x000002032b791d00
  504. instanceKlass lombok/eclipse/agent/PatchExtensionMethod$Reflection
  505. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b794c00
  506. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b794800
  507. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b794400
  508. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b794000
  509. instanceKlass lombok/eclipse/agent/PatchExtensionMethod$PostponedError
  510. instanceKlass lombok/eclipse/agent/PatchExtensionMethod
  511. instanceKlass lombok/launch/PatchFixesHider$ExtensionMethod
  512. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/BoundSet properTypesByInferenceVariable ([Lorg/eclipse/jdt/internal/compiler/lookup/TypeBound;[Lorg/eclipse/jdt/internal/compiler/lookup/TypeBound;)Ljava/util/Map; 34 <appendix> argL0 ; # org/eclipse/jdt/internal/compiler/lookup/BoundSet$$Lambda+0x000002032b791510
  513. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/BoundSet properTypesByInferenceVariable ([Lorg/eclipse/jdt/internal/compiler/lookup/TypeBound;[Lorg/eclipse/jdt/internal/compiler/lookup/TypeBound;)Ljava/util/Map; 26 <appendix> argL0 ; # org/eclipse/jdt/internal/compiler/lookup/BoundSet$$Lambda+0x000002032b7912e0
  514. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/BoundSet properTypesByInferenceVariable ([Lorg/eclipse/jdt/internal/compiler/lookup/TypeBound;[Lorg/eclipse/jdt/internal/compiler/lookup/TypeBound;)Ljava/util/Map; 16 <appendix> argL0 ; # org/eclipse/jdt/internal/compiler/lookup/BoundSet$$Lambda+0x000002032b7910a0
  515. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/BoundSet properTypesByInferenceVariable ([Lorg/eclipse/jdt/internal/compiler/lookup/TypeBound;[Lorg/eclipse/jdt/internal/compiler/lookup/TypeBound;)Ljava/util/Map; 6 <appendix> argL0 ; # org/eclipse/jdt/internal/compiler/lookup/BoundSet$$Lambda+0x000002032b790e60
  516. instanceKlass org/eclipse/jdt/internal/compiler/lookup/BoundSet$ThreeSets
  517. instanceKlass org/eclipse/jdt/internal/compiler/lookup/InferenceVariable$InferenceVarKey
  518. instanceKlass org/eclipse/jdt/internal/compiler/lookup/BoundSet
  519. instanceKlass org/eclipse/jdt/internal/compiler/lookup/ParameterizedMethodBinding$1
  520. instanceKlass org/eclipse/jdt/internal/compiler/lookup/Scope$2
  521. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b78d800
  522. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b78d400
  523. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b78d000
  524. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b78cc00
  525. instanceKlass lombok/launch/PatchFixesHider$Val
  526. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/TypeSystem$HashedParameterizedTypes$PTBKey <init> (Lorg/eclipse/jdt/internal/compiler/lookup/TypeSystem$HashedParameterizedTypes;Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding;[Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding;Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding;Lorg/eclipse/jdt/internal/compiler/lookup/LookupEnvironment;)V 118 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/lookup/TypeSystem$HashedParameterizedTypes$PTBKey$$Lambda+0x000002032b73c7b8
  527. instanceKlass @cpi org/eclipse/jdt/internal/compiler/lookup/TypeSystem$HashedParameterizedTypes$PTBKey 181 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b78c800
  528. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b78c400
  529. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b78c000
  530. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b78bc00
  531. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b78b800
  532. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b78b400
  533. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b78b000
  534. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b78ac00
  535. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b78a800
  536. instanceKlass lombok/core/handlers/InclusionExclusionUtils$1
  537. instanceKlass lombok/ToString$Exclude
  538. instanceKlass lombok/ToString$Include
  539. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b78a400
  540. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b78a000
  541. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b789c00
  542. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b789800
  543. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b789400
  544. instanceKlass lombok/core/configuration/ConfigurationSource
  545. instanceKlass lombok/eclipse/handlers/EclipseHandlerUtil$GetterMethod
  546. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b789000
  547. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b788c00
  548. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b788800
  549. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b788400
  550. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b788000
  551. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b785c00
  552. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b785800
  553. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b785400
  554. # instanceKlass java/lang/invoke/LambdaForm$BMH+0x000002032b785000
  555. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b784c00
  556. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b784800
  557. instanceKlass lombok/eclipse/EclipseAST$ParseProblem
  558. instanceKlass lombok/EqualsAndHashCode$AnyAnnotation
  559. instanceKlass lombok/core/handlers/InclusionExclusionUtils$2
  560. instanceKlass lombok/core/handlers/InclusionExclusionUtils$Included
  561. instanceKlass lombok/EqualsAndHashCode$Exclude
  562. instanceKlass lombok/EqualsAndHashCode$Include
  563. instanceKlass lombok/core/handlers/InclusionExclusionUtils
  564. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b784400
  565. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b784000
  566. instanceKlass org/eclipse/jdt/core/ICodeCompletionRequestor
  567. instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$PerWorkingCopyInfo
  568. instanceKlass org/eclipse/jdt/core/IImportDeclaration
  569. instanceKlass org/eclipse/jdt/core/IImportContainer
  570. instanceKlass org/eclipse/jdt/core/IPackageDeclaration
  571. instanceKlass lombok/eclipse/handlers/EclipseHandlerUtil$EclipseReflectiveMembers
  572. instanceKlass lombok/core/AnnotationValues$1
  573. instanceKlass lombok/core/configuration/AllowHelper
  574. instanceKlass lombok/experimental/FieldDefaults
  575. instanceKlass lombok/core/handlers/HandlerUtil
  576. instanceKlass lombok/core/AnnotationValues
  577. instanceKlass lombok/core/AnnotationValues$AnnotationValue
  578. instanceKlass org/eclipse/jdt/internal/core/nd/java/model/BinaryTypeDescriptor
  579. instanceKlass org/eclipse/jdt/internal/core/util/MementoTokenizer
  580. instanceKlass org/eclipse/jdt/internal/core/nd/util/CharArrayUtils
  581. instanceKlass org/eclipse/jdt/internal/core/nd/java/model/BinaryTypeFactory
  582. instanceKlass org/eclipse/jdt/internal/core/JavadocContents
  583. instanceKlass org/eclipse/jdt/internal/core/IJavadocContents
  584. instanceKlass org/eclipse/jdt/internal/core/ExternalJavadocSupport
  585. instanceKlass org/eclipse/jdt/internal/compiler/classfmt/ExternalAnnotationDecorator$ZipFileProducer
  586. instanceKlass org/eclipse/jdt/core/ICompletionRequestor
  587. instanceKlass org/eclipse/jdt/internal/compiler/classfmt/TypeAnnotationWalker
  588. instanceKlass org/eclipse/jdt/internal/core/SingleTypeRequestor
  589. instanceKlass org/eclipse/jdt/core/IMethod
  590. instanceKlass org/eclipse/jdt/core/IInitializer
  591. instanceKlass org/eclipse/jdt/core/IField
  592. instanceKlass org/eclipse/jdt/internal/core/JavaElementRequestor
  593. instanceKlass org/eclipse/jdt/internal/core/util/HashtableOfArrayToObject
  594. instanceKlass org/eclipse/jdt/internal/core/JavaProjectElementInfo$ProjectCache
  595. instanceKlass lombok/eclipse/agent/PatchDelegate$EclipseOnlyMethods
  596. instanceKlass org/eclipse/jdt/internal/core/util/HashSetOfArray
  597. instanceKlass @bci org/eclipse/core/internal/jobs/JobManager sleep (Lorg/eclipse/core/internal/jobs/InternalJob;)Z 4 <appendix> member <vmtarget> ; # org/eclipse/core/internal/jobs/JobManager$$Lambda+0x000002032b1baaa8
  598. instanceKlass lombok/eclipse/agent/PatchDelegatePortal$Reflection
  599. instanceKlass lombok/eclipse/agent/PatchDelegate$BindingTuple
  600. instanceKlass lombok/eclipse/agent/PatchDelegate
  601. instanceKlass lombok/eclipse/agent/PatchDelegatePortal
  602. instanceKlass lombok/launch/PatchFixesHider$Delegate
  603. instanceKlass org/eclipse/jdt/internal/core/util/ResourceCompilationUnit
  604. instanceKlass org/eclipse/jdt/internal/compiler/lookup/TypeSystem$HashedParameterizedTypes$PTBKey
  605. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/LookupEnvironment getTypeArgumentsFromSignature (Lorg/eclipse/jdt/internal/compiler/lookup/SignatureWrapper;[Lorg/eclipse/jdt/internal/compiler/lookup/TypeVariableBinding;Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding;Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding;[[[CLorg/eclipse/jdt/internal/compiler/env/ITypeAnnotationWalker;)[Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding; 72 <appendix> argL0 ; # org/eclipse/jdt/internal/compiler/lookup/LookupEnvironment$$Lambda+0x000002032b732020
  606. instanceKlass org/eclipse/jdt/internal/compiler/lookup/SignatureWrapper
  607. instanceKlass org/eclipse/jdt/internal/compiler/classfmt/JavaBinaryNames
  608. instanceKlass org/eclipse/jdt/internal/compiler/env/ITypeAnnotationWalker$1
  609. instanceKlass org/eclipse/jdt/internal/compiler/env/ITypeAnnotationWalker
  610. instanceKlass org/eclipse/jdt/internal/compiler/lookup/BinaryTypeBinding$VariableBindingInitialization
  611. instanceKlass org/eclipse/jdt/internal/compiler/env/NameEnvironmentAnswer
  612. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/CompilationUnitScope checkAndSetImports ()V 310 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/lookup/CompilationUnitScope$$Lambda+0x000002032b730000
  613. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/CompilationUnitScope checkAndSetImports ()V 295 <appendix> argL0 ; # org/eclipse/jdt/internal/compiler/lookup/CompilationUnitScope$$Lambda+0x000002032b720400
  614. instanceKlass @bci org/eclipse/jdt/internal/core/search/matching/JavaSearchNameEnvironment getModulesDeclaringPackage ([[C[C)[[C 149 <appendix> argL0 ; # org/eclipse/jdt/internal/core/search/matching/JavaSearchNameEnvironment$$Lambda+0x000002032b6f9f60
  615. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/ModuleBinding combineWithPackagesFromOtherRelevantModules (Lorg/eclipse/jdt/internal/compiler/lookup/PackageBinding;[[C[[C)Lorg/eclipse/jdt/internal/compiler/lookup/PackageBinding; 20 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/compiler/lookup/ModuleBinding$$Lambda+0x000002032b720a00
  616. instanceKlass org/eclipse/jdt/internal/compiler/util/HashtableOfType
  617. instanceKlass org/eclipse/jdt/internal/compiler/util/CharArrayHashMap
  618. instanceKlass @bci org/eclipse/jdt/internal/core/search/PatternSearchJob performParallelSearch ([Lorg/eclipse/jdt/internal/core/index/Index;Lorg/eclipse/core/runtime/SubMonitor;)Z 161 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/core/search/PatternSearchJob$$Lambda+0x000002032b6f9d38
  619. instanceKlass org/eclipse/jdt/internal/core/search/PatternSearchJob$IndexMatch
  620. instanceKlass java/util/concurrent/ForkJoinPool$DefaultForkJoinWorkerThreadFactory$1
  621. instanceKlass @bci org/eclipse/jdt/internal/core/search/PatternSearchJob performParallelSearch ([Lorg/eclipse/jdt/internal/core/index/Index;Lorg/eclipse/core/runtime/SubMonitor;)Z 81 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/core/search/PatternSearchJob$$Lambda+0x000002032b6f9920
  622. instanceKlass org/eclipse/jdt/internal/core/search/PatternSearchJob$IndexResult
  623. instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$18
  624. instanceKlass @bci org/eclipse/jdt/internal/compiler/env/IModuleAwareNameEnvironment$LookupStrategy matches (Ljava/lang/Object;Ljava/util/function/Predicate;)Z 3 <appendix> argL0 ; # org/eclipse/jdt/internal/compiler/env/IModuleAwareNameEnvironment$LookupStrategy$$Lambda+0x000002032b72e828
  625. instanceKlass @bci org/eclipse/jdt/internal/core/search/matching/JavaSearchNameEnvironment findClass (Ljava/lang/String;[CLorg/eclipse/jdt/internal/compiler/env/IModuleAwareNameEnvironment$LookupStrategy;Ljava/lang/String;)Lorg/eclipse/jdt/internal/compiler/env/NameEnvironmentAnswer; 87 <appendix> argL0 ; # org/eclipse/jdt/internal/core/search/matching/JavaSearchNameEnvironment$$Lambda+0x000002032b6f8fd0
  626. instanceKlass org/eclipse/jdt/internal/compiler/env/INameEnvironmentExtension
  627. instanceKlass org/eclipse/jdt/internal/compiler/util/HashtableOfModule
  628. instanceKlass org/eclipse/jdt/internal/compiler/lookup/TypeSystem$HashedParameterizedTypes
  629. instanceKlass org/eclipse/jdt/internal/compiler/ClassFile
  630. instanceKlass org/eclipse/jdt/internal/compiler/ClassFilePool
  631. instanceKlass org/eclipse/jdt/internal/compiler/util/CharArrayMap
  632. instanceKlass org/eclipse/jdt/internal/compiler/util/CharDelegateMap
  633. instanceKlass org/eclipse/jdt/internal/compiler/util/CharArrayMapper
  634. instanceKlass org/eclipse/jdt/internal/compiler/lookup/ImplicitNullAnnotationVerifier
  635. instanceKlass org/eclipse/jdt/internal/compiler/lookup/TypeSystem
  636. instanceKlass org/eclipse/jdt/internal/compiler/lookup/LookupEnvironment
  637. instanceKlass org/eclipse/jdt/internal/compiler/lookup/ProblemReasons
  638. instanceKlass sun/security/ssl/Alert$AlertConsumer
  639. instanceKlass org/eclipse/jdt/internal/compiler/classfmt/ModuleInfo$ServiceInfo
  640. instanceKlass org/eclipse/jdt/internal/compiler/classfmt/ModuleInfo$PackageExportInfo
  641. instanceKlass org/eclipse/jdt/internal/compiler/classfmt/ModuleInfo$ModuleReferenceInfo
  642. instanceKlass org/eclipse/jdt/internal/compiler/env/IModule$IService
  643. instanceKlass org/eclipse/jdt/internal/compiler/env/IModule$IModuleReference
  644. instanceKlass org/eclipse/jdt/internal/compiler/env/IModule$IPackageExport
  645. instanceKlass org/eclipse/jdt/internal/core/search/indexing/IndexManager$1
  646. instanceKlass @bci org/eclipse/m2e/jdt/internal/DefaultClasspathManagerDelegate addClasspathEntries (Lorg/eclipse/m2e/jdt/IClasspathDescriptor;Lorg/eclipse/m2e/core/project/IMavenProjectFacade;ILorg/eclipse/core/runtime/IProgressMonitor;)V 5 <appendix> argL0 ; # org/eclipse/m2e/jdt/internal/DefaultClasspathManagerDelegate$$Lambda+0x000002032b6bef58
  647. instanceKlass @bci org/eclipse/m2e/jdt/internal/launch/MavenRuntimeClasspathProvider resolveClasspath ([Lorg/eclipse/jdt/launching/IRuntimeClasspathEntry;Lorg/eclipse/debug/core/ILaunchConfiguration;)[Lorg/eclipse/jdt/launching/IRuntimeClasspathEntry; 77 <appendix> member <vmtarget> ; # org/eclipse/m2e/jdt/internal/launch/MavenRuntimeClasspathProvider$$Lambda+0x000002032b6beaa8
  648. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/MavenProjectCache$CacheLine getProject (Lorg/eclipse/m2e/core/project/IMavenProjectFacade;Ljava/util/function/Function;)Lorg/apache/maven/project/MavenProject; 33 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/project/registry/MavenProjectCache$CacheLine$$Lambda+0x000002032b645578
  649. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager lambda$24 (Lorg/eclipse/m2e/core/project/IMavenProjectFacade;)Lorg/apache/maven/project/MavenProject; 6 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager$$Lambda+0x000002032b645340
  650. instanceKlass org/eclipse/m2e/core/internal/project/registry/ProjectFacadeAdapterFactory
  651. instanceKlass @bci org/eclipse/core/internal/runtime/AdapterManager getAdapter (Ljava/lang/Object;Ljava/lang/Class;)Ljava/lang/Object; 68 <appendix> argL0 ; # org/eclipse/core/internal/runtime/AdapterManager$$Lambda+0x000002032b1a3598
  652. instanceKlass @bci org/eclipse/core/internal/runtime/AdapterManager getAdapter (Ljava/lang/Object;Ljava/lang/Class;)Ljava/lang/Object; 58 <appendix> member <vmtarget> ; # org/eclipse/core/internal/runtime/AdapterManager$$Lambda+0x000002032b1a3350
  653. instanceKlass @bci org/eclipse/core/internal/runtime/AdapterManager getAdapter (Ljava/lang/Object;Ljava/lang/Class;)Ljava/lang/Object; 46 <appendix> member <vmtarget> ; # org/eclipse/core/internal/runtime/AdapterManager$$Lambda+0x000002032b1a3118
  654. instanceKlass @bci org/eclipse/core/internal/runtime/AdapterManager addFactoriesFor (Ljava/lang/String;Ljava/util/Map;)V 86 <appendix> argL0 ; # org/eclipse/core/internal/runtime/AdapterManager$$Lambda+0x000002032b1a2ee8
  655. instanceKlass @bci org/eclipse/core/internal/adapter/AdapterFactoryProxy createProxy (Lorg/eclipse/core/runtime/IConfigurationElement;)Lorg/eclipse/core/internal/adapter/AdapterFactoryProxy; 187 <appendix> member <vmtarget> ; # org/eclipse/core/internal/adapter/AdapterFactoryProxy$$Lambda+0x000002032b5ad558
  656. instanceKlass @bci org/eclipse/core/internal/adapter/AdapterFactoryProxy createProxy (Lorg/eclipse/core/runtime/IConfigurationElement;)Lorg/eclipse/core/internal/adapter/AdapterFactoryProxy; 108 <appendix> argL0 ; # org/eclipse/core/internal/adapter/AdapterFactoryProxy$$Lambda+0x000002032b5ad348
  657. instanceKlass @bci org/eclipse/core/internal/adapter/AdapterFactoryProxy createProxy (Lorg/eclipse/core/runtime/IConfigurationElement;)Lorg/eclipse/core/internal/adapter/AdapterFactoryProxy; 98 <appendix> argL0 ; # org/eclipse/core/internal/adapter/AdapterFactoryProxy$$Lambda+0x000002032b5ad108
  658. instanceKlass @bci org/eclipse/core/internal/adapter/AdapterFactoryProxy createProxy (Lorg/eclipse/core/runtime/IConfigurationElement;)Lorg/eclipse/core/internal/adapter/AdapterFactoryProxy; 88 <appendix> argL0 ; # org/eclipse/core/internal/adapter/AdapterFactoryProxy$$Lambda+0x000002032b5aced8
  659. instanceKlass @bci org/eclipse/core/internal/adapter/AdapterFactoryProxy createProxy (Lorg/eclipse/core/runtime/IConfigurationElement;)Lorg/eclipse/core/internal/adapter/AdapterFactoryProxy; 78 <appendix> argL0 ; # org/eclipse/core/internal/adapter/AdapterFactoryProxy$$Lambda+0x000002032b5acc98
  660. instanceKlass org/eclipse/core/internal/adapter/AdapterFactoryProxy
  661. instanceKlass @bci org/eclipse/core/internal/runtime/AdapterManager getClassOrder (Ljava/lang/Class;)[Ljava/lang/Class; 5 <appendix> argL0 ; # org/eclipse/core/internal/runtime/AdapterManager$$Lambda+0x000002032b1a2cb8
  662. instanceKlass @bci org/eclipse/core/internal/runtime/AdapterManager getFactories (Ljava/lang/Class;)Ljava/util/Map; 10 <appendix> member <vmtarget> ; # org/eclipse/core/internal/runtime/AdapterManager$$Lambda+0x000002032b1a2a80
  663. instanceKlass org/eclipse/core/internal/runtime/AdapterManager$AdapterLookup
  664. instanceKlass org/eclipse/core/runtime/Adapters
  665. instanceKlass @bci org/eclipse/m2e/jdt/internal/launch/MavenRuntimeClasspathProvider computeUnresolvedClasspath (Lorg/eclipse/debug/core/ILaunchConfiguration;)[Lorg/eclipse/jdt/launching/IRuntimeClasspathEntry; 119 <appendix> argL0 ; # org/eclipse/m2e/jdt/internal/launch/MavenRuntimeClasspathProvider$$Lambda+0x000002032b6be868
  666. instanceKlass org/eclipse/jdt/launching/IRuntimeContainerComparator
  667. instanceKlass @bci org/eclipse/jdt/internal/launching/DefaultProjectClasspathEntry expandProjectInternal (Lorg/eclipse/jdt/core/IClasspathEntry;Ljava/util/List;Ljava/util/Set;Ljava/util/List;ZZLorg/eclipse/jdt/core/IJavaProject;Z)V 423 <appendix> argL0 ; # org/eclipse/jdt/internal/launching/DefaultProjectClasspathEntry$$Lambda+0x000002032b7255c8
  668. instanceKlass org/eclipse/jdt/launching/IRuntimeClasspathEntry2
  669. instanceKlass org/eclipse/jdt/internal/launching/RuntimeClasspathEntry
  670. instanceKlass org/eclipse/jdt/internal/launching/JRERuntimeClasspathEntryResolver
  671. instanceKlass org/eclipse/jdt/internal/launching/RuntimeClasspathEntryResolver
  672. instanceKlass org/eclipse/jdt/launching/IRuntimeClasspathEntryResolver2
  673. instanceKlass org/eclipse/jdt/internal/launching/RuntimeClasspathProvider
  674. instanceKlass org/eclipse/jdt/launching/IJavaLaunchConfigurationConstants
  675. instanceKlass org/eclipse/core/resources/filtermatchers/AbstractFileInfoMatcher
  676. instanceKlass org/eclipse/core/internal/resources/Filter
  677. instanceKlass org/eclipse/jdt/internal/compiler/env/ClassSignature
  678. instanceKlass @bci org/eclipse/core/internal/resources/ContentDescriptionManager clearContentFlags (Lorg/eclipse/core/runtime/IPath;Lorg/eclipse/core/runtime/IProgressMonitor;)V 24 <appendix> member <vmtarget> ; # org/eclipse/core/internal/resources/ContentDescriptionManager$$Lambda+0x000002032b6f6238
  679. instanceKlass @cpi org/eclipse/core/internal/resources/ContentDescriptionManager 761 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b720000
  680. instanceKlass @bci org/eclipse/core/runtime/Plugin savePluginPreferences ()V 41 <appendix> member <vmtarget> ; # org/eclipse/core/runtime/Plugin$$Lambda+0x000002032b1a68c8
  681. instanceKlass @bci org/eclipse/core/internal/resources/SaveManager visitAndSnap (Lorg/eclipse/core/resources/IResource;)V 203 <appendix> member <vmtarget> ; # org/eclipse/core/internal/resources/SaveManager$$Lambda+0x000002032b6f5dc8
  682. instanceKlass @cpi org/eclipse/core/internal/resources/SaveManager 2131 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b719400
  683. instanceKlass @bci org/eclipse/jdt/ls/core/internal/commands/ProjectCommand getClasspathsFromJavaProject (Lorg/eclipse/jdt/core/IJavaProject;Lorg/eclipse/jdt/ls/core/internal/commands/ProjectCommand$ClasspathOptions;)Lorg/eclipse/jdt/ls/core/internal/commands/ProjectCommand$ClasspathResult; 141 <appendix> member <vmtarget> ; # org/eclipse/jdt/ls/core/internal/commands/ProjectCommand$$Lambda+0x000002032b719800
  684. instanceKlass org/eclipse/jdt/ls/core/internal/commands/ProjectCommand$ClasspathResult
  685. instanceKlass org/eclipse/debug/core/sourcelookup/ISourceLookupDirector
  686. instanceKlass org/eclipse/debug/core/sourcelookup/IPersistableSourceLocator2
  687. instanceKlass org/eclipse/debug/core/model/IPersistableSourceLocator
  688. instanceKlass org/eclipse/debug/core/model/IBreakpoint
  689. instanceKlass org/eclipse/debug/core/model/LaunchConfigurationDelegate
  690. instanceKlass org/eclipse/debug/core/model/ILaunchConfigurationDelegate2
  691. instanceKlass org/eclipse/debug/core/model/ILaunchConfigurationDelegate
  692. instanceKlass org/eclipse/debug/internal/core/LaunchConfigurationInfo
  693. instanceKlass @bci org/eclipse/jdt/ls/core/internal/managers/StandardProjectsManager getBuildSupport (Lorg/eclipse/core/resources/IProject;)Ljava/util/Optional; 5 <appendix> member <vmtarget> ; # org/eclipse/jdt/ls/core/internal/managers/StandardProjectsManager$$Lambda+0x000002032b71b008
  694. instanceKlass org/eclipse/jdt/ls/core/internal/commands/ProjectCommand
  695. instanceKlass org/eclipse/jdt/ls/core/internal/commands/ProjectCommand$ClasspathOptions
  696. instanceKlass org/eclipse/jdt/ls/core/internal/framework/android/AndroidSupport
  697. instanceKlass org/eclipse/jdt/ls/core/internal/framework/protobuf/ProtobufSupport
  698. instanceKlass org/eclipse/core/internal/dtree/DataTreeWriter
  699. instanceKlass org/eclipse/core/internal/watson/ElementTreeWriter$1
  700. instanceKlass org/eclipse/core/internal/dtree/IDataFlattener
  701. instanceKlass org/eclipse/core/internal/watson/ElementTreeWriter
  702. instanceKlass @bci org/eclipse/jdt/ls/core/internal/preferences/ClientPreferences isSupportedCodeActionKind (Ljava/lang/String;)Z 102 <appendix> member <vmtarget> ; # org/eclipse/jdt/ls/core/internal/preferences/ClientPreferences$$Lambda+0x000002032b71a790
  703. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/ResponseStore
  704. instanceKlass org/eclipse/jdt/core/manipulation/ChangeCorrectionProposalCore
  705. instanceKlass org/eclipse/m2e/core/internal/project/registry/ProjectRegistryReader$MavenProjectManagerImplReplace
  706. instanceKlass org/eclipse/ltk/core/refactoring/Change
  707. instanceKlass java/util/CollSer
  708. instanceKlass org/eclipse/jdt/ui/text/java/IInvocationContext
  709. instanceKlass org/eclipse/m2e/core/internal/project/registry/ProjectRegistryReader$IPathReplace
  710. instanceKlass org/eclipse/ltk/internal/core/refactoring/history/RefactoringHistorySerializer
  711. instanceKlass @bci org/eclipse/ltk/internal/core/refactoring/history/RefactoringHistoryService connect ()V 42 <appendix> member <vmtarget> ; # org/eclipse/ltk/internal/core/refactoring/history/RefactoringHistoryService$$Lambda+0x000002032b713558
  712. instanceKlass java/io/FileFilter
  713. instanceKlass org/eclipse/core/commands/operations/IUndoableOperation
  714. instanceKlass org/eclipse/core/commands/operations/DefaultOperationHistory
  715. instanceKlass org/eclipse/core/commands/operations/IOperationHistory
  716. instanceKlass org/eclipse/core/commands/operations/OperationHistoryFactory
  717. instanceKlass @bci org/eclipse/ltk/internal/core/refactoring/history/RefactoringHistoryService connect ()V 20 <appendix> member <vmtarget> ; # org/eclipse/ltk/internal/core/refactoring/history/RefactoringHistoryService$$Lambda+0x000002032b711de8
  718. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b714000
  719. instanceKlass org/eclipse/core/commands/operations/OperationHistoryEvent
  720. instanceKlass org/eclipse/core/commands/operations/IOperationHistoryListener
  721. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b712c00
  722. instanceKlass org/eclipse/ltk/internal/core/refactoring/history/RefactoringHistoryService
  723. instanceKlass org/eclipse/ltk/core/refactoring/history/IRefactoringHistoryService
  724. instanceKlass org/eclipse/ltk/core/refactoring/RefactoringDescriptor
  725. instanceKlass org/eclipse/m2e/core/internal/project/registry/ProjectRegistryReader$IFileReplace
  726. instanceKlass org/eclipse/ltk/internal/core/refactoring/history/RefactoringContributionManager
  727. instanceKlass org/eclipse/core/commands/operations/IUndoContext
  728. instanceKlass org/eclipse/ltk/core/refactoring/IUndoManager
  729. instanceKlass org/eclipse/ltk/core/refactoring/history/IRefactoringHistoryListener
  730. instanceKlass com/microsoft/java/builder/jdtbuilder/ClasspathLocation
  731. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/CompletionHandler$2
  732. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/CompletionHandler$1
  733. instanceKlass @bci java/util/stream/Nodes$CollectorTask$OfRef <init> (Ljava/util/stream/PipelineHelper;Ljava/util/function/IntFunction;Ljava/util/Spliterator;)V 9 <appendix> argL0 ; # java/util/stream/Nodes$CollectorTask$OfRef$$Lambda+0x000002032b741700
  734. instanceKlass com/google/gson/JsonParser
  735. instanceKlass java/util/stream/Nodes$AbstractConcNode
  736. instanceKlass @bci java/util/stream/Nodes$CollectorTask$OfRef <init> (Ljava/util/stream/PipelineHelper;Ljava/util/function/IntFunction;Ljava/util/Spliterator;)V 4 <appendix> member <vmtarget> ; # java/util/stream/Nodes$CollectorTask$OfRef$$Lambda+0x000002032b740f98
  737. instanceKlass java/util/function/LongFunction
  738. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/CompletionHandler
  739. instanceKlass @bci com/microsoft/java/builder/BuildStateManager lambda$1 (Lorg/eclipse/core/resources/ISaveContext;Ljava/util/ArrayList;)[Lorg/eclipse/core/runtime/IStatus; 34 <appendix> argL0 ; # com/microsoft/java/builder/BuildStateManager$$Lambda+0x000002032b708478
  740. instanceKlass @bci com/microsoft/java/builder/BuildStateManager lambda$1 (Lorg/eclipse/core/resources/ISaveContext;Ljava/util/ArrayList;)[Lorg/eclipse/core/runtime/IStatus; 24 <appendix> argL0 ; # com/microsoft/java/builder/BuildStateManager$$Lambda+0x000002032b708238
  741. instanceKlass @bci com/microsoft/java/builder/BuildStateManager lambda$1 (Lorg/eclipse/core/resources/ISaveContext;Ljava/util/ArrayList;)[Lorg/eclipse/core/runtime/IStatus; 14 <appendix> member <vmtarget> ; # com/microsoft/java/builder/BuildStateManager$$Lambda+0x000002032b708000
  742. instanceKlass @bci org/eclipse/jdt/launching/VMStandin init (Lorg/eclipse/jdt/launching/IVMInstall;)V 107 <appendix> member <vmtarget> ; # org/eclipse/jdt/launching/VMStandin$$Lambda+0x000002032b5aae28
  743. instanceKlass com/microsoft/java/builder/BuildStateManager$ProjectInfo
  744. instanceKlass java/util/concurrent/ForkJoinTask$Aux
  745. instanceKlass @bci com/microsoft/java/builder/BuildStateManager savingTimed (Lorg/eclipse/core/resources/ISaveContext;)V 122 <appendix> member <vmtarget> ; # com/microsoft/java/builder/BuildStateManager$$Lambda+0x000002032b5bda40
  746. instanceKlass @bci com/microsoft/java/builder/BuildStateManager savingTimed (Lorg/eclipse/core/resources/ISaveContext;)V 105 <appendix> member <vmtarget> ; # com/microsoft/java/builder/BuildStateManager$$Lambda+0x000002032b5bd828
  747. instanceKlass org/eclipse/lsp4j/Registration
  748. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/SourceAttachUpdateHandler
  749. instanceKlass org/eclipse/jdt/ls/core/internal/preferences/PreferenceManager$1
  750. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/ClasspathUpdateHandler
  751. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/WorkspaceDiagnosticsHandler
  752. instanceKlass org/eclipse/core/internal/resources/SaveManager$1
  753. instanceKlass @bci org/eclipse/jdt/ls/core/internal/ProjectUtils getJavaProjects ()[Lorg/eclipse/jdt/core/IJavaProject; 36 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/ProjectUtils$$Lambda+0x000002032b5c1d98
  754. instanceKlass @bci org/eclipse/jdt/ls/core/internal/ProjectUtils getJavaProjects ()[Lorg/eclipse/jdt/core/IJavaProject; 26 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/ProjectUtils$$Lambda+0x000002032b5c1b58
  755. instanceKlass @bci org/eclipse/jdt/ls/core/internal/ProjectUtils getJavaProjects ()[Lorg/eclipse/jdt/core/IJavaProject; 16 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/ProjectUtils$$Lambda+0x000002032b5c1928
  756. instanceKlass @bci org/eclipse/core/internal/resources/LocalMetaArea getSafeTableLocationFor (Ljava/lang/String;)Lorg/eclipse/core/runtime/IPath; 44 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b702c00
  757. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b702800
  758. instanceKlass @bci org/eclipse/jdt/ls/core/internal/ProjectUtils getJavaProjects ()[Lorg/eclipse/jdt/core/IJavaProject; 6 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/ProjectUtils$$Lambda+0x000002032b5c16e8
  759. instanceKlass @bci org/eclipse/core/internal/resources/LocalMetaArea getSafeTableLocationFor (Ljava/lang/String;)Lorg/eclipse/core/runtime/IPath; 44 <appendix> argL3 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b702400
  760. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b702000
  761. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b701c00
  762. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b701800
  763. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b701400
  764. instanceKlass @bci org/eclipse/core/internal/resources/LocalMetaArea getSafeTableLocationFor (Ljava/lang/String;)Lorg/eclipse/core/runtime/IPath; 44 <appendix> argL1 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b701000
  765. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b700c00
  766. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b700800
  767. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b700400
  768. instanceKlass org/eclipse/core/internal/resources/SafeFileTable
  769. instanceKlass org/eclipse/core/internal/resources/SaveContext
  770. instanceKlass @bci org/eclipse/core/internal/jobs/JobManager reportBlocked (Lorg/eclipse/core/runtime/IProgressMonitor;Ljava/util/Collection;)V 6 <appendix> argL0 ; # org/eclipse/core/internal/jobs/JobManager$$Lambda+0x000002032b1ba878
  771. instanceKlass org/eclipse/jdt/internal/core/DeltaProcessor$3
  772. instanceKlass org/eclipse/jdt/internal/compiler/codegen/ConstantPool
  773. instanceKlass org/eclipse/jdt/internal/compiler/env/IBinaryElementValuePair
  774. instanceKlass @bci org/eclipse/core/internal/jobs/OrderedLock enqueue (Lorg/eclipse/core/internal/jobs/Semaphore;)Lorg/eclipse/core/internal/jobs/Semaphore; 10 <appendix> member <vmtarget> ; # org/eclipse/core/internal/jobs/OrderedLock$$Lambda+0x000002032b1ba630
  775. instanceKlass java/util/ArrayDeque$DeqSpliterator
  776. instanceKlass org/eclipse/core/internal/jobs/Semaphore
  777. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b700000
  778. instanceKlass org/eclipse/jdt/internal/compiler/codegen/AttributeNamesConstants
  779. instanceKlass org/eclipse/jdt/internal/compiler/env/IBinaryNestedType
  780. instanceKlass org/eclipse/jdt/internal/compiler/env/IBinaryModule
  781. instanceKlass org/eclipse/jdt/internal/compiler/env/IBinaryTypeAnnotation
  782. instanceKlass org/eclipse/jdt/internal/compiler/env/IBinaryAnnotation
  783. instanceKlass org/eclipse/jdt/internal/compiler/env/IRecordComponent
  784. instanceKlass org/eclipse/jdt/internal/compiler/env/IBinaryMethod
  785. instanceKlass org/eclipse/jdt/internal/compiler/env/IGenericMethod
  786. instanceKlass org/eclipse/jdt/internal/compiler/env/IBinaryField
  787. instanceKlass org/eclipse/jdt/internal/compiler/env/IGenericField
  788. instanceKlass org/eclipse/jdt/internal/compiler/classfmt/ClassFileStruct
  789. instanceKlass @bci org/eclipse/jdt/internal/core/builder/ClasspathJar getCachedPackageNames ()Ljava/util/Set; 8 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/core/builder/ClasspathJar$$Lambda+0x000002032b6f8908
  790. instanceKlass @bci org/eclipse/jdt/internal/core/JarPackageFragmentRoot createChildren (Ljava/util/Collection;)[Lorg/eclipse/jdt/core/IJavaElement; 30 <appendix> argL0 ; # org/eclipse/jdt/internal/core/JarPackageFragmentRoot$$Lambda+0x000002032b6f8210
  791. instanceKlass @bci org/eclipse/jdt/internal/core/JarPackageFragmentRoot lambda$0 (Ljava/util/List;)[Ljava/lang/String; 1 <appendix> argL0 ; # org/eclipse/jdt/internal/core/JarPackageFragmentRoot$$Lambda+0x000002032b6f8000
  792. instanceKlass @bci org/eclipse/jdt/internal/core/JarPackageFragmentRoot createChildren (Ljava/util/Collection;)[Lorg/eclipse/jdt/core/IJavaElement; 10 <appendix> argL0 ; # org/eclipse/jdt/internal/core/JarPackageFragmentRoot$$Lambda+0x000002032b6f0d78
  793. instanceKlass org/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry
  794. instanceKlass org/eclipse/jdt/internal/core/util/ILRUCacheable
  795. instanceKlass org/eclipse/jdt/core/JavaConventions
  796. instanceKlass org/eclipse/jdt/core/IModularClassFile
  797. instanceKlass org/eclipse/jdt/internal/compiler/env/IMultiModuleEntry
  798. instanceKlass org/eclipse/jdt/internal/core/search/matching/JavaSearchNameEnvironment
  799. instanceKlass @bci org/eclipse/jdt/internal/core/index/MetaIndex remove (Ljava/lang/String;)V 16 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/core/index/MetaIndex$$Lambda+0x000002032b6d6ac0
  800. instanceKlass org/eclipse/jdt/internal/compiler/env/IModuleAwareNameEnvironment
  801. instanceKlass org/eclipse/jdt/internal/core/index/MetaIndex
  802. instanceKlass lombok/core/TypeResolver
  803. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b6f0400
  804. instanceKlass org/eclipse/jdt/internal/compiler/lookup/InferenceContext18
  805. instanceKlass lombok/core/AST$FieldAccess
  806. instanceKlass lombok/core/LombokImmutableList$1
  807. instanceKlass org/eclipse/jdt/internal/compiler/codegen/AnnotationContext
  808. instanceKlass lombok/eclipse/EclipseAstProblemView
  809. instanceKlass lombok/eclipse/EclipseAST$EcjReflectionCheck
  810. instanceKlass @bci java/util/regex/Pattern ALL ()Ljava/util/regex/Pattern$CharPredicate; 0 <appendix> argL0 ; # java/util/regex/Pattern$$Lambda+0x000002032b4ffd48
  811. instanceKlass org/eclipse/jdt/internal/compiler/codegen/CodeStream
  812. instanceKlass lombok/eclipse/handlers/EclipseHandlerUtil
  813. instanceKlass lombok/eclipse/EclipseImportList
  814. instanceKlass lombok/core/debug/DebugSnapshotStore
  815. instanceKlass lombok/core/configuration/FileSystemSourceCache$Content
  816. instanceKlass org/eclipse/jdt/internal/compiler/util/ObjectVector
  817. instanceKlass org/eclipse/jdt/apt/core/internal/generatedfile/GeneratedResourceChangeListener$PostChangeVisitor
  818. instanceKlass org/eclipse/jdt/internal/core/DeltaProcessingState$1
  819. instanceKlass lombok/core/configuration/ConfigurationFile
  820. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/InlayHintsPreferenceChangeListener
  821. instanceKlass @bci org/eclipse/jdt/ls/core/internal/managers/StandardProjectsManager registerListeners ()V 46 <appendix> member <vmtarget> ; # org/eclipse/jdt/ls/core/internal/managers/StandardProjectsManager$$Lambda+0x000002032b5c12a8
  822. instanceKlass org/eclipse/jdt/ls/core/internal/managers/StandardProjectsManager$3
  823. instanceKlass lombok/core/configuration/BubblingConfigurationResolver
  824. instanceKlass lombok/core/LombokConfiguration$3
  825. instanceKlass org/eclipse/core/internal/resources/LinkDescription
  826. instanceKlass lombok/core/configuration/FileSystemSourceCache$1
  827. instanceKlass org/eclipse/core/internal/resources/FilterDescription
  828. instanceKlass lombok/core/configuration/ConfigurationProblemReporter$1
  829. instanceKlass org/eclipse/core/resources/FileInfoMatcherDescription
  830. instanceKlass @bci org/eclipse/jdt/ls/core/internal/managers/ProjectsManager configureFilters (Lorg/eclipse/core/runtime/IProgressMonitor;)V 106 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/managers/ProjectsManager$$Lambda+0x000002032b5c0e48
  831. instanceKlass lombok/core/configuration/ConfigurationProblemReporter
  832. instanceKlass @bci org/eclipse/jdt/ls/core/internal/ProjectUtils getMaxProjectProblemSeverity ()I 84 <appendix> member <vmtarget> ; # org/eclipse/jdt/ls/core/internal/ProjectUtils$$Lambda+0x000002032b5c0c00
  833. instanceKlass @bci org/eclipse/jdt/ls/core/internal/ResourceUtils findMarkers (Lorg/eclipse/core/resources/IResource;[Ljava/lang/Integer;)Ljava/util/List; 43 <appendix> member <vmtarget> ; # org/eclipse/jdt/ls/core/internal/ResourceUtils$$Lambda+0x000002032b5c09b8
  834. instanceKlass @bci org/eclipse/core/internal/resources/MarkerManager visitorFindMarkers (Lorg/eclipse/core/runtime/IPath;Ljava/util/ArrayList;Ljava/lang/String;Z)V 5 <appendix> member <vmtarget> ; # org/eclipse/core/internal/resources/MarkerManager$$Lambda+0x000002032b6f4000
  835. instanceKlass @cpi org/eclipse/core/internal/resources/MarkerManager 672 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b6f0000
  836. instanceKlass lombok/core/configuration/ConfigurationParser
  837. instanceKlass lombok/core/configuration/ConfigurationFileToSource
  838. instanceKlass lombok/core/configuration/FileSystemSourceCache
  839. instanceKlass lombok/core/LombokConfiguration$1
  840. instanceKlass lombok/core/configuration/ConfigurationResolverFactory
  841. instanceKlass lombok/core/configuration/ConfigurationResolver
  842. instanceKlass lombok/core/LombokConfiguration
  843. instanceKlass @bci java/io/ObjectStreamClass lambda$canonicalRecordCtr$2 (Ljava/lang/Class;)Ljava/lang/invoke/MethodHandle; 17 <appendix> argL0 ; # java/io/ObjectStreamClass$$Lambda+0x000002032b4ff390
  844. instanceKlass @bci java/io/ObjectStreamClass lambda$canonicalRecordCtr$2 (Ljava/lang/Class;)Ljava/lang/invoke/MethodHandle; 7 <appendix> argL0 ; # java/io/ObjectStreamClass$$Lambda+0x000002032b4ff160
  845. instanceKlass @bci java/io/ObjectStreamClass canonicalRecordCtr (Ljava/lang/Class;)Ljava/lang/invoke/MethodHandle; 42 <appendix> member <vmtarget> ; # java/io/ObjectStreamClass$$Lambda+0x000002032b4fef48
  846. instanceKlass org/eclipse/m2e/apt/preferences/PreferencesConstants
  847. instanceKlass org/eclipse/jdt/apt/core/internal/util/FileSystemUtil
  848. instanceKlass org/eclipse/jdt/apt/core/util/AptConfig$ProcessorOptionsParser
  849. instanceKlass lombok/eclipse/EclipseAST$EclipseWorkspaceBasedFileResolver
  850. instanceKlass org/eclipse/jdt/apt/core/internal/util/FactoryPath$Attributes
  851. instanceKlass org/eclipse/jdt/apt/core/internal/FactoryPluginManager
  852. instanceKlass org/eclipse/jdt/apt/core/internal/util/FactoryPath
  853. instanceKlass lombok/core/ImportList
  854. instanceKlass org/eclipse/jdt/apt/core/internal/util/FactoryContainer
  855. instanceKlass org/eclipse/jdt/apt/core/internal/util/FactoryPathUtil
  856. instanceKlass org/eclipse/jdt/apt/core/internal/generatedfile/ClasspathUtil
  857. instanceKlass lombok/core/FieldAugment
  858. instanceKlass lombok/eclipse/EcjAugments
  859. instanceKlass org/eclipse/jdt/internal/compiler/DefaultErrorHandlingPolicies$4
  860. instanceKlass org/eclipse/jdt/internal/compiler/DefaultErrorHandlingPolicies$5
  861. instanceKlass org/eclipse/jdt/apt/core/internal/generatedfile/GeneratedFileManager$GeneratedPackageFragmentRoot
  862. instanceKlass org/eclipse/jdt/apt/core/internal/util/ManyToMany
  863. instanceKlass org/eclipse/jdt/apt/core/internal/generatedfile/WorkingCopyCleanupListener
  864. instanceKlass org/eclipse/jdt/apt/core/internal/generatedfile/CompilationUnitHelper
  865. instanceKlass org/eclipse/jdt/apt/core/internal/generatedfile/GeneratedFileManager
  866. instanceKlass org/eclipse/jdt/apt/core/util/AptPreferenceConstants
  867. instanceKlass org/eclipse/jdt/apt/core/internal/generatedfile/GeneratedSourceFolderManager
  868. instanceKlass org/eclipse/jdt/apt/core/internal/AptProject
  869. instanceKlass org/eclipse/jdt/apt/core/internal/generatedfile/GeneratedResourceChangeListener
  870. instanceKlass org/eclipse/jdt/apt/core/util/IFactoryPath
  871. instanceKlass javax/annotation/processing/Processor
  872. instanceKlass org/eclipse/jdt/apt/core/util/AptConfig
  873. instanceKlass org/eclipse/m2e/apt/internal/utils/AnnotationServiceLocator$ServiceEntry
  874. instanceKlass @bci org/eclipse/m2e/apt/internal/utils/AnnotationServiceLocator readServiceProvider (Ljava/lang/String;Ljava/io/InputStream;Ljava/util/Set;)V 32 <appendix> member <vmtarget> ; # org/eclipse/m2e/apt/internal/utils/AnnotationServiceLocator$$Lambda+0x000002032b6bdaf0
  875. instanceKlass java/io/BufferedReader$1
  876. instanceKlass lombok/eclipse/agent/PatchVal
  877. instanceKlass org/eclipse/jdt/core/dom/InfixExpression$Operator
  878. instanceKlass org/eclipse/jdt/core/dom/ModuleModifier$ModuleModifierKeyword
  879. instanceKlass org/eclipse/jdt/core/dom/PrimitiveType$Code
  880. instanceKlass org/eclipse/jdt/core/dom/ASTConverter$ISetJavaDoc
  881. instanceKlass org/eclipse/jdt/core/dom/ASTConverter$IGetJavaDoc
  882. instanceKlass org/eclipse/m2e/apt/internal/utils/AnnotationServiceLocator
  883. instanceKlass org/eclipse/jdt/core/dom/ASTConverter
  884. instanceKlass @bci org/eclipse/m2e/apt/internal/utils/ProjectUtils filterToResolvedJars (Ljava/util/List;)Ljava/util/List; 53 <appendix> argL0 ; # org/eclipse/m2e/apt/internal/utils/ProjectUtils$$Lambda+0x000002032b6bd6b8
  885. instanceKlass @bci org/eclipse/m2e/apt/internal/utils/ProjectUtils filterToResolvedJars (Ljava/util/List;)Ljava/util/List; 43 <appendix> argL0 ; # org/eclipse/m2e/apt/internal/utils/ProjectUtils$$Lambda+0x000002032b6bd488
  886. instanceKlass @bci org/eclipse/m2e/apt/internal/utils/ProjectUtils filterToResolvedJars (Ljava/util/List;)Ljava/util/List; 33 <appendix> member <vmtarget> ; # org/eclipse/m2e/apt/internal/utils/ProjectUtils$$Lambda+0x000002032b6bd240
  887. instanceKlass @bci org/eclipse/m2e/apt/internal/utils/ProjectUtils filterToResolvedJars (Ljava/util/List;)Ljava/util/List; 17 <appendix> argL0 ; # org/eclipse/m2e/apt/internal/utils/ProjectUtils$$Lambda+0x000002032b6bd000
  888. instanceKlass @bci org/eclipse/m2e/apt/internal/AbstractAptProjectConfigurator configure (Lorg/eclipse/m2e/core/project/configurator/ProjectConfigurationRequest;Lorg/eclipse/core/runtime/IProgressMonitor;)V 32 <appendix> member <vmtarget> ; # org/eclipse/m2e/apt/internal/AbstractAptProjectConfigurator$$Lambda+0x000002032b640cd0
  889. instanceKlass org/eclipse/m2e/jdt/internal/UnitTestSupport$ConfigurationManager
  890. instanceKlass org/eclipse/m2e/jdt/internal/UnitTestSupport
  891. instanceKlass org/eclipse/jdt/internal/compiler/ReadManager
  892. instanceKlass lombok/eclipse/agent/PatchValEclipse$Reflection
  893. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b6bc400
  894. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b6bc000
  895. instanceKlass org/eclipse/jdt/core/dom/Modifier$ModifierKeyword
  896. instanceKlass org/eclipse/jdt/core/dom/IExtendedModifier
  897. instanceKlass org/eclipse/jdt/core/dom/AST
  898. instanceKlass lombok/eclipse/agent/PatchValEclipse
  899. instanceKlass lombok/eclipse/agent/PatchValEclipsePortal$Reflection
  900. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b6b1000
  901. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b6b0c00
  902. instanceKlass lombok/eclipse/agent/PatchValEclipsePortal
  903. instanceKlass lombok/launch/PatchFixesHider$ValPortal
  904. instanceKlass @bci org/eclipse/jdt/internal/compiler/parser/Scanner$Goal <clinit> ()V 468 <appendix> argL0 ; # org/eclipse/jdt/internal/compiler/parser/Scanner$Goal$$Lambda+0x000002032b6b2000
  905. instanceKlass java/util/stream/Nodes$IntArrayNode
  906. instanceKlass java/util/stream/Node$Builder$OfInt
  907. instanceKlass @bci java/util/stream/IntPipeline toArray ()[I 1 <appendix> argL0 ; # java/util/stream/IntPipeline$$Lambda+0x000002032b4fdcf8
  908. instanceKlass @bci org/eclipse/jdt/internal/compiler/parser/Scanner$Goal <clinit> ()V 444 <appendix> argL0 ; # org/eclipse/jdt/internal/compiler/parser/Scanner$Goal$$Lambda+0x000002032b6b7c68
  909. instanceKlass org/eclipse/jdt/internal/compiler/parser/Scanner$Goal
  910. instanceKlass org/eclipse/jdt/internal/compiler/parser/NullMarkdownHelper
  911. instanceKlass org/eclipse/jdt/internal/compiler/parser/IMarkdownCommentHelper
  912. instanceKlass @bci org/eclipse/jdt/internal/core/search/processing/JobManager isJobWaiting (Lorg/eclipse/jdt/internal/core/search/processing/IJob;)Z 22 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/core/search/processing/JobManager$$Lambda+0x000002032b681598
  913. instanceKlass org/eclipse/jdt/internal/core/search/indexing/IndexManager$MetaIndexUpdateRequest
  914. instanceKlass org/eclipse/jdt/internal/compiler/ISourceElementRequestor$ParameterInfo
  915. instanceKlass org/eclipse/jdt/internal/compiler/ISourceElementRequestor$MethodInfo
  916. instanceKlass org/eclipse/jdt/internal/compiler/ISourceElementRequestor$FieldInfo
  917. instanceKlass org/eclipse/jdt/internal/compiler/ExtraFlags
  918. instanceKlass org/eclipse/jdt/internal/compiler/ISourceElementRequestor$TypeInfo
  919. instanceKlass @bci org/eclipse/jdt/internal/compiler/ast/TypeDeclaration protoFieldDeclarations ()[Lorg/eclipse/jdt/internal/compiler/ast/AbstractVariableDeclaration; 30 <appendix> argL0 ; # org/eclipse/jdt/internal/compiler/ast/TypeDeclaration$$Lambda+0x000002032b6a35b8
  920. instanceKlass lombok/patcher/Symbols
  921. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b6b0800
  922. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b6b0400
  923. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b6b0000
  924. instanceKlass lombok/core/AST
  925. instanceKlass org/eclipse/jdt/internal/compiler/util/HashSetOfInt
  926. instanceKlass org/eclipse/jdt/internal/compiler/parser/NLSTag
  927. instanceKlass lombok/eclipse/HandlerLibrary$VisitorContainer
  928. instanceKlass lombok/experimental/WithBy
  929. instanceKlass lombok/With
  930. instanceKlass lombok/Value
  931. instanceKlass lombok/eclipse/EclipseASTAdapter
  932. instanceKlass lombok/experimental/UtilityClass
  933. instanceKlass lombok/ToString
  934. instanceKlass lombok/Synchronized
  935. instanceKlass lombok/experimental/SuperBuilder
  936. instanceKlass lombok/eclipse/handlers/EclipseSingularsRecipes$StatementMaker
  937. instanceKlass lombok/eclipse/handlers/EclipseSingularsRecipes$TypeReferenceMaker
  938. instanceKlass lombok/eclipse/handlers/HandleBuilder$BuilderJob
  939. instanceKlass lombok/experimental/StandardException
  940. instanceKlass lombok/SneakyThrows
  941. instanceKlass lombok/Setter
  942. instanceKlass lombok/core/PrintAST
  943. instanceKlass lombok/NonNull
  944. instanceKlass lombok/extern/slf4j/XSlf4j
  945. instanceKlass lombok/extern/slf4j/Slf4j
  946. instanceKlass lombok/extern/log4j/Log4j
  947. instanceKlass lombok/extern/log4j/Log4j2
  948. instanceKlass lombok/extern/java/Log
  949. instanceKlass lombok/extern/jbosslog/JBossLog
  950. instanceKlass lombok/extern/flogger/Flogger
  951. instanceKlass lombok/CustomLog
  952. instanceKlass lombok/extern/apachecommons/CommonsLog
  953. instanceKlass lombok/Locked$Write
  954. instanceKlass lombok/Locked$Read
  955. instanceKlass lombok/Locked
  956. instanceKlass lombok/extern/jackson/Jacksonized
  957. instanceKlass lombok/experimental/Helper
  958. instanceKlass lombok/Getter
  959. instanceKlass lombok/experimental/FieldNameConstants
  960. instanceKlass lombok/core/LombokImmutableList
  961. instanceKlass lombok/core/JavaIdentifiers
  962. instanceKlass lombok/experimental/ExtensionMethod
  963. instanceKlass lombok/EqualsAndHashCode
  964. instanceKlass lombok/experimental/Delegate
  965. instanceKlass lombok/Data
  966. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b6a4000
  967. instanceKlass org/eclipse/jdt/internal/compiler/impl/Constant
  968. instanceKlass org/eclipse/jdt/internal/compiler/codegen/Label
  969. instanceKlass lombok/eclipse/Eclipse
  970. instanceKlass lombok/RequiredArgsConstructor
  971. instanceKlass lombok/NoArgsConstructor
  972. instanceKlass lombok/AllArgsConstructor
  973. instanceKlass lombok/Cleanup
  974. instanceKlass lombok/Builder$Default
  975. instanceKlass lombok/Builder
  976. instanceKlass lombok/eclipse/handlers/HandleConstructor
  977. instanceKlass lombok/core/LombokInternalAliasing
  978. instanceKlass lombok/core/HandlerPriority
  979. instanceKlass lombok/eclipse/DeferUntilPostDiet
  980. instanceKlass lombok/eclipse/HandlerLibrary$AnnotationHandlerContainer
  981. instanceKlass lombok/experimental/Accessors
  982. instanceKlass lombok/eclipse/EclipseAnnotationHandler
  983. instanceKlass lombok/core/SpiLoadUtil$1$1
  984. instanceKlass lombok/core/SpiLoadUtil$1
  985. instanceKlass lombok/core/SpiLoadUtil
  986. instanceKlass lombok/core/configuration/ConfigurationKeysLoader
  987. instanceKlass lombok/core/configuration/CheckerFrameworkVersion
  988. instanceKlass lombok/core/configuration/TypeName
  989. instanceKlass lombok/core/configuration/LogDeclaration
  990. instanceKlass lombok/core/configuration/IdentifierName
  991. instanceKlass lombok/core/configuration/ConfigurationDataType$6
  992. instanceKlass lombok/core/configuration/ConfigurationDataType$7
  993. instanceKlass lombok/core/configuration/NullAnnotationLibrary
  994. instanceKlass lombok/core/configuration/ConfigurationValueType
  995. instanceKlass lombok/core/configuration/ConfigurationDataType$5
  996. instanceKlass lombok/core/configuration/ConfigurationDataType$4
  997. instanceKlass lombok/core/configuration/ConfigurationDataType$3
  998. instanceKlass lombok/core/configuration/ConfigurationDataType$2
  999. instanceKlass lombok/core/configuration/ConfigurationDataType$1
  1000. instanceKlass lombok/core/configuration/ConfigurationValueParser
  1001. instanceKlass lombok/core/configuration/ConfigurationDataType
  1002. instanceKlass lombok/core/configuration/ConfigurationKey
  1003. instanceKlass lombok/ConfigurationKeys
  1004. instanceKlass lombok/core/configuration/ConfigurationKeysLoader$LoaderLoader
  1005. instanceKlass lombok/core/TypeLibrary
  1006. instanceKlass lombok/eclipse/HandlerLibrary
  1007. instanceKlass lombok/eclipse/EclipseASTVisitor
  1008. instanceKlass lombok/eclipse/TransformEclipseAST
  1009. instanceKlass lombok/core/LombokNode
  1010. instanceKlass lombok/core/DiagnosticsReceiver
  1011. instanceKlass @bci jdk/xml/internal/SecuritySupport getResourceBundle (Ljava/lang/String;Ljava/util/Locale;)Ljava/util/ResourceBundle; 2 <appendix> member <vmtarget> ; # jdk/xml/internal/SecuritySupport$$Lambda+0x000002032b4fd5e8
  1012. instanceKlass com/sun/org/apache/xerces/internal/dom/DOMMessageFormatter
  1013. instanceKlass lombok/launch/PackageShader
  1014. instanceKlass lombok/launch/Main
  1015. instanceKlass lombok/launch/PatchFixesHider$Transform
  1016. instanceKlass org/eclipse/jdt/internal/compiler/util/HashtableOfObject
  1017. instanceKlass org/eclipse/jdt/internal/compiler/flow/FlowContext
  1018. instanceKlass org/eclipse/jdt/internal/compiler/util/Messages
  1019. instanceKlass java/lang/Runtime$VersionPattern
  1020. instanceKlass org/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration$1
  1021. instanceKlass org/eclipse/jdt/internal/compiler/lookup/Scope$Substitutor
  1022. instanceKlass org/eclipse/jdt/internal/compiler/CompilationResult$1
  1023. instanceKlass org/eclipse/jdt/internal/core/jdom/CompilationUnit
  1024. instanceKlass sun/nio/cs/ThreadLocalCoders$Cache
  1025. instanceKlass sun/nio/cs/ThreadLocalCoders
  1026. instanceKlass org/eclipse/core/internal/content/TextContentDescriber
  1027. instanceKlass org/eclipse/core/runtime/content/ITextContentDescriber
  1028. instanceKlass org/eclipse/core/runtime/content/IContentDescriber
  1029. instanceKlass org/eclipse/core/internal/content/ContentTypeCatalog$1
  1030. instanceKlass @bci org/eclipse/core/internal/content/ContentTypeCatalog selectMatchingByName (Lorg/eclipse/core/runtime/preferences/IScopeContext;Ljava/util/Collection;Ljava/util/Collection;Ljava/lang/String;I)Ljava/util/Set; 61 <adapter> ; # java/lang/invoke/LambdaForm$MH+0x000002032b684800
  1031. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b684400
  1032. instanceKlass @bci org/eclipse/core/internal/content/ContentTypeCatalog selectMatchingByName (Lorg/eclipse/core/runtime/preferences/IScopeContext;Ljava/util/Collection;Ljava/util/Collection;Ljava/lang/String;I)Ljava/util/Set; 61 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b684000
  1033. instanceKlass @bci org/eclipse/core/internal/content/ContentTypeCatalog selectMatchingByName (Lorg/eclipse/core/runtime/preferences/IScopeContext;Ljava/util/Collection;Ljava/util/Collection;Ljava/lang/String;I)Ljava/util/Set; 61 <appendix> member <vmtarget> ; # org/eclipse/core/internal/content/ContentTypeCatalog$$Lambda+0x000002032b61c400
  1034. instanceKlass @cpi org/eclipse/core/internal/content/ContentTypeCatalog 769 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b61d000
  1035. instanceKlass org/eclipse/core/internal/content/ContentTypeVisitor
  1036. instanceKlass org/eclipse/core/internal/resources/ProjectContentTypes$ProjectContentTypeSelectionPolicy
  1037. instanceKlass org/eclipse/jdt/internal/core/search/indexing/SourceIndexerRequestor
  1038. instanceKlass org/eclipse/jdt/internal/core/search/indexing/AbstractIndexer
  1039. instanceKlass org/eclipse/jdt/internal/compiler/flow/FlowInfo
  1040. instanceKlass org/eclipse/jdt/internal/compiler/SourceElementNotifier
  1041. instanceKlass org/eclipse/m2e/apt/internal/DefaultAnnotationProcessorConfiguration
  1042. instanceKlass org/eclipse/aether/util/filter/DependencyFilterUtils
  1043. instanceKlass org/eclipse/m2e/apt/internal/utils/ProjectUtils
  1044. instanceKlass @bci org/eclipse/m2e/apt/internal/AbstractAptProjectConfigurator configureRawClasspath (Lorg/eclipse/m2e/core/project/configurator/ProjectConfigurationRequest;Lorg/eclipse/m2e/jdt/IClasspathDescriptor;Lorg/eclipse/core/runtime/IProgressMonitor;)V 37 <appendix> member <vmtarget> ; # org/eclipse/m2e/apt/internal/AbstractAptProjectConfigurator$$Lambda+0x000002032b640608
  1045. instanceKlass lombok/patcher/scripts/WrapMethodCallScript$1
  1046. instanceKlass org/eclipse/m2e/jdt/internal/ModuleSupport$JpmsArgs
  1047. instanceKlass @bci org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator getCompilerArguments (Lorg/apache/maven/project/MavenProject;Lorg/apache/maven/plugin/MojoExecution;Lorg/eclipse/core/runtime/IProgressMonitor;)Ljava/util/List; 55 <appendix> member <vmtarget> ; # org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator$$Lambda+0x000002032b63b850
  1048. instanceKlass @bci org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator getCompilerArguments (Lorg/apache/maven/project/MavenProject;Lorg/apache/maven/plugin/MojoExecution;Lorg/eclipse/core/runtime/IProgressMonitor;)Ljava/util/List; 43 <appendix> argL0 ; # org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator$$Lambda+0x000002032b63b610
  1049. instanceKlass org/eclipse/jdt/internal/compiler/util/HashtableOfObjectToInt
  1050. instanceKlass org/eclipse/jdt/internal/compiler/util/GenericXMLWriter$1
  1051. instanceKlass org/eclipse/jdt/internal/compiler/ast/IJavadocTypeReference
  1052. instanceKlass org/eclipse/jdt/internal/compiler/classfmt/ClassFileConstants
  1053. instanceKlass @bci org/eclipse/jdt/internal/compiler/util/CharDeduplication <clinit> ()V 44 <appendix> argL0 ; # org/eclipse/jdt/internal/compiler/util/CharDeduplication$$Lambda+0x000002032b66fd28
  1054. instanceKlass org/eclipse/jdt/internal/compiler/util/CharDeduplication
  1055. instanceKlass org/eclipse/jdt/internal/compiler/parser/Scanner
  1056. instanceKlass org/eclipse/jdt/internal/compiler/DefaultErrorHandlingPolicies$1
  1057. instanceKlass org/eclipse/jdt/internal/compiler/IErrorHandlingPolicy
  1058. instanceKlass org/eclipse/jdt/internal/compiler/DefaultErrorHandlingPolicies
  1059. instanceKlass org/eclipse/jdt/internal/compiler/util/HashtableOfInt
  1060. instanceKlass org/eclipse/jdt/core/compiler/CategorizedProblem
  1061. instanceKlass org/eclipse/jdt/internal/compiler/problem/DefaultProblemFactory
  1062. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b674c00
  1063. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b674800
  1064. instanceKlass lombok/permit/Permit$Fake
  1065. instanceKlass lombok/permit/Permit
  1066. instanceKlass lombok/launch/PatchFixesHider$Util
  1067. instanceKlass lombok/launch/PatchFixesHider$ModuleClassLoading
  1068. instanceKlass org/eclipse/jdt/internal/compiler/parser/AbstractCommentParser
  1069. instanceKlass org/eclipse/jdt/internal/compiler/parser/JavadocTagConstants
  1070. instanceKlass org/eclipse/jdt/internal/compiler/parser/RecoveredElement
  1071. instanceKlass org/eclipse/jdt/internal/compiler/ast/IGenerateTypeCheck
  1072. instanceKlass org/eclipse/jdt/internal/core/search/indexing/IndexAllProject$1
  1073. instanceKlass org/eclipse/jdt/internal/compiler/util/SimpleSet
  1074. instanceKlass org/eclipse/jdt/internal/compiler/util/SimpleSetOfCharArray
  1075. instanceKlass org/eclipse/jdt/internal/core/index/DiskIndex
  1076. instanceKlass org/eclipse/jdt/internal/core/util/SimpleWordSet
  1077. instanceKlass org/eclipse/jdt/internal/core/index/MemoryIndex
  1078. instanceKlass org/eclipse/jdt/internal/core/search/indexing/ReadWriteMonitor
  1079. instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$ZipCache
  1080. instanceKlass org/eclipse/jdt/internal/core/DeltaProcessor$OutputsInfo
  1081. instanceKlass org/eclipse/jdt/internal/core/JavaElementDelta$Key
  1082. instanceKlass org/eclipse/jdt/internal/core/DeltaProcessor$RootInfo
  1083. instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$InvalidArchiveInfo
  1084. instanceKlass org/eclipse/jdt/internal/core/UserLibraryClasspathContainer
  1085. instanceKlass org/eclipse/jdt/internal/core/ClasspathValidation
  1086. instanceKlass org/eclipse/jdt/internal/core/ExternalFolderChange
  1087. instanceKlass org/eclipse/jdt/internal/launching/JREContainer$RuleEntry
  1088. instanceKlass org/eclipse/jdt/internal/compiler/env/AccessRuleSet
  1089. instanceKlass org/eclipse/jdt/internal/launching/JREContainer$RuleKey
  1090. instanceKlass org/eclipse/jdt/internal/launching/environments/DefaultAccessRuleParticipant
  1091. instanceKlass org/eclipse/jdt/internal/core/util/WeakHashSetOfCharArray
  1092. instanceKlass org/eclipse/jdt/internal/core/util/WeakHashSet
  1093. instanceKlass org/eclipse/jdt/internal/core/util/DeduplicationUtil
  1094. instanceKlass org/eclipse/jdt/internal/compiler/env/AccessRule
  1095. instanceKlass org/eclipse/jdt/ls/core/internal/javafx/FXAccessRuleParticipant
  1096. instanceKlass org/eclipse/jdt/internal/launching/JREContainer$1
  1097. instanceKlass org/eclipse/jdt/internal/launching/JREContainer
  1098. instanceKlass org/eclipse/jdt/internal/core/JavaProject$ResolvedClasspath
  1099. instanceKlass @bci org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator addMavenClasspathContainer (Lorg/eclipse/m2e/jdt/IClasspathDescriptor;)V 100 <appendix> argL0 ; # org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator$$Lambda+0x000002032b63b3d0
  1100. instanceKlass @bci org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator addJREClasspathContainer (Lorg/eclipse/m2e/jdt/IClasspathDescriptor;Ljava/lang/String;)V 43 <appendix> argL0 ; # org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator$$Lambda+0x000002032b63b1c0
  1101. instanceKlass org/eclipse/m2e/jdt/IClasspathDescriptor$EntryFilter
  1102. instanceKlass @bci org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator readExternalAnnotationAttributes (Lorg/eclipse/m2e/jdt/IClasspathDescriptor;Ljava/util/function/Predicate;)[Lorg/eclipse/jdt/core/IClasspathAttribute; 70 <appendix> argL0 ; # org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator$$Lambda+0x000002032b63adc0
  1103. instanceKlass @bci org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator readExternalAnnotationAttributes (Lorg/eclipse/m2e/jdt/IClasspathDescriptor;Ljava/util/function/Predicate;)[Lorg/eclipse/jdt/core/IClasspathAttribute; 62 <appendix> argL0 ; # org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator$$Lambda+0x000002032b63ab90
  1104. instanceKlass @bci org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator readExternalAnnotationAttributes (Lorg/eclipse/m2e/jdt/IClasspathDescriptor;Ljava/util/function/Predicate;)[Lorg/eclipse/jdt/core/IClasspathAttribute; 54 <appendix> argL0 ; # org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator$$Lambda+0x000002032b63a960
  1105. instanceKlass @bci org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator readExternalAnnotationAttributes (Lorg/eclipse/m2e/jdt/IClasspathDescriptor;Ljava/util/function/Predicate;)[Lorg/eclipse/jdt/core/IClasspathAttribute; 37 <appendix> argL0 ; # org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator$$Lambda+0x000002032b63a720
  1106. instanceKlass @bci org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator readExternalAnnotationAttributes (Lorg/eclipse/m2e/jdt/IClasspathDescriptor;Ljava/util/function/Predicate;)[Lorg/eclipse/jdt/core/IClasspathAttribute; 27 <appendix> argL0 ; # org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator$$Lambda+0x000002032b63a4e0
  1107. instanceKlass @bci org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator readExternalAnnotationAttributes (Lorg/eclipse/m2e/jdt/IClasspathDescriptor;Ljava/util/function/Predicate;)[Lorg/eclipse/jdt/core/IClasspathAttribute; 17 <appendix> argL0 ; # org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator$$Lambda+0x000002032b63a2b0
  1108. instanceKlass @bci org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator addJREClasspathContainer (Lorg/eclipse/m2e/jdt/IClasspathDescriptor;Ljava/lang/String;)V 23 <appendix> argL0 ; # org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator$$Lambda+0x000002032b63a070
  1109. instanceKlass @bci org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator addProjectSourceFolders (Lorg/eclipse/m2e/jdt/IClasspathDescriptor;Ljava/util/Map;Lorg/eclipse/m2e/core/project/configurator/ProjectConfigurationRequest;Lorg/eclipse/core/runtime/IProgressMonitor;)V 939 <appendix> member <vmtarget> ; # org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator$$Lambda+0x000002032b639e28
  1110. instanceKlass @bci org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator addProjectSourceFolders (Lorg/eclipse/m2e/jdt/IClasspathDescriptor;Ljava/util/Map;Lorg/eclipse/m2e/core/project/configurator/ProjectConfigurationRequest;Lorg/eclipse/core/runtime/IProgressMonitor;)V 868 <appendix> member <vmtarget> ; # org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator$$Lambda+0x000002032b639be0
  1111. instanceKlass @bci org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator getSourceFolders (Lorg/eclipse/core/resources/IProject;Ljava/util/List;)Ljava/util/stream/Stream; 17 <appendix> member <vmtarget> ; # org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator$$Lambda+0x000002032b6399a8
  1112. instanceKlass @bci org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator getSourceFolders (Lorg/eclipse/core/resources/IProject;Ljava/util/List;)Ljava/util/stream/Stream; 6 <appendix> argL0 ; # org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator$$Lambda+0x000002032b639778
  1113. instanceKlass @bci org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator isContained (Lorg/eclipse/core/runtime/IPath;Ljava/util/stream/Stream;)Z 2 <appendix> member <vmtarget> ; # org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator$$Lambda+0x000002032b639530
  1114. instanceKlass @bci org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator getOtherResourceFolders (Lorg/eclipse/core/resources/IProject;Ljava/util/List;Lorg/eclipse/core/runtime/IPath;)Ljava/util/stream/Stream; 38 <appendix> member <vmtarget> ; # org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator$$Lambda+0x000002032b6392e8
  1115. instanceKlass @bci org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator getOtherResourceFolders (Lorg/eclipse/core/resources/IProject;Ljava/util/List;Lorg/eclipse/core/runtime/IPath;)Ljava/util/stream/Stream; 27 <appendix> member <vmtarget> ; # org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator$$Lambda+0x000002032b6390b0
  1116. instanceKlass @bci org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator getOtherResourceFolders (Lorg/eclipse/core/resources/IProject;Ljava/util/List;Lorg/eclipse/core/runtime/IPath;)Ljava/util/stream/Stream; 16 <appendix> argL0 ; # org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator$$Lambda+0x000002032b638e80
  1117. instanceKlass @bci org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator getOtherResourceFolders (Lorg/eclipse/core/resources/IProject;Ljava/util/List;Lorg/eclipse/core/runtime/IPath;)Ljava/util/stream/Stream; 6 <appendix> argL0 ; # org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator$$Lambda+0x000002032b638c50
  1118. instanceKlass @bci org/eclipse/core/internal/localstore/HistoryBucket$HistoryEntry <clinit> ()V 0 <appendix> argL0 ; # org/eclipse/core/internal/localstore/HistoryBucket$HistoryEntry$$Lambda+0x000002032b5eb988
  1119. instanceKlass org/eclipse/core/internal/utils/UniversalUniqueIdentifier
  1120. instanceKlass org/eclipse/core/internal/localstore/BlobStore
  1121. instanceKlass org/eclipse/core/internal/localstore/HistoryStore2
  1122. instanceKlass org/eclipse/core/resources/ResourceAttributes
  1123. instanceKlass org/codehaus/plexus/util/introspection/MethodMap
  1124. instanceKlass org/codehaus/plexus/util/introspection/ClassMap$CacheMiss
  1125. instanceKlass org/codehaus/plexus/util/introspection/ClassMap
  1126. instanceKlass org/codehaus/plexus/util/introspection/ReflectionValueExtractor$Tokenizer
  1127. instanceKlass org/codehaus/plexus/util/introspection/ReflectionValueExtractor
  1128. instanceKlass org/sonatype/plexus/components/sec/dispatcher/model/SettingsSecurity
  1129. instanceKlass org/sonatype/plexus/components/cipher/PBECipher
  1130. instanceKlass javax/annotation/meta/TypeQualifier
  1131. instanceKlass javax/annotation/Nonnull
  1132. instanceKlass org/codehaus/plexus/interpolation/Interpolator
  1133. instanceKlass org/codehaus/plexus/interpolation/BasicInterpolator
  1134. instanceKlass org/codehaus/plexus/interpolation/InterpolationPostProcessor
  1135. instanceKlass org/codehaus/plexus/interpolation/ValueSource
  1136. instanceKlass org/apache/maven/shared/filtering/AbstractMavenFilteringRequest
  1137. instanceKlass org/apache/maven/shared/filtering/MavenResourcesFiltering
  1138. instanceKlass org/apache/maven/shared/filtering/MavenReaderFilter
  1139. instanceKlass org/apache/maven/shared/filtering/MavenFileFilter
  1140. instanceKlass org/apache/maven/shared/filtering/DefaultFilterInfo
  1141. instanceKlass org/sonatype/plexus/components/cipher/PlexusCipher
  1142. instanceKlass org/sonatype/plexus/components/sec/dispatcher/SecDispatcher
  1143. instanceKlass org/apache/maven/model/merge/ModelMerger$1
  1144. instanceKlass org/eclipse/jdt/internal/core/ClasspathChange
  1145. instanceKlass org/eclipse/jdt/internal/core/JavaProject$3
  1146. instanceKlass org/eclipse/jdt/internal/core/JavaProject$2
  1147. instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$SecondaryTypes
  1148. instanceKlass org/eclipse/jdt/internal/core/JavaNature
  1149. instanceKlass @bci org/eclipse/m2e/core/internal/builder/MavenBuilderImpl processBuildResults (Lorg/eclipse/core/resources/IProject;Lorg/apache/maven/project/MavenProject;Lorg/apache/maven/execution/MavenExecutionResult;Lorg/eclipse/m2e/core/internal/builder/BuildResultCollector;Ljava/util/Map;)V 54 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/builder/MavenBuilderImpl$$Lambda+0x000002032b6448f0
  1150. instanceKlass @bci org/eclipse/m2e/core/internal/builder/MavenBuilderImpl processBuildResults (Lorg/eclipse/core/resources/IProject;Lorg/apache/maven/project/MavenProject;Lorg/apache/maven/execution/MavenExecutionResult;Lorg/eclipse/m2e/core/internal/builder/BuildResultCollector;Ljava/util/Map;)V 38 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/builder/MavenBuilderImpl$$Lambda+0x000002032b6446c8
  1151. instanceKlass @cpi org/eclipse/m2e/core/internal/builder/MavenBuilderImpl 928 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b649000
  1152. instanceKlass @bci org/eclipse/m2e/core/internal/builder/MavenBuilderImpl processBuildResults (Lorg/eclipse/core/resources/IProject;Lorg/apache/maven/project/MavenProject;Lorg/apache/maven/execution/MavenExecutionResult;Lorg/eclipse/m2e/core/internal/builder/BuildResultCollector;Ljava/util/Map;)V 17 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/builder/MavenBuilderImpl$$Lambda+0x000002032b6444a0
  1153. instanceKlass @bci org/eclipse/m2e/core/project/configurator/MojoExecutionKey getKeyString ()Ljava/lang/String; 24 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b648c00
  1154. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b648800
  1155. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b648400
  1156. instanceKlass @bci org/eclipse/m2e/core/project/configurator/MojoExecutionKey getKeyString ()Ljava/lang/String; 24 <appendix> argL4 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b648000
  1157. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b643c00
  1158. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b643800
  1159. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b643400
  1160. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b643000
  1161. instanceKlass @bci org/eclipse/m2e/core/project/configurator/MojoExecutionKey getKeyString ()Ljava/lang/String; 24 <appendix> argL1 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b642c00
  1162. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b642800
  1163. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b642400
  1164. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b642000
  1165. instanceKlass @bci org/eclipse/m2e/core/internal/builder/MavenBuilderImpl build (Lorg/apache/maven/execution/MavenSession;Lorg/eclipse/m2e/core/project/IMavenProjectFacade;ILjava/util/Map;Ljava/util/Map;Lorg/eclipse/core/runtime/IProgressMonitor;)Ljava/util/Set; 176 <adapter> ; # java/lang/invoke/LambdaForm$MH+0x000002032b641c00
  1166. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b641800
  1167. instanceKlass @bci org/eclipse/m2e/core/internal/builder/MavenBuilderImpl build (Lorg/apache/maven/execution/MavenSession;Lorg/eclipse/m2e/core/project/IMavenProjectFacade;ILjava/util/Map;Ljava/util/Map;Lorg/eclipse/core/runtime/IProgressMonitor;)Ljava/util/Set; 176 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b641400
  1168. instanceKlass @bci org/eclipse/m2e/core/internal/builder/MavenBuilderImpl build (Lorg/apache/maven/execution/MavenSession;Lorg/eclipse/m2e/core/project/IMavenProjectFacade;ILjava/util/Map;Ljava/util/Map;Lorg/eclipse/core/runtime/IProgressMonitor;)Ljava/util/Set; 176 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/builder/MavenBuilderImpl$$Lambda+0x000002032b644278
  1169. instanceKlass @cpi org/eclipse/m2e/core/internal/builder/MavenBuilderImpl 895 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b641000
  1170. instanceKlass org/sonatype/plexus/build/incremental/EmptyScanner
  1171. instanceKlass org/eclipse/m2e/core/internal/builder/plexusbuildapi/AbstractEclipseBuildContext
  1172. instanceKlass org/eclipse/core/internal/utils/ObjectMap
  1173. instanceKlass org/eclipse/m2e/core/internal/builder/BuildResultCollector
  1174. instanceKlass @bci org/eclipse/m2e/core/internal/builder/MavenBuilderImpl build (Lorg/apache/maven/execution/MavenSession;Lorg/eclipse/m2e/core/project/IMavenProjectFacade;ILjava/util/Map;Ljava/util/Map;Lorg/eclipse/core/runtime/IProgressMonitor;)Ljava/util/Set; 79 <appendix> argL0 ; # org/eclipse/m2e/core/internal/builder/MavenBuilderImpl$$Lambda+0x000002032b63f3c8
  1175. instanceKlass org/eclipse/m2e/core/internal/builder/MavenBuilderImpl$ProjectBuildState
  1176. instanceKlass org/eclipse/m2e/core/internal/builder/MavenBuilder$BuildMethod
  1177. instanceKlass @bci org/eclipse/m2e/core/project/configurator/AbstractLifecycleMapping configure (Lorg/eclipse/m2e/core/project/configurator/ProjectConfigurationRequest;Lorg/eclipse/core/runtime/IProgressMonitor;)V 325 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/project/configurator/AbstractLifecycleMapping$$Lambda+0x000002032b63e280
  1178. instanceKlass org/eclipse/m2e/apt/internal/AnnotationProcessorConfiguration
  1179. instanceKlass org/eclipse/m2e/apt/internal/utils/PluginDependencyResolver
  1180. instanceKlass org/eclipse/m2e/apt/internal/AbstractAptConfiguratorDelegate
  1181. instanceKlass org/eclipse/m2e/apt/internal/preferences/PreferencesManager
  1182. instanceKlass org/eclipse/m2e/apt/preferences/IPreferencesManager
  1183. instanceKlass org/eclipse/m2e/apt/MavenJdtAptPlugin
  1184. instanceKlass org/eclipse/m2e/core/internal/builder/InternalBuildParticipant
  1185. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/MavenProjectFacade setupMojoExecution (Lorg/apache/maven/plugin/MojoExecution;Lorg/eclipse/core/runtime/IProgressMonitor;)Lorg/apache/maven/plugin/MojoExecution; 76 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/project/registry/MavenProjectFacade$$Lambda+0x000002032b633400
  1186. instanceKlass org/eclipse/m2e/core/internal/embedder/MavenProjectMutableState
  1187. instanceKlass @bci org/eclipse/m2e/core/internal/project/ProjectConfigurationManager updateProjectConfiguration (Lorg/eclipse/m2e/core/project/configurator/ProjectConfigurationRequest;Lorg/eclipse/core/runtime/IProgressMonitor;)V 137 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/project/ProjectConfigurationManager$$Lambda+0x000002032b632fe0
  1188. instanceKlass org/eclipse/core/internal/resources/Container$1
  1189. instanceKlass @bci org/eclipse/core/internal/resources/AliasManager buildAliasedProjectsSet ()V 30 <appendix> member <vmtarget> ; # org/eclipse/core/internal/resources/AliasManager$$Lambda+0x000002032b5e9688
  1190. instanceKlass org/eclipse/core/internal/filesystem/FileStoreUtil
  1191. instanceKlass @bci org/eclipse/core/internal/preferences/EclipsePreferences internalChildNames ()[Ljava/lang/String; 41 <appendix> argL0 ; # org/eclipse/core/internal/preferences/EclipsePreferences$$Lambda+0x000002032b1b2630
  1192. instanceKlass org/apache/maven/project/ProjectSorter
  1193. instanceKlass org/eclipse/m2e/jdt/internal/MavenClasspathContainerSaveHelper$PathReplace
  1194. instanceKlass org/eclipse/m2e/jdt/internal/MavenClasspathContainerSaveHelper$ClasspathAttributeReplace
  1195. instanceKlass org/eclipse/m2e/jdt/internal/MavenClasspathContainerSaveHelper$LibraryEntryReplace
  1196. instanceKlass java/io/ObjectStreamClass$5
  1197. instanceKlass java/io/ObjectStreamClass$4
  1198. instanceKlass java/io/ObjectStreamClass$3
  1199. instanceKlass java/io/ObjectStreamClass$MemberSignature
  1200. instanceKlass java/io/ObjectStreamClass$1
  1201. instanceKlass java/io/ObjectStreamClass$ExceptionInfo
  1202. instanceKlass org/eclipse/m2e/jdt/internal/MavenClasspathContainerSaveHelper
  1203. instanceKlass org/eclipse/m2e/jdt/internal/MavenClasspathContainer
  1204. instanceKlass org/eclipse/jdt/internal/core/ClasspathEntry
  1205. instanceKlass org/eclipse/m2e/jdt/internal/BuildPathManager$ModuleInfoDetector
  1206. instanceKlass java/lang/invoke/MethodHandleImpl$CountingWrapper$1
  1207. instanceKlass org/eclipse/m2e/jdt/internal/ModuleSupport
  1208. instanceKlass @bci org/eclipse/m2e/jdt/internal/DefaultClasspathManagerDelegate addClasspathEntries (Lorg/eclipse/m2e/jdt/IClasspathDescriptor;Lorg/eclipse/m2e/core/project/IMavenProjectFacade;ILorg/eclipse/core/runtime/IProgressMonitor;)V 485 <appendix> member <vmtarget> ; # org/eclipse/m2e/jdt/internal/DefaultClasspathManagerDelegate$$Lambda+0x000002032b635640
  1209. instanceKlass org/eclipse/m2e/jdt/internal/DefaultClasspathManagerDelegate$ProjectTestAttributes
  1210. instanceKlass org/eclipse/m2e/jdt/internal/ClasspathEntryDescriptor
  1211. instanceKlass org/eclipse/m2e/jdt/internal/MavenClasspathHelpers
  1212. instanceKlass org/eclipse/m2e/jdt/IClasspathEntryDescriptor
  1213. instanceKlass org/eclipse/m2e/jdt/internal/ClasspathDescriptor
  1214. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager getPom (Lorg/eclipse/core/resources/IProject;)Lorg/eclipse/core/resources/IFile; 64 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager$$Lambda+0x000002032b632bc0
  1215. instanceKlass org/eclipse/m2e/workspace/WorkspaceState2
  1216. instanceKlass @bci org/eclipse/core/internal/resources/MarkerAttributeMap put (Ljava/lang/String;Ljava/lang/Object;)V 21 <appendix> member <vmtarget> ; # org/eclipse/core/internal/resources/MarkerAttributeMap$$Lambda+0x000002032b5e9438
  1217. instanceKlass org/eclipse/core/internal/resources/MarkerDelta
  1218. instanceKlass org/eclipse/core/internal/resources/MarkerSet
  1219. instanceKlass org/eclipse/core/internal/resources/MarkerAttributeMap
  1220. instanceKlass java/io/ObjectInputStream$GetField
  1221. instanceKlass @bci java/io/ObjectInputFilter$Config <clinit> ()V 368 <appendix> argL0 ; # java/io/ObjectInputFilter$Config$$Lambda+0x000002032b4faa60
  1222. instanceKlass jdk/internal/access/JavaObjectInputFilterAccess
  1223. instanceKlass java/io/ObjectInputFilter$Config$BuiltinFilterFactory
  1224. instanceKlass @bci java/io/ObjectInputFilter$Config <clinit> ()V 80 <appendix> argL0 ; # java/io/ObjectInputFilter$Config$$Lambda+0x000002032b4fa428
  1225. instanceKlass @bci java/io/ObjectInputFilter$Config <clinit> ()V 56 <appendix> argL0 ; # java/io/ObjectInputFilter$Config$$Lambda+0x000002032b4fa218
  1226. instanceKlass java/io/ObjectInputFilter
  1227. instanceKlass java/io/ObjectInputFilter$Config
  1228. instanceKlass java/io/ObjectInputStream$ValidationList
  1229. instanceKlass java/io/ObjectInputStream$HandleTable$HandleList
  1230. instanceKlass java/io/ObjectInputStream$HandleTable
  1231. instanceKlass @bci java/io/ObjectInputStream <clinit> ()V 100 <appendix> argL0 ; # java/io/ObjectInputStream$$Lambda+0x000002032b4f8d28
  1232. instanceKlass jdk/internal/access/JavaObjectInputStreamReadString
  1233. instanceKlass @bci java/io/ObjectInputStream <clinit> ()V 92 <appendix> argL0 ; # java/io/ObjectInputStream$$Lambda+0x000002032b4f8928
  1234. instanceKlass jdk/internal/access/JavaObjectInputStreamAccess
  1235. instanceKlass @bci org/eclipse/core/internal/resources/MarkerManager visitorRemoveMarkers (Lorg/eclipse/core/runtime/IPath;Ljava/lang/String;Z)V 3 <appendix> member <vmtarget> ; # org/eclipse/core/internal/resources/MarkerManager$$Lambda+0x000002032b5e86f0
  1236. instanceKlass @cpi org/eclipse/core/internal/resources/MarkerManager 677 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b636c00
  1237. instanceKlass org/eclipse/m2e/core/project/MavenProjectChangedEvent
  1238. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/MutableProjectRegistry lambda$4 (Lorg/eclipse/m2e/core/internal/project/registry/RequiredCapability;Lorg/eclipse/core/resources/IFile;Lorg/eclipse/m2e/core/internal/project/registry/VersionlessKey;Ljava/util/Map;)Ljava/util/Map; 3 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/project/registry/MutableProjectRegistry$$Lambda+0x000002032b632770
  1239. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/MutableProjectRegistry removeRequiredCapabilities (Lorg/eclipse/core/resources/IFile;)V 45 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/project/registry/MutableProjectRegistry$$Lambda+0x000002032b632548
  1240. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/MavenProjectFacade setMavenProjectArtifacts (Lorg/apache/maven/project/MavenProject;)V 19 <appendix> argL0 ; # org/eclipse/m2e/core/internal/project/registry/MavenProjectFacade$$Lambda+0x000002032b632338
  1241. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/MavenProjectFacade setMavenProjectArtifacts (Lorg/apache/maven/project/MavenProject;)V 9 <appendix> argL0 ; # org/eclipse/m2e/core/internal/project/registry/MavenProjectFacade$$Lambda+0x000002032b632108
  1242. instanceKlass org/eclipse/aether/resolution/ArtifactDescriptorPolicyRequest
  1243. instanceKlass org/apache/maven/model/building/DefaultModelProblem
  1244. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b636800
  1245. instanceKlass org/eclipse/aether/collection/DependencyManagement
  1246. instanceKlass @bci org/eclipse/aether/util/graph/manager/ClassicDependencyManager deriveChildManager (Lorg/eclipse/aether/collection/DependencyCollectionContext;)Lorg/eclipse/aether/collection/DependencyManager; 420 <appendix> argL0 ; # org/eclipse/aether/util/graph/manager/ClassicDependencyManager$$Lambda+0x000002032b628d48
  1247. instanceKlass org/apache/maven/artifact/handler/DefaultArtifactHandler$__sisu12$$FastClassByGuice$$210187146
  1248. instanceKlass org/eclipse/jdt/ls/core/internal/JobHelpers$InitializeJobMatcher
  1249. instanceKlass @bci org/apache/maven/RepositoryUtils toDependency (Lorg/apache/maven/model/Dependency;Lorg/eclipse/aether/artifact/ArtifactTypeRegistry;)Lorg/eclipse/aether/graph/Dependency; 106 <appendix> argL0 ; # org/apache/maven/RepositoryUtils$$Lambda+0x000002032b628b18
  1250. instanceKlass org/apache/maven/project/DefaultDependencyResolutionRequest
  1251. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/DefaultMavenDependencyResolver resolveProjectDependencies (Lorg/eclipse/m2e/core/project/IMavenProjectFacade;Ljava/util/Set;Ljava/util/Set;Lorg/eclipse/core/runtime/IProgressMonitor;)V 44 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/project/registry/DefaultMavenDependencyResolver$$Lambda+0x000002032b631cf0
  1252. instanceKlass org/eclipse/m2e/core/internal/project/registry/ILifecycleMapping2
  1253. instanceKlass org/eclipse/m2e/apt/internal/AptConfiguratorDelegate
  1254. instanceKlass @bci org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator <clinit> ()V 111 <appendix> member <vmtarget> ; # org/eclipse/m2e/jdt/internal/AbstractJavaProjectConfigurator$$Lambda+0x000002032b6346b0
  1255. instanceKlass org/eclipse/m2e/core/project/configurator/AbstractProjectConfigurator
  1256. instanceKlass org/eclipse/m2e/jdt/IJavaProjectConfigurator
  1257. instanceKlass org/eclipse/m2e/core/internal/lifecyclemapping/DefaultPluginExecutionMetadata
  1258. instanceKlass org/eclipse/m2e/core/internal/ExtensionReader
  1259. instanceKlass org/eclipse/m2e/core/internal/builder/IIncrementalBuildFramework$BuildContext
  1260. instanceKlass org/eclipse/m2e/core/internal/builder/plexusbuildapi/PlexusBuildAPI
  1261. instanceKlass org/eclipse/m2e/core/internal/builder/IIncrementalBuildFramework
  1262. instanceKlass @bci org/eclipse/m2e/core/internal/builder/MavenBuilderImpl <init> ()V 1 <appendix> argL0 ; # org/eclipse/m2e/core/internal/builder/MavenBuilderImpl$$Lambda+0x000002032b630c40
  1263. instanceKlass org/eclipse/m2e/core/internal/builder/DeltaProvider
  1264. instanceKlass org/eclipse/m2e/core/internal/builder/IIncrementalBuildFramework$BuildDelta
  1265. instanceKlass org/eclipse/m2e/core/internal/builder/IIncrementalBuildFramework$BuildResultCollector
  1266. instanceKlass org/eclipse/m2e/core/internal/builder/MavenBuilderImpl
  1267. instanceKlass org/eclipse/m2e/jdt/AbstractClassifierClasspathProvider
  1268. instanceKlass org/eclipse/m2e/jdt/IClassifierClasspathProvider
  1269. instanceKlass org/eclipse/m2e/jdt/internal/MavenClassifierManager
  1270. instanceKlass org/eclipse/m2e/jdt/internal/launch/MavenLaunchConfigurationListener
  1271. instanceKlass @bci org/eclipse/m2e/jdt/MavenJdtPlugin start (Lorg/osgi/framework/BundleContext;)V 89 <appendix> member <vmtarget> ; # org/eclipse/m2e/jdt/MavenJdtPlugin$$Lambda+0x000002032b62eb80
  1272. instanceKlass org/eclipse/m2e/jdt/internal/DefaultClasspathManagerDelegate
  1273. instanceKlass org/apache/maven/artifact/resolver/filter/AbstractScopeArtifactFilter
  1274. instanceKlass org/eclipse/m2e/jdt/IClasspathDescriptor
  1275. instanceKlass org/eclipse/m2e/jdt/IClasspathManagerDelegate
  1276. instanceKlass org/eclipse/m2e/jdt/internal/BuildPathManager
  1277. instanceKlass org/eclipse/m2e/jdt/IClasspathManager
  1278. instanceKlass org/eclipse/m2e/jdt/IMavenClassifierManager
  1279. instanceKlass org/eclipse/m2e/core/project/configurator/AbstractLifecycleMapping
  1280. instanceKlass @bci org/eclipse/m2e/core/internal/lifecyclemapping/ProjectConfigurationElementSorter <init> (Ljava/util/Collection;Ljava/util/Map;)V 840 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/lifecyclemapping/ProjectConfigurationElementSorter$$Lambda+0x000002032b60b760
  1281. instanceKlass org/codehaus/plexus/util/dag/CycleDetector
  1282. instanceKlass org/codehaus/plexus/util/dag/Vertex
  1283. instanceKlass org/apache/maven/plugin/PluginParameterExpressionEvaluator
  1284. instanceKlass org/codehaus/plexus/component/configurator/expression/TypeAwareExpressionEvaluator
  1285. instanceKlass @bci org/eclipse/m2e/core/internal/project/ProjectCachePlunger register (Lorg/apache/maven/project/MavenProject;Ljava/lang/Object;)V 39 <appendix> argL0 ; # org/eclipse/m2e/core/internal/project/ProjectCachePlunger$$Lambda+0x000002032b60b530
  1286. instanceKlass @bci org/eclipse/m2e/core/internal/project/ProjectCachePlunger register (Lorg/apache/maven/project/MavenProject;Ljava/lang/Object;)V 14 <appendix> argL0 ; # org/eclipse/m2e/core/internal/project/ProjectCachePlunger$$Lambda+0x000002032b60b300
  1287. instanceKlass com/google/inject/internal/Messages$Converter
  1288. instanceKlass com/google/inject/internal/Messages
  1289. instanceKlass org/codehaus/plexus/compiler/CompilerError
  1290. instanceKlass org/codehaus/plexus/util/cli/StreamConsumer
  1291. instanceKlass org/codehaus/plexus/compiler/CompilerOutputStyle
  1292. instanceKlass org/codehaus/plexus/compiler/util/scan/SourceInclusionScanner
  1293. instanceKlass org/codehaus/plexus/compiler/CompilerConfiguration
  1294. instanceKlass org/codehaus/plexus/compiler/util/scan/mapping/SingleTargetSourceMapping
  1295. instanceKlass org/codehaus/plexus/compiler/util/scan/mapping/SuffixMapping
  1296. instanceKlass org/codehaus/plexus/compiler/util/scan/mapping/SourceMapping
  1297. instanceKlass org/codehaus/plexus/compiler/Compiler
  1298. instanceKlass org/codehaus/plexus/compiler/manager/CompilerManager
  1299. instanceKlass org/eclipse/sisu/space/FileEntryIterator
  1300. instanceKlass org/eclipse/sisu/space/ResourceEnumeration
  1301. instanceKlass org/eclipse/sisu/plexus/ComponentDescriptorBeanModule$PlexusDescriptorBeanSource
  1302. instanceKlass org/eclipse/sisu/plexus/ComponentDescriptorBeanModule$ComponentMetadata
  1303. instanceKlass org/apache/maven/plugin/AbstractMojo
  1304. instanceKlass org/apache/maven/plugin/ContextEnabled
  1305. instanceKlass org/apache/maven/plugin/Mojo
  1306. instanceKlass org/eclipse/sisu/plexus/ComponentDescriptorBeanModule
  1307. instanceKlass org/apache/maven/classrealm/ArtifactClassRealmConstituent
  1308. instanceKlass @bci org/apache/maven/RepositoryUtils toArtifacts (Ljava/util/Collection;)Ljava/util/Collection; 6 <appendix> argL0 ; # org/apache/maven/RepositoryUtils$$Lambda+0x000002032b620000
  1309. instanceKlass org/eclipse/aether/util/graph/visitor/TreeDependencyVisitor
  1310. instanceKlass org/eclipse/aether/util/graph/visitor/FilteringDependencyVisitor
  1311. instanceKlass org/eclipse/aether/internal/impl/ArtifactRequestBuilder
  1312. instanceKlass org/eclipse/aether/util/graph/transformer/ConflictResolver$NodeInfo
  1313. instanceKlass org/eclipse/aether/util/graph/transformer/NearestVersionSelector$ConflictGroup
  1314. instanceKlass org/eclipse/aether/util/graph/transformer/ConflictResolver$ConflictItem
  1315. instanceKlass org/eclipse/aether/util/graph/transformer/ConflictResolver$ScopeContext
  1316. instanceKlass org/eclipse/aether/util/graph/transformer/ConflictResolver$ConflictContext
  1317. instanceKlass org/eclipse/aether/util/graph/transformer/ConflictResolver$State
  1318. instanceKlass org/eclipse/aether/util/graph/transformer/ConflictIdSorter$RootQueue
  1319. instanceKlass org/eclipse/aether/util/graph/transformer/ConflictIdSorter$ConflictId
  1320. instanceKlass org/eclipse/aether/util/graph/transformer/ConflictMarker$ConflictGroup
  1321. instanceKlass org/eclipse/aether/util/graph/transformer/ConflictMarker$Key
  1322. instanceKlass org/eclipse/aether/util/graph/transformer/ConflictMarker
  1323. instanceKlass org/eclipse/aether/util/graph/transformer/ConflictIdSorter
  1324. instanceKlass org/eclipse/aether/util/graph/transformer/TransformationContextKeys
  1325. instanceKlass org/eclipse/aether/internal/impl/collect/DefaultDependencyGraphTransformationContext
  1326. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b61d400
  1327. instanceKlass org/eclipse/aether/util/graph/selector/ExclusionDependencySelector$ExclusionComparator
  1328. instanceKlass @bci org/eclipse/aether/internal/impl/collect/bf/DependencyResolutionSkipper$DefaultDependencyResolutionSkipper cache (Lorg/eclipse/aether/graph/DependencyNode;Ljava/util/List;)V 7 <appendix> member <vmtarget> ; # org/eclipse/aether/internal/impl/collect/bf/DependencyResolutionSkipper$DefaultDependencyResolutionSkipper$$Lambda+0x000002032b61b068
  1329. instanceKlass org/eclipse/aether/internal/impl/collect/bf/DependencyResolutionSkipper$DefaultDependencyResolutionSkipper$Coordinate
  1330. instanceKlass @bci org/eclipse/aether/internal/impl/collect/bf/DependencyResolutionSkipper$DefaultDependencyResolutionSkipper$CoordinateManager createCoordinate (Lorg/eclipse/aether/graph/DependencyNode;I)Lorg/eclipse/aether/internal/impl/collect/bf/DependencyResolutionSkipper$DefaultDependencyResolutionSkipper$Coordinate; 8 <appendix> argL0 ; # org/eclipse/aether/internal/impl/collect/bf/DependencyResolutionSkipper$DefaultDependencyResolutionSkipper$CoordinateManager$$Lambda+0x000002032b61ac40
  1331. instanceKlass org/eclipse/aether/internal/impl/collect/bf/DependencyResolutionSkipper$DependencyResolutionResult
  1332. instanceKlass org/eclipse/aether/internal/impl/collect/DataPool$GraphKey
  1333. instanceKlass org/eclipse/aether/internal/impl/collect/DefaultDependencyCycle
  1334. # instanceKlass org/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector$$Lambda+0x000002032b61a3f8
  1335. instanceKlass @bci org/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector lambda$resolveArtifactDescriptorAsync$4 (Lorg/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector$Args;Lorg/eclipse/aether/internal/impl/collect/bf/DependencyProcessingContext;Lorg/eclipse/aether/graph/Dependency;Lorg/eclipse/aether/internal/impl/collect/DependencyCollectorDelegate$Results;)Lorg/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector$DescriptorResolutionResult; 161 <appendix> member <vmtarget> ; # org/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector$$Lambda+0x000002032b61a1d0
  1336. instanceKlass @bci org/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector lambda$resolveArtifactDescriptorAsync$4 (Lorg/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector$Args;Lorg/eclipse/aether/internal/impl/collect/bf/DependencyProcessingContext;Lorg/eclipse/aether/graph/Dependency;Lorg/eclipse/aether/internal/impl/collect/DependencyCollectorDelegate$Results;)Lorg/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector$DescriptorResolutionResult; 145 <appendix> member <vmtarget> ; # org/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector$$Lambda+0x000002032b619fa8
  1337. instanceKlass @bci org/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector lambda$resolveArtifactDescriptorAsync$1 (Lorg/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector$Args;Lorg/eclipse/aether/internal/impl/collect/bf/DependencyProcessingContext;Lorg/eclipse/aether/internal/impl/collect/DependencyCollectorDelegate$Results;Lorg/eclipse/aether/graph/Dependency;Ljava/util/Map;Lorg/eclipse/aether/version/Version;)V 18 <appendix> member <vmtarget> ; # org/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector$$Lambda+0x000002032b619d80
  1338. instanceKlass org/eclipse/aether/internal/impl/collect/DataPool$Descriptor
  1339. instanceKlass @bci org/eclipse/aether/internal/impl/collect/DataPool$HardInternPool intern (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; 6 <appendix> member <vmtarget> ; # org/eclipse/aether/internal/impl/collect/DataPool$HardInternPool$$Lambda+0x000002032b619740
  1340. instanceKlass org/eclipse/aether/graph/Dependency$Exclusions$1
  1341. instanceKlass org/eclipse/aether/internal/impl/collect/DataPool$DescriptorKey
  1342. # instanceKlass org/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector$$Lambda+0x000002032b6190c0
  1343. # instanceKlass org/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector$$Lambda+0x000002032b618e98
  1344. # instanceKlass org/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector$$Lambda+0x000002032b618a48
  1345. instanceKlass @bci org/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector lambda$resolveArtifactDescriptorAsync$4 (Lorg/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector$Args;Lorg/eclipse/aether/internal/impl/collect/bf/DependencyProcessingContext;Lorg/eclipse/aether/graph/Dependency;Lorg/eclipse/aether/internal/impl/collect/DependencyCollectorDelegate$Results;)Lorg/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector$DescriptorResolutionResult; 114 <appendix> member <vmtarget> ; # org/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector$$Lambda+0x000002032b618c70
  1346. # instanceKlass org/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector$$Lambda+0x000002032b618820
  1347. instanceKlass @cpi org/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector 777 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b61c000
  1348. instanceKlass org/eclipse/aether/internal/impl/collect/DataPool$Constraint$VersionRepo
  1349. instanceKlass org/eclipse/aether/internal/impl/collect/DataPool$Constraint
  1350. instanceKlass org/eclipse/aether/internal/impl/collect/DataPool$ConstraintKey
  1351. instanceKlass @bci org/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector$ParallelDescriptorResolver resolveDescriptors (Lorg/eclipse/aether/artifact/Artifact;Ljava/util/concurrent/Callable;)V 10 <appendix> member <vmtarget> ; # org/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector$ParallelDescriptorResolver$$Lambda+0x000002032b618000
  1352. instanceKlass org/eclipse/aether/util/artifact/ArtifactIdUtils
  1353. instanceKlass @bci org/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector resolveArtifactDescriptorAsync (Lorg/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector$Args;Lorg/eclipse/aether/internal/impl/collect/bf/DependencyProcessingContext;Lorg/eclipse/aether/internal/impl/collect/DependencyCollectorDelegate$Results;)V 21 <appendix> member <vmtarget> ; # org/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector$$Lambda+0x000002032b613ce8
  1354. instanceKlass org/eclipse/aether/util/graph/manager/ClassicDependencyManager$Key
  1355. instanceKlass org/eclipse/aether/internal/impl/collect/CollectStepDataImpl
  1356. instanceKlass org/eclipse/aether/collection/CollectStepData
  1357. instanceKlass org/eclipse/aether/util/concurrency/WorkerThreadFactory
  1358. instanceKlass org/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector$ParallelDescriptorResolver
  1359. instanceKlass org/eclipse/aether/internal/impl/collect/bf/DependencyResolutionSkipper$DefaultDependencyResolutionSkipper$CoordinateManager
  1360. instanceKlass org/eclipse/aether/internal/impl/collect/bf/DependencyResolutionSkipper$DefaultDependencyResolutionSkipper$CacheManager
  1361. instanceKlass @bci org/eclipse/aether/util/concurrency/ExecutorUtils <clinit> ()V 0 <appendix> argL0 ; # org/eclipse/aether/util/concurrency/ExecutorUtils$$Lambda+0x000002032b612c58
  1362. instanceKlass @cpi org/eclipse/aether/util/concurrency/ExecutorUtils 106 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b611800
  1363. instanceKlass org/eclipse/aether/util/concurrency/ExecutorUtils
  1364. instanceKlass org/eclipse/aether/graph/DependencyCycle
  1365. instanceKlass org/eclipse/aether/internal/impl/collect/DataPool$HardInternPool
  1366. instanceKlass org/eclipse/aether/internal/impl/collect/DataPool$WeakInternPool
  1367. instanceKlass org/eclipse/aether/internal/impl/collect/DataPool$InternPool
  1368. instanceKlass org/eclipse/aether/internal/impl/collect/CachingArtifactTypeRegistry
  1369. instanceKlass org/apache/maven/plugin/internal/WagonExcluder
  1370. instanceKlass org/eclipse/aether/util/filter/ScopeDependencyFilter
  1371. instanceKlass org/eclipse/aether/util/filter/AndDependencyFilter
  1372. instanceKlass @bci org/apache/maven/plugin/DefaultPluginRealmCache get (Lorg/apache/maven/plugin/PluginRealmCache$Key;Lorg/apache/maven/plugin/PluginRealmCache$PluginRealmSupplier;)Lorg/apache/maven/plugin/PluginRealmCache$CacheRecord; 6 <appendix> member <vmtarget> ; # org/apache/maven/plugin/DefaultPluginRealmCache$$Lambda+0x000002032b617658
  1373. instanceKlass @bci org/apache/maven/plugin/internal/DefaultMavenPluginManager setupPluginRealm (Lorg/apache/maven/plugin/descriptor/PluginDescriptor;Lorg/apache/maven/execution/MavenSession;Ljava/lang/ClassLoader;Ljava/util/List;Lorg/eclipse/aether/graph/DependencyFilter;)V 177 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b611400
  1374. instanceKlass @bci org/apache/maven/plugin/internal/DefaultMavenPluginManager setupPluginRealm (Lorg/apache/maven/plugin/descriptor/PluginDescriptor;Lorg/apache/maven/execution/MavenSession;Ljava/lang/ClassLoader;Ljava/util/List;Lorg/eclipse/aether/graph/DependencyFilter;)V 177 <appendix> member <vmtarget> ; # org/apache/maven/plugin/internal/DefaultMavenPluginManager$$Lambda+0x000002032b617440
  1375. instanceKlass org/apache/maven/plugin/CacheUtils
  1376. instanceKlass org/apache/maven/plugin/DefaultPluginRealmCache$CacheKey
  1377. instanceKlass @bci org/eclipse/m2e/core/internal/embedder/MavenImpl getMojoParameterValue (Lorg/apache/maven/project/MavenProject;Lorg/apache/maven/plugin/MojoExecution;Ljava/lang/String;Ljava/lang/Class;Lorg/eclipse/core/runtime/IProgressMonitor;)Ljava/lang/Object; 10 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/embedder/MavenImpl$$Lambda+0x000002032b60b0e8
  1378. instanceKlass org/apache/maven/shared/utils/logging/AnsiMessageBuilder
  1379. instanceKlass @bci org/fusesource/jansi/Ansi <clinit> ()V 26 <appendix> argL0 ; # org/fusesource/jansi/Ansi$$Lambda+0x000002032b615e10
  1380. instanceKlass org/fusesource/jansi/Ansi
  1381. instanceKlass org/apache/maven/shared/utils/logging/LoggerLevelRenderer
  1382. instanceKlass org/apache/maven/shared/utils/logging/MessageBuilder
  1383. instanceKlass org/apache/maven/shared/utils/logging/MessageUtils
  1384. instanceKlass @bci org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator checkUnknownMojoConfigurationParameters (Lorg/apache/maven/plugin/MojoExecution;)V 200 <appendix> member <vmtarget> ; # org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator$$Lambda+0x000002032b6146b0
  1385. instanceKlass @bci org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator checkUnknownMojoConfigurationParameters (Lorg/apache/maven/plugin/MojoExecution;)V 188 <appendix> member <vmtarget> ; # org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator$$Lambda+0x000002032b614468
  1386. instanceKlass @bci org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator checkUnknownMojoConfigurationParameters (Lorg/apache/maven/plugin/MojoExecution;)V 147 <appendix> member <vmtarget> ; # org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator$$Lambda+0x000002032b614230
  1387. instanceKlass @bci org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator checkUnknownMojoConfigurationParameters (Lorg/apache/maven/plugin/MojoExecution;)V 136 <appendix> argL0 ; # org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator$$Lambda+0x000002032b614000
  1388. instanceKlass @bci org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator checkUnknownMojoConfigurationParameters (Lorg/apache/maven/plugin/MojoExecution;)V 126 <appendix> argL0 ; # org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator$$Lambda+0x000002032b60fc60
  1389. instanceKlass @bci org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator checkUnknownMojoConfigurationParameters (Lorg/apache/maven/plugin/MojoExecution;)V 110 <appendix> argL0 ; # org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator$$Lambda+0x000002032b60fa50
  1390. instanceKlass @bci org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator checkUnknownMojoConfigurationParameters (Lorg/apache/maven/plugin/MojoExecution;)V 102 <appendix> argL0 ; # org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator$$Lambda+0x000002032b60f820
  1391. instanceKlass @bci org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator getUnknownParameters (Lorg/apache/maven/plugin/MojoExecution;Ljava/util/Set;)Ljava/util/Set; 21 <appendix> member <vmtarget> ; # org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator$$Lambda+0x000002032b60f5d8
  1392. instanceKlass @bci org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator getUnknownParameters (Lorg/apache/maven/plugin/MojoExecution;Ljava/util/Set;)Ljava/util/Set; 10 <appendix> argL0 ; # org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator$$Lambda+0x000002032b60f3a8
  1393. instanceKlass @bci org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator checkUnknownMojoConfigurationParameters (Lorg/apache/maven/plugin/MojoExecution;)V 54 <appendix> member <vmtarget> ; # org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator$$Lambda+0x000002032b60f170
  1394. instanceKlass @bci org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator checkUnknownMojoConfigurationParameters (Lorg/apache/maven/plugin/MojoExecution;)V 37 <appendix> argL0 ; # org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator$$Lambda+0x000002032b60ef60
  1395. instanceKlass org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator$$FastClassByGuice$$209548972
  1396. instanceKlass org/apache/maven/model/merge/ModelMerger$NotifierKeyComputer
  1397. instanceKlass org/apache/maven/model/Notifier
  1398. instanceKlass @bci org/apache/maven/model/building/DefaultModelBuilder lambda$getInterpolatedProfiles$1 (Lorg/apache/maven/model/profile/DefaultProfileActivationContext;Lorg/apache/maven/model/building/DefaultModelProblemCollector;Lorg/apache/maven/model/ActivationFile;)V 57 <appendix> member <vmtarget> ; # org/apache/maven/model/building/DefaultModelBuilder$$Lambda+0x000002032b60e638
  1399. instanceKlass @bci org/apache/maven/model/building/DefaultModelBuilder lambda$getInterpolatedProfiles$1 (Lorg/apache/maven/model/profile/DefaultProfileActivationContext;Lorg/apache/maven/model/building/DefaultModelProblemCollector;Lorg/apache/maven/model/ActivationFile;)V 34 <appendix> member <vmtarget> ; # org/apache/maven/model/building/DefaultModelBuilder$$Lambda+0x000002032b60e410
  1400. instanceKlass @bci org/apache/maven/model/building/DefaultModelBuilder lambda$getInterpolatedProfiles$1 (Lorg/apache/maven/model/profile/DefaultProfileActivationContext;Lorg/apache/maven/model/building/DefaultModelProblemCollector;Lorg/apache/maven/model/ActivationFile;)V 8 <appendix> member <vmtarget> ; # org/apache/maven/model/building/DefaultModelBuilder$$Lambda+0x000002032b60e1f8
  1401. instanceKlass @bci org/eclipse/m2e/core/internal/embedder/MavenImpl setupMojoExecution (Lorg/apache/maven/project/MavenProject;Lorg/apache/maven/plugin/MojoExecution;Lorg/eclipse/core/runtime/IProgressMonitor;)Lorg/apache/maven/plugin/MojoExecution; 8 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/embedder/MavenImpl$$Lambda+0x000002032b60aed0
  1402. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b611000
  1403. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b610c00
  1404. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b610800
  1405. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b610400
  1406. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b610000
  1407. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b60dc00
  1408. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b60d800
  1409. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b60d400
  1410. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b60d000
  1411. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b60cc00
  1412. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b60c800
  1413. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b60c400
  1414. instanceKlass org/codehaus/plexus/util/dag/TopologicalSorter
  1415. instanceKlass org/codehaus/plexus/util/dag/DAG
  1416. instanceKlass org/eclipse/m2e/core/internal/lifecyclemapping/ProjectConfigurationElementSorter
  1417. instanceKlass @bci org/eclipse/m2e/core/internal/lifecyclemapping/MojoExecutionFilter <init> (Ljava/util/List;Lorg/eclipse/m2e/core/project/configurator/MojoExecutionKey;)V 22 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/lifecyclemapping/MojoExecutionFilter$$Lambda+0x000002032b60aa60
  1418. instanceKlass @bci org/eclipse/m2e/core/internal/lifecyclemapping/MojoExecutionFilter <init> (Ljava/util/List;Lorg/eclipse/m2e/core/project/configurator/MojoExecutionKey;)V 11 <appendix> argL0 ; # org/eclipse/m2e/core/internal/lifecyclemapping/MojoExecutionFilter$$Lambda+0x000002032b60a830
  1419. instanceKlass @bci org/eclipse/m2e/core/internal/lifecyclemapping/MojoExecutionFilter anyFilterMatches (Lorg/osgi/framework/Bundle;Ljava/util/List;)Z 25 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/lifecyclemapping/MojoExecutionFilter$$Lambda+0x000002032b60a5e8
  1420. instanceKlass @bci org/eclipse/m2e/core/internal/lifecyclemapping/MojoExecutionFilter anyFilterMatches (Lorg/osgi/framework/Bundle;Ljava/util/List;)Z 14 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/lifecyclemapping/MojoExecutionFilter$$Lambda+0x000002032b60a3a0
  1421. instanceKlass org/eclipse/m2e/core/internal/lifecyclemapping/MojoExecutionFilter
  1422. instanceKlass @bci java/util/function/Predicate negate ()Ljava/util/function/Predicate; 1 <appendix> member <vmtarget> ; # java/util/function/Predicate$$Lambda+0x000002032b4f8298
  1423. instanceKlass @cpi java/util/function/Predicate 75 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b60c000
  1424. instanceKlass @bci org/eclipse/m2e/core/internal/lifecyclemapping/SimpleMappingMetadataSource getLifecycleMappingMetadata (Ljava/lang/String;Ljava/util/function/Predicate;)Lorg/eclipse/m2e/core/internal/lifecyclemapping/model/LifecycleMappingMetadata; 16 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/lifecyclemapping/SimpleMappingMetadataSource$$Lambda+0x000002032b609f00
  1425. instanceKlass @bci org/eclipse/m2e/core/internal/lifecyclemapping/PackagingTypeFilter <init> (Ljava/util/List;Ljava/lang/String;)V 22 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/lifecyclemapping/PackagingTypeFilter$$Lambda+0x000002032b609cb8
  1426. instanceKlass org/eclipse/m2e/core/internal/lifecyclemapping/model/LifecycleMappingFilter
  1427. instanceKlass @bci org/eclipse/m2e/core/internal/lifecyclemapping/PackagingTypeFilter <init> (Ljava/util/List;Ljava/lang/String;)V 11 <appendix> argL0 ; # org/eclipse/m2e/core/internal/lifecyclemapping/PackagingTypeFilter$$Lambda+0x000002032b609818
  1428. instanceKlass org/eclipse/m2e/core/internal/lifecyclemapping/PackagingTypeFilter
  1429. instanceKlass @bci org/eclipse/m2e/core/internal/lifecyclemapping/LifecycleMappingFactory asList (Ljava/util/Map;)Ljava/util/List; 73 <appendix> argL0 ; # org/eclipse/m2e/core/internal/lifecyclemapping/LifecycleMappingFactory$$Lambda+0x000002032b6093b0
  1430. instanceKlass @bci org/eclipse/m2e/core/internal/lifecyclemapping/LifecycleMappingFactory asList (Ljava/util/Map;)Ljava/util/List; 63 <appendix> argL0 ; # org/eclipse/m2e/core/internal/lifecyclemapping/LifecycleMappingFactory$$Lambda+0x000002032b609180
  1431. instanceKlass @bci org/eclipse/m2e/core/internal/lifecyclemapping/LifecycleMappingFactory asList (Ljava/util/Map;)Ljava/util/List; 53 <appendix> argL0 ; # org/eclipse/m2e/core/internal/lifecyclemapping/LifecycleMappingFactory$$Lambda+0x000002032b608f40
  1432. instanceKlass @bci org/eclipse/m2e/core/internal/lifecyclemapping/LifecycleMappingFactory asList (Ljava/util/Map;)Ljava/util/List; 43 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/lifecyclemapping/LifecycleMappingFactory$$Lambda+0x000002032b608d08
  1433. instanceKlass @bci java/util/Map$Entry comparingByKey ()Ljava/util/Comparator; 0 <appendix> argL0 ; # java/util/Map$Entry$$Lambda+0x000002032b4f8010
  1434. instanceKlass @bci org/eclipse/m2e/core/internal/embedder/MavenImpl resolve (Lorg/apache/maven/artifact/Artifact;Ljava/util/List;Lorg/eclipse/core/runtime/IProgressMonitor;)Lorg/apache/maven/artifact/Artifact; 29 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/embedder/MavenImpl$$Lambda+0x000002032b608af0
  1435. instanceKlass org/eclipse/m2e/core/internal/lifecyclemapping/SimpleMappingMetadataSource
  1436. instanceKlass org/codehaus/plexus/util/xml/Xpp3DomWriter
  1437. instanceKlass org/codehaus/plexus/util/xml/PrettyPrintXMLWriter
  1438. instanceKlass org/apache/maven/model/interpolation/ProblemDetectingValueSource
  1439. instanceKlass @bci org/eclipse/m2e/core/internal/embedder/MavenImpl interpolateModel (Lorg/apache/maven/project/MavenProject;Lorg/apache/maven/model/Model;)V 35 <appendix> argL0 ; # org/eclipse/m2e/core/internal/embedder/MavenImpl$$Lambda+0x000002032b608438
  1440. instanceKlass org/eclipse/m2e/core/internal/lifecyclemapping/AnnotationMappingMetadataSource
  1441. instanceKlass org/eclipse/m2e/core/internal/lifecyclemapping/MappingMetadataSource
  1442. instanceKlass org/eclipse/m2e/core/internal/lifecyclemapping/model/LifecycleMappingMetadata
  1443. instanceKlass org/eclipse/m2e/core/internal/lifecyclemapping/model/PluginExecutionFilter
  1444. instanceKlass org/eclipse/m2e/core/internal/lifecyclemapping/model/PluginExecutionMetadata
  1445. instanceKlass org/eclipse/m2e/core/internal/lifecyclemapping/model/LifecycleMappingMetadataSource
  1446. instanceKlass org/eclipse/m2e/core/internal/lifecyclemapping/model/io/xpp3/LifecycleMappingMetadataSourceXpp3Reader$1
  1447. instanceKlass org/eclipse/m2e/core/internal/lifecyclemapping/model/io/xpp3/LifecycleMappingMetadataSourceXpp3Reader$ContentTransformer
  1448. instanceKlass org/eclipse/m2e/core/internal/lifecyclemapping/model/io/xpp3/LifecycleMappingMetadataSourceXpp3Reader
  1449. instanceKlass @bci org/eclipse/m2e/core/internal/lifecyclemapping/LifecycleMappingResult getLifecycleMapping ()Lorg/eclipse/m2e/core/project/configurator/AbstractLifecycleMapping; 9 <appendix> argL0 ; # org/eclipse/m2e/core/internal/lifecyclemapping/LifecycleMappingResult$$Lambda+0x000002032b601000
  1450. instanceKlass org/eclipse/m2e/core/internal/lifecyclemapping/LifecycleMappingResult
  1451. instanceKlass org/eclipse/m2e/core/lifecyclemapping/model/IPluginExecutionMetadata
  1452. instanceKlass org/eclipse/m2e/core/internal/lifecyclemapping/LifecycleMappingFactory
  1453. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/MavenProjectFacade getMojoExecutions (Lorg/eclipse/core/runtime/IProgressMonitor;)Ljava/util/List; 27 <appendix> argL0 ; # org/eclipse/m2e/core/internal/project/registry/MavenProjectFacade$$Lambda+0x000002032b5fdf80
  1454. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/MavenProjectFacade getMojoExecutions (Lorg/eclipse/core/runtime/IProgressMonitor;)Ljava/util/List; 17 <appendix> argL0 ; # org/eclipse/m2e/core/internal/project/registry/MavenProjectFacade$$Lambda+0x000002032b5fdd40
  1455. instanceKlass org/apache/maven/lifecycle/internal/ExecutionPlanItem
  1456. instanceKlass org/apache/maven/plugin/MavenPluginValidator
  1457. instanceKlass org/codehaus/plexus/component/repository/ComponentDependency
  1458. instanceKlass org/codehaus/plexus/component/repository/ComponentRequirement
  1459. instanceKlass org/codehaus/plexus/configuration/DefaultPlexusConfiguration
  1460. instanceKlass @bci org/apache/maven/plugin/internal/PlexusContainerDefaultDependenciesValidator doValidate (Lorg/eclipse/aether/RepositorySystemSession;Lorg/eclipse/aether/artifact/Artifact;Lorg/eclipse/aether/resolution/ArtifactDescriptorResult;)V 19 <appendix> argL0 ; # org/apache/maven/plugin/internal/PlexusContainerDefaultDependenciesValidator$$Lambda+0x000002032b6078b0
  1461. instanceKlass @bci org/apache/maven/plugin/internal/PlexusContainerDefaultDependenciesValidator doValidate (Lorg/eclipse/aether/RepositorySystemSession;Lorg/eclipse/aether/artifact/Artifact;Lorg/eclipse/aether/resolution/ArtifactDescriptorResult;)V 9 <appendix> argL0 ; # org/apache/maven/plugin/internal/PlexusContainerDefaultDependenciesValidator$$Lambda+0x000002032b607670
  1462. instanceKlass @bci org/apache/maven/plugin/internal/DefaultPluginValidationManager$PluginValidationIssues reportPluginIssue (Lorg/apache/maven/plugin/PluginValidationManager$IssueLocality;Ljava/lang/String;Ljava/lang/String;)V 18 <appendix> argL0 ; # org/apache/maven/plugin/internal/DefaultPluginValidationManager$PluginValidationIssues$$Lambda+0x000002032b607440
  1463. instanceKlass @bci org/apache/maven/plugin/internal/DefaultPluginValidationManager reportPluginValidationIssue (Lorg/apache/maven/plugin/PluginValidationManager$IssueLocality;Lorg/eclipse/aether/RepositorySystemSession;Lorg/eclipse/aether/artifact/Artifact;Ljava/lang/String;)V 30 <appendix> argL0 ; # org/apache/maven/plugin/internal/DefaultPluginValidationManager$$Lambda+0x000002032b607210
  1464. instanceKlass @bci org/apache/maven/plugin/internal/DefaultPluginValidationManager pluginIssues (Lorg/eclipse/aether/RepositorySystemSession;)Ljava/util/concurrent/ConcurrentHashMap; 9 <appendix> argL0 ; # org/apache/maven/plugin/internal/DefaultPluginValidationManager$$Lambda+0x000002032b607000
  1465. instanceKlass @bci org/apache/maven/plugin/internal/DefaultPluginValidationManager validationPluginExcludes (Lorg/eclipse/aether/RepositorySystemSession;)Ljava/util/List; 11 <appendix> member <vmtarget> ; # org/apache/maven/plugin/internal/DefaultPluginValidationManager$$Lambda+0x000002032b606de8
  1466. instanceKlass @bci org/apache/maven/plugin/internal/MavenScopeDependenciesValidator doValidate (Lorg/eclipse/aether/RepositorySystemSession;Lorg/eclipse/aether/artifact/Artifact;Lorg/eclipse/aether/resolution/ArtifactDescriptorResult;)V 59 <appendix> argL0 ; # org/apache/maven/plugin/internal/MavenScopeDependenciesValidator$$Lambda+0x000002032b6069d0
  1467. instanceKlass @bci org/apache/maven/plugin/internal/MavenScopeDependenciesValidator doValidate (Lorg/eclipse/aether/RepositorySystemSession;Lorg/eclipse/aether/artifact/Artifact;Lorg/eclipse/aether/resolution/ArtifactDescriptorResult;)V 49 <appendix> argL0 ; # org/apache/maven/plugin/internal/MavenScopeDependenciesValidator$$Lambda+0x000002032b606790
  1468. instanceKlass @bci org/apache/maven/plugin/internal/MavenScopeDependenciesValidator doValidate (Lorg/eclipse/aether/RepositorySystemSession;Lorg/eclipse/aether/artifact/Artifact;Lorg/eclipse/aether/resolution/ArtifactDescriptorResult;)V 39 <appendix> argL0 ; # org/apache/maven/plugin/internal/MavenScopeDependenciesValidator$$Lambda+0x000002032b606550
  1469. instanceKlass @bci org/apache/maven/plugin/internal/MavenScopeDependenciesValidator doValidate (Lorg/eclipse/aether/RepositorySystemSession;Lorg/eclipse/aether/artifact/Artifact;Lorg/eclipse/aether/resolution/ArtifactDescriptorResult;)V 29 <appendix> argL0 ; # org/apache/maven/plugin/internal/MavenScopeDependenciesValidator$$Lambda+0x000002032b606310
  1470. instanceKlass @bci org/apache/maven/plugin/internal/MavenScopeDependenciesValidator doValidate (Lorg/eclipse/aether/RepositorySystemSession;Lorg/eclipse/aether/artifact/Artifact;Lorg/eclipse/aether/resolution/ArtifactDescriptorResult;)V 19 <appendix> argL0 ; # org/apache/maven/plugin/internal/MavenScopeDependenciesValidator$$Lambda+0x000002032b6060e0
  1471. instanceKlass @bci org/apache/maven/plugin/internal/MavenScopeDependenciesValidator doValidate (Lorg/eclipse/aether/RepositorySystemSession;Lorg/eclipse/aether/artifact/Artifact;Lorg/eclipse/aether/resolution/ArtifactDescriptorResult;)V 9 <appendix> argL0 ; # org/apache/maven/plugin/internal/MavenScopeDependenciesValidator$$Lambda+0x000002032b605ea0
  1472. instanceKlass @bci org/apache/maven/plugin/internal/MavenMixedDependenciesValidator doValidate (Lorg/eclipse/aether/RepositorySystemSession;Lorg/eclipse/aether/artifact/Artifact;Lorg/eclipse/aether/resolution/ArtifactDescriptorResult;)V 39 <appendix> argL0 ; # org/apache/maven/plugin/internal/MavenMixedDependenciesValidator$$Lambda+0x000002032b605c70
  1473. instanceKlass @bci org/apache/maven/plugin/internal/MavenMixedDependenciesValidator doValidate (Lorg/eclipse/aether/RepositorySystemSession;Lorg/eclipse/aether/artifact/Artifact;Lorg/eclipse/aether/resolution/ArtifactDescriptorResult;)V 29 <appendix> argL0 ; # org/apache/maven/plugin/internal/MavenMixedDependenciesValidator$$Lambda+0x000002032b605a30
  1474. instanceKlass @bci org/apache/maven/plugin/internal/MavenMixedDependenciesValidator doValidate (Lorg/eclipse/aether/RepositorySystemSession;Lorg/eclipse/aether/artifact/Artifact;Lorg/eclipse/aether/resolution/ArtifactDescriptorResult;)V 19 <appendix> argL0 ; # org/apache/maven/plugin/internal/MavenMixedDependenciesValidator$$Lambda+0x000002032b6057f0
  1475. instanceKlass @bci org/apache/maven/plugin/internal/MavenMixedDependenciesValidator doValidate (Lorg/eclipse/aether/RepositorySystemSession;Lorg/eclipse/aether/artifact/Artifact;Lorg/eclipse/aether/resolution/ArtifactDescriptorResult;)V 9 <appendix> argL0 ; # org/apache/maven/plugin/internal/MavenMixedDependenciesValidator$$Lambda+0x000002032b6055c0
  1476. instanceKlass @bci org/apache/maven/plugin/internal/Maven2DependenciesValidator doValidate (Lorg/eclipse/aether/RepositorySystemSession;Lorg/eclipse/aether/artifact/Artifact;Lorg/eclipse/aether/resolution/ArtifactDescriptorResult;)V 49 <appendix> argL0 ; # org/apache/maven/plugin/internal/Maven2DependenciesValidator$$Lambda+0x000002032b605380
  1477. instanceKlass @bci org/apache/maven/plugin/internal/Maven2DependenciesValidator doValidate (Lorg/eclipse/aether/RepositorySystemSession;Lorg/eclipse/aether/artifact/Artifact;Lorg/eclipse/aether/resolution/ArtifactDescriptorResult;)V 39 <appendix> argL0 ; # org/apache/maven/plugin/internal/Maven2DependenciesValidator$$Lambda+0x000002032b605150
  1478. instanceKlass @bci org/apache/maven/plugin/internal/Maven2DependenciesValidator doValidate (Lorg/eclipse/aether/RepositorySystemSession;Lorg/eclipse/aether/artifact/Artifact;Lorg/eclipse/aether/resolution/ArtifactDescriptorResult;)V 29 <appendix> argL0 ; # org/apache/maven/plugin/internal/Maven2DependenciesValidator$$Lambda+0x000002032b604f10
  1479. instanceKlass @bci org/apache/maven/plugin/internal/Maven2DependenciesValidator doValidate (Lorg/eclipse/aether/RepositorySystemSession;Lorg/eclipse/aether/artifact/Artifact;Lorg/eclipse/aether/resolution/ArtifactDescriptorResult;)V 19 <appendix> argL0 ; # org/apache/maven/plugin/internal/Maven2DependenciesValidator$$Lambda+0x000002032b604cd0
  1480. instanceKlass @bci org/apache/maven/plugin/internal/Maven2DependenciesValidator doValidate (Lorg/eclipse/aether/RepositorySystemSession;Lorg/eclipse/aether/artifact/Artifact;Lorg/eclipse/aether/resolution/ArtifactDescriptorResult;)V 9 <appendix> argL0 ; # org/apache/maven/plugin/internal/Maven2DependenciesValidator$$Lambda+0x000002032b604aa0
  1481. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b600400
  1482. instanceKlass org/apache/maven/repository/internal/DefaultModelCache$Key
  1483. instanceKlass org/apache/maven/repository/internal/DefaultModelResolver
  1484. instanceKlass org/apache/maven/repository/internal/DefaultModelCache
  1485. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/EclipseWorkspaceArtifactRepository setDisabled ()Lorg/eclipse/m2e/core/internal/project/registry/EclipseWorkspaceArtifactRepository$Disabled; 15 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/project/registry/EclipseWorkspaceArtifactRepository$$Lambda+0x000002032b5fdb18
  1486. instanceKlass @cpi org/eclipse/m2e/core/internal/project/registry/EclipseWorkspaceArtifactRepository 393 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b600000
  1487. instanceKlass org/eclipse/m2e/core/internal/project/registry/EclipseWorkspaceArtifactRepository$Disabled
  1488. instanceKlass @bci org/apache/maven/plugin/DefaultPluginDescriptorCache get (Lorg/apache/maven/plugin/PluginDescriptorCache$Key;Lorg/apache/maven/plugin/PluginDescriptorCache$PluginDescriptorSupplier;)Lorg/apache/maven/plugin/descriptor/PluginDescriptor; 6 <appendix> member <vmtarget> ; # org/apache/maven/plugin/DefaultPluginDescriptorCache$$Lambda+0x000002032b5fbc00
  1489. instanceKlass @bci org/apache/maven/plugin/internal/DefaultMavenPluginManager getPluginDescriptor (Lorg/apache/maven/model/Plugin;Ljava/util/List;Lorg/eclipse/aether/RepositorySystemSession;)Lorg/apache/maven/plugin/descriptor/PluginDescriptor; 24 <appendix> member <vmtarget> ; # org/apache/maven/plugin/internal/DefaultMavenPluginManager$$Lambda+0x000002032b5e7da8
  1490. instanceKlass org/apache/maven/plugin/DefaultPluginDescriptorCache$CacheKey
  1491. instanceKlass org/apache/maven/lifecycle/internal/GoalTask
  1492. instanceKlass org/apache/maven/lifecycle/internal/LifecycleTask
  1493. instanceKlass @bci org/eclipse/m2e/core/internal/IMavenToolbox calculateExecutionPlan (Ljava/util/Collection;Z)Lorg/apache/maven/lifecycle/MavenExecutionPlan; 52 <appendix> argL0 ; # org/eclipse/m2e/core/internal/IMavenToolbox$$Lambda+0x000002032b5fd718
  1494. instanceKlass org/apache/maven/project/artifact/DefaultProjectArtifactsCache$$FastClassByGuice$$208471695
  1495. instanceKlass org/apache/maven/lifecycle/internal/DefaultLifecycleMappingDelegate$$FastClassByGuice$$206680458
  1496. instanceKlass org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator$$FastClassByGuice$$205877680
  1497. instanceKlass org/apache/maven/lifecycle/DefaultLifecycleExecutor$$FastClassByGuice$$204966898
  1498. instanceKlass @bci org/eclipse/jdt/ls/core/internal/handlers/WorkspaceDiagnosticsHandler toDiagnosticArray (Lorg/eclipse/lsp4j/Range;Ljava/util/Collection;Z)Ljava/util/List; 18 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b5fb800
  1499. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/MavenProjectFacade calculateExecutionPlan (Lorg/apache/maven/project/MavenProject;Ljava/util/Collection;ZLorg/eclipse/core/runtime/IProgressMonitor;)Lorg/apache/maven/lifecycle/MavenExecutionPlan; 7 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/project/registry/MavenProjectFacade$$Lambda+0x000002032b5fd500
  1500. instanceKlass @cpi org/eclipse/m2e/core/internal/project/registry/MavenProjectFacade 913 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b5fb400
  1501. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager refresh (Lorg/eclipse/m2e/core/internal/project/registry/MutableProjectRegistry;Lorg/eclipse/m2e/core/internal/project/registry/DependencyResolutionContext;Lorg/eclipse/core/runtime/IProgressMonitor;)V 747 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b5fb000
  1502. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager refresh (Lorg/eclipse/m2e/core/internal/project/registry/MutableProjectRegistry;Lorg/eclipse/m2e/core/internal/project/registry/DependencyResolutionContext;Lorg/eclipse/core/runtime/IProgressMonitor;)V 747 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager$$Lambda+0x000002032b5fd2e8
  1503. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/MavenProjectCache$CacheLine updateProject (Lorg/eclipse/m2e/core/project/IMavenProjectFacade;Lorg/apache/maven/project/MavenProject;)V 15 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/project/registry/MavenProjectCache$CacheLine$$Lambda+0x000002032b5fd0c0
  1504. instanceKlass org/eclipse/m2e/core/internal/project/registry/ProjectProcessingTracker
  1505. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager refresh (Lorg/eclipse/m2e/core/internal/project/registry/MutableProjectRegistry;Lorg/eclipse/m2e/core/internal/project/registry/DependencyResolutionContext;Lorg/eclipse/core/runtime/IProgressMonitor;)V 446 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager$$Lambda+0x000002032b5fcc88
  1506. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/MutableProjectRegistry setRequirements (Lorg/eclipse/core/resources/IFile;Ljava/util/Set;)Ljava/util/Set; 57 <appendix> argL0 ; # org/eclipse/m2e/core/internal/project/registry/MutableProjectRegistry$$Lambda+0x000002032b5fca58
  1507. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/MutableProjectRegistry setRequirements (Lorg/eclipse/core/resources/IFile;Ljava/util/Set;)Ljava/util/Set; 39 <appendix> argL0 ; # org/eclipse/m2e/core/internal/project/registry/MutableProjectRegistry$$Lambda+0x000002032b5fc828
  1508. instanceKlass org/eclipse/m2e/core/internal/project/registry/RequiredCapability
  1509. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b5fac00
  1510. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b5fa800
  1511. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b5fa400
  1512. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b5fa000
  1513. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b5f9c00
  1514. instanceKlass @bci java/lang/invoke/BootstrapMethodInvoker invoke (Ljava/lang/Class;Ljava/lang/invoke/MethodHandle;Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Class;)Ljava/lang/Object; 930 <adapter> ; # java/lang/invoke/LambdaForm$MH+0x000002032b5f9800
  1515. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/MutableProjectRegistry setProject (Lorg/eclipse/core/resources/IFile;Lorg/eclipse/m2e/core/internal/project/registry/MavenProjectFacade;)V 78 <appendix> argL0 ; # org/eclipse/m2e/core/internal/project/registry/MutableProjectRegistry$$Lambda+0x000002032b5d3bf8
  1516. instanceKlass @bci org/apache/maven/execution/MavenSession setProjects (Ljava/util/List;)V 40 <appendix> argL0 ; # org/apache/maven/execution/MavenSession$$Lambda+0x000002032b5e6ce8
  1517. instanceKlass @bci org/apache/maven/execution/MavenSession setProjects (Ljava/util/List;)V 22 <appendix> member <vmtarget> ; # org/apache/maven/execution/MavenSession$$Lambda+0x000002032b5e6ad0
  1518. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager lambda$14 (Ljava/util/List;Ljava/util/Set;Lorg/apache/maven/project/ProjectBuildingRequest;Lorg/eclipse/m2e/core/internal/project/registry/MavenProjectFacade;)V 9 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager$$Lambda+0x000002032b5d39e0
  1519. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/MavenProjectFacade createExecutionContext ()Lorg/eclipse/m2e/core/embedder/IMavenExecutionContext; 98 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/project/registry/MavenProjectFacade$$Lambda+0x000002032b5d37a8
  1520. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager getMavenProject (Lorg/eclipse/m2e/core/project/IMavenProjectFacade;Lorg/eclipse/core/runtime/IProgressMonitor;)Lorg/apache/maven/project/MavenProject; 7 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager$$Lambda+0x000002032b5d3570
  1521. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager lambda$11 (Ljava/util/Collection;Lorg/eclipse/m2e/core/project/IProjectConfiguration;Ljava/util/Map;Lorg/eclipse/m2e/core/embedder/IMavenExecutionContext;Lorg/eclipse/core/runtime/IProgressMonitor;)Ljava/util/Map; 324 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager$$Lambda+0x000002032b5d3348
  1522. instanceKlass org/apache/maven/AbstractMavenLifecycleParticipant
  1523. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b5f9400
  1524. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b5f9000
  1525. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b5f8c00
  1526. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b5f8800
  1527. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b5f8400
  1528. instanceKlass @bci java/lang/invoke/BootstrapMethodInvoker invoke (Ljava/lang/Class;Ljava/lang/invoke/MethodHandle;Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Class;)Ljava/lang/Object; 894 <adapter> ; # java/lang/invoke/LambdaForm$MH+0x000002032b5f8000
  1529. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/MavenProjectFacade toRepositoryReferences (Ljava/util/List;)Ljava/util/Set; 16 <appendix> argL0 ; # org/eclipse/m2e/core/internal/project/registry/MavenProjectFacade$$Lambda+0x000002032b5d3138
  1530. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/MavenProjectFacade toRepositoryReferences (Ljava/util/List;)Ljava/util/Set; 6 <appendix> argL0 ; # org/eclipse/m2e/core/internal/project/registry/MavenProjectFacade$$Lambda+0x000002032b5d2f08
  1531. instanceKlass org/eclipse/m2e/core/project/MavenProjectUtils
  1532. instanceKlass org/eclipse/m2e/core/internal/project/registry/MavenProjectFacade$MavenProjectConfiguration
  1533. instanceKlass org/eclipse/m2e/core/internal/markers/IEditorMarkerService
  1534. instanceKlass org/eclipse/m2e/core/internal/markers/MarkerUtils
  1535. instanceKlass org/apache/maven/project/DefaultProjectBuildingResult
  1536. instanceKlass org/eclipse/core/resources/IResourceStatus
  1537. instanceKlass org/eclipse/buildship/core/internal/workspace/SynchronizingBuildScriptUpdateListener$1
  1538. instanceKlass org/eclipse/debug/internal/core/LaunchDelegate
  1539. instanceKlass org/eclipse/debug/core/ILaunchConfigurationWorkingCopy
  1540. instanceKlass org/eclipse/debug/core/ILaunchConfigurationType
  1541. instanceKlass org/eclipse/buildship/core/internal/configuration/GradleProjectNatureDeconfiguredEvent
  1542. instanceKlass org/eclipse/buildship/core/internal/configuration/GradleProjectNatureConfiguredEvent
  1543. instanceKlass org/eclipse/buildship/core/internal/workspace/WorkbenchShutdownEvent
  1544. instanceKlass org/eclipse/buildship/core/internal/workspace/BaseProjectChangedEvent
  1545. instanceKlass org/eclipse/buildship/core/internal/workspace/ProjectChangeListener$1
  1546. instanceKlass org/eclipse/debug/internal/core/IInternalDebugCoreConstants
  1547. instanceKlass org/eclipse/debug/internal/core/Preferences
  1548. instanceKlass org/eclipse/debug/core/commands/IDebugCommandRequest
  1549. instanceKlass org/eclipse/debug/core/IRequest
  1550. instanceKlass org/eclipse/debug/internal/core/StepFilterManager
  1551. instanceKlass org/eclipse/debug/internal/core/LaunchManager$LaunchManagerVisitor
  1552. instanceKlass org/eclipse/jdt/internal/core/SimpleDelta
  1553. instanceKlass org/eclipse/jdt/internal/core/DeltaProcessor$2
  1554. instanceKlass @bci org/eclipse/core/internal/resources/CheckMissingNaturesListener resourceChanged (Lorg/eclipse/core/resources/IResourceChangeEvent;)V 25 <appendix> member <vmtarget> ; # org/eclipse/core/internal/resources/CheckMissingNaturesListener$$Lambda+0x000002032b5e8000
  1555. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b5e5c00
  1556. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b5e5800
  1557. instanceKlass org/apache/maven/lifecycle/mapping/DefaultLifecycleMapping$$FastClassByGuice$$203814162
  1558. instanceKlass @bci org/apache/maven/model/building/DefaultModelBuilder lambda$getInterpolatedProfiles$4 (Lorg/apache/maven/model/Activation;Lorg/codehaus/plexus/interpolation/RegexBasedInterpolator;Lorg/apache/maven/model/building/DefaultModelProblemCollector;Ljava/lang/String;)V 32 <appendix> member <vmtarget> ; # org/apache/maven/model/building/DefaultModelBuilder$$Lambda+0x000002032b5e6218
  1559. instanceKlass @bci org/apache/maven/model/building/DefaultModelBuilder lambda$getInterpolatedProfiles$4 (Lorg/apache/maven/model/Activation;Lorg/codehaus/plexus/interpolation/RegexBasedInterpolator;Lorg/apache/maven/model/building/DefaultModelProblemCollector;Ljava/lang/String;)V 12 <appendix> member <vmtarget> ; # org/apache/maven/model/building/DefaultModelBuilder$$Lambda+0x000002032b5e6000
  1560. instanceKlass org/apache/maven/model/Site
  1561. instanceKlass org/apache/maven/lifecycle/Lifecycle$__sisu8$$FastClassByGuice$$203326820
  1562. instanceKlass org/apache/maven/lifecycle/Lifecycle$__sisu7$$FastClassByGuice$$201520993
  1563. instanceKlass org/apache/maven/lifecycle/mapping/LifecycleMojo
  1564. instanceKlass org/apache/maven/lifecycle/mapping/DefaultLifecycleMapping$__sisu1$$FastClassByGuice$$200692724
  1565. instanceKlass org/apache/maven/lifecycle/mapping/Lifecycle
  1566. instanceKlass org/apache/maven/model/building/DefaultModelBuildingEvent
  1567. instanceKlass org/apache/maven/model/building/ModelBuildingEventCatapult$1
  1568. instanceKlass org/apache/maven/project/DefaultProjectBuilder$InterimResult
  1569. instanceKlass org/apache/maven/artifact/handler/DefaultArtifactHandler$__sisu13$$FastClassByGuice$$200167681
  1570. instanceKlass org/apache/maven/artifact/versioning/Restriction
  1571. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b5e5400
  1572. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b5e5000
  1573. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b5e4c00
  1574. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b5e4800
  1575. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b5e4400
  1576. instanceKlass org/apache/maven/artifact/handler/DefaultArtifactHandler$__sisu9$$FastClassByGuice$$198457445
  1577. instanceKlass org/apache/maven/artifact/ArtifactUtils
  1578. instanceKlass org/apache/maven/artifact/DefaultArtifact
  1579. instanceKlass org/apache/maven/artifact/handler/DefaultArtifactHandler$$FastClassByGuice$$198004800
  1580. instanceKlass org/apache/maven/artifact/versioning/ComparableVersion$StringItem
  1581. instanceKlass org/apache/maven/repository/internal/ArtifactDescriptorUtils
  1582. instanceKlass @bci org/apache/maven/model/building/DefaultModelBuilder interpolateModel (Lorg/apache/maven/model/Model;Lorg/apache/maven/model/building/ModelBuildingRequest;Lorg/apache/maven/model/building/ModelProblemCollector;)Lorg/apache/maven/model/Model; 219 <appendix> member <vmtarget> ; # org/apache/maven/model/building/DefaultModelBuilder$$Lambda+0x000002032b5e1bb8
  1583. instanceKlass @cpi org/apache/maven/model/building/DefaultModelBuilder 1548 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b5e4000
  1584. instanceKlass org/apache/maven/model/Extension
  1585. instanceKlass org/codehaus/plexus/interpolation/util/StringUtils
  1586. instanceKlass org/apache/maven/model/DistributionManagement
  1587. instanceKlass org/apache/maven/model/MailingList
  1588. instanceKlass org/apache/maven/model/CiManagement
  1589. instanceKlass org/apache/maven/model/IssueManagement
  1590. instanceKlass org/apache/maven/model/Prerequisites
  1591. instanceKlass org/apache/maven/model/Organization
  1592. instanceKlass org/codehaus/plexus/interpolation/reflection/MethodMap
  1593. instanceKlass org/codehaus/plexus/interpolation/reflection/ClassMap$CacheMiss
  1594. instanceKlass org/codehaus/plexus/interpolation/reflection/ClassMap
  1595. instanceKlass org/codehaus/plexus/interpolation/reflection/ReflectionValueExtractor$Tokenizer
  1596. instanceKlass org/codehaus/plexus/interpolation/reflection/ReflectionValueExtractor
  1597. instanceKlass org/codehaus/plexus/interpolation/util/ValueSourceUtils
  1598. instanceKlass org/apache/maven/model/interpolation/StringVisitorModelInterpolator$ModelVisitor
  1599. instanceKlass org/apache/maven/model/interpolation/StringVisitorModelInterpolator$1
  1600. instanceKlass org/codehaus/plexus/interpolation/PrefixAwareRecursionInterceptor
  1601. instanceKlass org/codehaus/plexus/interpolation/StringSearchInterpolator
  1602. instanceKlass org/apache/maven/model/interpolation/UrlNormalizingPostProcessor
  1603. instanceKlass org/apache/maven/model/interpolation/PathTranslatingPostProcessor
  1604. instanceKlass org/apache/maven/model/interpolation/MavenBuildTimestamp
  1605. instanceKlass org/codehaus/plexus/interpolation/PrefixedValueSourceWrapper
  1606. instanceKlass org/codehaus/plexus/interpolation/FeedbackEnabledValueSource
  1607. instanceKlass org/codehaus/plexus/interpolation/AbstractDelegatingValueSource
  1608. instanceKlass org/codehaus/plexus/interpolation/QueryEnabledValueSource
  1609. instanceKlass org/apache/maven/model/merge/ModelMerger$ExtensionKeyComputer
  1610. instanceKlass org/apache/maven/model/merge/ModelMerger$ResourceKeyComputer
  1611. instanceKlass org/apache/maven/model/merge/ModelMerger$SourceDominant
  1612. instanceKlass org/apache/maven/model/merge/ModelMerger$DependencyKeyComputer
  1613. instanceKlass @bci org/apache/maven/model/building/DefaultModelBuilder getInterpolatedProfiles (Lorg/apache/maven/model/Model;Lorg/apache/maven/model/profile/DefaultProfileActivationContext;Lorg/apache/maven/model/building/DefaultModelProblemCollector;)Ljava/util/List; 205 <appendix> member <vmtarget> ; # org/apache/maven/model/building/DefaultModelBuilder$$Lambda+0x000002032b5dc2c8
  1614. instanceKlass @bci org/apache/maven/model/building/DefaultModelBuilder getInterpolatedProfiles (Lorg/apache/maven/model/Model;Lorg/apache/maven/model/profile/DefaultProfileActivationContext;Lorg/apache/maven/model/building/DefaultModelProblemCollector;)Ljava/util/List; 191 <appendix> argL0 ; # org/apache/maven/model/building/DefaultModelBuilder$$Lambda+0x000002032b5dc098
  1615. instanceKlass @bci org/apache/maven/model/building/DefaultModelBuilder lambda$getInterpolatedProfiles$3 (Lorg/codehaus/plexus/interpolation/RegexBasedInterpolator;Lorg/apache/maven/model/building/DefaultModelProblemCollector;Lorg/apache/maven/model/ActivationProperty;)V 61 <appendix> member <vmtarget> ; # org/apache/maven/model/building/DefaultModelBuilder$$Lambda+0x000002032b5dbe70
  1616. instanceKlass @bci org/apache/maven/model/building/DefaultModelBuilder lambda$getInterpolatedProfiles$3 (Lorg/codehaus/plexus/interpolation/RegexBasedInterpolator;Lorg/apache/maven/model/building/DefaultModelProblemCollector;Lorg/apache/maven/model/ActivationProperty;)V 38 <appendix> member <vmtarget> ; # org/apache/maven/model/building/DefaultModelBuilder$$Lambda+0x000002032b5dbc48
  1617. instanceKlass @bci org/apache/maven/model/building/DefaultModelBuilder lambda$getInterpolatedProfiles$3 (Lorg/codehaus/plexus/interpolation/RegexBasedInterpolator;Lorg/apache/maven/model/building/DefaultModelProblemCollector;Lorg/apache/maven/model/ActivationProperty;)V 12 <appendix> member <vmtarget> ; # org/apache/maven/model/building/DefaultModelBuilder$$Lambda+0x000002032b5dba30
  1618. instanceKlass org/apache/maven/model/building/DefaultModelBuilder$InterpolateString
  1619. instanceKlass org/apache/maven/model/building/DefaultModelBuilder$1Interpolation
  1620. instanceKlass @bci org/apache/maven/model/building/DefaultModelBuilder getInterpolatedProfiles (Lorg/apache/maven/model/Model;Lorg/apache/maven/model/profile/DefaultProfileActivationContext;Lorg/apache/maven/model/building/DefaultModelProblemCollector;)Ljava/util/List; 181 <appendix> member <vmtarget> ; # org/apache/maven/model/building/DefaultModelBuilder$$Lambda+0x000002032b5db410
  1621. instanceKlass @bci org/apache/maven/model/building/DefaultModelBuilder getInterpolatedProfiles (Lorg/apache/maven/model/Model;Lorg/apache/maven/model/profile/DefaultProfileActivationContext;Lorg/apache/maven/model/building/DefaultModelProblemCollector;)Ljava/util/List; 169 <appendix> argL0 ; # org/apache/maven/model/building/DefaultModelBuilder$$Lambda+0x000002032b5db1e0
  1622. instanceKlass @bci org/apache/maven/model/building/DefaultModelBuilder getInterpolatedProfiles (Lorg/apache/maven/model/Model;Lorg/apache/maven/model/profile/DefaultProfileActivationContext;Lorg/apache/maven/model/building/DefaultModelProblemCollector;)Ljava/util/List; 159 <appendix> member <vmtarget> ; # org/apache/maven/model/building/DefaultModelBuilder$$Lambda+0x000002032b5dafb8
  1623. instanceKlass @bci org/apache/maven/model/building/DefaultModelBuilder getInterpolatedProfiles (Lorg/apache/maven/model/Model;Lorg/apache/maven/model/profile/DefaultProfileActivationContext;Lorg/apache/maven/model/building/DefaultModelProblemCollector;)Ljava/util/List; 147 <appendix> argL0 ; # org/apache/maven/model/building/DefaultModelBuilder$$Lambda+0x000002032b5dad88
  1624. instanceKlass @bci org/apache/maven/model/building/DefaultModelBuilder getInterpolatedProfiles (Lorg/apache/maven/model/Model;Lorg/apache/maven/model/profile/DefaultProfileActivationContext;Lorg/apache/maven/model/building/DefaultModelProblemCollector;)Ljava/util/List; 137 <appendix> member <vmtarget> ; # org/apache/maven/model/building/DefaultModelBuilder$$Lambda+0x000002032b5dab60
  1625. instanceKlass @bci org/apache/maven/model/building/DefaultModelBuilder getInterpolatedProfiles (Lorg/apache/maven/model/Model;Lorg/apache/maven/model/profile/DefaultProfileActivationContext;Lorg/apache/maven/model/building/DefaultModelProblemCollector;)Ljava/util/List; 126 <appendix> argL0 ; # org/apache/maven/model/building/DefaultModelBuilder$$Lambda+0x000002032b5da930
  1626. instanceKlass org/apache/maven/model/Scm
  1627. instanceKlass org/apache/maven/model/License
  1628. instanceKlass @bci org/eclipse/aether/named/support/NamedLockFactorySupport closeLock (Ljava/lang/String;)V 6 <appendix> member <vmtarget> ; # org/eclipse/aether/named/support/NamedLockFactorySupport$$Lambda+0x000002032b5d9f58
  1629. instanceKlass org/eclipse/aether/repository/LocalArtifactRequest
  1630. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/BasicProjectRegistry getWorkspaceArtifacts (Ljava/lang/String;Ljava/lang/String;)Ljava/util/Map; 15 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/project/registry/BasicProjectRegistry$$Lambda+0x000002032b5d24b0
  1631. instanceKlass org/apache/maven/repository/internal/DefaultVersionResolver$Key
  1632. instanceKlass org/eclipse/aether/internal/impl/DefaultRepositoryEventDispatcher$1
  1633. instanceKlass org/eclipse/aether/RepositoryEvent$Builder
  1634. instanceKlass org/eclipse/aether/internal/impl/filter/RemoteRepositoryFilterSourceSupport$SimpleResult
  1635. instanceKlass @bci org/eclipse/aether/internal/impl/filter/DefaultRemoteRepositoryFilterManager getRemoteRepositoryFilter (Lorg/eclipse/aether/RepositorySystemSession;)Lorg/eclipse/aether/spi/connector/filter/RemoteRepositoryFilter; 11 <appendix> member <vmtarget> ; # org/eclipse/aether/internal/impl/filter/DefaultRemoteRepositoryFilterManager$$Lambda+0x000002032b5d8ef8
  1636. instanceKlass @bci org/eclipse/aether/named/support/ReadWriteLockNamedLock <init> (Ljava/lang/String;Lorg/eclipse/aether/named/support/NamedLockFactorySupport;Ljava/util/concurrent/locks/ReadWriteLock;)V 7 <appendix> argL0 ; # org/eclipse/aether/named/support/ReadWriteLockNamedLock$$Lambda+0x000002032b5d88c8
  1637. instanceKlass org/eclipse/aether/named/support/Retry$DoNotRetry
  1638. instanceKlass @bci org/eclipse/aether/named/support/NamedLockFactorySupport getLock (Ljava/lang/String;)Lorg/eclipse/aether/named/support/NamedLockSupport; 6 <appendix> member <vmtarget> ; # org/eclipse/aether/named/support/NamedLockFactorySupport$$Lambda+0x000002032b5d8260
  1639. instanceKlass org/eclipse/aether/internal/impl/synccontext/named/NamedLockFactoryAdapter$AdaptedLockSyncContext
  1640. instanceKlass org/eclipse/aether/internal/impl/synccontext/named/GAVNameMapper
  1641. instanceKlass org/eclipse/aether/internal/impl/synccontext/named/NameMappers
  1642. instanceKlass org/eclipse/sisu/wire/NamedIterableAdapter$NamedEntry
  1643. instanceKlass org/eclipse/sisu/wire/NamedIterableAdapter$NamedIterator
  1644. instanceKlass @bci org/eclipse/aether/DefaultSessionData computeIfAbsent (Ljava/lang/Object;Ljava/util/function/Supplier;)Ljava/lang/Object; 6 <appendix> member <vmtarget> ; # org/eclipse/aether/DefaultSessionData$$Lambda+0x000002032b5d5a48
  1645. instanceKlass @bci org/eclipse/aether/internal/impl/synccontext/DefaultSyncContextFactory newInstance (Lorg/eclipse/aether/RepositorySystemSession;Z)Lorg/eclipse/aether/SyncContext; 18 <appendix> member <vmtarget> ; # org/eclipse/aether/internal/impl/synccontext/DefaultSyncContextFactory$$Lambda+0x000002032b5d5830
  1646. instanceKlass org/apache/maven/project/ReactorModelPool$CacheKey
  1647. instanceKlass org/eclipse/aether/util/version/GenericVersion$Item
  1648. instanceKlass org/eclipse/aether/util/version/GenericVersion$Tokenizer
  1649. instanceKlass org/eclipse/aether/util/version/GenericVersion
  1650. instanceKlass org/eclipse/aether/util/version/GenericVersionConstraint
  1651. instanceKlass org/eclipse/aether/artifact/AbstractArtifact
  1652. instanceKlass org/apache/maven/project/ReactorModelCache$CacheKey
  1653. instanceKlass org/apache/maven/model/building/ModelCacheTag$2
  1654. instanceKlass org/apache/maven/model/building/ModelCacheTag$1
  1655. instanceKlass @bci org/apache/maven/model/profile/DefaultProfileActivationContext setProjectProperties (Ljava/util/Properties;)Lorg/apache/maven/model/profile/DefaultProfileActivationContext; 27 <appendix> argL0 ; # org/apache/maven/model/profile/DefaultProfileActivationContext$$Lambda+0x000002032b5d6eb0
  1656. instanceKlass @bci org/apache/maven/model/profile/DefaultProfileActivationContext setProjectProperties (Ljava/util/Properties;)Lorg/apache/maven/model/profile/DefaultProfileActivationContext; 19 <appendix> argL0 ; # org/apache/maven/model/profile/DefaultProfileActivationContext$$Lambda+0x000002032b5d6c80
  1657. instanceKlass @bci org/apache/maven/model/profile/DefaultProfileActivationContext setProjectProperties (Ljava/util/Properties;)Lorg/apache/maven/model/profile/DefaultProfileActivationContext; 14 <appendix> argL0 ; # org/apache/maven/model/profile/DefaultProfileActivationContext$$Lambda+0x000002032b5d6a50
  1658. instanceKlass @bci org/apache/maven/model/building/DefaultModelBuilder getProfileActivationContext (Lorg/apache/maven/model/building/ModelBuildingRequest;Lorg/apache/maven/model/Model;)Lorg/apache/maven/model/profile/DefaultProfileActivationContext; 55 <appendix> member <vmtarget> ; # org/apache/maven/model/building/DefaultModelBuilder$$Lambda+0x000002032b5d6818
  1659. instanceKlass org/apache/maven/model/building/ModelProblemUtils
  1660. instanceKlass org/apache/maven/model/io/xpp3/MavenXpp3ReaderEx$Xpp3DomBuilderInputLocationBuilder
  1661. instanceKlass org/apache/maven/model/io/xpp3/MavenXpp3ReaderEx$1
  1662. instanceKlass org/codehaus/plexus/util/xml/Xpp3DomBuilder$InputLocationBuilder
  1663. instanceKlass org/apache/maven/model/io/xpp3/MavenXpp3ReaderEx$ContentTransformer
  1664. instanceKlass org/apache/maven/model/io/xpp3/MavenXpp3ReaderEx
  1665. instanceKlass org/apache/maven/model/building/DefaultModelBuildingResult
  1666. instanceKlass org/apache/maven/model/building/AbstractModelBuildingListener
  1667. instanceKlass org/apache/maven/project/ProjectModelResolver
  1668. instanceKlass org/apache/maven/model/building/DefaultModelBuildingRequest
  1669. instanceKlass org/apache/maven/artifact/repository/LegacyLocalRepositoryManager
  1670. instanceKlass org/apache/maven/project/ReactorModelCache
  1671. instanceKlass org/eclipse/m2e/core/internal/IMavenToolbox$1
  1672. instanceKlass org/apache/maven/project/DefaultProjectBuildingRequest
  1673. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager lambda$11 (Ljava/util/Collection;Lorg/eclipse/m2e/core/project/IProjectConfiguration;Ljava/util/Map;Lorg/eclipse/m2e/core/embedder/IMavenExecutionContext;Lorg/eclipse/core/runtime/IProgressMonitor;)Ljava/util/Map; 19 <appendix> argL0 ; # org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager$$Lambda+0x000002032b5d1fd0
  1674. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager lambda$11 (Ljava/util/Collection;Lorg/eclipse/m2e/core/project/IProjectConfiguration;Ljava/util/Map;Lorg/eclipse/m2e/core/embedder/IMavenExecutionContext;Lorg/eclipse/core/runtime/IProgressMonitor;)Ljava/util/Map; 6 <appendix> argL0 ; # org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager$$Lambda+0x000002032b5d1d90
  1675. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager readMavenProjectFacades (Ljava/util/Collection;Lorg/eclipse/m2e/core/internal/project/registry/MutableProjectRegistry;Lorg/eclipse/m2e/core/internal/project/registry/DependencyResolutionContext;Lorg/eclipse/core/runtime/IProgressMonitor;)Ljava/util/Map; 283 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager$$Lambda+0x000002032b5d1b78
  1676. instanceKlass org/eclipse/aether/version/VersionConstraint
  1677. instanceKlass org/eclipse/aether/version/VersionRange
  1678. instanceKlass org/eclipse/aether/util/version/GenericVersionScheme
  1679. instanceKlass org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager$Context
  1680. instanceKlass @bci java/util/stream/Collectors lambda$groupingBy$53 (Ljava/util/function/Function;Ljava/util/function/Supplier;Ljava/util/function/BiConsumer;Ljava/util/Map;Ljava/lang/Object;)V 20 <appendix> member <vmtarget> ; # java/util/stream/Collectors$$Lambda+0x000002032b4f7780
  1681. instanceKlass @bci java/util/stream/Collectors groupingBy (Ljava/util/function/Function;Ljava/util/function/Supplier;Ljava/util/stream/Collector;)Ljava/util/stream/Collector; 19 <appendix> member <vmtarget> ; # java/util/stream/Collectors$$Lambda+0x000002032b4f7558
  1682. instanceKlass @bci java/util/stream/Collectors toCollection (Ljava/util/function/Supplier;)Ljava/util/stream/Collector; 10 <appendix> argL0 ; # java/util/stream/Collectors$$Lambda+0x000002032b4f7320
  1683. instanceKlass @bci java/util/stream/Collectors toCollection (Ljava/util/function/Supplier;)Ljava/util/stream/Collector; 5 <appendix> argL0 ; # java/util/stream/Collectors$$Lambda+0x000002032b4f7100
  1684. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager readMavenProjectFacades (Ljava/util/Collection;Lorg/eclipse/m2e/core/internal/project/registry/MutableProjectRegistry;Lorg/eclipse/m2e/core/internal/project/registry/DependencyResolutionContext;Lorg/eclipse/core/runtime/IProgressMonitor;)Ljava/util/Map; 109 <appendix> argL0 ; # org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager$$Lambda+0x000002032b5d1768
  1685. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager readMavenProjectFacades (Ljava/util/Collection;Lorg/eclipse/m2e/core/internal/project/registry/MutableProjectRegistry;Lorg/eclipse/m2e/core/internal/project/registry/DependencyResolutionContext;Lorg/eclipse/core/runtime/IProgressMonitor;)Ljava/util/Map; 104 <appendix> argL0 ; # org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager$$Lambda+0x000002032b5d1558
  1686. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager readMavenProjectFacades (Ljava/util/Collection;Lorg/eclipse/m2e/core/internal/project/registry/MutableProjectRegistry;Lorg/eclipse/m2e/core/internal/project/registry/DependencyResolutionContext;Lorg/eclipse/core/runtime/IProgressMonitor;)Ljava/util/Map; 99 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager$$Lambda+0x000002032b5d1320
  1687. instanceKlass org/eclipse/core/internal/resources/MarkerManager$1
  1688. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager refresh (Lorg/eclipse/m2e/core/internal/project/registry/MutableProjectRegistry;Lorg/eclipse/m2e/core/internal/project/registry/DependencyResolutionContext;Lorg/eclipse/core/runtime/IProgressMonitor;)V 61 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager$$Lambda+0x000002032b5d10d8
  1689. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager refresh (Lorg/eclipse/m2e/core/internal/project/registry/MutableProjectRegistry;Lorg/eclipse/m2e/core/internal/project/registry/DependencyResolutionContext;Lorg/eclipse/core/runtime/IProgressMonitor;)V 49 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager$$Lambda+0x000002032b5d0eb0
  1690. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager refresh (Lorg/eclipse/m2e/core/internal/project/registry/MutableProjectRegistry;Ljava/util/Collection;Lorg/eclipse/core/runtime/IProgressMonitor;)Ljava/util/Map; 53 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager$$Lambda+0x000002032b5d0c98
  1691. instanceKlass @cpi org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager 1803 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b5d4400
  1692. instanceKlass @bci org/eclipse/m2e/core/internal/project/ProjectConfigurationManager configureNewMavenProjects (Ljava/util/List;Lorg/eclipse/core/runtime/IProgressMonitor;)V 79 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/project/ProjectConfigurationManager$$Lambda+0x000002032b5d0a70
  1693. instanceKlass org/eclipse/m2e/core/internal/project/MavenProjectImportResult
  1694. instanceKlass org/eclipse/m2e/core/project/IMavenProjectImportResult
  1695. instanceKlass org/eclipse/m2e/core/internal/project/LifecycleMappingConfiguration
  1696. instanceKlass @bci org/eclipse/core/internal/properties/PropertyBucket$PropertyEntry <clinit> ()V 0 <appendix> argL0 ; # org/eclipse/core/internal/properties/PropertyBucket$PropertyEntry$$Lambda+0x000002032b5cb970
  1697. instanceKlass @bci org/eclipse/m2e/core/internal/project/ProjectConfigurationManager addMavenBuilder (Lorg/eclipse/core/resources/IProject;Lorg/eclipse/core/resources/IProjectDescription;Lorg/eclipse/core/runtime/IProgressMonitor;)Z 145 <appendix> argL0 ; # org/eclipse/m2e/core/internal/project/ProjectConfigurationManager$$Lambda+0x000002032b5d0000
  1698. instanceKlass org/eclipse/m2e/core/internal/builder/MavenNature
  1699. instanceKlass org/eclipse/core/resources/IProjectNature
  1700. instanceKlass org/eclipse/core/internal/resources/NatureManager$1
  1701. instanceKlass org/eclipse/core/internal/resources/ProjectNatureDescriptor
  1702. instanceKlass @bci org/eclipse/core/internal/resources/ProjectPreferences save ()V 42 <appendix> member <vmtarget> ; # org/eclipse/core/internal/resources/ProjectPreferences$$Lambda+0x000002032b5cace0
  1703. instanceKlass org/eclipse/m2e/core/internal/project/ResolverConfigurationIO
  1704. instanceKlass java/util/AbstractList$SubList$1
  1705. instanceKlass @bci org/eclipse/jdt/ls/core/internal/filesystem/JLSFile childNames (ILorg/eclipse/core/runtime/IProgressMonitor;)[Ljava/lang/String; 152 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/filesystem/JLSFile$$Lambda+0x000002032b5c6cd8
  1706. instanceKlass org/eclipse/core/internal/localstore/UnifiedTreeNode
  1707. instanceKlass org/eclipse/core/internal/localstore/UnifiedTree
  1708. instanceKlass org/eclipse/jdt/internal/compiler/env/IModulePathEntry
  1709. instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$PerProjectInfo
  1710. instanceKlass org/eclipse/jdt/core/eval/IEvaluationContext
  1711. instanceKlass org/eclipse/core/internal/events/NotificationManager$1
  1712. instanceKlass @bci org/eclipse/core/internal/events/ResourceChangeListenerList getListeners ()[Lorg/eclipse/core/internal/events/ResourceChangeListenerList$ListenerEntry; 4 <appendix> argL0 ; # org/eclipse/core/internal/events/ResourceChangeListenerList$$Lambda+0x000002032b5ca118
  1713. instanceKlass org/eclipse/core/internal/resources/ModelObjectWriter
  1714. instanceKlass org/eclipse/core/internal/resources/IModelObjectConstants
  1715. instanceKlass org/eclipse/core/internal/localstore/FileStoreRoot
  1716. instanceKlass java/lang/Short$ShortCache
  1717. instanceKlass com/sun/jna/Native$Buffers
  1718. instanceKlass org/eclipse/core/internal/filesystem/local/Win32Handler$FileAPIh
  1719. instanceKlass org/eclipse/core/filesystem/provider/FileInfo
  1720. instanceKlass com/sun/jna/platform/win32/WinBase
  1721. instanceKlass com/sun/jna/platform/win32/BaseTSD
  1722. instanceKlass com/sun/jna/platform/win32/WinDef
  1723. instanceKlass org/eclipse/core/internal/filesystem/local/NativeHandler
  1724. instanceKlass org/eclipse/core/internal/filesystem/local/LocalFileNativesManager
  1725. instanceKlass org/eclipse/core/internal/filesystem/local/InfiniteProgress
  1726. instanceKlass org/eclipse/core/internal/utils/BitMask
  1727. instanceKlass org/eclipse/core/internal/events/LifecycleEvent
  1728. instanceKlass java/util/AbstractMap$2$1
  1729. instanceKlass @bci org/eclipse/core/internal/resources/ProjectVariableProviderManager <clinit> ()V 14 <appendix> argL0 ; # org/eclipse/core/internal/resources/ProjectVariableProviderManager$$Lambda+0x000002032b5c8618
  1730. instanceKlass @cpi org/eclipse/core/internal/resources/ProjectVariableProviderManager 171 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b5cc000
  1731. instanceKlass org/eclipse/core/resources/variableresolvers/PathVariableResolver
  1732. instanceKlass org/eclipse/core/internal/resources/ProjectVariableProviderManager$Descriptor
  1733. instanceKlass org/eclipse/core/internal/resources/ProjectVariableProviderManager
  1734. instanceKlass org/eclipse/core/internal/resources/ProjectPathVariableManager
  1735. instanceKlass @bci org/eclipse/core/internal/filesystem/local/LocalFile createExecutor (I)Ljava/util/concurrent/ForkJoinPool; 15 <appendix> argL0 ; # org/eclipse/core/internal/filesystem/local/LocalFile$$Lambda+0x000002032b5c73f8
  1736. instanceKlass @bci org/eclipse/core/internal/filesystem/local/LocalFile createExecutor (I)Ljava/util/concurrent/ForkJoinPool; 5 <appendix> argL0 ; # org/eclipse/core/internal/filesystem/local/LocalFile$$Lambda+0x000002032b5c71e8
  1737. instanceKlass org/eclipse/jdt/ls/core/internal/filesystem/JLSFsUtils
  1738. instanceKlass org/eclipse/jdt/ls/core/internal/filesystem/JDTLSFilesystemActivator$1
  1739. instanceKlass org/eclipse/jdt/ls/core/internal/filesystem/JDTLSFilesystemActivator
  1740. instanceKlass org/eclipse/core/filesystem/IFileSystem
  1741. instanceKlass org/eclipse/core/internal/filesystem/InternalFileSystemCore
  1742. instanceKlass org/eclipse/core/filesystem/IFileInfo
  1743. instanceKlass org/eclipse/core/filesystem/EFS
  1744. instanceKlass org/eclipse/core/internal/resources/OS
  1745. instanceKlass org/eclipse/core/filesystem/URIUtil
  1746. instanceKlass @bci org/eclipse/m2e/core/internal/project/ProjectConfigurationManager importProjects (Ljava/util/Collection;Lorg/eclipse/m2e/core/project/ProjectImportConfiguration;Lorg/eclipse/m2e/core/project/IProjectCreationListener;Lorg/eclipse/core/runtime/IProgressMonitor;)Ljava/util/List; 27 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/project/ProjectConfigurationManager$$Lambda+0x000002032b547878
  1747. instanceKlass @bci org/eclipse/m2e/core/internal/project/ProjectConfigurationManager importProjects (Ljava/util/Collection;Lorg/eclipse/m2e/core/project/ProjectImportConfiguration;Lorg/eclipse/m2e/core/project/IProjectCreationListener;Lorg/eclipse/core/runtime/IProgressMonitor;)Ljava/util/List; 12 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/project/ProjectConfigurationManager$$Lambda+0x000002032b547660
  1748. instanceKlass java/io/SerialCallbackContext
  1749. instanceKlass java/io/ObjectStreamClass$ClassDataSlot
  1750. instanceKlass java/io/ObjectStreamClass$FieldReflector
  1751. instanceKlass java/io/ObjectStreamClass$FieldReflectorKey
  1752. instanceKlass jdk/internal/reflect/ClassDefiner$1
  1753. instanceKlass jdk/internal/reflect/ClassDefiner
  1754. instanceKlass jdk/internal/reflect/MethodAccessorGenerator$1
  1755. instanceKlass jdk/internal/reflect/Label$PatchInfo
  1756. instanceKlass jdk/internal/reflect/Label
  1757. instanceKlass jdk/internal/reflect/UTF8
  1758. instanceKlass jdk/internal/reflect/ClassFileAssembler
  1759. instanceKlass jdk/internal/reflect/ByteVectorImpl
  1760. instanceKlass jdk/internal/reflect/ByteVector
  1761. instanceKlass jdk/internal/reflect/ByteVectorFactory
  1762. instanceKlass jdk/internal/reflect/AccessorGenerator
  1763. instanceKlass jdk/internal/reflect/ClassFileConstants
  1764. instanceKlass @bci jdk/internal/reflect/MethodHandleLongFieldAccessorImpl getLong (Ljava/lang/Object;)J 11 <adapter> ; # java/lang/invoke/LambdaForm$MH+0x000002032b5c4000
  1765. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b5be400
  1766. instanceKlass java/io/ObjectStreamClass$2
  1767. instanceKlass java/io/ClassCache
  1768. instanceKlass java/io/ObjectStreamClass$Caches
  1769. instanceKlass java/io/ObjectStreamClass
  1770. instanceKlass java/io/ObjectOutputStream$ReplaceTable
  1771. instanceKlass java/io/ObjectOutputStream$HandleTable
  1772. instanceKlass org/apache/maven/model/DependencyManagement
  1773. instanceKlass org/apache/maven/model/Exclusion
  1774. instanceKlass org/apache/maven/model/Parent
  1775. instanceKlass org/apache/maven/model/io/xpp3/MavenXpp3Reader$1
  1776. instanceKlass org/apache/maven/model/io/xpp3/MavenXpp3Reader$ContentTransformer
  1777. instanceKlass org/apache/maven/model/io/xpp3/MavenXpp3Reader
  1778. instanceKlass org/apache/maven/building/FileSource
  1779. instanceKlass org/apache/maven/model/building/ModelSource2
  1780. instanceKlass org/eclipse/m2e/core/internal/IMavenToolbox$2
  1781. instanceKlass @bci org/eclipse/m2e/core/internal/IMavenToolbox <clinit> ()V 8 <appendix> argL0 ; # org/eclipse/m2e/core/internal/IMavenToolbox$$Lambda+0x000002032b5471a0
  1782. instanceKlass @bci org/eclipse/m2e/core/internal/IMavenToolbox <clinit> ()V 0 <appendix> argL0 ; # org/eclipse/m2e/core/internal/IMavenToolbox$$Lambda+0x000002032b546f90
  1783. instanceKlass org/eclipse/m2e/core/internal/IMavenToolbox
  1784. instanceKlass org/eclipse/m2e/core/internal/embedder/PlexusContainerManager$PlexusComponentLookup
  1785. instanceKlass org/eclipse/m2e/core/project/AbstractProjectScanner
  1786. instanceKlass @bci org/eclipse/jdt/ls/core/internal/managers/MavenProjectImporter getMavenProjects (Ljava/io/File;Lorg/eclipse/m2e/core/embedder/MavenModelManager;Lorg/eclipse/core/runtime/IProgressMonitor;)Ljava/util/Set; 46 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/managers/MavenProjectImporter$$Lambda+0x000002032b5bec90
  1787. instanceKlass @bci org/eclipse/jdt/ls/core/internal/managers/MavenProjectImporter getMavenProjects (Ljava/io/File;Lorg/eclipse/m2e/core/embedder/MavenModelManager;Lorg/eclipse/core/runtime/IProgressMonitor;)Ljava/util/Set; 36 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/managers/MavenProjectImporter$$Lambda+0x000002032b5bea60
  1788. instanceKlass @bci org/eclipse/core/internal/preferences/PreferencesService internalApply (Lorg/eclipse/core/runtime/preferences/IEclipsePreferences;[Lorg/eclipse/core/runtime/preferences/IPreferenceFilter;)V 87 <appendix> member <vmtarget> ; # org/eclipse/core/internal/preferences/PreferencesService$$Lambda+0x000002032b1b2230
  1789. instanceKlass org/eclipse/jdt/internal/launching/JREPreferenceModifyListener$Visitor
  1790. instanceKlass org/eclipse/debug/internal/core/PreferredDelegateModifyListener$Visitor
  1791. instanceKlass @bci org/eclipse/core/internal/preferences/PreferencesService firePreApplyEvent (Lorg/eclipse/core/runtime/preferences/IEclipsePreferences;)Lorg/eclipse/core/runtime/preferences/IEclipsePreferences; 53 <appendix> member <vmtarget> ; # org/eclipse/core/internal/preferences/PreferencesService$$Lambda+0x000002032b1b1fe0
  1792. instanceKlass org/eclipse/core/runtime/ISafeRunnableWithResult
  1793. instanceKlass org/eclipse/core/runtime/preferences/PreferenceModifyListener
  1794. instanceKlass java/nio/file/Files$3
  1795. instanceKlass java/nio/file/FileTreeWalker$Event
  1796. instanceKlass java/nio/file/FileTreeWalker$DirectoryNode
  1797. instanceKlass java/nio/file/FileTreeWalker$1
  1798. instanceKlass java/nio/file/FileTreeWalker
  1799. instanceKlass java/nio/file/SimpleFileVisitor
  1800. instanceKlass @bci org/eclipse/jdt/ls/core/internal/managers/BasicFileDetector scanDir (Ljava/nio/file/Path;Lorg/eclipse/core/runtime/IProgressMonitor;)V 9 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/managers/BasicFileDetector$$Lambda+0x000002032b5bfce8
  1801. instanceKlass org/eclipse/jdt/ls/core/internal/managers/BasicFileDetector
  1802. instanceKlass @bci org/eclipse/jdt/ls/core/internal/ProjectUtils getGradleProjects ()Ljava/util/List; 6 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/ProjectUtils$$Lambda+0x000002032b5bf880
  1803. instanceKlass com/microsoft/gradle/bs/importer/Utils
  1804. instanceKlass org/eclipse/jdt/ls/core/internal/managers/GradleUtils
  1805. instanceKlass @bci java/util/regex/CharPredicates ctype (I)Ljava/util/regex/Pattern$CharPredicate; 1 <appendix> member <vmtarget> ; # java/util/regex/CharPredicates$$Lambda+0x000002032b4ee240
  1806. instanceKlass org/eclipse/buildship/core/internal/util/gradle/GradleVersion
  1807. instanceKlass org/eclipse/jdt/ls/core/internal/AbstractProjectImporter
  1808. instanceKlass org/eclipse/jdt/ls/core/internal/IProjectImporter
  1809. instanceKlass @bci org/eclipse/jdt/ls/core/internal/managers/GradleBuildSupport deleteInvalidProjects (Ljava/util/Collection;Ljava/util/ArrayList;Lorg/eclipse/core/runtime/IProgressMonitor;)V 108 <appendix> member <vmtarget> ; # org/eclipse/jdt/ls/core/internal/managers/GradleBuildSupport$$Lambda+0x000002032b5b6ea0
  1810. instanceKlass @bci org/eclipse/jdt/ls/core/internal/managers/GradleBuildSupport findUnrelatedGradleProjects (Ljava/util/List;Ljava/util/List;)Ljava/util/List; 1 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/managers/GradleBuildSupport$$Lambda+0x000002032b5b6c18
  1811. instanceKlass @bci org/eclipse/jdt/ls/core/internal/managers/StandardProjectsManager deleteInvalidProjects (Ljava/util/Collection;Lorg/eclipse/core/runtime/IProgressMonitor;)V 263 <appendix> member <vmtarget> ; # org/eclipse/jdt/ls/core/internal/managers/StandardProjectsManager$$Lambda+0x000002032b5b69f0
  1812. instanceKlass @bci org/eclipse/jdt/ls/core/internal/managers/StandardProjectsManager deleteInvalidProjects (Ljava/util/Collection;Lorg/eclipse/core/runtime/IProgressMonitor;)V 249 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/managers/StandardProjectsManager$$Lambda+0x000002032b5b67b0
  1813. instanceKlass @cpi org/eclipse/m2e/apt/internal/utils/ProjectUtils 423 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b5be000
  1814. instanceKlass java/util/AbstractList$RandomAccessSpliterator
  1815. instanceKlass @bci java/util/stream/Collectors toUnmodifiableList ()Ljava/util/stream/Collector; 19 <appendix> argL0 ; # java/util/stream/Collectors$$Lambda+0x000002032b4ee010
  1816. instanceKlass @bci java/util/stream/Collectors toUnmodifiableList ()Ljava/util/stream/Collector; 14 <appendix> argL0 ; # java/util/stream/Collectors$$Lambda+0x000002032b4eddd8
  1817. instanceKlass @bci java/util/stream/Collectors toUnmodifiableList ()Ljava/util/stream/Collector; 9 <appendix> argL0 ; # java/util/stream/Collectors$$Lambda+0x000002032b4edbb8
  1818. instanceKlass @bci java/util/stream/Collectors toUnmodifiableList ()Ljava/util/stream/Collector; 4 <appendix> argL0 ; # java/util/stream/Collectors$$Lambda+0x000002032b4ed9a8
  1819. instanceKlass java/util/TreeMap$TreeMapSpliterator
  1820. instanceKlass org/eclipse/jdt/internal/core/ClasspathAttribute
  1821. instanceKlass com/microsoft/java/builder/BuildStateManager
  1822. instanceKlass ch/epfl/scala/bsp4j/BuildServer
  1823. instanceKlass com/microsoft/gradle/bs/importer/GradleBuildServerBuildSupport
  1824. instanceKlass @bci org/eclipse/lsp4j/jsonrpc/RemoteEndpoint handleRequest (Lorg/eclipse/lsp4j/jsonrpc/messages/RequestMessage;)V 142 <appendix> member <vmtarget> ; # org/eclipse/lsp4j/jsonrpc/RemoteEndpoint$$Lambda+0x000002032b433b90
  1825. instanceKlass @bci org/eclipse/lsp4j/jsonrpc/RemoteEndpoint handleRequest (Lorg/eclipse/lsp4j/jsonrpc/messages/RequestMessage;)V 132 <appendix> member <vmtarget> ; # org/eclipse/lsp4j/jsonrpc/RemoteEndpoint$$Lambda+0x000002032b433958
  1826. instanceKlass org/eclipse/jdt/ls/core/internal/managers/InvisibleProjectPreferenceChangeListener
  1827. instanceKlass org/eclipse/jdt/ls/core/internal/managers/EclipseBuildSupport
  1828. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b5bc000
  1829. instanceKlass org/eclipse/jdt/ls/core/internal/managers/MavenBuildSupport
  1830. instanceKlass org/eclipse/jdt/ls/core/internal/managers/GradlePreferenceChangeListener
  1831. instanceKlass org/eclipse/jdt/ls/core/internal/managers/GradleBuildSupport
  1832. instanceKlass org/eclipse/jdt/ls/core/internal/managers/IBuildSupport
  1833. instanceKlass org/eclipse/jdt/ls/core/internal/ExtensionsExtractor
  1834. instanceKlass org/eclipse/jdt/ls/core/internal/managers/BuildSupportManager
  1835. instanceKlass org/eclipse/lsp4j/FileOperationPatternOptions
  1836. instanceKlass org/eclipse/lsp4j/FileOperationPattern
  1837. instanceKlass @bci org/eclipse/jdt/ls/core/internal/managers/StandardProjectsManager deleteInvalidProjects (Ljava/util/Collection;Lorg/eclipse/core/runtime/IProgressMonitor;)V 6 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/managers/StandardProjectsManager$$Lambda+0x000002032b5b4b10
  1838. instanceKlass @bci org/eclipse/jdt/ls/core/internal/managers/ProjectsManager interruptAutoBuild ()Ljava/lang/Runnable; 23 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/managers/ProjectsManager$$Lambda+0x000002032b5b4900
  1839. instanceKlass org/eclipse/lsp4j/FileOperationFilter
  1840. instanceKlass org/eclipse/lsp4j/FileOperationOptions
  1841. instanceKlass org/eclipse/lsp4j/FileOperationsServerCapabilities
  1842. instanceKlass org/eclipse/jdt/ls/core/internal/JobHelpers$RepositoryRegistryUpdateJobMatcher
  1843. instanceKlass @bci org/eclipse/jdt/ls/core/internal/handlers/InitHandler$1 runInWorkspace (Lorg/eclipse/core/runtime/IProgressMonitor;)Lorg/eclipse/core/runtime/IStatus; 55 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/handlers/InitHandler$1$$Lambda+0x000002032b5b44d8
  1844. instanceKlass org/eclipse/jdt/ls/internal/gradle/checksums/WrapperValidator
  1845. instanceKlass org/eclipse/lsp4j/CompletionItemOptions
  1846. instanceKlass org/eclipse/lsp4j/NotebookSelectorCell
  1847. instanceKlass org/eclipse/lsp4j/NotebookDocumentFilter
  1848. instanceKlass org/eclipse/lsp4j/NotebookSelector
  1849. instanceKlass org/eclipse/lsp4j/DocumentOnTypeFormattingOptions
  1850. instanceKlass com/google/gson/annotations/Expose
  1851. instanceKlass org/eclipse/lsp4j/AbstractWorkDoneProgressOptions
  1852. instanceKlass org/eclipse/lsp4j/NotebookDocumentSyncRegistrationOptions
  1853. instanceKlass org/eclipse/lsp4j/ServerInfo
  1854. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/ProgressReporterManager$MulticastProgressReporter
  1855. instanceKlass @bci org/eclipse/lsp4j/jsonrpc/RemoteEndpoint handleRequest (Lorg/eclipse/lsp4j/jsonrpc/messages/RequestMessage;)V 121 <appendix> member <vmtarget> ; # org/eclipse/lsp4j/jsonrpc/RemoteEndpoint$$Lambda+0x000002032b433730
  1856. instanceKlass @bci org/eclipse/jdt/ls/core/internal/handlers/SemanticTokensHandler legend ()Lorg/eclipse/lsp4j/SemanticTokensLegend; 37 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/handlers/SemanticTokensHandler$$Lambda+0x000002032b5978c8
  1857. instanceKlass @bci org/eclipse/jdt/ls/core/internal/handlers/SemanticTokensHandler legend ()Lorg/eclipse/lsp4j/SemanticTokensLegend; 10 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/handlers/SemanticTokensHandler$$Lambda+0x000002032b597270
  1858. instanceKlass org/eclipse/lsp4j/SemanticTokensLegend
  1859. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/SemanticTokensHandler
  1860. instanceKlass org/eclipse/lsp4j/DocumentFilter
  1861. instanceKlass org/eclipse/lsp4j/SemanticTokensServerFull
  1862. instanceKlass org/eclipse/lsp4j/TextDocumentRegistrationOptions
  1863. instanceKlass org/eclipse/lsp4j/WorkDoneProgressOptions
  1864. instanceKlass org/eclipse/lsp4j/WorkspaceFoldersOptions
  1865. instanceKlass org/eclipse/lsp4j/WorkspaceServerCapabilities
  1866. instanceKlass org/eclipse/lsp4j/SaveOptions
  1867. instanceKlass org/eclipse/lsp4j/TextDocumentSyncOptions
  1868. instanceKlass @bci org/eclipse/jdt/ls/core/internal/handlers/WorkspaceExecuteCommandHandler$DelegateCommandHandlerDescriptor <init> (Lorg/eclipse/core/runtime/IConfigurationElement;)V 59 <appendix> member <vmtarget> ; # org/eclipse/jdt/ls/core/internal/handlers/WorkspaceExecuteCommandHandler$DelegateCommandHandlerDescriptor$$Lambda+0x000002032b5960e0
  1869. instanceKlass @bci org/eclipse/jdt/ls/core/internal/handlers/WorkspaceExecuteCommandHandler getDelegateCommandHandlerDescriptors (Z)Ljava/util/Collection; 37 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/handlers/WorkspaceExecuteCommandHandler$$Lambda+0x000002032b595ea8
  1870. instanceKlass @bci org/eclipse/jdt/ls/core/internal/handlers/WorkspaceExecuteCommandHandler getDelegateCommandHandlerDescriptors (Z)Ljava/util/Collection; 32 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/handlers/WorkspaceExecuteCommandHandler$$Lambda+0x000002032b595c78
  1871. instanceKlass @bci org/eclipse/jdt/ls/core/internal/handlers/WorkspaceExecuteCommandHandler getDelegateCommandHandlerDescriptors (Z)Ljava/util/Collection; 27 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/handlers/WorkspaceExecuteCommandHandler$$Lambda+0x000002032b595a48
  1872. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/WorkspaceExecuteCommandHandler$DelegateCommandHandlerDescriptor
  1873. instanceKlass org/apache/commons/lang3/BooleanUtils
  1874. instanceKlass org/eclipse/lsp4j/ServerCapabilities
  1875. instanceKlass org/eclipse/core/internal/registry/RegistryChangeEvent
  1876. instanceKlass org/eclipse/core/runtime/IRegistryChangeEvent
  1877. instanceKlass org/eclipse/core/internal/registry/ExtensionRegistry$1
  1878. instanceKlass org/eclipse/core/internal/registry/osgi/ExtensionEventDispatcherJob$1
  1879. instanceKlass org/eclipse/core/internal/registry/RegistryDelta
  1880. instanceKlass org/eclipse/core/internal/registry/ExtensionDelta
  1881. instanceKlass org/eclipse/osgi/compatibility/state/ReadOnlyState
  1882. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/BundleUtils$BundleInfo
  1883. instanceKlass org/eclipse/jdt/core/dom/IBinding
  1884. instanceKlass org/eclipse/jdt/core/dom/IDocElement
  1885. instanceKlass org/eclipse/jdt/ls/core/internal/JDTUtils
  1886. instanceKlass org/eclipse/jdt/core/ClasspathVariableInitializer
  1887. instanceKlass org/eclipse/jdt/core/ClasspathContainerInitializer
  1888. instanceKlass org/eclipse/jdt/launching/environments/CompatibleEnvironment
  1889. instanceKlass org/eclipse/jdt/internal/launching/environments/ExecutionEnvironmentAnalyzer
  1890. instanceKlass org/eclipse/jdt/internal/launching/environments/Analyzer
  1891. instanceKlass org/eclipse/jdt/launching/environments/IExecutionEnvironmentAnalyzerDelegate
  1892. instanceKlass org/eclipse/jdt/internal/launching/environments/AccessRuleParticipant
  1893. instanceKlass org/eclipse/jdt/internal/launching/environments/ExecutionEnvironment$1
  1894. instanceKlass org/eclipse/jdt/launching/environments/IAccessRuleParticipant
  1895. instanceKlass org/eclipse/jdt/internal/launching/environments/ExecutionEnvironment
  1896. instanceKlass @bci org/eclipse/jdt/internal/launching/environments/EnvironmentsManager initializeExtensions ()V 14 <appendix> argL0 ; # org/eclipse/jdt/internal/launching/environments/EnvironmentsManager$$Lambda+0x000002032b5a1d70
  1897. instanceKlass @bci org/eclipse/jdt/internal/launching/environments/EnvironmentsManager initializeExtensions ()V 9 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/launching/environments/EnvironmentsManager$$Lambda+0x000002032b5a1ae0
  1898. instanceKlass org/eclipse/jdt/launching/environments/IExecutionEnvironment
  1899. instanceKlass org/eclipse/jdt/internal/launching/environments/EnvironmentsManager
  1900. instanceKlass org/eclipse/jdt/ls/core/internal/javafx/FXLibraryLocationResolver
  1901. instanceKlass org/eclipse/jdt/internal/launching/JavaFxLibraryResolver
  1902. instanceKlass org/eclipse/jdt/launching/ILibraryLocationResolver
  1903. instanceKlass @bci org/eclipse/jdt/internal/launching/StandardVMType getLibraryLocationResolvers ()[Lorg/eclipse/jdt/launching/ILibraryLocationResolver; 27 <appendix> argL0 ; # org/eclipse/jdt/internal/launching/StandardVMType$$Lambda+0x000002032b59fd48
  1904. instanceKlass @bci com/google/gson/internal/ConstructorConstructor newCollectionConstructor (Ljava/lang/Class;)Lcom/google/gson/internal/ObjectConstructor; 9 <appendix> argL0 ; # com/google/gson/internal/ConstructorConstructor$$Lambda+0x000002032b583688
  1905. instanceKlass @bci com/google/common/io/Closer <clinit> ()V 0 <appendix> argL0 ; # com/google/common/io/Closer$$Lambda+0x000002032b5a3158
  1906. instanceKlass @cpi com/google/common/io/Closer 177 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b5a0c00
  1907. instanceKlass com/google/common/io/Closer$Suppressor
  1908. instanceKlass com/google/common/io/Closer
  1909. instanceKlass com/google/common/io/CharSink
  1910. instanceKlass @bci com/google/common/io/Files <clinit> ()V 0 <appendix> argL0 ; # com/google/common/io/Files$$Lambda+0x000002032b5a26b0
  1911. instanceKlass com/google/common/graph/SuccessorsFunction
  1912. instanceKlass com/google/common/io/ByteSink
  1913. instanceKlass com/google/common/io/LineProcessor
  1914. instanceKlass com/google/common/io/Files
  1915. instanceKlass @bci com/google/common/base/Splitter onPatternInternal (Lcom/google/common/base/CommonPattern;)Lcom/google/common/base/Splitter; 28 <appendix> member <vmtarget> ; # com/google/common/base/Splitter$$Lambda+0x000002032b593080
  1916. instanceKlass com/google/common/base/Splitter$Strategy
  1917. instanceKlass com/google/common/base/CommonMatcher
  1918. instanceKlass com/google/common/base/Splitter
  1919. instanceKlass com/google/common/io/ByteSource
  1920. instanceKlass com/google/common/io/CharSource
  1921. instanceKlass com/google/common/io/Closeables
  1922. instanceKlass sun/net/www/http/KeepAliveEntry
  1923. instanceKlass sun/net/www/http/KeepAliveCache$1
  1924. instanceKlass org/eclipse/jdt/launching/sourcelookup/IJavaSourceLocation
  1925. instanceKlass org/eclipse/debug/core/model/IDebugTarget
  1926. instanceKlass org/eclipse/debug/core/model/IMemoryBlockRetrieval
  1927. instanceKlass org/eclipse/debug/core/IBreakpointListener
  1928. instanceKlass @bci org/eclipse/debug/internal/core/InputStreamMonitor startMonitoring (Ljava/lang/String;)V 17 <appendix> member <vmtarget> ; # org/eclipse/debug/internal/core/InputStreamMonitor$$Lambda+0x000002032b5a5b50
  1929. instanceKlass @bci org/eclipse/debug/internal/core/OutputStreamMonitor startMonitoring (Ljava/lang/String;)V 25 <appendix> member <vmtarget> ; # org/eclipse/debug/internal/core/OutputStreamMonitor$$Lambda+0x000002032b5a5938
  1930. instanceKlass org/eclipse/debug/internal/core/LaunchManager$LaunchesNotifier
  1931. instanceKlass org/eclipse/debug/internal/core/LaunchManager$LaunchNotifier
  1932. instanceKlass org/eclipse/debug/internal/core/InputStreamMonitor
  1933. instanceKlass org/eclipse/debug/internal/core/StreamDecoder
  1934. instanceKlass org/eclipse/debug/internal/core/OutputStreamMonitor
  1935. instanceKlass org/eclipse/debug/core/model/IBinaryStreamMonitor
  1936. instanceKlass org/eclipse/debug/core/model/IFlushableStreamMonitor
  1937. instanceKlass org/eclipse/debug/core/model/IStreamMonitor
  1938. instanceKlass org/eclipse/debug/internal/core/StreamsProxy
  1939. instanceKlass org/eclipse/debug/core/model/IBinaryStreamsProxy
  1940. instanceKlass org/eclipse/debug/core/model/IStreamsProxy2
  1941. instanceKlass org/eclipse/debug/core/model/IStreamsProxy
  1942. instanceKlass org/eclipse/debug/core/ILaunchListener
  1943. instanceKlass java/lang/ProcessImpl$2
  1944. instanceKlass @bci java/lang/ProcessImpl <init> ([Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;[JZZ)V 286 <appendix> member <vmtarget> ; # java/lang/ProcessImpl$$Lambda+0x000002032b4eb838
  1945. instanceKlass @cpi java/lang/ProcessImpl 640 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b5a0800
  1946. instanceKlass java/lang/ProcessBuilder
  1947. instanceKlass @bci org/eclipse/debug/core/DebugPlugin exec ([Ljava/lang/String;Ljava/io/File;[Ljava/lang/String;Z)Ljava/lang/Process; 18 <appendix> argL0 ; # org/eclipse/debug/core/DebugPlugin$$Lambda+0x000002032b326848
  1948. instanceKlass @bci org/eclipse/debug/core/DebugPlugin getExecFactories ()Ljava/util/List; 225 <appendix> argL0 ; # org/eclipse/debug/core/DebugPlugin$$Lambda+0x000002032b326638
  1949. instanceKlass org/eclipse/debug/core/DebugPlugin$ExecFactoryFacade
  1950. instanceKlass org/eclipse/debug/core/ExecFactory
  1951. instanceKlass org/eclipse/lsp4j/WorkDoneProgressEnd
  1952. instanceKlass jdk/internal/math/DoubleToDecimal
  1953. instanceKlass jdk/internal/math/FormattedFPDecimal
  1954. instanceKlass org/eclipse/lsp4j/WorkDoneProgressReport
  1955. instanceKlass org/eclipse/lsp4j/adapters/WorkDoneProgressNotificationAdapter$1
  1956. instanceKlass @bci org/eclipse/lsp4j/adapters/ProgressNotificationAdapter create (Lcom/google/gson/Gson;Lcom/google/gson/reflect/TypeToken;)Lcom/google/gson/TypeAdapter; 63 <appendix> argL0 ; # org/eclipse/lsp4j/adapters/ProgressNotificationAdapter$$Lambda+0x000002032b58f288
  1957. instanceKlass @bci java/util/function/Predicate or (Ljava/util/function/Predicate;)Ljava/util/function/Predicate; 7 <appendix> member <vmtarget> ; # java/util/function/Predicate$$Lambda+0x000002032b4eaf68
  1958. instanceKlass @cpi java/util/function/Predicate 78 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b5a0400
  1959. instanceKlass org/eclipse/lsp4j/jsonrpc/json/adapters/EitherTypeAdapter$PropertyChecker
  1960. instanceKlass com/google/gson/JsonDeserializer
  1961. instanceKlass com/google/gson/JsonSerializer
  1962. instanceKlass org/eclipse/lsp4j/adapters/ProgressNotificationAdapter
  1963. instanceKlass org/eclipse/lsp4j/WorkDoneProgressBegin
  1964. instanceKlass sun/nio/ch/WindowsAsynchronousFileChannelImpl$WriteTask
  1965. instanceKlass com/google/gson/internal/Streams
  1966. instanceKlass org/eclipse/lsp4j/jsonrpc/RemoteEndpoint$PendingRequestInfo
  1967. instanceKlass java/util/concurrent/ForkJoinTask
  1968. instanceKlass java/util/concurrent/CompletableFuture$AsynchronousCompletionTask
  1969. instanceKlass java/util/concurrent/CompletableFuture$AltResult
  1970. instanceKlass org/eclipse/jdt/core/compiler/CompilationParticipant
  1971. instanceKlass org/eclipse/jdt/internal/launching/LaunchingPlugin$VMChanges$1
  1972. instanceKlass @bci org/eclipse/jdt/internal/core/JavaModelManager variableNames ()[Ljava/lang/String; 7 <appendix> argL0 ; # org/eclipse/jdt/internal/core/JavaModelManager$$Lambda+0x000002032b5782c0
  1973. instanceKlass org/eclipse/jdt/internal/launching/LaunchingPlugin$VMChanges
  1974. instanceKlass @bci org/eclipse/jdt/launching/AbstractVMInstallType getVMInstalls ()[Lorg/eclipse/jdt/launching/IVMInstall; 4 <appendix> argL0 ; # org/eclipse/jdt/launching/AbstractVMInstallType$$Lambda+0x000002032b59ec70
  1975. instanceKlass @bci org/eclipse/jdt/launching/VMStandin convertToRealVM ()Lorg/eclipse/jdt/launching/IVMInstall; 155 <appendix> member <vmtarget> ; # org/eclipse/jdt/launching/VMStandin$$Lambda+0x000002032b59e4f8
  1976. instanceKlass @cpi org/eclipse/jdt/launching/VMStandin 173 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b5a0000
  1977. instanceKlass org/eclipse/jdt/launching/IVMRunner
  1978. instanceKlass org/eclipse/jdt/internal/launching/CompositeId
  1979. instanceKlass org/eclipse/jdt/launching/AbstractVMInstall
  1980. instanceKlass org/eclipse/jdt/launching/IVMInstall3
  1981. instanceKlass org/eclipse/jdt/launching/IVMInstall2
  1982. instanceKlass org/eclipse/jdt/launching/LibraryLocation
  1983. instanceKlass com/sun/org/apache/xml/internal/serializer/EncodingInfo$EncodingImpl
  1984. instanceKlass com/sun/org/apache/xml/internal/serializer/EncodingInfo$InEncoding
  1985. instanceKlass org/eclipse/jdt/internal/launching/LibraryInfo
  1986. instanceKlass @bci org/eclipse/jdt/internal/launching/StandardVMType readReleaseVersion (Ljava/io/File;)Ljava/lang/String; 63 <appendix> argL0 ; # org/eclipse/jdt/internal/launching/StandardVMType$$Lambda+0x000002032b59c678
  1987. instanceKlass java/nio/file/FileChannelLinesSpliterator$1
  1988. instanceKlass @bci org/eclipse/jdt/internal/launching/StandardVMType readReleaseVersion (Ljava/io/File;)Ljava/lang/String; 48 <appendix> argL0 ; # org/eclipse/jdt/internal/launching/StandardVMType$$Lambda+0x000002032b59c438
  1989. instanceKlass java/util/stream/Streams$1
  1990. instanceKlass @bci java/nio/file/Files createFileChannelLinesStream (Ljava/nio/channels/FileChannel;Ljava/nio/charset/Charset;)Ljava/util/stream/Stream; 53 <appendix> member <vmtarget> ; # java/nio/file/Files$$Lambda+0x000002032b4e9b68
  1991. instanceKlass @bci java/nio/file/Files asUncheckedRunnable (Ljava/io/Closeable;)Ljava/lang/Runnable; 1 <appendix> member <vmtarget> ; # java/nio/file/Files$$Lambda+0x000002032b4e9950
  1992. instanceKlass java/nio/channels/spi/AbstractInterruptibleChannel$1
  1993. instanceKlass sun/nio/ch/Interruptible
  1994. instanceKlass java/nio/file/FileChannelLinesSpliterator
  1995. instanceKlass org/eclipse/jdt/internal/launching/VMListener
  1996. instanceKlass org/eclipse/jdt/internal/launching/VMDefinitionsContainer
  1997. instanceKlass @bci org/eclipse/jdt/internal/launching/StandardVMType <clinit> ()V 78 <appendix> argL0 ; # org/eclipse/jdt/internal/launching/StandardVMType$$Lambda+0x000002032b32f808
  1998. instanceKlass @bci org/eclipse/jdt/internal/launching/StandardVMType <clinit> ()V 0 <appendix> argL0 ; # org/eclipse/jdt/internal/launching/StandardVMType$$Lambda+0x000002032b32f5f8
  1999. instanceKlass org/eclipse/jdt/launching/AbstractVMInstallType
  2000. instanceKlass org/eclipse/jdt/launching/IVMInstallType
  2001. instanceKlass @bci org/eclipse/jdt/ls/core/internal/preferences/StandardPreferenceManager update (Lorg/eclipse/jdt/ls/core/internal/preferences/Preferences;)V 364 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/preferences/StandardPreferenceManager$$Lambda+0x000002032b594228
  2002. instanceKlass @bci org/eclipse/jdt/ls/core/internal/preferences/Preferences createFrom (Ljava/util/Map;)Lorg/eclipse/jdt/ls/core/internal/preferences/Preferences; 2196 <appendix> member <vmtarget> ; # org/eclipse/jdt/ls/core/internal/preferences/Preferences$$Lambda+0x000002032b594000
  2003. instanceKlass com/google/common/base/CommonPattern
  2004. instanceKlass com/google/common/base/Platform$JdkPatternCompiler
  2005. instanceKlass com/google/common/base/PatternCompiler
  2006. instanceKlass com/google/common/base/Platform
  2007. instanceKlass com/google/common/base/Strings
  2008. instanceKlass @bci org/eclipse/jdt/ls/core/internal/preferences/Preferences createFrom (Ljava/util/Map;)Lorg/eclipse/jdt/ls/core/internal/preferences/Preferences; 1617 <appendix> member <vmtarget> ; # org/eclipse/jdt/ls/core/internal/preferences/Preferences$$Lambda+0x000002032b407cd0
  2009. instanceKlass org/eclipse/jdt/ls/core/internal/RuntimeEnvironment
  2010. instanceKlass org/eclipse/jdt/internal/corext/util/TypeFilter
  2011. instanceKlass @bci org/eclipse/jdt/ls/core/internal/preferences/Preferences setResourceFilters (Ljava/util/List;)Lorg/eclipse/jdt/ls/core/internal/preferences/Preferences; 11 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/preferences/Preferences$$Lambda+0x000002032b407820
  2012. instanceKlass com/google/common/base/Ascii
  2013. instanceKlass com/google/common/base/CharMatcher
  2014. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/MapFlattener
  2015. instanceKlass sun/nio/fs/WindowsUriSupport
  2016. instanceKlass org/eclipse/jdt/ls/core/internal/preferences/ClientPreferences
  2017. instanceKlass com/google/gson/internal/bind/ObjectTypeAdapter$2
  2018. instanceKlass com/google/gson/internal/LinkedTreeMap$LinkedTreeMapIterator
  2019. instanceKlass @bci com/google/gson/internal/ConstructorConstructor newMapConstructor (Ljava/lang/reflect/Type;Ljava/lang/Class;)Lcom/google/gson/internal/ObjectConstructor; 16 <appendix> argL0 ; # com/google/gson/internal/ConstructorConstructor$$Lambda+0x000002032b582148
  2020. instanceKlass org/eclipse/jdt/ls/core/internal/JSONUtility
  2021. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/BaseInitHandler
  2022. instanceKlass com/google/gson/internal/LinkedTreeMap$Node
  2023. instanceKlass com/google/gson/internal/LinkedTreeMap$1
  2024. instanceKlass com/google/gson/internal/bind/JsonElementTypeAdapter$1
  2025. instanceKlass org/eclipse/lsp4j/jsonrpc/util/Preconditions
  2026. instanceKlass org/eclipse/lsp4j/jsonrpc/json/adapters/JsonElementTypeAdapter$Factory
  2027. instanceKlass org/eclipse/lsp4j/StaleRequestCapabilities
  2028. instanceKlass org/eclipse/lsp4j/MarkdownCapabilities
  2029. instanceKlass org/eclipse/lsp4j/RegularExpressionsCapabilities
  2030. instanceKlass org/eclipse/lsp4j/WindowShowMessageRequestActionItemCapabilities
  2031. instanceKlass org/eclipse/lsp4j/ShowDocumentCapabilities
  2032. instanceKlass org/eclipse/lsp4j/WindowShowMessageRequestCapabilities
  2033. instanceKlass org/eclipse/lsp4j/InlayHintResolveSupportCapabilities
  2034. instanceKlass org/eclipse/lsp4j/SemanticTokensClientCapabilitiesRequestsFull
  2035. instanceKlass org/eclipse/lsp4j/SemanticTokensClientCapabilitiesRequests
  2036. instanceKlass org/eclipse/lsp4j/FoldingRangeSupportCapabilities
  2037. instanceKlass org/eclipse/lsp4j/FoldingRangeKindSupportCapabilities
  2038. instanceKlass org/eclipse/lsp4j/jsonrpc/json/adapters/EitherTypeAdapter$EitherTypeArgument
  2039. instanceKlass org/eclipse/lsp4j/DiagnosticsTagSupport
  2040. instanceKlass org/eclipse/lsp4j/CodeActionKindCapabilities
  2041. instanceKlass org/eclipse/lsp4j/CodeActionResolveSupportCapabilities
  2042. instanceKlass org/eclipse/lsp4j/CodeActionLiteralSupportCapabilities
  2043. instanceKlass org/eclipse/lsp4j/ParameterInformationCapabilities
  2044. instanceKlass org/eclipse/lsp4j/SignatureInformationCapabilities
  2045. instanceKlass org/eclipse/lsp4j/CompletionItemInsertTextModeSupportCapabilities
  2046. instanceKlass org/eclipse/lsp4j/CompletionItemResolveSupportCapabilities
  2047. instanceKlass org/eclipse/lsp4j/CompletionItemTagSupportCapabilities
  2048. instanceKlass org/eclipse/lsp4j/CompletionListCapabilities
  2049. instanceKlass org/eclipse/lsp4j/CompletionItemCapabilities
  2050. instanceKlass org/eclipse/lsp4j/CompletionItemKindCapabilities
  2051. instanceKlass org/eclipse/lsp4j/PublishDiagnosticsCapabilities
  2052. instanceKlass org/eclipse/lsp4j/WorkspaceSymbolResolveSupportCapabilities
  2053. instanceKlass org/eclipse/lsp4j/SymbolTagSupportCapabilities
  2054. instanceKlass org/eclipse/lsp4j/SymbolKindCapabilities
  2055. instanceKlass @bci org/eclipse/lsp4j/jsonrpc/json/adapters/CollectionTypeAdapter$Factory getConstructor (Ljava/lang/Class;)Ljava/util/function/Supplier; 62 <appendix> argL0 ; # org/eclipse/lsp4j/jsonrpc/json/adapters/CollectionTypeAdapter$Factory$$Lambda+0x000002032b432a90
  2056. instanceKlass org/eclipse/lsp4j/jsonrpc/json/adapters/TypeUtils$ParameterizedTypeImpl
  2057. instanceKlass org/eclipse/lsp4j/WorkspaceEditChangeAnnotationSupportCapabilities
  2058. instanceKlass org/eclipse/lsp4j/DiagnosticWorkspaceCapabilities
  2059. instanceKlass org/eclipse/lsp4j/InlineValueWorkspaceCapabilities
  2060. instanceKlass org/eclipse/lsp4j/InlayHintWorkspaceCapabilities
  2061. instanceKlass org/eclipse/lsp4j/CodeLensWorkspaceCapabilities
  2062. instanceKlass org/eclipse/lsp4j/SemanticTokensWorkspaceCapabilities
  2063. instanceKlass org/eclipse/lsp4j/DynamicRegistrationCapabilities
  2064. instanceKlass org/eclipse/lsp4j/WorkspaceEditCapabilities
  2065. instanceKlass org/eclipse/lsp4j/GeneralClientCapabilities
  2066. instanceKlass org/eclipse/lsp4j/NotebookDocumentClientCapabilities
  2067. instanceKlass org/eclipse/lsp4j/WindowClientCapabilities
  2068. instanceKlass org/eclipse/lsp4j/TextDocumentClientCapabilities
  2069. instanceKlass org/eclipse/lsp4j/WorkspaceClientCapabilities
  2070. instanceKlass org/eclipse/lsp4j/ClientCapabilities
  2071. instanceKlass com/google/gson/internal/bind/ReflectiveTypeAdapterFactory$FieldsData
  2072. instanceKlass org/eclipse/lsp4j/jsonrpc/validation/NonNull
  2073. instanceKlass com/google/gson/annotations/SerializedName
  2074. instanceKlass org/eclipse/lsp4j/ClientInfo
  2075. instanceKlass com/google/gson/internal/Primitives
  2076. instanceKlass @bci com/google/gson/internal/ConstructorConstructor newDefaultConstructor (Ljava/lang/Class;Lcom/google/gson/ReflectionAccessFilter$FilterResult;)Lcom/google/gson/internal/ObjectConstructor; 130 <appendix> member <vmtarget> ; # com/google/gson/internal/ConstructorConstructor$$Lambda+0x000002032b580c48
  2077. instanceKlass com/google/gson/internal/ObjectConstructor
  2078. instanceKlass com/google/gson/internal/ReflectionAccessFilterHelper
  2079. instanceKlass org/eclipse/lsp4j/adapters/InitializeParamsTypeAdapter$Factory
  2080. instanceKlass com/google/gson/annotations/JsonAdapter
  2081. instanceKlass org/eclipse/lsp4j/jsonrpc/messages/Tuple$Two
  2082. instanceKlass org/eclipse/lsp4j/jsonrpc/messages/Tuple
  2083. instanceKlass org/eclipse/lsp4j/jsonrpc/json/adapters/TypeUtils
  2084. instanceKlass com/google/gson/internal/reflect/ReflectionHelper$RecordHelper
  2085. instanceKlass com/google/gson/internal/reflect/ReflectionHelper
  2086. instanceKlass com/google/common/io/CharStreams
  2087. instanceKlass com/google/common/base/Charsets
  2088. instanceKlass sun/net/www/http/KeepAliveStreamCleaner$2
  2089. instanceKlass sun/net/www/http/KeepAliveStreamCleaner$1
  2090. instanceKlass sun/net/www/http/Hurryable
  2091. instanceKlass java/util/OptionalInt
  2092. instanceKlass sun/net/www/HeaderParser
  2093. instanceKlass org/eclipse/jdt/core/JavaCore$1
  2094. instanceKlass org/eclipse/core/internal/content/ContentTypeHandler
  2095. instanceKlass @bci org/eclipse/core/runtime/ServiceCaller callOnce (Ljava/lang/Class;Ljava/lang/Class;Ljava/lang/String;Ljava/util/function/Consumer;)Z 14 <appendix> member <vmtarget> ; # org/eclipse/core/runtime/ServiceCaller$$Lambda+0x000002032b1a1f40
  2096. instanceKlass @bci org/eclipse/core/internal/content/ContentTypeManager$DebuggingHolder <clinit> ()V 9 <appendix> member <vmtarget> ; # org/eclipse/core/internal/content/ContentTypeManager$DebuggingHolder$$Lambda+0x000002032b575c78
  2097. instanceKlass org/eclipse/core/internal/content/ContentTypeManager$DebuggingHolder
  2098. instanceKlass @bci org/eclipse/jdt/internal/compiler/ast/FakedTrackingVariable getCloseTrackingVariable (Lorg/eclipse/jdt/internal/compiler/ast/Expression;Lorg/eclipse/jdt/internal/compiler/flow/FlowInfo;Lorg/eclipse/jdt/internal/compiler/flow/FlowContext;Z)Lorg/eclipse/jdt/internal/compiler/ast/FakedTrackingVariable; 60 <adapter> ; # java/lang/invoke/LambdaForm$MH+0x000002032b576c00
  2099. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b576800
  2100. instanceKlass @bci org/eclipse/jdt/internal/compiler/ast/FakedTrackingVariable getCloseTrackingVariable (Lorg/eclipse/jdt/internal/compiler/ast/Expression;Lorg/eclipse/jdt/internal/compiler/flow/FlowInfo;Lorg/eclipse/jdt/internal/compiler/flow/FlowContext;Z)Lorg/eclipse/jdt/internal/compiler/ast/FakedTrackingVariable; 60 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b576400
  2101. instanceKlass @bci org/eclipse/core/internal/content/ContentTypeBuilder applyPreferences (Lorg/eclipse/core/internal/content/ContentTypeCatalog;Lorg/eclipse/core/runtime/preferences/IEclipsePreferences;Z)V 4 <appendix> member <vmtarget> ; # org/eclipse/core/internal/content/ContentTypeBuilder$$Lambda+0x000002032b575868
  2102. instanceKlass @cpi org/eclipse/core/internal/content/ContentTypeBuilder 424 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b576000
  2103. instanceKlass org/eclipse/core/runtime/preferences/IPreferenceNodeVisitor
  2104. instanceKlass org/eclipse/core/internal/content/FileSpec
  2105. instanceKlass org/eclipse/core/internal/content/ContentType
  2106. instanceKlass org/eclipse/core/internal/content/Util
  2107. instanceKlass @bci org/eclipse/core/internal/content/ContentTypeCatalog <init> (Lorg/eclipse/core/internal/content/ContentTypeManager;I)V 118 <appendix> argL0 ; # org/eclipse/core/internal/content/ContentTypeCatalog$$Lambda+0x000002032b574a20
  2108. instanceKlass @bci org/eclipse/core/internal/content/ContentTypeCatalog <init> (Lorg/eclipse/core/internal/content/ContentTypeManager;I)V 109 <appendix> argL0 ; # org/eclipse/core/internal/content/ContentTypeCatalog$$Lambda+0x000002032b574798
  2109. instanceKlass @bci org/eclipse/core/internal/content/ContentTypeCatalog <init> (Lorg/eclipse/core/internal/content/ContentTypeManager;I)V 100 <appendix> argL0 ; # org/eclipse/core/internal/content/ContentTypeCatalog$$Lambda+0x000002032b574510
  2110. instanceKlass @bci org/eclipse/core/internal/content/ContentTypeCatalog <init> (Lorg/eclipse/core/internal/content/ContentTypeManager;I)V 91 <appendix> argL0 ; # org/eclipse/core/internal/content/ContentTypeCatalog$$Lambda+0x000002032b574288
  2111. instanceKlass @bci org/eclipse/core/internal/content/ContentTypeCatalog <init> (Lorg/eclipse/core/internal/content/ContentTypeManager;I)V 82 <appendix> argL0 ; # org/eclipse/core/internal/content/ContentTypeCatalog$$Lambda+0x000002032b574000
  2112. instanceKlass org/eclipse/jdt/internal/core/index/Index
  2113. instanceKlass org/eclipse/jdt/core/search/SearchMatch
  2114. instanceKlass org/eclipse/jdt/internal/compiler/env/IBinaryType
  2115. instanceKlass org/eclipse/jdt/internal/compiler/lookup/IQualifiedTypeResolutionListener
  2116. instanceKlass org/eclipse/jdt/internal/core/search/matching/MatchLocator
  2117. instanceKlass org/eclipse/jdt/internal/core/search/IndexSelector
  2118. instanceKlass org/eclipse/jdt/core/search/SearchDocument
  2119. instanceKlass org/eclipse/jdt/internal/core/search/PatternSearchJob
  2120. instanceKlass org/eclipse/jdt/internal/core/search/matching/TypeDeclarationPattern$PackageNameSet
  2121. instanceKlass @bci org/eclipse/m2e/core/internal/embedder/MavenImpl getMirror (Lorg/apache/maven/artifact/repository/ArtifactRepository;)Lorg/apache/maven/settings/Mirror; 6 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/embedder/MavenImpl$$Lambda+0x000002032b5464f8
  2122. instanceKlass @bci java/util/stream/MatchOps makeRef (Ljava/util/function/Predicate;Ljava/util/stream/MatchOps$MatchKind;)Ljava/util/stream/TerminalOp; 20 <appendix> member <vmtarget> ; # java/util/stream/MatchOps$$Lambda+0x000002032b4e6b98
  2123. instanceKlass java/util/stream/MatchOps$BooleanTerminalSink
  2124. instanceKlass java/util/stream/MatchOps$MatchOp
  2125. instanceKlass java/util/stream/MatchOps
  2126. instanceKlass @bci org/eclipse/m2e/core/internal/embedder/MavenImpl addDefaultRepository (Ljava/util/List;)V 6 <appendix> argL0 ; # org/eclipse/m2e/core/internal/embedder/MavenImpl$$Lambda+0x000002032b5462b8
  2127. instanceKlass org/eclipse/jdt/internal/core/search/TypeNameRequestorWrapper
  2128. instanceKlass org/eclipse/jdt/internal/core/search/AbstractSearchScope
  2129. instanceKlass org/apache/commons/codec/CharEncoding
  2130. instanceKlass org/eclipse/jdt/internal/core/search/IRestrictedAccessMethodRequestor
  2131. instanceKlass org/eclipse/jdt/core/search/ISearchPattern
  2132. instanceKlass org/apache/commons/codec/binary/Hex
  2133. instanceKlass org/eclipse/jdt/core/search/SearchEngine
  2134. instanceKlass org/apache/commons/codec/BinaryDecoder
  2135. instanceKlass org/apache/commons/codec/Decoder
  2136. instanceKlass org/apache/commons/codec/BinaryEncoder
  2137. instanceKlass org/apache/commons/codec/Encoder
  2138. instanceKlass org/eclipse/jdt/internal/core/ModelUpdater
  2139. instanceKlass sun/security/provider/ByteArrayAccess$LE
  2140. instanceKlass org/apache/commons/codec/binary/StringUtils
  2141. instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$11
  2142. instanceKlass org/apache/commons/codec/digest/DigestUtils
  2143. instanceKlass org/eclipse/lsp4j/WorkDoneProgressNotification
  2144. instanceKlass org/eclipse/m2e/core/internal/embedder/ReadonlyMavenExecutionRequest
  2145. instanceKlass org/eclipse/m2e/core/internal/embedder/AbstractTransferListenerAdapter
  2146. instanceKlass org/apache/maven/session/scope/internal/SessionScope$CachingProvider
  2147. instanceKlass @bci org/apache/maven/session/scope/internal/SessionScope seed (Ljava/lang/Class;Ljava/lang/Object;)V 3 <appendix> member <vmtarget> ; # org/apache/maven/session/scope/internal/SessionScope$$Lambda+0x000002032b56b5a8
  2148. # instanceKlass org/apache/maven/session/scope/internal/SessionScope$$Lambda+0x000002032b56b7d8
  2149. instanceKlass org/apache/maven/settings/RuntimeInfo
  2150. instanceKlass org/apache/maven/execution/DefaultMavenExecutionResult
  2151. instanceKlass org/eclipse/aether/AbstractForwardingRepositorySystemSession
  2152. instanceKlass org/eclipse/aether/internal/impl/Utils
  2153. instanceKlass org/eclipse/aether/internal/impl/LocalPathPrefixComposerFactorySupport$LocalPathPrefixComposerSupport
  2154. instanceKlass org/eclipse/aether/internal/impl/SimpleLocalRepositoryManager
  2155. instanceKlass org/eclipse/aether/internal/impl/PrioritizedComponent
  2156. instanceKlass org/eclipse/sisu/wire/EntrySetAdapter$ValueIterator
  2157. instanceKlass org/eclipse/aether/internal/impl/PrioritizedComponents
  2158. # instanceKlass org/apache/maven/RepositoryUtils$$Lambda+0x000002032b569550
  2159. instanceKlass @bci org/apache/maven/RepositoryUtils toRepos (Ljava/util/List;)Ljava/util/List; 18 <appendix> argL0 ; # org/apache/maven/RepositoryUtils$$Lambda+0x000002032b569320
  2160. instanceKlass org/eclipse/aether/repository/RemoteRepository$Builder
  2161. instanceKlass org/eclipse/aether/util/ConfigUtils
  2162. instanceKlass org/eclipse/aether/util/repository/DefaultAuthenticationSelector
  2163. instanceKlass org/eclipse/aether/util/repository/DefaultProxySelector
  2164. instanceKlass org/eclipse/aether/util/repository/DefaultMirrorSelector
  2165. instanceKlass org/apache/maven/settings/crypto/DefaultSettingsDecryptionResult
  2166. instanceKlass org/apache/maven/settings/crypto/DefaultSettingsDecryptionRequest
  2167. instanceKlass org/apache/maven/RepositoryUtils$MavenArtifactTypeRegistry
  2168. instanceKlass org/apache/maven/RepositoryUtils
  2169. instanceKlass org/eclipse/aether/util/repository/SimpleResolutionErrorPolicy
  2170. instanceKlass @bci java/util/stream/Collectors mapMerger (Ljava/util/function/BinaryOperator;)Ljava/util/function/BinaryOperator; 1 <appendix> member <vmtarget> ; # java/util/stream/Collectors$$Lambda+0x000002032b4e5808
  2171. # instanceKlass java/util/stream/Collectors$$Lambda+0x000002032b4e55c8
  2172. # instanceKlass java/util/stream/Collectors$$Lambda+0x000002032b4e53a0
  2173. instanceKlass @bci java/util/stream/Collectors toMap (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/util/function/BinaryOperator;Ljava/util/function/Supplier;)Ljava/util/stream/Collector; 3 <appendix> member <vmtarget> ; # java/util/stream/Collectors$$Lambda+0x000002032b4e5178
  2174. # instanceKlass java/util/stream/Collectors$$Lambda+0x000002032b4e4f68
  2175. instanceKlass @bci java/util/stream/Collectors toMap (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/util/function/BinaryOperator;)Ljava/util/stream/Collector; 3 <appendix> argL0 ; # java/util/stream/Collectors$$Lambda+0x000002032b4e4d58
  2176. # instanceKlass org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory$$Lambda+0x000002032b567448
  2177. instanceKlass @bci org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory getPropertiesFromRequestedProfiles (Lorg/apache/maven/execution/MavenExecutionRequest;)Ljava/util/Map; 59 <appendix> argL0 ; # org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory$$Lambda+0x000002032b567210
  2178. # instanceKlass org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory$$Lambda+0x000002032b566fe0
  2179. instanceKlass @bci org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory getPropertiesFromRequestedProfiles (Lorg/apache/maven/execution/MavenExecutionRequest;)Ljava/util/Map; 54 <appendix> argL0 ; # org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory$$Lambda+0x000002032b566db0
  2180. # instanceKlass org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory$$Lambda+0x000002032b566b80
  2181. instanceKlass @bci org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory getPropertiesFromRequestedProfiles (Lorg/apache/maven/execution/MavenExecutionRequest;)Ljava/util/Map; 49 <appendix> argL0 ; # org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory$$Lambda+0x000002032b566950
  2182. # instanceKlass org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory$$Lambda+0x000002032b566720
  2183. instanceKlass @bci org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory getPropertiesFromRequestedProfiles (Lorg/apache/maven/execution/MavenExecutionRequest;)Ljava/util/Map; 39 <appendix> argL0 ; # org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory$$Lambda+0x000002032b5664f0
  2184. instanceKlass @bci org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory getPropertiesFromRequestedProfiles (Lorg/apache/maven/execution/MavenExecutionRequest;)Ljava/util/Map; 29 <appendix> argL0 ; # org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory$$Lambda+0x000002032b5662c0
  2185. # instanceKlass org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory$$Lambda+0x000002032b566090
  2186. # instanceKlass org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory$$Lambda+0x000002032b565e48
  2187. instanceKlass @bci org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory getPropertiesFromRequestedProfiles (Lorg/apache/maven/execution/MavenExecutionRequest;)Ljava/util/Map; 19 <appendix> member <vmtarget> ; # org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory$$Lambda+0x000002032b565c00
  2188. instanceKlass org/eclipse/aether/util/repository/SimpleArtifactDescriptorPolicy
  2189. instanceKlass java/util/concurrent/locks/ReentrantReadWriteLock$Sync$HoldCounter
  2190. instanceKlass org/eclipse/aether/artifact/DefaultArtifactType
  2191. instanceKlass org/eclipse/aether/util/artifact/SimpleArtifactTypeRegistry
  2192. instanceKlass org/eclipse/aether/util/graph/transformer/JavaDependencyContextRefiner
  2193. instanceKlass org/eclipse/aether/util/graph/transformer/ChainedDependencyGraphTransformer
  2194. instanceKlass org/eclipse/aether/util/graph/transformer/ConflictResolver
  2195. instanceKlass org/eclipse/aether/graph/Exclusion
  2196. instanceKlass org/eclipse/aether/util/graph/selector/ExclusionDependencySelector
  2197. instanceKlass org/eclipse/aether/util/graph/selector/OptionalDependencySelector
  2198. instanceKlass org/eclipse/aether/util/graph/selector/ScopeDependencySelector
  2199. instanceKlass org/eclipse/aether/util/graph/selector/AndDependencySelector
  2200. instanceKlass org/eclipse/aether/util/graph/manager/ClassicDependencyManager
  2201. instanceKlass org/eclipse/aether/util/graph/traverser/FatArtifactTraverser
  2202. instanceKlass org/eclipse/aether/DefaultSessionData
  2203. instanceKlass org/eclipse/aether/DefaultRepositorySystemSession$NullFileTransformerManager
  2204. instanceKlass org/eclipse/aether/transform/FileTransformerManager
  2205. instanceKlass org/eclipse/aether/DefaultRepositorySystemSession$NullArtifactTypeRegistry
  2206. instanceKlass org/eclipse/aether/DefaultRepositorySystemSession$NullAuthenticationSelector
  2207. instanceKlass org/eclipse/aether/DefaultRepositorySystemSession$NullProxySelector
  2208. instanceKlass org/eclipse/aether/DefaultRepositorySystemSession$NullMirrorSelector
  2209. instanceKlass org/eclipse/aether/SessionData
  2210. instanceKlass org/eclipse/aether/artifact/ArtifactTypeRegistry
  2211. instanceKlass org/apache/maven/repository/internal/MavenRepositorySystemUtils
  2212. instanceKlass org/apache/maven/graph/DefaultGraphBuilder$$FastClassByGuice$$197045891
  2213. instanceKlass jdk/internal/math/MathUtils
  2214. instanceKlass jdk/internal/math/FloatToDecimal
  2215. instanceKlass org/apache/maven/plugin/prefix/internal/DefaultPluginPrefixResolver$$FastClassByGuice$$195577190
  2216. instanceKlass org/apache/maven/plugin/CompoundMojoExecutionListener
  2217. instanceKlass org/apache/maven/plugin/DefaultBuildPluginManager$$FastClassByGuice$$194539330
  2218. instanceKlass org/apache/maven/lifecycle/internal/DefaultLifecycleTaskSegmentCalculator$$FastClassByGuice$$193517600
  2219. instanceKlass org/apache/maven/lifecycle/internal/DefaultExecutionEventCatapult$$FastClassByGuice$$192279710
  2220. instanceKlass org/apache/maven/project/DefaultProjectDependenciesResolver$$FastClassByGuice$$191255661
  2221. instanceKlass org/apache/maven/project/RepositorySessionDecorator
  2222. instanceKlass com/google/inject/internal/DelegatingInvocationHandler
  2223. instanceKlass org/apache/maven/artifact/repository/metadata/io/DefaultMetadataReader$$FastClassByGuice$$190118588
  2224. instanceKlass org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver$$FastClassByGuice$$189136066
  2225. instanceKlass org/apache/maven/rtinfo/internal/DefaultRuntimeInformation$$FastClassByGuice$$188238092
  2226. instanceKlass org/apache/maven/plugin/DefaultPluginDescriptorCache$$FastClassByGuice$$186981278
  2227. instanceKlass org/apache/maven/plugin/internal/DefaultMavenPluginManager$$FastClassByGuice$$185777472
  2228. instanceKlass org/codehaus/plexus/classworlds/realm/Entry
  2229. instanceKlass org/apache/maven/classrealm/DefaultClassRealmRequest
  2230. instanceKlass org/eclipse/sisu/wire/EntryListAdapter$ValueIterator
  2231. instanceKlass org/apache/maven/project/DefaultProjectBuildingHelper$$FastClassByGuice$$185380890
  2232. instanceKlass org/apache/maven/project/DefaultProjectBuilder$$FastClassByGuice$$183738644
  2233. instanceKlass org/apache/maven/DefaultMaven$$FastClassByGuice$$183310492
  2234. instanceKlass sun/security/ssl/TransportContext$NotifyHandshake$1
  2235. instanceKlass sun/net/www/protocol/http/AuthCacheValue
  2236. instanceKlass org/apache/maven/properties/internal/SystemProperties
  2237. instanceKlass sun/security/ssl/TransportContext$NotifyHandshake
  2238. instanceKlass com/sun/crypto/provider/GaloisCounterMode$DecryptOp
  2239. instanceKlass org/codehaus/plexus/util/Os
  2240. instanceKlass org/apache/maven/properties/internal/EnvironmentUtils
  2241. instanceKlass org/apache/maven/artifact/repository/layout/ArtifactRepositoryLayout2
  2242. instanceKlass org/apache/maven/artifact/repository/layout/DefaultRepositoryLayout$$FastClassByGuice$$182300493
  2243. instanceKlass org/apache/maven/repository/DefaultMirrorSelector$$FastClassByGuice$$180748926
  2244. instanceKlass org/apache/maven/repository/legacy/repository/DefaultArtifactRepositoryFactory$$FastClassByGuice$$179670187
  2245. instanceKlass org/eclipse/aether/artifact/ArtifactType
  2246. instanceKlass org/apache/maven/lifecycle/internal/DefaultLifecyclePluginAnalyzer$$FastClassByGuice$$178727236
  2247. instanceKlass org/apache/maven/model/plugin/DefaultLifecycleBindingsInjector$$FastClassByGuice$$177780461
  2248. instanceKlass org/apache/maven/model/PatternSet
  2249. instanceKlass org/apache/maven/model/Contributor
  2250. instanceKlass org/apache/maven/model/merge/ModelMerger$KeyComputer
  2251. instanceKlass org/apache/maven/model/merge/ModelMerger$Remapping
  2252. instanceKlass @bci org/eclipse/aether/internal/impl/synccontext/named/NamedLockFactoryAdapterFactoryImpl <init> (Ljava/util/Map;Ljava/lang/String;Ljava/util/Map;Ljava/lang/String;Lorg/eclipse/aether/impl/RepositorySystemLifecycle;)V 63 <appendix> member <vmtarget> ; # org/eclipse/aether/internal/impl/synccontext/named/NamedLockFactoryAdapterFactoryImpl$$Lambda+0x000002032b55f460
  2253. instanceKlass org/eclipse/sisu/wire/NamedIterableAdapter
  2254. instanceKlass org/eclipse/aether/internal/impl/DefaultUpdateCheckManager$1
  2255. instanceKlass org/apache/maven/repository/legacy/DefaultUpdateCheckManager$$FastClassByGuice$$177043033
  2256. instanceKlass org/apache/maven/repository/legacy/DefaultWagonManager$$FastClassByGuice$$175147354
  2257. instanceKlass org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager$$FastClassByGuice$$174155784
  2258. instanceKlass org/apache/maven/project/artifact/DefaultMetadataSource$$FastClassByGuice$$173844180
  2259. instanceKlass org/apache/maven/artifact/resolver/DefaultResolutionErrorHandler$$FastClassByGuice$$172126131
  2260. instanceKlass org/apache/maven/plugin/internal/DefaultLegacySupport$$FastClassByGuice$$171408581
  2261. instanceKlass org/apache/maven/repository/legacy/resolver/conflict/NearestConflictResolver$$FastClassByGuice$$170361677
  2262. instanceKlass org/apache/maven/artifact/resolver/DefaultArtifactCollector$$FastClassByGuice$$169451325
  2263. instanceKlass org/apache/maven/artifact/resolver/DefaultArtifactResolver$DaemonThreadCreator
  2264. instanceKlass org/apache/maven/artifact/resolver/DefaultArtifactResolver$$FastClassByGuice$$168605801
  2265. instanceKlass org/apache/maven/artifact/factory/DefaultArtifactFactory$$FastClassByGuice$$166931093
  2266. instanceKlass org/apache/maven/repository/legacy/LegacyRepositorySystem$$FastClassByGuice$$165770093
  2267. instanceKlass org/apache/maven/artifact/handler/manager/DefaultArtifactHandlerManager$$FastClassByGuice$$165261786
  2268. instanceKlass com/google/common/collect/LinkedHashMultimap$ValueSet$1
  2269. instanceKlass com/google/common/collect/AbstractMapBasedMultimap$WrappedCollection$WrappedIterator
  2270. instanceKlass com/google/common/collect/SortedSetMultimap
  2271. instanceKlass com/google/common/collect/Multimaps
  2272. instanceKlass com/google/common/collect/MultimapBuilder$ArrayListSupplier
  2273. instanceKlass com/google/common/collect/MultimapBuilder$MultimapBuilderWithKeys
  2274. instanceKlass com/google/common/collect/MultimapBuilder
  2275. instanceKlass org/eclipse/sisu/inject/Guice4$2
  2276. instanceKlass @bci org/eclipse/m2e/core/internal/embedder/MavenImpl getMirrors ()Ljava/util/List; 4 <appendix> argL0 ; # org/eclipse/m2e/core/internal/embedder/MavenImpl$$Lambda+0x000002032b544f08
  2277. instanceKlass @bci org/eclipse/m2e/core/internal/embedder/MavenImpl getExecutionContext ()Lorg/eclipse/m2e/core/embedder/IMavenExecutionContext; 4 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/embedder/MavenImpl$$Lambda+0x000002032b544cf0
  2278. instanceKlass org/apache/maven/settings/building/DefaultSettingsBuildingResult
  2279. instanceKlass org/codehaus/plexus/util/xml/pull/EntityReplacementMap
  2280. instanceKlass org/apache/maven/settings/io/xpp3/SettingsXpp3Reader$1
  2281. instanceKlass org/apache/maven/settings/io/xpp3/SettingsXpp3Reader$ContentTransformer
  2282. instanceKlass org/apache/maven/settings/io/xpp3/SettingsXpp3Reader
  2283. instanceKlass org/codehaus/plexus/interpolation/SimpleRecursionInterceptor
  2284. instanceKlass org/apache/maven/settings/building/DefaultSettingsBuilder$1
  2285. instanceKlass org/codehaus/plexus/interpolation/os/OperatingSystemUtils$DefaultEnvVarSource
  2286. instanceKlass org/codehaus/plexus/interpolation/os/OperatingSystemUtils$EnvVarSource
  2287. instanceKlass org/codehaus/plexus/interpolation/os/OperatingSystemUtils
  2288. instanceKlass org/codehaus/plexus/interpolation/AbstractValueSource
  2289. instanceKlass org/codehaus/plexus/util/xml/pull/MXSerializer
  2290. instanceKlass org/codehaus/plexus/util/xml/pull/XmlSerializer
  2291. instanceKlass org/apache/maven/settings/io/xpp3/SettingsXpp3Writer
  2292. instanceKlass org/codehaus/plexus/util/StringUtils
  2293. instanceKlass org/eclipse/sisu/inject/LazyBeanEntry$JsrNamed
  2294. instanceKlass org/eclipse/sisu/inject/LazyBeanEntry
  2295. instanceKlass javax/annotation/Priority
  2296. instanceKlass org/eclipse/sisu/inject/Implementations
  2297. instanceKlass org/eclipse/sisu/plexus/LazyPlexusBean
  2298. instanceKlass org/eclipse/sisu/inject/RankedSequence$Itr
  2299. instanceKlass org/eclipse/sisu/inject/RankedBindings$Itr
  2300. instanceKlass org/eclipse/sisu/inject/LocatedBeans$Itr
  2301. instanceKlass org/eclipse/sisu/plexus/RealmFilteredBeans$FilteredItr
  2302. instanceKlass org/eclipse/sisu/plexus/DefaultPlexusBeans$Itr
  2303. instanceKlass org/eclipse/sisu/plexus/DefaultPlexusBeans
  2304. instanceKlass org/eclipse/sisu/plexus/RealmFilteredBeans
  2305. instanceKlass org/eclipse/sisu/inject/BeanCache
  2306. instanceKlass org/eclipse/sisu/inject/LocatedBeans
  2307. instanceKlass org/eclipse/sisu/inject/MildElements$Indexable
  2308. instanceKlass org/eclipse/m2e/core/internal/embedder/PlexusContainerManager$2
  2309. instanceKlass org/eclipse/m2e/core/internal/embedder/LifecycleManagerDisposer
  2310. instanceKlass com/google/inject/internal/ProviderInternalFactory$1
  2311. instanceKlass com/google/inject/internal/ConstructorInjector$1
  2312. instanceKlass org/eclipse/sisu/inject/WatchedBeans
  2313. instanceKlass org/eclipse/sisu/inject/MildValues$ValueItr
  2314. instanceKlass org/eclipse/sisu/inject/InjectorBindings
  2315. instanceKlass com/google/inject/spi/ProvisionListener$ProvisionInvocation
  2316. instanceKlass com/google/inject/internal/MembersInjectorImpl$1
  2317. instanceKlass com/google/inject/internal/InternalContext
  2318. instanceKlass com/google/inject/internal/Initializer$1
  2319. instanceKlass com/google/common/collect/AbstractMapBasedMultimap$AsMap$AsMapIterator
  2320. instanceKlass org/codehaus/plexus/DefaultPlexusContainer$$FastClassByGuice$$164073991
  2321. instanceKlass org/eclipse/sisu/wire/TypeConverterCache$$FastClassByGuice$$162779418
  2322. instanceKlass com/google/inject/internal/SingleMethodInjector$1
  2323. instanceKlass org/eclipse/sisu/inject/DefaultBeanLocator$$FastClassByGuice$$161594116
  2324. instanceKlass com/google/inject/internal/InjectorImpl$MethodInvoker
  2325. instanceKlass com/google/inject/internal/SingleMethodInjector
  2326. instanceKlass org/eclipse/sisu/plexus/PlexusXmlBeanConverter$$FastClassByGuice$$160982655
  2327. instanceKlass org/eclipse/m2e/core/internal/embedder/EclipseRepositoryListener$$FastClassByGuice$$159895893
  2328. instanceKlass org/eclipse/m2e/core/internal/embedder/EclipseClassRealmManagerDelegate$$FastClassByGuice$$159023884
  2329. instanceKlass org/eclipse/m2e/core/internal/embedder/EclipseBuildContext$$FastClassByGuice$$157870545
  2330. instanceKlass org/eclipse/m2e/core/internal/project/registry/EclipsePluginDependenciesResolver$$FastClassByGuice$$156322949
  2331. instanceKlass org/eclipse/m2e/core/internal/project/EclipsePluginArtifactsCache$$FastClassByGuice$$155897069
  2332. instanceKlass org/eclipse/m2e/core/internal/project/EclipsePluginRealmCache$$FastClassByGuice$$154607960
  2333. instanceKlass org/eclipse/m2e/core/internal/project/EclipseProjectRealmCache$$FastClassByGuice$$153255917
  2334. instanceKlass org/eclipse/m2e/core/internal/project/EclipseExtensionRealmCache$$FastClassByGuice$$152856127
  2335. instanceKlass org/eclipse/m2e/core/internal/project/EclipseMavenMetadataCache$$FastClassByGuice$$151088838
  2336. instanceKlass org/sonatype/plexus/components/sec/dispatcher/DefaultSecDispatcher$$FastClassByGuice$$150916297
  2337. instanceKlass org/sonatype/plexus/components/cipher/DefaultPlexusCipher$$FastClassByGuice$$149570887
  2338. instanceKlass org/codehaus/plexus/build/DefaultBuildContext$$FastClassByGuice$$148266337
  2339. instanceKlass org/codehaus/plexus/component/configurator/MapOrientedComponentConfigurator$$FastClassByGuice$$147260540
  2340. instanceKlass org/codehaus/plexus/component/configurator/BasicComponentConfigurator$$FastClassByGuice$$145976423
  2341. instanceKlass org/apache/maven/settings/validation/DefaultSettingsValidator$$FastClassByGuice$$145606905
  2342. instanceKlass org/apache/maven/settings/io/DefaultSettingsWriter$$FastClassByGuice$$144692598
  2343. instanceKlass org/apache/maven/settings/io/DefaultSettingsReader$$FastClassByGuice$$142906972
  2344. instanceKlass org/apache/maven/settings/crypto/DefaultSettingsDecrypter$$FastClassByGuice$$141757730
  2345. instanceKlass org/apache/maven/settings/building/DefaultSettingsBuilder$$FastClassByGuice$$140971999
  2346. instanceKlass org/eclipse/aether/transport/wagon/WagonTransporterFactory$$FastClassByGuice$$140006675
  2347. instanceKlass org/eclipse/aether/internal/transport/wagon/PlexusWagonProvider$$FastClassByGuice$$139083542
  2348. instanceKlass org/eclipse/aether/internal/transport/wagon/PlexusWagonConfigurator$$FastClassByGuice$$138370072
  2349. instanceKlass org/eclipse/aether/transport/http/XChecksumChecksumExtractor$$FastClassByGuice$$136892302
  2350. instanceKlass org/eclipse/aether/transport/http/Nexus2ChecksumExtractor$$FastClassByGuice$$135543851
  2351. instanceKlass org/eclipse/aether/transport/http/HttpTransporterFactory$$FastClassByGuice$$135143454
  2352. instanceKlass org/eclipse/aether/transport/file/FileTransporterFactory$$FastClassByGuice$$133668692
  2353. instanceKlass org/apache/maven/repository/internal/VersionsMetadataGeneratorFactory$$FastClassByGuice$$132883641
  2354. instanceKlass org/apache/maven/repository/internal/SnapshotMetadataGeneratorFactory$$FastClassByGuice$$131903285
  2355. instanceKlass org/apache/maven/repository/internal/PluginsMetadataGeneratorFactory$$FastClassByGuice$$130080607
  2356. instanceKlass org/apache/maven/repository/internal/DefaultVersionResolver$$FastClassByGuice$$129022259
  2357. instanceKlass org/apache/maven/repository/internal/DefaultVersionRangeResolver$$FastClassByGuice$$128447978
  2358. instanceKlass org/apache/maven/repository/internal/DefaultModelCacheFactory$$FastClassByGuice$$127763503
  2359. instanceKlass org/apache/maven/repository/internal/DefaultArtifactDescriptorReader$$FastClassByGuice$$126808836
  2360. instanceKlass org/eclipse/aether/named/providers/NoopNamedLockFactory$$FastClassByGuice$$125230794
  2361. instanceKlass org/eclipse/aether/named/providers/LocalSemaphoreNamedLockFactory$$FastClassByGuice$$123853830
  2362. instanceKlass org/eclipse/aether/named/providers/LocalReadWriteLockNamedLockFactory$$FastClassByGuice$$122803767
  2363. instanceKlass org/eclipse/aether/named/providers/FileLockNamedLockFactory$$FastClassByGuice$$122580339
  2364. instanceKlass org/eclipse/aether/internal/impl/synccontext/named/providers/StaticNameMapperProvider$$FastClassByGuice$$121120529
  2365. instanceKlass org/eclipse/aether/internal/impl/synccontext/named/providers/GAVNameMapperProvider$$FastClassByGuice$$120379907
  2366. instanceKlass org/eclipse/aether/internal/impl/synccontext/named/providers/FileStaticNameMapperProvider$$FastClassByGuice$$119431143
  2367. instanceKlass org/eclipse/aether/internal/impl/synccontext/named/providers/FileHashingGAVNameMapperProvider$$FastClassByGuice$$117573407
  2368. instanceKlass org/eclipse/aether/internal/impl/synccontext/named/providers/FileGAVNameMapperProvider$$FastClassByGuice$$117011126
  2369. instanceKlass org/eclipse/aether/internal/impl/synccontext/named/providers/DiscriminatingNameMapperProvider$$FastClassByGuice$$115687757
  2370. instanceKlass org/eclipse/aether/internal/impl/synccontext/named/NamedLockFactoryAdapterFactoryImpl$$FastClassByGuice$$115100204
  2371. instanceKlass org/eclipse/aether/internal/impl/synccontext/legacy/DefaultSyncContextFactory$$FastClassByGuice$$113400883
  2372. instanceKlass org/eclipse/aether/internal/impl/synccontext/DefaultSyncContextFactory$$FastClassByGuice$$112674661
  2373. instanceKlass org/eclipse/aether/internal/impl/slf4j/Slf4jLoggerFactory$$FastClassByGuice$$112097334
  2374. instanceKlass org/eclipse/aether/internal/impl/resolution/TrustedChecksumsArtifactResolverPostProcessor$$FastClassByGuice$$110416563
  2375. instanceKlass org/eclipse/aether/internal/impl/filter/PrefixesRemoteRepositoryFilterSource$$FastClassByGuice$$110056606
  2376. instanceKlass org/eclipse/aether/internal/impl/filter/GroupIdRemoteRepositoryFilterSource$$FastClassByGuice$$109040543
  2377. instanceKlass org/eclipse/aether/internal/impl/filter/DefaultRemoteRepositoryFilterManager$$FastClassByGuice$$107560471
  2378. instanceKlass org/eclipse/aether/internal/impl/collect/df/DfDependencyCollector$$FastClassByGuice$$106423451
  2379. instanceKlass org/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector$$FastClassByGuice$$105634547
  2380. instanceKlass org/eclipse/aether/internal/impl/collect/DefaultDependencyCollector$$FastClassByGuice$$104282554
  2381. instanceKlass org/eclipse/aether/internal/impl/checksum/TrustedToProvidedChecksumsSourceAdapter$$FastClassByGuice$$103720881
  2382. instanceKlass org/eclipse/aether/internal/impl/checksum/SummaryFileTrustedChecksumsSource$$FastClassByGuice$$102488170
  2383. instanceKlass org/eclipse/aether/internal/impl/checksum/SparseDirectoryTrustedChecksumsSource$$FastClassByGuice$$100687528
  2384. instanceKlass org/eclipse/aether/internal/impl/checksum/Sha512ChecksumAlgorithmFactory$$FastClassByGuice$$99714020
  2385. instanceKlass org/eclipse/aether/internal/impl/checksum/Sha256ChecksumAlgorithmFactory$$FastClassByGuice$$98963720
  2386. instanceKlass org/eclipse/aether/internal/impl/checksum/Sha1ChecksumAlgorithmFactory$$FastClassByGuice$$97790161
  2387. instanceKlass @bci com/google/inject/internal/aop/ImmutableStringTrie buildTrie (Ljava/util/Collection;)Ljava/util/function/ToIntFunction; 38 <appendix> argL0 ; # com/google/inject/internal/aop/ImmutableStringTrie$$Lambda+0x000002032b53aa80
  2388. instanceKlass org/eclipse/aether/internal/impl/checksum/Md5ChecksumAlgorithmFactory$$FastClassByGuice$$96653795
  2389. instanceKlass org/eclipse/aether/internal/impl/checksum/DefaultChecksumAlgorithmFactorySelector$$FastClassByGuice$$96310906
  2390. instanceKlass org/eclipse/aether/internal/impl/SimpleLocalRepositoryManagerFactory$$FastClassByGuice$$95315971
  2391. instanceKlass org/eclipse/aether/internal/impl/Maven2RepositoryLayoutFactory$$FastClassByGuice$$93694308
  2392. instanceKlass org/eclipse/aether/internal/impl/LoggerFactoryProvider$$FastClassByGuice$$92679892
  2393. instanceKlass org/eclipse/aether/internal/impl/EnhancedLocalRepositoryManagerFactory$$FastClassByGuice$$92212116
  2394. instanceKlass org/eclipse/aether/internal/impl/DefaultUpdatePolicyAnalyzer$$FastClassByGuice$$90351843
  2395. instanceKlass org/eclipse/aether/internal/impl/DefaultUpdateCheckManager$$FastClassByGuice$$90146502
  2396. instanceKlass org/eclipse/aether/internal/impl/DefaultTransporterProvider$$FastClassByGuice$$88212304
  2397. instanceKlass org/eclipse/aether/internal/impl/DefaultTrackingFileManager$$FastClassByGuice$$87992643
  2398. instanceKlass org/eclipse/aether/internal/impl/DefaultRepositorySystemLifecycle$$FastClassByGuice$$86664977
  2399. instanceKlass org/eclipse/aether/internal/impl/DefaultRepositorySystem$$FastClassByGuice$$85150125
  2400. instanceKlass org/eclipse/aether/internal/impl/DefaultRepositoryLayoutProvider$$FastClassByGuice$$84070609
  2401. instanceKlass org/eclipse/aether/internal/impl/DefaultRepositoryEventDispatcher$$FastClassByGuice$$83065725
  2402. instanceKlass org/eclipse/aether/internal/impl/DefaultRepositoryConnectorProvider$$FastClassByGuice$$82016978
  2403. instanceKlass org/eclipse/aether/internal/impl/DefaultRemoteRepositoryManager$$FastClassByGuice$$81011655
  2404. instanceKlass org/eclipse/aether/internal/impl/DefaultOfflineController$$FastClassByGuice$$80017417
  2405. instanceKlass org/eclipse/aether/internal/impl/DefaultMetadataResolver$$FastClassByGuice$$78854625
  2406. instanceKlass org/eclipse/aether/internal/impl/DefaultLocalRepositoryProvider$$FastClassByGuice$$78604289
  2407. instanceKlass org/eclipse/aether/internal/impl/DefaultLocalPathPrefixComposerFactory$$FastClassByGuice$$76943334
  2408. instanceKlass org/eclipse/aether/internal/impl/DefaultLocalPathComposer$$FastClassByGuice$$76089624
  2409. instanceKlass org/eclipse/aether/internal/impl/DefaultInstaller$$FastClassByGuice$$74475063
  2410. instanceKlass org/eclipse/aether/internal/impl/DefaultFileProcessor$$FastClassByGuice$$74414622
  2411. instanceKlass org/eclipse/aether/internal/impl/DefaultDeployer$$FastClassByGuice$$73107897
  2412. instanceKlass org/eclipse/aether/internal/impl/DefaultChecksumPolicyProvider$$FastClassByGuice$$71715357
  2413. instanceKlass org/eclipse/aether/internal/impl/DefaultArtifactResolver$$FastClassByGuice$$71131798
  2414. instanceKlass org/eclipse/aether/connector/basic/BasicRepositoryConnectorFactory$$FastClassByGuice$$69510219
  2415. instanceKlass org/apache/maven/model/validation/DefaultModelValidator$$FastClassByGuice$$68504553
  2416. instanceKlass org/apache/maven/model/superpom/DefaultSuperPomProvider$$FastClassByGuice$$67768604
  2417. instanceKlass org/apache/maven/model/profile/activation/PropertyProfileActivator$$FastClassByGuice$$66549909
  2418. instanceKlass org/apache/maven/model/profile/activation/OperatingSystemProfileActivator$$FastClassByGuice$$65029890
  2419. instanceKlass org/apache/maven/model/profile/activation/JdkVersionProfileActivator$$FastClassByGuice$$64992954
  2420. instanceKlass com/sun/crypto/provider/GaloisCounterMode$EncryptOp
  2421. instanceKlass com/sun/crypto/provider/GaloisCounterMode$GCMOperation
  2422. instanceKlass com/sun/crypto/provider/GHASH
  2423. instanceKlass org/apache/maven/model/profile/activation/FileProfileActivator$$FastClassByGuice$$63851814
  2424. instanceKlass com/sun/crypto/provider/GCM
  2425. instanceKlass com/sun/crypto/provider/GaloisCounterMode$GCMEngine
  2426. instanceKlass org/apache/maven/model/profile/DefaultProfileSelector$$FastClassByGuice$$62845521
  2427. instanceKlass javax/crypto/spec/GCMParameterSpec
  2428. instanceKlass org/apache/maven/model/profile/DefaultProfileInjector$$FastClassByGuice$$60939343
  2429. instanceKlass org/apache/maven/model/plugin/DefaultReportingConverter$$FastClassByGuice$$60697268
  2430. instanceKlass sun/security/ssl/ChangeCipherSpec$T13ChangeCipherSpecConsumer
  2431. instanceKlass sun/security/ssl/ChangeCipherSpec$T10ChangeCipherSpecProducer
  2432. instanceKlass sun/security/ssl/ChangeCipherSpec$T10ChangeCipherSpecConsumer
  2433. instanceKlass sun/security/ssl/ChangeCipherSpec
  2434. instanceKlass org/apache/maven/model/plugin/DefaultReportConfigurationExpander$$FastClassByGuice$$59530783
  2435. instanceKlass sun/security/internal/spec/TlsPrfParameterSpec
  2436. instanceKlass org/apache/maven/model/plugin/DefaultPluginConfigurationExpander$$FastClassByGuice$$58306997
  2437. instanceKlass sun/security/ssl/Finished$1
  2438. instanceKlass sun/security/ssl/Finished$T13VerifyDataGenerator
  2439. instanceKlass sun/security/ssl/Finished$T12VerifyDataGenerator
  2440. instanceKlass org/apache/maven/model/path/ProfileActivationFilePathInterpolator$$FastClassByGuice$$57186482
  2441. instanceKlass sun/security/ssl/Finished$T10VerifyDataGenerator
  2442. instanceKlass sun/security/ssl/Finished$S30VerifyDataGenerator
  2443. instanceKlass sun/security/ssl/Finished$VerifyDataGenerator
  2444. instanceKlass org/apache/maven/model/path/DefaultUrlNormalizer$$FastClassByGuice$$56223330
  2445. instanceKlass sun/security/internal/spec/TlsKeyMaterialSpec
  2446. instanceKlass javax/crypto/spec/IvParameterSpec
  2447. instanceKlass org/apache/maven/model/path/DefaultPathTranslator$$FastClassByGuice$$54941883
  2448. instanceKlass org/apache/maven/model/path/DefaultModelUrlNormalizer$$FastClassByGuice$$54243051
  2449. instanceKlass sun/security/internal/spec/TlsKeyMaterialParameterSpec
  2450. instanceKlass sun/security/ssl/SSLTrafficKeyDerivation$LegacyTrafficKeyDerivation
  2451. instanceKlass org/apache/maven/model/path/DefaultModelPathTranslator$$FastClassByGuice$$53132456
  2452. instanceKlass sun/security/ssl/SSLTrafficKeyDerivation$1
  2453. instanceKlass sun/security/ssl/SSLTrafficKeyDerivation$T13TrafficKeyDerivationGenerator
  2454. instanceKlass sun/security/ssl/SSLTrafficKeyDerivation$T12TrafficKeyDerivationGenerator
  2455. instanceKlass sun/security/ssl/SSLTrafficKeyDerivation$T10TrafficKeyDerivationGenerator
  2456. instanceKlass sun/security/ssl/SSLTrafficKeyDerivation$S30TrafficKeyDerivationGenerator
  2457. instanceKlass org/apache/maven/model/normalization/DefaultModelNormalizer$$FastClassByGuice$$51727135
  2458. instanceKlass com/sun/crypto/provider/TlsMasterSecretGenerator$TlsMasterSecretKey
  2459. instanceKlass sun/security/internal/interfaces/TlsMasterSecret
  2460. instanceKlass org/apache/maven/model/management/DefaultPluginManagementInjector$$FastClassByGuice$$50979788
  2461. instanceKlass sun/security/internal/spec/TlsMasterSecretParameterSpec
  2462. instanceKlass sun/security/ssl/SSLMasterKeyDerivation$LegacyMasterKeyDerivation
  2463. instanceKlass org/apache/maven/model/management/DefaultDependencyManagementInjector$$FastClassByGuice$$49500864
  2464. instanceKlass sun/security/ssl/SSLMasterKeyDerivation$1
  2465. instanceKlass sun/security/ssl/SSLKeyDerivationGenerator
  2466. instanceKlass @bci javax/crypto/spec/SecretKeySpec <clinit> ()V 0 <appendix> argL0 ; # javax/crypto/spec/SecretKeySpec$$Lambda+0x000002032b4dbc70
  2467. instanceKlass org/apache/maven/model/locator/DefaultModelLocator$$FastClassByGuice$$48286451
  2468. instanceKlass jdk/internal/access/JavaxCryptoSpecAccess
  2469. instanceKlass javax/crypto/spec/SecretKeySpec
  2470. instanceKlass org/apache/maven/model/io/DefaultModelWriter$$FastClassByGuice$$47438648
  2471. instanceKlass org/apache/maven/model/io/DefaultModelReader$$FastClassByGuice$$47011629
  2472. instanceKlass @bci sun/security/ec/XDHKeyAgreement engineDoPhase (Ljava/security/Key;Z)Ljava/security/Key; 70 <appendix> argL0 ; # sun/security/ec/XDHKeyAgreement$$Lambda+0x000002032b48f4f8
  2473. instanceKlass @bci sun/security/ec/XDHKeyAgreement initImpl (Ljava/security/Key;)V 66 <appendix> argL0 ; # sun/security/ec/XDHKeyAgreement$$Lambda+0x000002032b48f2e8
  2474. instanceKlass org/apache/maven/model/interpolation/StringVisitorModelInterpolator$$FastClassByGuice$$45687805
  2475. instanceKlass @bci sun/security/ec/XDHKeyAgreement initImpl (Ljava/security/Key;)V 38 <appendix> argL0 ; # sun/security/ec/XDHKeyAgreement$$Lambda+0x000002032b48f0b8
  2476. instanceKlass @bci sun/security/ec/XDHKeyAgreement initImpl (Ljava/security/Key;)V 22 <appendix> argL0 ; # sun/security/ec/XDHKeyAgreement$$Lambda+0x000002032b48ee88
  2477. instanceKlass org/apache/maven/model/interpolation/DefaultModelVersionProcessor$$FastClassByGuice$$44187308
  2478. instanceKlass javax/crypto/KeyAgreementSpi
  2479. instanceKlass org/apache/maven/model/inheritance/DefaultInheritanceAssembler$$FastClassByGuice$$44020206
  2480. instanceKlass sun/security/ssl/KAKeyDerivation
  2481. instanceKlass sun/security/ssl/ECDHKeyExchange$1
  2482. instanceKlass org/apache/maven/model/composition/DefaultDependencyManagementImporter$$FastClassByGuice$$42721627
  2483. instanceKlass org/apache/maven/model/building/DefaultModelProcessor$$FastClassByGuice$$40980746
  2484. instanceKlass sun/security/ssl/ECDHClientKeyExchange$ECDHEClientKeyExchangeProducer
  2485. instanceKlass org/apache/maven/model/building/DefaultModelBuilder$$FastClassByGuice$$40825007
  2486. instanceKlass sun/security/ssl/ECDHClientKeyExchange$ECDHEClientKeyExchangeConsumer
  2487. instanceKlass sun/security/ssl/ECDHClientKeyExchange$ECDHClientKeyExchangeProducer
  2488. instanceKlass sun/security/ssl/ECDHClientKeyExchange$ECDHClientKeyExchangeConsumer
  2489. instanceKlass sun/security/ssl/ECDHClientKeyExchange
  2490. instanceKlass org/apache/maven/cli/internal/BootstrapCoreExtensionManager$$FastClassByGuice$$38912524
  2491. instanceKlass org/apache/maven/cli/configuration/SettingsXmlConfigurationProcessor$$FastClassByGuice$$37851437
  2492. instanceKlass org/apache/maven/toolchain/io/DefaultToolchainsWriter$$FastClassByGuice$$37044706
  2493. instanceKlass @bci sun/security/ec/XDHKeyFactory generatePublicImpl (Ljava/security/spec/KeySpec;)Ljava/security/PublicKey; 65 <appendix> argL0 ; # sun/security/ec/XDHKeyFactory$$Lambda+0x000002032b48ea28
  2494. instanceKlass @bci sun/security/ec/XDHKeyFactory generatePublicImpl (Ljava/security/spec/KeySpec;)Ljava/security/PublicKey; 51 <appendix> argL0 ; # sun/security/ec/XDHKeyFactory$$Lambda+0x000002032b48e7f8
  2495. instanceKlass org/apache/maven/toolchain/io/DefaultToolchainsReader$$FastClassByGuice$$36574594
  2496. instanceKlass org/apache/maven/toolchain/building/DefaultToolchainsBuilder$$FastClassByGuice$$35539059
  2497. instanceKlass java/security/spec/XECPublicKeySpec
  2498. instanceKlass sun/security/ssl/XDHKeyExchange$XDHECredentials
  2499. instanceKlass org/apache/maven/plugin/internal/ReadOnlyPluginParametersValidator$$FastClassByGuice$$33953288
  2500. instanceKlass sun/security/ssl/NamedGroupCredentials
  2501. instanceKlass org/apache/maven/plugin/internal/PlexusContainerDefaultDependenciesValidator$$FastClassByGuice$$33550798
  2502. instanceKlass sun/security/ssl/ECDHServerKeyExchange$ECDHServerKeyExchangeProducer
  2503. instanceKlass sun/security/ssl/ECDHServerKeyExchange$ECDHServerKeyExchangeConsumer
  2504. instanceKlass sun/security/ssl/ECDHServerKeyExchange
  2505. instanceKlass org/apache/maven/plugin/internal/MavenScopeDependenciesValidator$$FastClassByGuice$$31696408
  2506. instanceKlass @bci sun/security/util/HostnameChecker hasIllegalWildcard (Ljava/lang/String;Z)Z 170 <appendix> argL0 ; # sun/security/util/HostnameChecker$$Lambda+0x000002032b4d9048
  2507. instanceKlass @bci sun/security/util/HostnameChecker hasIllegalWildcard (Ljava/lang/String;Z)Z 162 <appendix> argL0 ; # sun/security/util/HostnameChecker$$Lambda+0x000002032b4d8e08
  2508. instanceKlass sun/security/util/DomainName$RegisteredDomainImpl
  2509. instanceKlass org/apache/maven/plugin/internal/MavenMixedDependenciesValidator$$FastClassByGuice$$31437589
  2510. instanceKlass sun/security/util/DomainName$CommonMatch
  2511. instanceKlass sun/security/util/DomainName$Match
  2512. instanceKlass java/util/LinkedList$DescendingIterator
  2513. instanceKlass org/apache/maven/plugin/internal/Maven3CompatDependenciesValidator$$FastClassByGuice$$29371117
  2514. instanceKlass sun/security/util/DomainName$Rule
  2515. instanceKlass org/apache/maven/plugin/internal/Maven2DependenciesValidator$$FastClassByGuice$$28598218
  2516. instanceKlass sun/security/util/DomainName$Rules$RuleSet
  2517. instanceKlass org/apache/maven/plugin/internal/DeprecatedPluginValidator$$FastClassByGuice$$27826968
  2518. instanceKlass org/apache/maven/plugin/internal/DeprecatedCoreExpressionValidator$$FastClassByGuice$$26498036
  2519. instanceKlass org/apache/maven/plugin/internal/DefaultPluginValidationManager$$FastClassByGuice$$25549847
  2520. instanceKlass org/apache/maven/plugin/DefaultMojosExecutionStrategy$$FastClassByGuice$$24579974
  2521. instanceKlass org/apache/maven/lifecycle/internal/LifecycleDependencyResolver$$FastClassByGuice$$23446317
  2522. instanceKlass org/apache/maven/lifecycle/internal/DefaultProjectArtifactFactory$$FastClassByGuice$$22529684
  2523. instanceKlass org/apache/maven/internal/aether/ResolverLifecycle$$FastClassByGuice$$21143362
  2524. instanceKlass com/google/inject/internal/InjectorImpl$SyntheticProviderBindingImpl$1
  2525. instanceKlass com/google/inject/internal/InjectorImpl$1
  2526. instanceKlass org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory$$FastClassByGuice$$20534992
  2527. instanceKlass com/google/inject/internal/SingleFieldInjector
  2528. instanceKlass org/apache/maven/extension/internal/CoreExportsProvider$$FastClassByGuice$$19564726
  2529. instanceKlass org/apache/maven/execution/DefaultMavenExecutionRequestPopulator$$FastClassByGuice$$18020033
  2530. instanceKlass org/apache/maven/classrealm/DefaultClassRealmManager$$FastClassByGuice$$16814493
  2531. instanceKlass org/apache/maven/ReactorReader$$FastClassByGuice$$16619441
  2532. instanceKlass sun/security/util/DomainName$Rules$1
  2533. instanceKlass @bci sun/security/util/DomainName$Rules getRules (Ljava/lang/String;)Lsun/security/util/DomainName$Rules; 19 <appendix> member <vmtarget> ; # sun/security/util/DomainName$Rules$$Lambda+0x000002032b4d71f0
  2534. instanceKlass sun/security/util/DomainName$Rules
  2535. instanceKlass sun/security/util/DomainName
  2536. instanceKlass sun/security/util/RegisteredDomain
  2537. instanceKlass org/apache/maven/DefaultArtifactFilterManager$$FastClassByGuice$$14944989
  2538. instanceKlass sun/security/util/HostnameChecker
  2539. instanceKlass com/google/inject/internal/SingleParameterInjector
  2540. instanceKlass org/eclipse/m2e/internal/maven/listener/M2EMavenBuildDataBridge$$FastClassByGuice$$14528900
  2541. instanceKlass org/apache/maven/lifecycle/DefaultLifecycles$$FastClassByGuice$$13094862
  2542. instanceKlass org/apache/maven/lifecycle/internal/LifecycleModuleBuilder$$FastClassByGuice$$12104559
  2543. instanceKlass org/apache/maven/bridge/MavenRepositorySystem$$FastClassByGuice$$10997445
  2544. instanceKlass org/apache/maven/lifecycle/internal/MojoDescriptorCreator$$FastClassByGuice$$10280295
  2545. instanceKlass org/apache/maven/lifecycle/internal/MojoExecutor$$FastClassByGuice$$8943434
  2546. instanceKlass org/apache/maven/lifecycle/internal/BuildListCalculator$$FastClassByGuice$$7344319
  2547. instanceKlass org/apache/maven/lifecycle/internal/LifecyclePluginResolver$$FastClassByGuice$$6968038
  2548. instanceKlass sun/security/util/AnchorCertificates$1
  2549. instanceKlass org/apache/maven/lifecycle/internal/LifecycleStarter$$FastClassByGuice$$5802168
  2550. instanceKlass sun/security/util/AnchorCertificates
  2551. instanceKlass sun/security/validator/CamerfirmaTLSPolicy
  2552. instanceKlass sun/security/validator/EntrustTLSPolicy
  2553. instanceKlass sun/security/validator/SymantecTLSPolicy
  2554. instanceKlass org/apache/maven/lifecycle/internal/builder/BuilderCommon$$FastClassByGuice$$4502290
  2555. instanceKlass java/util/RegularEnumSet$EnumSetIterator
  2556. instanceKlass sun/security/validator/CADistrustPolicy$4
  2557. instanceKlass org/apache/maven/eventspy/internal/EventSpyDispatcher$$FastClassByGuice$$3834162
  2558. instanceKlass java/security/cert/PKIXCertPathValidatorResult
  2559. instanceKlass java/security/cert/CertPathValidatorResult
  2560. instanceKlass org/eclipse/sisu/bean/BeanPropertySetter
  2561. instanceKlass org/eclipse/sisu/PreDestroy
  2562. instanceKlass org/eclipse/sisu/PostConstruct
  2563. instanceKlass org/apache/maven/lifecycle/Lifecycle$$FastClassByGuice$$2732015
  2564. instanceKlass org/eclipse/sisu/plexus/PlexusConfigurations$ConfigurationProvider
  2565. instanceKlass org/apache/maven/lifecycle/internal/LifecycleDebugLogger$$FastClassByGuice$$1295315
  2566. instanceKlass sun/security/util/math/IntegerModuloP$MultiplicativeInverser$Secp256R1Field
  2567. instanceKlass com/google/inject/internal/ProxyFactory
  2568. instanceKlass com/google/common/collect/TransformedIterator
  2569. instanceKlass @bci com/google/inject/internal/ConstructorInjectorStore createConstructor (Lcom/google/inject/spi/InjectionPoint;Lcom/google/inject/internal/Errors;)Lcom/google/inject/internal/ConstructorInjector; 62 <appendix> argL0 ; # com/google/inject/internal/ConstructorInjectorStore$$Lambda+0x000002032b52a000
  2570. instanceKlass com/google/inject/spi/InterceptorBinding
  2571. instanceKlass com/google/inject/internal/MethodAspect
  2572. instanceKlass com/google/inject/internal/MembersInjectorImpl
  2573. instanceKlass org/eclipse/sisu/bean/BeanInjector
  2574. instanceKlass org/eclipse/sisu/plexus/PlexusLifecycleManager$2
  2575. instanceKlass org/eclipse/sisu/bean/PropertyBinder$1
  2576. instanceKlass org/eclipse/sisu/plexus/ProvidedPropertyBinding
  2577. instanceKlass org/eclipse/sisu/plexus/PlexusRequirements$AbstractRequirementProvider
  2578. instanceKlass org/eclipse/sisu/bean/BeanPropertyField
  2579. instanceKlass org/eclipse/sisu/bean/DeclaredMembers$MemberIterator
  2580. instanceKlass org/eclipse/sisu/bean/BeanPropertyIterator
  2581. instanceKlass org/eclipse/sisu/bean/DeclaredMembers
  2582. instanceKlass org/eclipse/sisu/bean/IgnoreSetters
  2583. instanceKlass org/eclipse/sisu/bean/BeanProperties
  2584. instanceKlass org/eclipse/sisu/plexus/PlexusRequirements
  2585. instanceKlass org/eclipse/sisu/plexus/PlexusConfigurations
  2586. instanceKlass org/eclipse/sisu/plexus/PlexusPropertyBinder
  2587. instanceKlass org/eclipse/sisu/bean/BeanLifecycle
  2588. instanceKlass com/google/inject/internal/EncounterImpl
  2589. instanceKlass @bci sun/security/ec/ECDSASignature engineVerify ([B)Z 37 <appendix> member <vmtarget> ; # sun/security/ec/ECDSASignature$$Lambda+0x000002032b48e3c0
  2590. instanceKlass @bci sun/security/ec/ECDSAOperations forParameters (Ljava/security/spec/ECParameterSpec;)Ljava/util/Optional; 7 <appendix> member <vmtarget> ; # sun/security/ec/ECDSAOperations$$Lambda+0x000002032b48e188
  2591. instanceKlass sun/security/ec/ECDSAOperations
  2592. instanceKlass java/security/interfaces/DSAPublicKey
  2593. instanceKlass java/security/interfaces/DSAKey
  2594. instanceKlass sun/security/provider/certpath/CertPathConstraintsParameters
  2595. instanceKlass sun/security/provider/certpath/PKIXMasterCertPathValidator
  2596. instanceKlass sun/security/provider/certpath/PolicyNodeImpl
  2597. instanceKlass java/security/cert/PolicyNode
  2598. instanceKlass sun/security/util/DisabledAlgorithmConstraints$CertPathHolder
  2599. instanceKlass @bci sun/security/x509/X509CertImpl getFingerprint (Ljava/lang/String;Lsun/security/util/Debug;)Ljava/lang/String; 7 <appendix> member <vmtarget> ; # sun/security/x509/X509CertImpl$$Lambda+0x000002032b4d2310
  2600. instanceKlass sun/security/util/UntrustedCertificates$1
  2601. instanceKlass sun/security/util/UntrustedCertificates
  2602. instanceKlass java/security/cert/X509CertSelector
  2603. instanceKlass java/security/cert/CertSelector
  2604. instanceKlass @bci com/google/inject/internal/AbstractBindingProcessor$Processor scheduleInitialization (Lcom/google/inject/internal/BindingImpl;)V 9 <appendix> member <vmtarget> ; # com/google/inject/internal/AbstractBindingProcessor$Processor$$Lambda+0x000002032b527710
  2605. instanceKlass sun/security/provider/certpath/PKIX$ValidatorParams
  2606. instanceKlass sun/security/provider/certpath/PKIX
  2607. instanceKlass java/security/cert/CertPathValidatorSpi
  2608. instanceKlass java/security/cert/CertPathValidator
  2609. instanceKlass java/security/cert/PKIXCertPathChecker
  2610. instanceKlass java/security/cert/CertPathChecker
  2611. instanceKlass sun/security/ssl/SSLAlgorithmConstraints$SupportedSignatureAlgorithmConstraints
  2612. instanceKlass @bci org/apache/maven/session/scope/internal/SessionScope scope (Lcom/google/inject/Key;Lcom/google/inject/Provider;)Lcom/google/inject/Provider; 3 <appendix> member <vmtarget> ; # org/apache/maven/session/scope/internal/SessionScope$$Lambda+0x000002032b5274e0
  2613. instanceKlass jdk/internal/icu/impl/NormalizerImpl$ReorderingBuffer
  2614. instanceKlass jdk/internal/icu/impl/NormalizerImpl$UTF16Plus
  2615. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b528000
  2616. instanceKlass org/apache/maven/execution/scope/internal/MojoExecutionScope$2
  2617. instanceKlass java/security/cert/PKIXParameters
  2618. instanceKlass java/security/cert/CertPathParameters
  2619. instanceKlass sun/security/provider/certpath/CertPathHelper
  2620. instanceKlass java/security/cert/TrustAnchor
  2621. instanceKlass sun/security/validator/EndEntityChecker
  2622. instanceKlass sun/security/validator/Validator
  2623. instanceKlass javax/net/ssl/SSLEngine
  2624. instanceKlass sun/security/ssl/X509Authentication$X509Credentials
  2625. instanceKlass com/google/inject/internal/ProviderInternalFactory
  2626. instanceKlass com/google/inject/internal/InternalProviderInstanceBindingImpl$Factory
  2627. instanceKlass com/google/inject/internal/FactoryProxy
  2628. instanceKlass sun/security/ssl/SSLAuthentication
  2629. instanceKlass com/google/inject/internal/InternalFactoryToProviderAdapter
  2630. instanceKlass sun/security/ssl/SSLKeyExchange$SSLKeyExECDHEECDSA
  2631. instanceKlass com/google/inject/internal/ConstructionContext
  2632. instanceKlass sun/security/ssl/SSLKeyExchange$1
  2633. instanceKlass sun/security/ssl/SessionTicketExtension$SessionTicketSpec
  2634. instanceKlass com/google/inject/internal/SingletonScope$1
  2635. instanceKlass sun/security/ssl/ServerNameExtension$SHServerNamesSpec
  2636. instanceKlass sun/security/ssl/RenegoInfoExtension$RenegotiationInfoSpec
  2637. instanceKlass com/google/inject/internal/ProviderToInternalFactoryAdapter
  2638. instanceKlass sun/security/ssl/HandshakeHash$CloneableHash
  2639. instanceKlass sun/security/ssl/HandshakeHash$T12HandshakeHash
  2640. instanceKlass sun/security/util/ByteArrays
  2641. instanceKlass com/google/inject/internal/CycleDetectingLock$CycleDetectingLockFactory$ReentrantCycleDetectingLock
  2642. instanceKlass sun/security/ssl/TransportContext$1
  2643. instanceKlass sun/security/ssl/Plaintext
  2644. instanceKlass com/google/inject/internal/Initializer$InjectableReference
  2645. instanceKlass com/google/inject/internal/ProvisionListenerStackCallback
  2646. instanceKlass com/google/inject/internal/ProvisionListenerCallbackStore$KeyBinding
  2647. instanceKlass com/google/inject/internal/util/Classes
  2648. instanceKlass com/google/inject/spi/ExposedBinding
  2649. instanceKlass com/google/inject/internal/CreationListener
  2650. instanceKlass com/google/inject/internal/InjectorShell$LoggerFactory
  2651. instanceKlass com/google/inject/internal/InjectorShell$InjectorFactory
  2652. instanceKlass com/google/inject/internal/Initializables$1
  2653. instanceKlass com/google/inject/internal/Initializables
  2654. instanceKlass com/google/inject/internal/ConstantFactory
  2655. instanceKlass com/google/inject/internal/InjectorShell
  2656. instanceKlass com/google/inject/internal/ProvisionListenerCallbackStore
  2657. instanceKlass com/google/inject/internal/SingleMemberInjector
  2658. instanceKlass com/google/inject/spi/TypeEncounter
  2659. instanceKlass com/google/inject/internal/MembersInjectorStore
  2660. instanceKlass com/google/inject/internal/TypeConverterBindingProcessor$4
  2661. instanceKlass com/google/inject/internal/TypeConverterBindingProcessor$2
  2662. instanceKlass com/google/inject/internal/TypeConverterBindingProcessor$1
  2663. instanceKlass com/google/inject/internal/TypeConverterBindingProcessor$5
  2664. instanceKlass com/google/inject/internal/FailableCache
  2665. instanceKlass com/google/inject/internal/ConstructorInjectorStore
  2666. instanceKlass com/google/inject/internal/DeferredLookups
  2667. instanceKlass com/google/inject/spi/ConvertedConstantBinding
  2668. instanceKlass com/google/inject/spi/ProviderBinding
  2669. instanceKlass com/google/inject/internal/InjectorImpl
  2670. instanceKlass com/google/inject/internal/Lookups
  2671. instanceKlass com/google/inject/internal/InjectorImpl$InjectorOptions
  2672. instanceKlass @bci com/google/inject/internal/AbstractProcessor process (Lcom/google/inject/internal/InjectorImpl;Ljava/util/List;)V 13 <appendix> member <vmtarget> ; # com/google/inject/internal/AbstractProcessor$$Lambda+0x000002032b51bd80
  2673. instanceKlass @bci com/google/inject/spi/BindingSourceRestriction check (Lcom/google/inject/internal/GuiceInternal;Ljava/util/List;)Lcom/google/common/collect/ImmutableList; 11 <appendix> argL0 ; # com/google/inject/spi/BindingSourceRestriction$$Lambda+0x000002032b51b4c8
  2674. instanceKlass com/google/inject/internal/ProvisionListenerStackCallback$ProvisionCallback
  2675. instanceKlass com/google/inject/internal/ConstructorInjector
  2676. instanceKlass com/google/inject/internal/DefaultConstructionProxyFactory$FastClassProxy
  2677. instanceKlass @bci com/google/inject/internal/aop/AbstractGlueGenerator lambda$bindSignaturesToInvokers$0 (Ljava/lang/invoke/MethodHandle;Ljava/util/function/ToIntFunction;Ljava/lang/String;)Ljava/util/function/BiFunction; 8 <adapter> ; # java/lang/invoke/LambdaForm$MH+0x000002032b51dc00
  2678. instanceKlass @bci com/google/inject/internal/aop/AbstractGlueGenerator bindSignaturesToInvokers (Ljava/util/function/ToIntFunction;Ljava/lang/invoke/MethodHandle;)Ljava/util/function/Function; 13 <appendix> member <vmtarget> ; # com/google/inject/internal/aop/AbstractGlueGenerator$$Lambda+0x000002032b51a6f0
  2679. instanceKlass com/google/inject/internal/aop/ImmutableStringTrie
  2680. instanceKlass org/apache/maven/plugin/internal/DefaultPluginDependenciesResolver$$FastClassByGuice$$686677
  2681. instanceKlass com/google/inject/internal/aop/GeneratedClassDefiner
  2682. # instanceKlass java/lang/ClassLoader$$DefineAccessByGuice$$+0x000002032b51d800
  2683. instanceKlass jdk/internal/org/objectweb/asm/ClassReader
  2684. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b51d400
  2685. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b51d000
  2686. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b51cc00
  2687. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b51c800
  2688. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b51c400
  2689. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b51c000
  2690. instanceKlass @bci com/google/inject/internal/aop/UnsafeClassDefiner$ClassLoaderDefineClassHolder <clinit> ()V 0 <appendix> argL0 ; # com/google/inject/internal/aop/UnsafeClassDefiner$ClassLoaderDefineClassHolder$$Lambda+0x000002032b519e90
  2691. instanceKlass com/google/inject/internal/aop/UnsafeClassDefiner$ClassLoaderDefineClassHolder
  2692. instanceKlass com/google/inject/internal/asm/$Handler
  2693. instanceKlass com/google/inject/internal/asm/$Attribute
  2694. instanceKlass com/google/inject/internal/aop/BytecodeTasks
  2695. instanceKlass @bci com/google/inject/internal/aop/AbstractGlueGenerator generateTrampoline (Lcom/google/inject/internal/asm/$ClassWriter;Ljava/util/Collection;)V 30 <appendix> argL0 ; # com/google/inject/internal/aop/AbstractGlueGenerator$$Lambda+0x000002032b519468
  2696. instanceKlass com/google/inject/internal/asm/$Handle
  2697. instanceKlass com/google/inject/internal/asm/$Label
  2698. instanceKlass com/google/inject/internal/asm/$Frame
  2699. instanceKlass com/google/inject/internal/asm/$ByteVector
  2700. instanceKlass com/google/inject/internal/asm/$Symbol
  2701. instanceKlass com/google/inject/internal/asm/$SymbolTable
  2702. instanceKlass com/google/inject/internal/asm/$FieldVisitor
  2703. instanceKlass com/google/inject/internal/asm/$MethodVisitor
  2704. instanceKlass com/google/inject/internal/asm/$AnnotationVisitor
  2705. instanceKlass com/google/inject/internal/asm/$ModuleVisitor
  2706. instanceKlass com/google/inject/internal/asm/$RecordComponentVisitor
  2707. instanceKlass com/google/inject/internal/asm/$ClassVisitor
  2708. instanceKlass com/google/inject/internal/aop/AbstractGlueGenerator
  2709. instanceKlass @bci com/google/inject/internal/aop/ClassBuilding buildFastClass (Ljava/lang/Class;)Ljava/util/function/Function; 20 <appendix> member <vmtarget> ; # com/google/inject/internal/aop/ClassBuilding$$Lambda+0x000002032b50f7d8
  2710. instanceKlass @bci com/google/inject/internal/aop/ClassBuilding buildFastClass (Ljava/lang/Class;)Ljava/util/function/Function; 10 <appendix> member <vmtarget> ; # com/google/inject/internal/aop/ClassBuilding$$Lambda+0x000002032b50f5b0
  2711. instanceKlass com/google/inject/internal/asm/$Type
  2712. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b515400
  2713. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b515000
  2714. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b514c00
  2715. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b514800
  2716. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b514400
  2717. instanceKlass @bci com/google/inject/internal/aop/UnsafeClassDefiner <clinit> ()V 30 <appendix> argL0 ; # com/google/inject/internal/aop/UnsafeClassDefiner$$Lambda+0x000002032b50f1a0
  2718. instanceKlass com/google/inject/internal/aop/HiddenClassDefiner
  2719. instanceKlass sun/misc/Unsafe
  2720. instanceKlass @bci com/google/inject/internal/aop/UnsafeClassDefiner <clinit> ()V 11 <appendix> argL0 ; # com/google/inject/internal/aop/UnsafeClassDefiner$$Lambda+0x000002032b50ed80
  2721. instanceKlass com/google/inject/internal/aop/AnonymousClassDefiner
  2722. instanceKlass com/google/inject/internal/aop/UnsafeClassDefiner
  2723. instanceKlass com/google/inject/internal/aop/ClassDefining$ClassDefinerHolder
  2724. instanceKlass com/google/inject/internal/aop/ClassDefiner
  2725. instanceKlass com/google/inject/internal/aop/ClassDefining
  2726. instanceKlass @bci com/google/inject/internal/aop/ClassBuilding getOverridableObjectMethods ()[Ljava/lang/reflect/Method; 15 <appendix> member <vmtarget> ; # com/google/inject/internal/aop/ClassBuilding$$Lambda+0x000002032b50e158
  2727. instanceKlass @cpi org/eclipse/core/internal/content/ContentTypeManager$DebuggingHolder 59 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b514000
  2728. instanceKlass @bci com/google/inject/internal/BytecodeGen <clinit> ()V 25 <appendix> argL0 ; # com/google/inject/internal/BytecodeGen$$Lambda+0x000002032b50df08
  2729. instanceKlass com/google/inject/internal/BytecodeGen$EnhancerBuilder
  2730. instanceKlass com/google/inject/internal/aop/ClassBuilding
  2731. instanceKlass com/google/common/collect/MapMakerInternalMap$StrongValueEntry
  2732. instanceKlass com/google/common/collect/MapMakerInternalMap$WeakKeyStrongValueEntry$Helper
  2733. instanceKlass com/google/common/collect/MapMakerInternalMap$InternalEntry
  2734. instanceKlass com/google/common/collect/MapMakerInternalMap$1
  2735. instanceKlass com/google/common/collect/MapMakerInternalMap$InternalEntryHelper
  2736. instanceKlass com/google/common/collect/MapMakerInternalMap$WeakValueReference
  2737. instanceKlass com/google/common/collect/MapMaker
  2738. instanceKlass com/google/inject/internal/BytecodeGen
  2739. instanceKlass com/google/inject/internal/ConstructionProxy
  2740. instanceKlass com/google/inject/internal/DefaultConstructionProxyFactory
  2741. instanceKlass com/google/inject/internal/ConstructionProxyFactory
  2742. instanceKlass com/google/inject/internal/ConstructorBindingImpl$Factory
  2743. instanceKlass org/eclipse/sisu/inject/TypeArguments$Implicit
  2744. instanceKlass org/eclipse/sisu/wire/PlaceholderBeanProvider
  2745. instanceKlass org/eclipse/sisu/wire/BeanProviders$3
  2746. instanceKlass org/sonatype/inject/BeanEntry
  2747. instanceKlass org/eclipse/sisu/BeanEntry
  2748. instanceKlass org/eclipse/sisu/wire/BeanProviders$4
  2749. instanceKlass org/eclipse/sisu/wire/BeanProviders$7
  2750. instanceKlass org/eclipse/sisu/wire/BeanProviders$6
  2751. instanceKlass org/eclipse/sisu/wire/BeanProviders$1
  2752. instanceKlass com/google/inject/spi/ProviderLookup$1
  2753. instanceKlass com/google/inject/spi/ProviderWithDependencies
  2754. instanceKlass com/google/inject/spi/ProviderLookup
  2755. instanceKlass org/eclipse/sisu/wire/BeanProviders
  2756. instanceKlass org/eclipse/sisu/inject/HiddenSource
  2757. instanceKlass org/eclipse/sisu/wire/LocatorWiring
  2758. instanceKlass com/google/inject/ProvidedBy
  2759. instanceKlass com/google/inject/ImplementedBy
  2760. instanceKlass org/sonatype/plexus/components/cipher/PBECipher
  2761. instanceKlass org/codehaus/classworlds/ClassRealm
  2762. instanceKlass org/apache/maven/settings/crypto/SettingsDecryptionResult
  2763. instanceKlass org/apache/maven/settings/building/DefaultSettingsProblemCollector
  2764. instanceKlass org/apache/maven/settings/merge/MavenSettingsMerger
  2765. instanceKlass org/apache/maven/settings/building/SettingsBuildingResult
  2766. instanceKlass org/apache/maven/settings/building/SettingsProblemCollector
  2767. instanceKlass org/eclipse/aether/impl/MetadataGenerator
  2768. instanceKlass org/apache/maven/model/Relocation
  2769. instanceKlass org/apache/maven/repository/internal/ArtifactDescriptorReaderDelegate
  2770. instanceKlass org/eclipse/aether/named/support/AdaptedSemaphoreNamedLock$AdaptedSemaphore
  2771. instanceKlass org/eclipse/aether/named/support/NamedLockFactorySupport$NamedLockHolder
  2772. instanceKlass org/eclipse/aether/named/support/NamedLockSupport
  2773. instanceKlass org/eclipse/aether/named/NamedLock
  2774. instanceKlass org/eclipse/aether/internal/impl/synccontext/named/NamedLockFactoryAdapter
  2775. instanceKlass org/eclipse/aether/spi/log/Logger
  2776. instanceKlass org/eclipse/aether/internal/impl/filter/PrefixesRemoteRepositoryFilterSource$Node
  2777. instanceKlass org/eclipse/aether/spi/connector/filter/RemoteRepositoryFilter$Result
  2778. instanceKlass org/eclipse/aether/spi/connector/filter/RemoteRepositoryFilter
  2779. instanceKlass org/eclipse/aether/collection/DependencyTraverser
  2780. instanceKlass org/eclipse/aether/collection/DependencyManager
  2781. instanceKlass org/eclipse/aether/internal/impl/collect/df/DfDependencyCollector$Args
  2782. instanceKlass org/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector$DescriptorResolutionResult
  2783. instanceKlass org/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector$Args
  2784. instanceKlass org/eclipse/aether/internal/impl/collect/bf/DependencyProcessingContext
  2785. instanceKlass org/eclipse/aether/internal/impl/collect/bf/DependencyResolutionSkipper
  2786. instanceKlass org/eclipse/aether/collection/VersionFilter
  2787. instanceKlass org/eclipse/aether/internal/impl/collect/DependencyCollectorDelegate$Results
  2788. instanceKlass org/eclipse/aether/internal/impl/collect/DefaultVersionFilterContext
  2789. instanceKlass org/eclipse/aether/internal/impl/collect/DefaultDependencyCollectionContext
  2790. instanceKlass org/eclipse/aether/collection/DependencyCollectionContext
  2791. instanceKlass org/eclipse/aether/internal/impl/collect/DataPool
  2792. instanceKlass org/eclipse/aether/graph/DefaultDependencyNode
  2793. instanceKlass org/eclipse/aether/version/Version
  2794. instanceKlass org/eclipse/aether/internal/impl/collect/PremanagedDependency
  2795. instanceKlass org/eclipse/aether/collection/VersionFilter$VersionFilterContext
  2796. instanceKlass org/eclipse/aether/collection/DependencyGraphTransformationContext
  2797. instanceKlass org/eclipse/aether/spi/connector/Transfer
  2798. instanceKlass org/eclipse/aether/internal/impl/checksum/SummaryFileTrustedChecksumsSource$SummaryFileWriter
  2799. instanceKlass org/eclipse/aether/internal/impl/checksum/SparseDirectoryTrustedChecksumsSource$SparseDirectoryWriter
  2800. instanceKlass org/eclipse/aether/spi/checksums/TrustedChecksumsSource$Writer
  2801. instanceKlass org/eclipse/aether/spi/connector/checksum/ChecksumAlgorithm
  2802. instanceKlass org/eclipse/aether/impl/UpdateCheck
  2803. instanceKlass org/eclipse/aether/spi/connector/transport/Transporter
  2804. instanceKlass org/eclipse/aether/resolution/VersionRangeResult
  2805. instanceKlass org/eclipse/aether/resolution/VersionRangeRequest
  2806. instanceKlass org/eclipse/aether/resolution/VersionRequest
  2807. instanceKlass org/eclipse/aether/resolution/DependencyResult
  2808. instanceKlass org/eclipse/aether/resolution/DependencyRequest
  2809. instanceKlass org/eclipse/aether/resolution/ArtifactDescriptorRequest
  2810. instanceKlass org/eclipse/aether/collection/CollectResult
  2811. instanceKlass org/eclipse/aether/collection/CollectRequest
  2812. instanceKlass org/eclipse/aether/spi/connector/layout/RepositoryLayout
  2813. instanceKlass org/eclipse/aether/repository/LocalRepository
  2814. instanceKlass org/eclipse/aether/internal/impl/LocalPathPrefixComposer
  2815. instanceKlass org/eclipse/aether/transform/FileTransformer
  2816. instanceKlass org/eclipse/aether/installation/InstallResult
  2817. instanceKlass org/eclipse/aether/installation/InstallRequest
  2818. instanceKlass org/eclipse/aether/spi/io/FileProcessor$ProgressListener
  2819. instanceKlass org/eclipse/aether/internal/impl/DefaultDeployer$EventCatapult
  2820. instanceKlass org/eclipse/aether/deployment/DeployResult
  2821. instanceKlass org/eclipse/aether/deployment/DeployRequest
  2822. instanceKlass org/eclipse/aether/repository/RepositoryPolicy
  2823. instanceKlass org/eclipse/aether/transfer/TransferResource
  2824. instanceKlass org/eclipse/aether/spi/connector/checksum/ChecksumPolicy
  2825. instanceKlass org/eclipse/aether/internal/impl/DefaultArtifactResolver$ResolutionGroup
  2826. instanceKlass org/eclipse/aether/resolution/VersionResult
  2827. instanceKlass org/eclipse/aether/repository/LocalArtifactResult
  2828. instanceKlass org/eclipse/aether/resolution/ArtifactRequest
  2829. instanceKlass org/eclipse/aether/SyncContext
  2830. instanceKlass org/eclipse/aether/spi/locator/ServiceLocator
  2831. instanceKlass org/eclipse/aether/repository/RemoteRepository
  2832. instanceKlass org/eclipse/aether/spi/connector/RepositoryConnector
  2833. instanceKlass org/apache/maven/model/validation/DefaultModelValidator$1ActivationFrame
  2834. instanceKlass org/apache/maven/model/profile/activation/JdkVersionProfileActivator$RangeValue
  2835. instanceKlass org/apache/maven/model/InputLocation
  2836. instanceKlass org/apache/maven/model/InputSource
  2837. instanceKlass org/apache/maven/model/interpolation/StringVisitorModelInterpolator$InnerInterpolator
  2838. instanceKlass org/apache/maven/model/building/ModelBuildingEventCatapult
  2839. instanceKlass org/apache/maven/model/building/ModelData
  2840. instanceKlass org/apache/maven/model/ActivationProperty
  2841. instanceKlass org/apache/maven/model/Activation
  2842. instanceKlass org/apache/maven/model/ActivationFile
  2843. instanceKlass org/apache/maven/model/profile/DefaultProfileActivationContext
  2844. instanceKlass org/apache/maven/model/ActivationOS
  2845. instanceKlass org/codehaus/plexus/interpolation/RegexBasedInterpolator
  2846. instanceKlass org/apache/maven/model/building/DefaultModelProblemCollector
  2847. instanceKlass org/apache/maven/model/building/ModelCacheTag
  2848. instanceKlass org/apache/maven/model/building/ModelBuildingEvent
  2849. instanceKlass org/apache/maven/model/profile/ProfileActivationContext
  2850. instanceKlass org/apache/maven/model/building/ModelProblemCollectorExt
  2851. instanceKlass org/apache/maven/cli/internal/extension/model/CoreExtension
  2852. instanceKlass org/apache/maven/cli/CliRequest
  2853. instanceKlass org/apache/maven/building/ProblemCollector
  2854. instanceKlass org/apache/maven/toolchain/building/ToolchainsBuildingRequest
  2855. instanceKlass org/apache/maven/toolchain/merge/MavenToolchainMerger
  2856. instanceKlass org/codehaus/plexus/interpolation/InterpolationPostProcessor
  2857. instanceKlass org/apache/maven/toolchain/building/ToolchainsBuildingResult
  2858. instanceKlass org/eclipse/aether/graph/Dependency
  2859. instanceKlass org/eclipse/aether/resolution/ArtifactDescriptorResult
  2860. instanceKlass org/apache/maven/plugin/internal/DefaultPluginValidationManager$PluginValidationIssues
  2861. instanceKlass com/google/inject/util/Types
  2862. instanceKlass org/eclipse/sisu/Nullable
  2863. instanceKlass org/eclipse/aether/repository/LocalRepositoryManager
  2864. instanceKlass org/eclipse/aether/repository/AuthenticationSelector
  2865. instanceKlass org/eclipse/aether/repository/ProxySelector
  2866. instanceKlass org/eclipse/aether/repository/MirrorSelector
  2867. instanceKlass org/eclipse/aether/resolution/ResolutionErrorPolicy
  2868. instanceKlass org/apache/maven/classrealm/ClassRealmConstituent
  2869. instanceKlass org/eclipse/aether/repository/WorkspaceRepository
  2870. instanceKlass org/apache/maven/ArtifactFilterManagerDelegate
  2871. instanceKlass org/eclipse/m2e/internal/maven/listener/M2EMavenBuildDataBridge$MavenProjectBuildData
  2872. instanceKlass org/eclipse/m2e/internal/maven/listener/M2EMavenBuildDataBridge$MavenBuildConnection
  2873. instanceKlass org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver$Versions
  2874. instanceKlass org/apache/maven/plugin/version/internal/DefaultPluginVersionResult
  2875. instanceKlass org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver$Key
  2876. instanceKlass org/apache/maven/plugin/version/PluginVersionResult
  2877. instanceKlass org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver
  2878. instanceKlass org/apache/maven/toolchain/DefaultToolchain
  2879. instanceKlass org/apache/maven/toolchain/java/JavaToolchain
  2880. instanceKlass org/apache/maven/toolchain/java/JavaToolchainFactory
  2881. instanceKlass org/apache/maven/artifact/repository/DefaultArtifactRepositoryFactory
  2882. instanceKlass org/apache/maven/project/DefaultProjectBuildingHelper
  2883. instanceKlass org/apache/maven/project/validation/ModelValidationResult
  2884. instanceKlass org/apache/maven/project/validation/DefaultModelValidator
  2885. instanceKlass org/eclipse/aether/DefaultRepositorySystemSession
  2886. instanceKlass org/apache/maven/DefaultMaven
  2887. instanceKlass org/apache/maven/execution/ProjectExecutionListener
  2888. instanceKlass org/apache/maven/toolchain/model/TrackableBase
  2889. instanceKlass org/apache/maven/toolchain/DefaultToolchainsBuilder
  2890. instanceKlass org/apache/maven/DefaultProjectDependenciesResolver
  2891. instanceKlass org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator
  2892. instanceKlass org/apache/maven/settings/RepositoryBase
  2893. instanceKlass org/apache/maven/settings/RepositoryPolicy
  2894. instanceKlass org/apache/maven/repository/legacy/resolver/conflict/DefaultConflictResolverFactory
  2895. instanceKlass org/apache/maven/execution/DefaultRuntimeInformation
  2896. instanceKlass org/eclipse/aether/util/graph/visitor/AbstractDepthFirstNodeListGenerator
  2897. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b4ae000
  2898. instanceKlass org/apache/maven/plugin/descriptor/PluginDescriptorBuilder
  2899. instanceKlass org/apache/maven/plugin/logging/Log
  2900. instanceKlass org/codehaus/plexus/component/configurator/ConfigurationListener
  2901. instanceKlass org/apache/maven/plugin/internal/DefaultMavenPluginManager
  2902. instanceKlass org/eclipse/aether/RequestTrace
  2903. instanceKlass org/eclipse/aether/repository/ArtifactRepository
  2904. instanceKlass org/apache/maven/plugin/prefix/PluginPrefixResult
  2905. instanceKlass org/apache/maven/plugin/prefix/internal/DefaultPluginPrefixResolver
  2906. instanceKlass org/apache/maven/project/artifact/ProjectArtifactsCache$CacheRecord
  2907. instanceKlass org/apache/maven/project/artifact/ProjectArtifactsCache$Key
  2908. instanceKlass org/apache/maven/project/artifact/DefaultProjectArtifactsCache
  2909. instanceKlass org/apache/maven/repository/DefaultMirrorSelector
  2910. instanceKlass org/apache/maven/plugin/prefix/PluginPrefixRequest
  2911. instanceKlass org/apache/maven/plugin/internal/DefaultPluginManager
  2912. instanceKlass org/apache/maven/lifecycle/internal/PhaseRecorder
  2913. instanceKlass org/apache/maven/lifecycle/internal/DependencyContext
  2914. instanceKlass org/apache/maven/lifecycle/internal/ProjectIndex
  2915. instanceKlass sun/security/ssl/OutputRecord$T13PaddingHolder
  2916. instanceKlass sun/security/ssl/KeyShareExtension$CHKeyShareSpec
  2917. instanceKlass org/apache/maven/plugin/MojoExecutionRunner
  2918. instanceKlass org/apache/maven/repository/metadata/MetadataGraphVertex
  2919. instanceKlass org/apache/maven/repository/metadata/DefaultGraphConflictResolver
  2920. instanceKlass org/apache/maven/wagon/observers/ChecksumObserver
  2921. instanceKlass org/apache/maven/repository/legacy/DefaultWagonManager
  2922. instanceKlass org/apache/maven/plugin/DefaultBuildPluginManager
  2923. instanceKlass org/apache/maven/model/building/Result
  2924. instanceKlass org/apache/maven/execution/ProjectDependencyGraph
  2925. instanceKlass org/apache/maven/graph/DefaultGraphBuilder
  2926. instanceKlass org/apache/maven/repository/legacy/resolver/conflict/FarthestConflictResolver
  2927. instanceKlass org/apache/maven/lifecycle/internal/DefaultLifecycleMappingDelegate
  2928. instanceKlass org/apache/maven/profiles/ProfileManager
  2929. instanceKlass org/apache/maven/project/DefaultMavenProjectBuilder
  2930. instanceKlass org/apache/maven/artifact/repository/metadata/io/DefaultMetadataReader
  2931. instanceKlass org/apache/maven/lifecycle/internal/DefaultLifecyclePluginAnalyzer$GoalSpec
  2932. instanceKlass org/apache/maven/lifecycle/mapping/LifecyclePhase
  2933. instanceKlass org/apache/maven/lifecycle/internal/DefaultLifecyclePluginAnalyzer
  2934. instanceKlass org/apache/maven/lifecycle/internal/builder/multithreaded/ConcurrencyDependencyGraph
  2935. instanceKlass org/apache/maven/lifecycle/internal/builder/multithreaded/ThreadOutputMuxer
  2936. instanceKlass org/apache/maven/lifecycle/internal/ProjectSegment
  2937. instanceKlass java/util/concurrent/CompletionService
  2938. instanceKlass org/apache/maven/lifecycle/internal/builder/multithreaded/MultiThreadedBuilder
  2939. instanceKlass org/apache/maven/repository/legacy/resolver/conflict/NewestConflictResolver
  2940. instanceKlass org/apache/maven/execution/ExecutionEvent
  2941. instanceKlass org/apache/maven/lifecycle/internal/DefaultExecutionEventCatapult
  2942. instanceKlass org/apache/http/config/Registry
  2943. instanceKlass org/apache/http/impl/conn/PoolingHttpClientConnectionManager
  2944. instanceKlass org/apache/http/pool/ConnPoolControl
  2945. instanceKlass org/apache/http/client/methods/CloseableHttpResponse
  2946. instanceKlass org/apache/http/HttpResponse
  2947. instanceKlass org/apache/maven/wagon/shared/http/BasicAuthScope
  2948. instanceKlass org/apache/maven/wagon/shared/http/HttpConfiguration
  2949. instanceKlass org/apache/http/impl/client/CloseableHttpClient
  2950. instanceKlass org/apache/http/client/HttpClient
  2951. instanceKlass org/apache/http/client/ServiceUnavailableRetryStrategy
  2952. instanceKlass org/apache/http/auth/Credentials
  2953. instanceKlass org/apache/http/client/AuthCache
  2954. instanceKlass org/apache/http/client/CredentialsProvider
  2955. instanceKlass org/apache/http/conn/ssl/TrustStrategy
  2956. instanceKlass org/apache/http/ssl/TrustStrategy
  2957. instanceKlass org/apache/http/client/RedirectStrategy
  2958. instanceKlass org/apache/http/config/Lookup
  2959. instanceKlass org/apache/http/client/HttpRequestRetryHandler
  2960. instanceKlass org/apache/http/Header
  2961. instanceKlass org/apache/http/NameValuePair
  2962. instanceKlass org/apache/http/protocol/HttpContext
  2963. instanceKlass org/apache/http/client/methods/HttpUriRequest
  2964. instanceKlass org/apache/http/HttpRequest
  2965. instanceKlass org/apache/http/HttpMessage
  2966. instanceKlass org/apache/http/auth/AuthScheme
  2967. instanceKlass org/apache/http/HttpEntity
  2968. instanceKlass org/apache/http/conn/HttpClientConnectionManager
  2969. instanceKlass org/apache/maven/wagon/OutputData
  2970. instanceKlass org/apache/maven/wagon/InputData
  2971. instanceKlass org/apache/maven/wagon/events/SessionListener
  2972. instanceKlass org/apache/maven/wagon/resource/Resource
  2973. instanceKlass org/apache/maven/wagon/repository/RepositoryPermissions
  2974. instanceKlass org/apache/maven/wagon/events/TransferEventSupport
  2975. instanceKlass org/apache/maven/wagon/events/SessionEventSupport
  2976. instanceKlass org/apache/maven/wagon/repository/Repository
  2977. instanceKlass org/apache/maven/wagon/proxy/ProxyInfoProvider
  2978. instanceKlass org/apache/maven/wagon/AbstractWagon
  2979. instanceKlass org/apache/maven/wagon/StreamingWagon
  2980. instanceKlass org/apache/maven/repository/legacy/repository/DefaultArtifactRepositoryFactory
  2981. instanceKlass org/apache/maven/project/ReactorModelPool
  2982. instanceKlass org/apache/maven/model/building/ModelBuildingResult
  2983. instanceKlass org/apache/maven/project/DefaultProjectBuilder$InternalConfig
  2984. instanceKlass org/apache/maven/model/resolution/ModelResolver
  2985. instanceKlass org/apache/maven/model/building/ModelBuildingListener
  2986. instanceKlass org/apache/maven/model/building/ModelSource
  2987. instanceKlass org/apache/maven/model/building/ModelCache
  2988. instanceKlass org/apache/maven/project/DefaultProjectBuilder
  2989. instanceKlass org/apache/maven/repository/legacy/resolver/conflict/NearestConflictResolver
  2990. instanceKlass org/apache/maven/lifecycle/DefaultLifecycleExecutor
  2991. instanceKlass org/eclipse/aether/metadata/Metadata
  2992. instanceKlass org/apache/maven/repository/legacy/resolver/transform/DefaultArtifactTransformationManager
  2993. instanceKlass org/apache/maven/repository/metadata/ClasspathContainer
  2994. instanceKlass org/apache/maven/repository/metadata/MetadataGraph
  2995. instanceKlass org/apache/maven/repository/metadata/DefaultClasspathTransformation
  2996. instanceKlass org/apache/maven/repository/metadata/MetadataGraphEdge
  2997. instanceKlass org/apache/maven/repository/metadata/DefaultGraphConflictResolutionPolicy
  2998. instanceKlass org/apache/maven/profiles/ProfilesRoot
  2999. instanceKlass org/apache/maven/toolchain/ToolchainPrivate
  3000. instanceKlass org/apache/maven/toolchain/Toolchain
  3001. instanceKlass org/apache/maven/toolchain/DefaultToolchainManager
  3002. instanceKlass org/apache/maven/exception/ExceptionSummary
  3003. instanceKlass org/apache/maven/exception/DefaultExceptionHandler
  3004. instanceKlass org/apache/maven/artifact/resolver/DefaultResolutionErrorHandler
  3005. instanceKlass org/codehaus/plexus/component/repository/ComponentSetDescriptor
  3006. instanceKlass org/apache/maven/plugin/PluginDescriptorCache$PluginDescriptorSupplier
  3007. instanceKlass org/apache/maven/plugin/PluginDescriptorCache$Key
  3008. instanceKlass org/apache/maven/plugin/DefaultPluginDescriptorCache
  3009. instanceKlass org/apache/maven/repository/Proxy
  3010. instanceKlass org/apache/maven/artifact/repository/Authentication
  3011. instanceKlass org/apache/maven/model/RepositoryPolicy
  3012. instanceKlass org/apache/maven/repository/ArtifactTransferListener
  3013. instanceKlass org/apache/maven/repository/legacy/LegacyRepositorySystem
  3014. instanceKlass sun/security/util/math/IntegerModuloP$MultiplicativeInverser$Secp256R1
  3015. instanceKlass org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector
  3016. instanceKlass org/apache/maven/lifecycle/internal/ReactorBuildStatus
  3017. instanceKlass sun/security/ec/ECOperations$PointMultiplier$Default
  3018. instanceKlass org/apache/maven/lifecycle/internal/builder/singlethreaded/SingleThreadedBuilder
  3019. instanceKlass sun/security/ec/ECOperations$PointMultiplier$Secp256R1GeneratorMultiplier$P256
  3020. instanceKlass org/apache/maven/model/Reporting
  3021. instanceKlass sun/security/ec/ECOperations$PointMultiplier$Secp256R1GeneratorMultiplier
  3022. instanceKlass org/apache/maven/model/RepositoryBase
  3023. instanceKlass sun/security/ec/ECOperations$PointMultiplier
  3024. instanceKlass @bci sun/security/ec/ECPrivateKeyImpl calculatePublicKey ()Ljava/security/PublicKey; 9 <appendix> argL0 ; # sun/security/ec/ECPrivateKeyImpl$$Lambda+0x000002032b48c320
  3025. instanceKlass sun/security/util/ArrayUtil
  3026. instanceKlass java/security/interfaces/ECPrivateKey
  3027. instanceKlass org/apache/maven/model/PluginContainer
  3028. instanceKlass org/apache/maven/project/inheritance/DefaultModelInheritanceAssembler
  3029. instanceKlass org/apache/maven/artifact/repository/layout/FlatRepositoryLayout
  3030. instanceKlass org/apache/maven/project/DefaultDependencyResolutionResult
  3031. instanceKlass org/apache/maven/project/DependencyResolutionRequest
  3032. instanceKlass sun/security/ec/ECOperations
  3033. instanceKlass org/apache/maven/project/DependencyResolutionResult
  3034. instanceKlass org/apache/maven/project/DefaultProjectDependenciesResolver
  3035. instanceKlass sun/security/ssl/ECDHKeyExchange$ECDHEPossession
  3036. instanceKlass sun/security/ssl/KeyShareExtension$KeyShareEntry
  3037. instanceKlass sun/security/ssl/XDHKeyExchange$1
  3038. instanceKlass java/security/interfaces/XECPrivateKey
  3039. instanceKlass org/apache/maven/artifact/repository/layout/DefaultRepositoryLayout
  3040. instanceKlass java/security/interfaces/XECPublicKey
  3041. instanceKlass org/apache/maven/wagon/events/TransferListener
  3042. instanceKlass java/security/KeyPair
  3043. instanceKlass org/apache/maven/artifact/resolver/ArtifactResolutionResult
  3044. instanceKlass sun/security/util/math/IntegerModuloP$MultiplicativeInverser$Default
  3045. instanceKlass org/apache/maven/artifact/resolver/ArtifactResolutionRequest
  3046. instanceKlass sun/security/util/math/IntegerModuloP$MultiplicativeInverser
  3047. instanceKlass org/apache/maven/artifact/resolver/DefaultArtifactResolver
  3048. instanceKlass org/sonatype/plexus/components/sec/dispatcher/PasswordDecryptor
  3049. instanceKlass sun/reflect/generics/tree/VoidDescriptor
  3050. instanceKlass org/sonatype/plexus/components/sec/dispatcher/model/SettingsSecurity
  3051. instanceKlass org/apache/maven/artifact/handler/manager/DefaultArtifactHandlerManager
  3052. instanceKlass sun/security/util/math/MutableIntegerModuloP
  3053. instanceKlass org/eclipse/aether/version/VersionScheme
  3054. instanceKlass sun/security/jca/JCAUtil$CachedSecureRandomHolder
  3055. instanceKlass org/apache/maven/rtinfo/internal/DefaultRuntimeInformation
  3056. instanceKlass sun/security/ec/XECOperations
  3057. instanceKlass sun/security/ec/XECParameters
  3058. instanceKlass @bci sun/security/ec/XDHKeyPairGenerator initialize (Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V 0 <appendix> argL0 ; # sun/security/ec/XDHKeyPairGenerator$$Lambda+0x000002032b485000
  3059. instanceKlass sun/security/ssl/XDHKeyExchange$XDHEPossession
  3060. instanceKlass sun/security/ssl/ECDHKeyExchange$ECDHEXDHKAGenerator
  3061. instanceKlass sun/security/ssl/ECDHKeyExchange$ECDHEKAGenerator
  3062. instanceKlass sun/security/ssl/ECDHKeyExchange$ECDHKAGenerator
  3063. instanceKlass sun/security/ssl/ECDHKeyExchange$ECDHEPossessionGenerator
  3064. instanceKlass sun/security/ssl/ECDHKeyExchange
  3065. instanceKlass org/apache/maven/artifact/resolver/ResolutionNode
  3066. instanceKlass sun/security/ssl/DHKeyExchange$DHEKAGenerator
  3067. instanceKlass sun/security/ssl/DHKeyExchange$DHEPossessionGenerator
  3068. instanceKlass org/apache/maven/repository/legacy/resolver/conflict/OldestConflictResolver
  3069. instanceKlass sun/security/ssl/DHKeyExchange
  3070. instanceKlass sun/security/ssl/RSAKeyExchange$RSAKAGenerator
  3071. instanceKlass sun/security/ssl/RSAKeyExchange$EphemeralRSAPossessionGenerator
  3072. instanceKlass sun/security/ssl/RSAKeyExchange
  3073. instanceKlass sun/security/ssl/SSLKeyExchange$T13KeyAgreement
  3074. instanceKlass sun/security/ssl/SSLKeyAgreement
  3075. instanceKlass sun/security/ssl/SSLPossessionGenerator
  3076. instanceKlass org/apache/maven/plugin/internal/DefaultLegacySupport
  3077. instanceKlass sun/security/ssl/SSLKeyExchange
  3078. instanceKlass sun/security/ssl/SSLHandshakeBinding
  3079. instanceKlass sun/security/ssl/SSLKeyAgreementGenerator
  3080. instanceKlass org/apache/maven/model/building/ModelProblemCollector
  3081. instanceKlass sun/security/ssl/PskKeyExchangeModesExtension$PskKeyExchangeModesSpec
  3082. instanceKlass org/apache/maven/model/merge/ModelMerger
  3083. instanceKlass sun/security/ssl/SupportedVersionsExtension$CHSupportedVersionsSpec
  3084. instanceKlass sun/security/ssl/SignatureAlgorithmsExtension$SignatureSchemesSpec
  3085. instanceKlass sun/security/ssl/ExtendedMasterSecretExtension$ExtendedMasterSecretSpec
  3086. instanceKlass sun/security/ssl/CertStatusExtension$CertStatusRequestV2Spec
  3087. instanceKlass sun/security/ssl/ECPointFormatsExtension$ECPointFormatsSpec
  3088. instanceKlass sun/security/ssl/SupportedGroupsExtension$SupportedGroupsSpec
  3089. instanceKlass sun/security/ssl/CertStatusExtension$CertStatusRequest
  3090. instanceKlass sun/security/ssl/CertStatusExtension$CertStatusRequestSpec
  3091. instanceKlass sun/security/ssl/ServerNameExtension$CHServerNamesSpec
  3092. instanceKlass sun/security/ssl/SSLExtension$SSLExtensionSpec
  3093. instanceKlass org/apache/maven/model/plugin/DefaultLifecycleBindingsInjector
  3094. instanceKlass sun/security/ssl/SSLExtension$ClientExtensions
  3095. instanceKlass sun/security/ssl/PreSharedKeyExtension$SHPreSharedKeyStringizer
  3096. instanceKlass sun/security/ssl/PreSharedKeyExtension$SHPreSharedKeyAbsence
  3097. instanceKlass sun/security/ssl/PreSharedKeyExtension$SHPreSharedKeyConsumer
  3098. instanceKlass sun/security/ssl/PreSharedKeyExtension$SHPreSharedKeyProducer
  3099. instanceKlass sun/security/ssl/PreSharedKeyExtension$CHPreSharedKeyStringizer
  3100. instanceKlass sun/security/ssl/PreSharedKeyExtension$CHPreSharedKeyOnTradeAbsence
  3101. instanceKlass sun/security/ssl/PreSharedKeyExtension$CHPreSharedKeyUpdate
  3102. instanceKlass sun/security/ssl/PreSharedKeyExtension$CHPreSharedKeyOnLoadAbsence
  3103. instanceKlass sun/security/ssl/PreSharedKeyExtension$CHPreSharedKeyConsumer
  3104. instanceKlass sun/security/ssl/PreSharedKeyExtension$CHPreSharedKeyProducer
  3105. instanceKlass sun/security/ssl/PreSharedKeyExtension
  3106. instanceKlass sun/security/ssl/RenegoInfoExtension$RenegotiationInfoStringizer
  3107. instanceKlass sun/security/ssl/RenegoInfoExtension$SHRenegotiationInfoAbsence
  3108. instanceKlass sun/security/ssl/RenegoInfoExtension$SHRenegotiationInfoConsumer
  3109. instanceKlass sun/security/ssl/RenegoInfoExtension$SHRenegotiationInfoProducer
  3110. instanceKlass sun/security/ssl/RenegoInfoExtension$CHRenegotiationInfoAbsence
  3111. instanceKlass sun/security/ssl/RenegoInfoExtension$CHRenegotiationInfoConsumer
  3112. instanceKlass org/apache/maven/artifact/repository/metadata/Versioning
  3113. instanceKlass sun/security/ssl/RenegoInfoExtension$CHRenegotiationInfoProducer
  3114. instanceKlass sun/security/ssl/RenegoInfoExtension
  3115. instanceKlass sun/security/ssl/KeyShareExtension$HRRKeyShareStringizer
  3116. instanceKlass sun/security/ssl/KeyShareExtension$HRRKeyShareReproducer
  3117. instanceKlass sun/security/ssl/KeyShareExtension$HRRKeyShareConsumer
  3118. instanceKlass sun/security/ssl/KeyShareExtension$HRRKeyShareProducer
  3119. instanceKlass sun/security/ssl/KeyShareExtension$SHKeyShareStringizer
  3120. instanceKlass sun/security/ssl/KeyShareExtension$SHKeyShareAbsence
  3121. instanceKlass sun/security/ssl/KeyShareExtension$SHKeyShareConsumer
  3122. instanceKlass sun/security/ssl/KeyShareExtension$SHKeyShareProducer
  3123. instanceKlass sun/security/ssl/KeyShareExtension$CHKeyShareStringizer
  3124. instanceKlass org/apache/maven/artifact/versioning/VersionRange
  3125. instanceKlass sun/security/ssl/KeyShareExtension$CHKeyShareOnTradeAbsence
  3126. instanceKlass sun/security/ssl/KeyShareExtension$CHKeyShareConsumer
  3127. instanceKlass sun/security/ssl/KeyShareExtension$CHKeyShareProducer
  3128. instanceKlass sun/security/ssl/KeyShareExtension
  3129. instanceKlass sun/security/ssl/CertSignAlgsExtension$CertSignatureSchemesStringizer
  3130. instanceKlass org/apache/maven/artifact/factory/DefaultArtifactFactory
  3131. instanceKlass sun/security/ssl/CertSignAlgsExtension$CRCertSignatureSchemesUpdate
  3132. instanceKlass sun/security/ssl/CertSignAlgsExtension$CRCertSignatureSchemesConsumer
  3133. instanceKlass sun/security/ssl/CertSignAlgsExtension$CRCertSignatureSchemesProducer
  3134. instanceKlass sun/security/ssl/CertSignAlgsExtension$CHCertSignatureSchemesUpdate
  3135. instanceKlass sun/security/ssl/CertSignAlgsExtension$CHCertSignatureSchemesConsumer
  3136. instanceKlass sun/security/ssl/CertSignAlgsExtension$CHCertSignatureSchemesProducer
  3137. instanceKlass sun/security/ssl/CertSignAlgsExtension
  3138. instanceKlass sun/security/ssl/CertificateAuthoritiesExtension$CertificateAuthoritiesStringizer
  3139. instanceKlass sun/security/ssl/CertificateAuthoritiesExtension$CRCertificateAuthoritiesConsumer
  3140. instanceKlass sun/security/ssl/CertificateAuthoritiesExtension$CRCertificateAuthoritiesProducer
  3141. instanceKlass org/apache/maven/lifecycle/internal/DefaultLifecycleTaskSegmentCalculator
  3142. instanceKlass sun/security/ssl/CertificateAuthoritiesExtension$CHCertificateAuthoritiesConsumer
  3143. instanceKlass sun/security/ssl/CertificateAuthoritiesExtension$CHCertificateAuthoritiesProducer
  3144. instanceKlass sun/security/ssl/CertificateAuthoritiesExtension
  3145. instanceKlass sun/security/ssl/PskKeyExchangeModesExtension$PskKeyExchangeModesStringizer
  3146. instanceKlass sun/security/ssl/PskKeyExchangeModesExtension$PskKeyExchangeModesOnTradeAbsence
  3147. instanceKlass sun/security/ssl/PskKeyExchangeModesExtension$PskKeyExchangeModesOnLoadAbsence
  3148. instanceKlass sun/security/ssl/PskKeyExchangeModesExtension$PskKeyExchangeModesConsumer
  3149. instanceKlass sun/security/ssl/PskKeyExchangeModesExtension$PskKeyExchangeModesProducer
  3150. instanceKlass org/apache/maven/plugin/descriptor/Parameter
  3151. instanceKlass sun/security/ssl/PskKeyExchangeModesExtension
  3152. instanceKlass sun/security/ssl/CookieExtension$CookieStringizer
  3153. instanceKlass sun/security/ssl/CookieExtension$HRRCookieReproducer
  3154. instanceKlass sun/security/ssl/CookieExtension$HRRCookieConsumer
  3155. instanceKlass sun/security/ssl/CookieExtension$HRRCookieProducer
  3156. instanceKlass sun/security/ssl/CookieExtension$CHCookieUpdate
  3157. instanceKlass sun/security/ssl/CookieExtension$CHCookieConsumer
  3158. instanceKlass sun/security/ssl/CookieExtension$CHCookieProducer
  3159. instanceKlass sun/security/ssl/CookieExtension
  3160. instanceKlass sun/security/ssl/SupportedVersionsExtension$HRRSupportedVersionsReproducer
  3161. instanceKlass sun/security/ssl/SupportedVersionsExtension$HRRSupportedVersionsConsumer
  3162. instanceKlass sun/security/ssl/SupportedVersionsExtension$HRRSupportedVersionsProducer
  3163. instanceKlass sun/security/ssl/SupportedVersionsExtension$SHSupportedVersionsStringizer
  3164. instanceKlass sun/security/ssl/SupportedVersionsExtension$SHSupportedVersionsConsumer
  3165. instanceKlass sun/security/ssl/SupportedVersionsExtension$SHSupportedVersionsProducer
  3166. instanceKlass sun/security/ssl/SupportedVersionsExtension$CHSupportedVersionsStringizer
  3167. instanceKlass sun/security/ssl/SupportedVersionsExtension$CHSupportedVersionsConsumer
  3168. instanceKlass org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator
  3169. instanceKlass sun/security/ssl/SupportedVersionsExtension$CHSupportedVersionsProducer
  3170. instanceKlass sun/security/ssl/SupportedVersionsExtension
  3171. instanceKlass sun/security/ssl/SignatureAlgorithmsExtension$SignatureSchemesStringizer
  3172. instanceKlass sun/security/ssl/SignatureAlgorithmsExtension$CRSignatureSchemesUpdate
  3173. instanceKlass sun/security/ssl/SignatureAlgorithmsExtension$CRSignatureSchemesAbsence
  3174. instanceKlass sun/security/ssl/SignatureAlgorithmsExtension$CRSignatureSchemesConsumer
  3175. instanceKlass sun/security/ssl/SignatureAlgorithmsExtension$CRSignatureSchemesProducer
  3176. instanceKlass sun/security/ssl/SignatureAlgorithmsExtension$CHSignatureSchemesOnTradeAbsence
  3177. instanceKlass sun/security/ssl/SignatureAlgorithmsExtension$CHSignatureSchemesUpdate
  3178. instanceKlass sun/security/ssl/SignatureAlgorithmsExtension$CHSignatureSchemesOnLoadAbsence
  3179. instanceKlass sun/security/ssl/SignatureAlgorithmsExtension$CHSignatureSchemesConsumer
  3180. instanceKlass sun/security/ssl/SignatureAlgorithmsExtension$CHSignatureSchemesProducer
  3181. instanceKlass sun/security/ssl/SignatureAlgorithmsExtension
  3182. instanceKlass org/apache/maven/project/ProjectBuilderConfiguration
  3183. instanceKlass sun/security/ssl/SessionTicketExtension$SessionTicketStringizer
  3184. instanceKlass sun/security/ssl/SessionTicketExtension$T12SHSessionTicketConsumer
  3185. instanceKlass sun/security/ssl/SessionTicketExtension$T12SHSessionTicketProducer
  3186. instanceKlass sun/security/ssl/SessionTicketExtension$T12CHSessionTicketConsumer
  3187. instanceKlass sun/security/ssl/SessionTicketExtension$T12CHSessionTicketProducer
  3188. instanceKlass sun/security/ssl/SessionTicketExtension
  3189. instanceKlass org/codehaus/plexus/interpolation/Interpolator
  3190. instanceKlass org/codehaus/plexus/interpolation/BasicInterpolator
  3191. instanceKlass sun/security/ssl/ExtendedMasterSecretExtension$ExtendedMasterSecretStringizer
  3192. instanceKlass sun/security/ssl/ExtendedMasterSecretExtension$SHExtendedMasterSecretAbsence
  3193. instanceKlass sun/security/ssl/ExtendedMasterSecretExtension$SHExtendedMasterSecretConsumer
  3194. instanceKlass sun/security/ssl/ExtendedMasterSecretExtension$SHExtendedMasterSecretProducer
  3195. instanceKlass org/codehaus/plexus/interpolation/ValueSource
  3196. instanceKlass sun/security/ssl/ExtendedMasterSecretExtension$CHExtendedMasterSecretAbsence
  3197. instanceKlass sun/security/ssl/ExtendedMasterSecretExtension$CHExtendedMasterSecretConsumer
  3198. instanceKlass sun/security/ssl/ExtendedMasterSecretExtension$CHExtendedMasterSecretProducer
  3199. instanceKlass sun/security/ssl/ExtendedMasterSecretExtension
  3200. instanceKlass org/codehaus/plexus/interpolation/RecursionInterceptor
  3201. instanceKlass @bci sun/security/ssl/AlpnExtension <clinit> ()V 100 <appendix> argL0 ; # sun/security/ssl/AlpnExtension$$Lambda+0x000002032b3f3da8
  3202. instanceKlass sun/security/ssl/AlpnExtension$AlpnStringizer
  3203. instanceKlass sun/security/ssl/AlpnExtension$SHAlpnAbsence
  3204. instanceKlass sun/security/ssl/AlpnExtension$SHAlpnConsumer
  3205. instanceKlass sun/security/ssl/AlpnExtension$SHAlpnProducer
  3206. instanceKlass sun/security/ssl/AlpnExtension$CHAlpnAbsence
  3207. instanceKlass sun/security/ssl/AlpnExtension$CHAlpnConsumer
  3208. instanceKlass sun/security/ssl/AlpnExtension$CHAlpnProducer
  3209. instanceKlass sun/security/ssl/AlpnExtension
  3210. instanceKlass sun/security/ssl/ECPointFormatsExtension$ECPointFormatsStringizer
  3211. instanceKlass sun/security/ssl/ECPointFormatsExtension$SHECPointFormatsConsumer
  3212. instanceKlass org/apache/maven/lifecycle/internal/ReactorContext
  3213. instanceKlass sun/security/ssl/ECPointFormatsExtension$CHECPointFormatsConsumer
  3214. instanceKlass sun/security/ssl/ECPointFormatsExtension$CHECPointFormatsProducer
  3215. instanceKlass sun/security/ssl/ECPointFormatsExtension
  3216. instanceKlass sun/security/ssl/SupportedGroupsExtension$EESupportedGroupsConsumer
  3217. instanceKlass sun/security/ssl/SupportedGroupsExtension$EESupportedGroupsProducer
  3218. instanceKlass sun/security/ssl/SupportedGroupsExtension$SupportedGroupsStringizer
  3219. instanceKlass sun/security/ssl/SupportedGroupsExtension$CHSupportedGroupsOnTradeAbsence
  3220. instanceKlass sun/security/ssl/SupportedGroupsExtension$CHSupportedGroupsConsumer
  3221. instanceKlass sun/security/ssl/SupportedGroupsExtension$CHSupportedGroupsProducer
  3222. instanceKlass sun/security/ssl/SupportedGroupsExtension
  3223. instanceKlass org/apache/maven/lifecycle/internal/TaskSegment
  3224. instanceKlass sun/security/ssl/CertStatusExtension$CertStatusRespStringizer
  3225. instanceKlass sun/security/ssl/CertStatusExtension$CertStatusRequestsStringizer
  3226. instanceKlass sun/security/ssl/CertStatusExtension$SHCertStatusReqV2Consumer
  3227. instanceKlass org/apache/maven/execution/BuildSummary
  3228. instanceKlass sun/security/ssl/CertStatusExtension$SHCertStatusReqV2Producer
  3229. instanceKlass sun/security/ssl/CertStatusExtension$CHCertStatusReqV2Consumer
  3230. instanceKlass org/apache/maven/eventspy/EventSpy$Context
  3231. instanceKlass sun/security/ssl/CertStatusExtension$CHCertStatusReqV2Producer
  3232. instanceKlass sun/security/ssl/CertStatusExtension$CertStatusRequestStringizer
  3233. instanceKlass sun/security/ssl/CertStatusExtension$CTCertStatusResponseConsumer
  3234. instanceKlass org/apache/maven/execution/ExecutionListener
  3235. instanceKlass sun/security/ssl/CertStatusExtension$CTCertStatusResponseProducer
  3236. instanceKlass sun/security/ssl/CertStatusExtension$SHCertStatusReqConsumer
  3237. instanceKlass sun/security/ssl/CertStatusExtension$SHCertStatusReqProducer
  3238. instanceKlass sun/security/ssl/CertStatusExtension$CHCertStatusReqConsumer
  3239. instanceKlass sun/security/ssl/CertStatusExtension$CHCertStatusReqProducer
  3240. instanceKlass sun/security/ssl/CertStatusExtension
  3241. instanceKlass sun/security/ssl/MaxFragExtension$MaxFragLenStringizer
  3242. instanceKlass sun/security/ssl/MaxFragExtension$EEMaxFragmentLengthUpdate
  3243. instanceKlass sun/security/ssl/MaxFragExtension$EEMaxFragmentLengthConsumer
  3244. instanceKlass sun/security/ssl/MaxFragExtension$EEMaxFragmentLengthProducer
  3245. instanceKlass sun/security/ssl/MaxFragExtension$SHMaxFragmentLengthUpdate
  3246. instanceKlass sun/security/ssl/MaxFragExtension$SHMaxFragmentLengthConsumer
  3247. instanceKlass sun/security/ssl/MaxFragExtension$SHMaxFragmentLengthProducer
  3248. instanceKlass sun/security/ssl/MaxFragExtension$CHMaxFragmentLengthConsumer
  3249. instanceKlass sun/security/ssl/MaxFragExtension$CHMaxFragmentLengthProducer
  3250. instanceKlass sun/security/ssl/MaxFragExtension
  3251. instanceKlass sun/security/ssl/ServerNameExtension$EEServerNameConsumer
  3252. instanceKlass sun/security/ssl/ServerNameExtension$EEServerNameProducer
  3253. instanceKlass sun/security/ssl/ServerNameExtension$SHServerNamesStringizer
  3254. instanceKlass sun/security/ssl/ServerNameExtension$SHServerNameConsumer
  3255. instanceKlass sun/security/ssl/ServerNameExtension$SHServerNameProducer
  3256. instanceKlass sun/security/ssl/ServerNameExtension$CHServerNamesStringizer
  3257. instanceKlass sun/security/ssl/ServerNameExtension$CHServerNameConsumer
  3258. instanceKlass sun/security/ssl/SSLExtension$ExtensionConsumer
  3259. instanceKlass sun/security/ssl/ServerNameExtension$CHServerNameProducer
  3260. instanceKlass sun/security/ssl/ServerNameExtension
  3261. instanceKlass sun/security/ssl/SSLStringizer
  3262. instanceKlass org/apache/maven/project/path/DefaultPathTranslator
  3263. instanceKlass sun/security/ssl/SSLExtensions
  3264. instanceKlass org/apache/maven/configuration/BeanConfigurationRequest
  3265. instanceKlass sun/security/ssl/SSLHandshake$HandshakeMessage
  3266. instanceKlass org/apache/maven/configuration/internal/DefaultBeanConfigurator
  3267. instanceKlass sun/security/ssl/RandomCookie
  3268. instanceKlass org/apache/maven/lifecycle/mapping/DefaultLifecycleMapping
  3269. instanceKlass sun/security/ssl/SSLKeyDerivation
  3270. instanceKlass sun/security/ssl/SSLCredentials
  3271. instanceKlass sun/security/ssl/NamedGroupPossession
  3272. instanceKlass sun/security/ssl/SSLPossession
  3273. instanceKlass sun/security/ssl/HandshakeContext
  3274. instanceKlass org/eclipse/sisu/space/asm/Handler
  3275. instanceKlass sun/security/ssl/SSLConfiguration$1
  3276. instanceKlass javax/net/ssl/SSLParameters
  3277. instanceKlass sun/nio/ch/ExtendedSocketOption$1
  3278. instanceKlass sun/nio/ch/ExtendedSocketOption
  3279. instanceKlass sun/nio/ch/OptionKey
  3280. instanceKlass sun/nio/ch/SocketOptionRegistry$LazyInitialization
  3281. instanceKlass sun/nio/ch/SocketOptionRegistry$RegistryKey
  3282. instanceKlass sun/nio/ch/SocketOptionRegistry
  3283. instanceKlass org/eclipse/sisu/space/asm/Frame
  3284. instanceKlass java/net/StandardSocketOptions$StdSocketOption
  3285. instanceKlass java/net/StandardSocketOptions
  3286. instanceKlass org/eclipse/sisu/space/asm/ByteVector
  3287. instanceKlass org/eclipse/sisu/space/asm/Symbol
  3288. instanceKlass org/eclipse/sisu/space/asm/SymbolTable
  3289. instanceKlass org/eclipse/sisu/space/asm/RecordComponentVisitor
  3290. instanceKlass jdk/internal/icu/impl/Trie2$UTrie2Header
  3291. instanceKlass jdk/internal/icu/impl/Trie2$1
  3292. instanceKlass jdk/internal/icu/impl/Trie2$ValueMapper
  3293. instanceKlass org/eclipse/sisu/space/asm/ModuleVisitor
  3294. instanceKlass jdk/internal/icu/impl/Trie2
  3295. instanceKlass jdk/internal/icu/impl/UCharacterProperty$IsAcceptable
  3296. instanceKlass org/eclipse/sisu/space/asm/MethodVisitor
  3297. instanceKlass jdk/internal/icu/impl/UCharacterProperty$IntProperty
  3298. instanceKlass jdk/internal/icu/impl/UCharacterProperty
  3299. instanceKlass org/eclipse/sisu/space/asm/FieldVisitor
  3300. instanceKlass jdk/internal/icu/lang/UCharacter
  3301. instanceKlass jdk/internal/icu/impl/Trie
  3302. instanceKlass org/apache/maven/artifact/handler/DefaultArtifactHandler
  3303. instanceKlass jdk/internal/icu/text/StringPrep$StringPrepTrieImpl
  3304. instanceKlass jdk/internal/icu/impl/Trie$DataManipulate
  3305. instanceKlass org/apache/maven/artifact/repository/metadata/Metadata
  3306. instanceKlass jdk/internal/icu/impl/StringPrepDataReader
  3307. instanceKlass org/apache/maven/model/building/ModelProblem
  3308. instanceKlass org/apache/maven/project/artifact/MavenMetadataSource$ProjectRelocation
  3309. instanceKlass jdk/internal/icu/text/StringPrep
  3310. instanceKlass org/apache/maven/model/Dependency
  3311. instanceKlass java/net/IDN
  3312. instanceKlass org/apache/maven/artifact/repository/metadata/RepositoryMetadata
  3313. instanceKlass org/apache/maven/artifact/metadata/ArtifactMetadata
  3314. instanceKlass org/apache/maven/repository/legacy/metadata/ArtifactMetadata
  3315. instanceKlass javax/net/ssl/SNIServerName
  3316. instanceKlass org/apache/maven/artifact/resolver/filter/ArtifactFilter
  3317. instanceKlass org/apache/maven/repository/legacy/metadata/MetadataResolutionRequest
  3318. instanceKlass org/apache/maven/artifact/repository/RepositoryRequest
  3319. instanceKlass org/apache/maven/project/artifact/MavenMetadataSource
  3320. instanceKlass org/apache/maven/lifecycle/internal/ProjectBuildList
  3321. instanceKlass org/eclipse/aether/RepositoryEvent
  3322. instanceKlass org/apache/maven/classrealm/ClassRealmRequest
  3323. instanceKlass org/codehaus/plexus/util/Scanner
  3324. instanceKlass org/codehaus/plexus/logging/AbstractLogEnabled
  3325. instanceKlass org/eclipse/aether/resolution/ArtifactResult
  3326. instanceKlass org/eclipse/aether/collection/DependencySelector
  3327. instanceKlass org/eclipse/aether/resolution/ArtifactDescriptorPolicy
  3328. instanceKlass org/apache/maven/plugin/PluginArtifactsCache$CacheRecord
  3329. instanceKlass org/apache/maven/plugin/PluginArtifactsCache$Key
  3330. instanceKlass org/apache/maven/plugin/PluginRealmCache$CacheRecord
  3331. instanceKlass org/apache/maven/plugin/PluginRealmCache$PluginRealmSupplier
  3332. instanceKlass org/apache/maven/plugin/PluginRealmCache$Key
  3333. instanceKlass org/apache/maven/project/ProjectRealmCache$CacheRecord
  3334. instanceKlass org/apache/maven/project/ProjectRealmCache$Key
  3335. instanceKlass org/eclipse/m2e/core/internal/project/ProjectCachePlunger
  3336. instanceKlass org/apache/maven/plugin/ExtensionRealmCache$CacheRecord
  3337. instanceKlass org/apache/maven/plugin/ExtensionRealmCache$Key
  3338. instanceKlass org/apache/maven/artifact/repository/ArtifactRepositoryPolicy
  3339. instanceKlass org/apache/maven/project/artifact/DefaultMavenMetadataCache$CacheKey
  3340. instanceKlass org/apache/maven/repository/legacy/metadata/ResolutionGroup
  3341. instanceKlass com/google/inject/spi/ProviderWithExtensionVisitor
  3342. instanceKlass com/google/common/collect/Iterables
  3343. instanceKlass @bci com/google/inject/spi/InjectionPoint forConstructorOf (Lcom/google/inject/TypeLiteral;Z)Lcom/google/inject/spi/InjectionPoint; 83 <appendix> member <vmtarget> ; # com/google/inject/spi/InjectionPoint$$Lambda+0x000002032b470b20
  3344. instanceKlass @bci com/google/inject/spi/InjectionPoint forConstructorOf (Lcom/google/inject/TypeLiteral;Z)Lcom/google/inject/spi/InjectionPoint; 67 <appendix> argL0 ; # com/google/inject/spi/InjectionPoint$$Lambda+0x000002032b4708e0
  3345. instanceKlass @bci com/google/inject/spi/InjectionPoint forConstructorOf (Lcom/google/inject/TypeLiteral;Z)Lcom/google/inject/spi/InjectionPoint; 57 <appendix> argL0 ; # com/google/inject/spi/InjectionPoint$$Lambda+0x000002032b4706a0
  3346. instanceKlass @bci com/google/inject/spi/InjectionPoint forConstructorOf (Lcom/google/inject/TypeLiteral;Z)Lcom/google/inject/spi/InjectionPoint; 24 <appendix> argL0 ; # com/google/inject/spi/InjectionPoint$$Lambda+0x000002032b470460
  3347. instanceKlass org/codehaus/plexus/component/repository/ComponentDescriptor
  3348. instanceKlass org/eclipse/sisu/plexus/PlexusBean
  3349. instanceKlass com/google/inject/spi/ProvidesMethodBinding
  3350. instanceKlass org/eclipse/sisu/inject/Guice4
  3351. instanceKlass com/google/inject/internal/GuiceInternal
  3352. instanceKlass org/sonatype/inject/Parameters
  3353. instanceKlass org/eclipse/sisu/plexus/PlexusXmlBeanConverter
  3354. instanceKlass org/eclipse/sisu/plexus/PlexusBeanConverter
  3355. instanceKlass com/google/inject/spi/TypeConverterBinding
  3356. instanceKlass java/lang/reflect/AnnotatedParameterizedType
  3357. instanceKlass org/eclipse/sisu/inject/DefaultRankingFunction
  3358. instanceKlass com/google/inject/spi/ProvisionListenerBinding
  3359. instanceKlass com/google/inject/spi/TypeListenerBinding
  3360. instanceKlass org/eclipse/sisu/bean/BeanListener
  3361. instanceKlass com/google/inject/matcher/Matchers
  3362. instanceKlass org/eclipse/sisu/bean/PropertyBinder
  3363. instanceKlass org/eclipse/sisu/plexus/PlexusBeanBinder
  3364. instanceKlass com/google/inject/spi/InjectionListener
  3365. instanceKlass org/sonatype/plexus/components/sec/dispatcher/DefaultSecDispatcher
  3366. instanceKlass org/sonatype/plexus/components/cipher/DefaultPlexusCipher
  3367. instanceKlass org/sonatype/plexus/components/cipher/PlexusCipher
  3368. instanceKlass org/codehaus/plexus/build/DefaultBuildContext
  3369. instanceKlass org/codehaus/plexus/build/BuildContext
  3370. instanceKlass org/codehaus/plexus/component/configurator/AbstractComponentConfigurator
  3371. instanceKlass org/codehaus/plexus/component/configurator/ComponentConfigurator
  3372. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b46c000
  3373. instanceKlass org/apache/maven/settings/validation/DefaultSettingsValidator
  3374. instanceKlass org/apache/maven/settings/validation/SettingsValidator
  3375. instanceKlass org/apache/maven/settings/io/DefaultSettingsWriter
  3376. instanceKlass org/apache/maven/settings/io/SettingsWriter
  3377. instanceKlass org/apache/maven/settings/io/DefaultSettingsReader
  3378. instanceKlass org/apache/maven/settings/io/SettingsReader
  3379. instanceKlass org/apache/maven/settings/crypto/DefaultSettingsDecrypter
  3380. instanceKlass org/apache/maven/settings/crypto/SettingsDecrypter
  3381. instanceKlass org/apache/maven/settings/building/DefaultSettingsBuilder
  3382. instanceKlass org/eclipse/aether/transport/wagon/WagonTransporterFactory
  3383. instanceKlass org/eclipse/aether/internal/transport/wagon/PlexusWagonProvider
  3384. instanceKlass org/eclipse/aether/transport/wagon/WagonProvider
  3385. instanceKlass org/eclipse/aether/internal/transport/wagon/PlexusWagonConfigurator
  3386. instanceKlass org/eclipse/aether/transport/wagon/WagonConfigurator
  3387. instanceKlass org/eclipse/aether/transport/http/ChecksumExtractor
  3388. instanceKlass org/eclipse/aether/transport/http/HttpTransporterFactory
  3389. instanceKlass org/eclipse/aether/transport/file/FileTransporterFactory
  3390. instanceKlass org/eclipse/aether/spi/connector/transport/TransporterFactory
  3391. instanceKlass org/apache/maven/repository/internal/VersionsMetadataGeneratorFactory
  3392. instanceKlass org/apache/maven/repository/internal/SnapshotMetadataGeneratorFactory
  3393. instanceKlass org/apache/maven/repository/internal/PluginsMetadataGeneratorFactory
  3394. instanceKlass org/eclipse/aether/impl/MetadataGeneratorFactory
  3395. instanceKlass org/apache/maven/repository/internal/DefaultVersionResolver
  3396. instanceKlass org/eclipse/aether/impl/VersionResolver
  3397. instanceKlass org/apache/maven/repository/internal/DefaultVersionRangeResolver
  3398. instanceKlass org/eclipse/aether/impl/VersionRangeResolver
  3399. instanceKlass org/apache/maven/repository/internal/DefaultModelCacheFactory
  3400. instanceKlass org/apache/maven/repository/internal/ModelCacheFactory
  3401. instanceKlass org/apache/maven/repository/internal/DefaultArtifactDescriptorReader
  3402. instanceKlass org/eclipse/aether/impl/ArtifactDescriptorReader
  3403. instanceKlass org/eclipse/aether/named/support/NamedLockFactorySupport
  3404. instanceKlass org/eclipse/aether/named/NamedLockFactory
  3405. instanceKlass org/eclipse/aether/internal/impl/synccontext/named/providers/StaticNameMapperProvider
  3406. instanceKlass org/eclipse/aether/internal/impl/synccontext/named/providers/GAVNameMapperProvider
  3407. instanceKlass org/eclipse/aether/internal/impl/synccontext/named/providers/FileStaticNameMapperProvider
  3408. instanceKlass org/eclipse/aether/internal/impl/synccontext/named/providers/FileHashingGAVNameMapperProvider
  3409. instanceKlass org/eclipse/aether/internal/impl/synccontext/named/providers/FileGAVNameMapperProvider
  3410. instanceKlass org/eclipse/aether/internal/impl/synccontext/named/NameMapper
  3411. instanceKlass org/eclipse/aether/internal/impl/synccontext/named/providers/DiscriminatingNameMapperProvider
  3412. instanceKlass org/eclipse/aether/internal/impl/synccontext/named/NamedLockFactoryAdapterFactoryImpl
  3413. instanceKlass org/eclipse/aether/internal/impl/synccontext/named/NamedLockFactoryAdapterFactory
  3414. instanceKlass org/eclipse/aether/internal/impl/synccontext/legacy/DefaultSyncContextFactory
  3415. instanceKlass org/eclipse/aether/impl/SyncContextFactory
  3416. instanceKlass org/eclipse/aether/internal/impl/synccontext/DefaultSyncContextFactory
  3417. instanceKlass org/eclipse/aether/spi/synccontext/SyncContextFactory
  3418. instanceKlass org/eclipse/aether/internal/impl/slf4j/Slf4jLoggerFactory
  3419. instanceKlass org/eclipse/aether/internal/impl/resolution/ArtifactResolverPostProcessorSupport
  3420. instanceKlass org/eclipse/aether/internal/impl/filter/RemoteRepositoryFilterSourceSupport
  3421. instanceKlass org/eclipse/aether/spi/connector/filter/RemoteRepositoryFilterSource
  3422. instanceKlass org/eclipse/aether/spi/resolution/ArtifactResolverPostProcessor
  3423. instanceKlass org/eclipse/aether/internal/impl/filter/DefaultRemoteRepositoryFilterManager
  3424. instanceKlass org/eclipse/aether/impl/RemoteRepositoryFilterManager
  3425. instanceKlass org/eclipse/aether/internal/impl/collect/DependencyCollectorDelegate
  3426. instanceKlass org/eclipse/aether/internal/impl/collect/DefaultDependencyCollector
  3427. instanceKlass org/eclipse/aether/impl/DependencyCollector
  3428. instanceKlass org/eclipse/aether/internal/impl/checksum/TrustedToProvidedChecksumsSourceAdapter
  3429. instanceKlass org/eclipse/aether/spi/checksums/ProvidedChecksumsSource
  3430. instanceKlass org/eclipse/aether/internal/impl/checksum/FileTrustedChecksumsSourceSupport
  3431. instanceKlass org/eclipse/aether/spi/checksums/TrustedChecksumsSource
  3432. instanceKlass org/eclipse/aether/spi/connector/checksum/ChecksumAlgorithmFactorySupport
  3433. instanceKlass org/eclipse/aether/spi/connector/checksum/ChecksumAlgorithmFactory
  3434. instanceKlass org/eclipse/aether/internal/impl/checksum/DefaultChecksumAlgorithmFactorySelector
  3435. instanceKlass org/eclipse/aether/spi/connector/checksum/ChecksumAlgorithmFactorySelector
  3436. instanceKlass org/eclipse/aether/internal/impl/SimpleLocalRepositoryManagerFactory
  3437. instanceKlass org/eclipse/aether/internal/impl/Maven2RepositoryLayoutFactory
  3438. instanceKlass org/eclipse/aether/spi/connector/layout/RepositoryLayoutFactory
  3439. instanceKlass org/eclipse/aether/spi/log/LoggerFactory
  3440. instanceKlass org/eclipse/aether/internal/impl/LoggerFactoryProvider
  3441. instanceKlass org/eclipse/aether/internal/impl/EnhancedLocalRepositoryManagerFactory
  3442. instanceKlass org/eclipse/aether/spi/localrepo/LocalRepositoryManagerFactory
  3443. instanceKlass org/eclipse/aether/internal/impl/DefaultUpdatePolicyAnalyzer
  3444. instanceKlass org/eclipse/aether/impl/UpdatePolicyAnalyzer
  3445. instanceKlass org/eclipse/aether/internal/impl/DefaultUpdateCheckManager
  3446. instanceKlass org/eclipse/aether/impl/UpdateCheckManager
  3447. instanceKlass org/eclipse/aether/internal/impl/DefaultTransporterProvider
  3448. instanceKlass org/eclipse/aether/spi/connector/transport/TransporterProvider
  3449. instanceKlass org/eclipse/aether/internal/impl/DefaultTrackingFileManager
  3450. instanceKlass org/eclipse/aether/internal/impl/TrackingFileManager
  3451. instanceKlass org/eclipse/aether/internal/impl/DefaultRepositorySystemLifecycle
  3452. instanceKlass org/eclipse/aether/impl/RepositorySystemLifecycle
  3453. instanceKlass org/eclipse/aether/internal/impl/DefaultRepositorySystem
  3454. instanceKlass org/eclipse/aether/RepositorySystem
  3455. instanceKlass org/eclipse/aether/internal/impl/DefaultRepositoryLayoutProvider
  3456. instanceKlass org/eclipse/aether/spi/connector/layout/RepositoryLayoutProvider
  3457. instanceKlass org/eclipse/aether/internal/impl/DefaultRepositoryEventDispatcher
  3458. instanceKlass org/eclipse/aether/impl/RepositoryEventDispatcher
  3459. instanceKlass org/eclipse/aether/internal/impl/DefaultRepositoryConnectorProvider
  3460. instanceKlass org/eclipse/aether/impl/RepositoryConnectorProvider
  3461. instanceKlass org/eclipse/aether/internal/impl/DefaultRemoteRepositoryManager
  3462. instanceKlass org/eclipse/aether/impl/RemoteRepositoryManager
  3463. instanceKlass org/eclipse/aether/internal/impl/DefaultOfflineController
  3464. instanceKlass org/eclipse/aether/impl/OfflineController
  3465. instanceKlass org/eclipse/aether/internal/impl/DefaultMetadataResolver
  3466. instanceKlass org/eclipse/aether/impl/MetadataResolver
  3467. instanceKlass org/eclipse/aether/internal/impl/DefaultLocalRepositoryProvider
  3468. instanceKlass org/eclipse/aether/impl/LocalRepositoryProvider
  3469. instanceKlass org/eclipse/aether/internal/impl/LocalPathPrefixComposerFactorySupport
  3470. instanceKlass org/eclipse/aether/internal/impl/LocalPathPrefixComposerFactory
  3471. instanceKlass org/eclipse/aether/internal/impl/DefaultLocalPathComposer
  3472. instanceKlass org/eclipse/aether/internal/impl/LocalPathComposer
  3473. instanceKlass org/eclipse/aether/internal/impl/DefaultInstaller
  3474. instanceKlass org/eclipse/aether/impl/Installer
  3475. instanceKlass org/eclipse/aether/internal/impl/DefaultFileProcessor
  3476. instanceKlass org/eclipse/aether/spi/io/FileProcessor
  3477. instanceKlass com/google/gson/internal/JsonReaderInternalAccess
  3478. instanceKlass org/eclipse/aether/internal/impl/DefaultDeployer
  3479. instanceKlass org/eclipse/aether/impl/Deployer
  3480. instanceKlass org/eclipse/aether/internal/impl/DefaultChecksumPolicyProvider
  3481. instanceKlass org/eclipse/aether/spi/connector/checksum/ChecksumPolicyProvider
  3482. instanceKlass org/eclipse/aether/internal/impl/DefaultArtifactResolver
  3483. instanceKlass org/eclipse/aether/impl/ArtifactResolver
  3484. instanceKlass org/eclipse/aether/connector/basic/BasicRepositoryConnectorFactory
  3485. instanceKlass org/eclipse/aether/spi/locator/Service
  3486. instanceKlass org/eclipse/aether/spi/connector/RepositoryConnectorFactory
  3487. instanceKlass org/apache/maven/model/validation/DefaultModelValidator
  3488. instanceKlass org/apache/maven/model/validation/ModelValidator
  3489. instanceKlass org/apache/maven/model/superpom/DefaultSuperPomProvider
  3490. instanceKlass org/apache/maven/model/superpom/SuperPomProvider
  3491. instanceKlass org/apache/maven/model/profile/activation/PropertyProfileActivator
  3492. instanceKlass org/apache/maven/model/profile/activation/OperatingSystemProfileActivator
  3493. instanceKlass org/apache/maven/model/profile/activation/JdkVersionProfileActivator
  3494. instanceKlass org/apache/maven/model/profile/activation/FileProfileActivator
  3495. instanceKlass org/apache/maven/model/profile/activation/ProfileActivator
  3496. instanceKlass org/apache/maven/model/profile/DefaultProfileSelector
  3497. instanceKlass org/apache/maven/model/profile/ProfileSelector
  3498. instanceKlass org/apache/maven/model/profile/DefaultProfileInjector
  3499. instanceKlass org/apache/maven/model/profile/ProfileInjector
  3500. instanceKlass org/apache/maven/model/plugin/DefaultReportingConverter
  3501. instanceKlass org/apache/maven/model/plugin/ReportingConverter
  3502. instanceKlass org/apache/maven/model/plugin/DefaultReportConfigurationExpander
  3503. instanceKlass org/apache/maven/model/plugin/ReportConfigurationExpander
  3504. instanceKlass org/apache/maven/model/plugin/DefaultPluginConfigurationExpander
  3505. instanceKlass org/apache/maven/model/plugin/PluginConfigurationExpander
  3506. instanceKlass org/apache/maven/model/path/ProfileActivationFilePathInterpolator
  3507. instanceKlass org/apache/maven/model/path/DefaultUrlNormalizer
  3508. instanceKlass org/apache/maven/model/path/UrlNormalizer
  3509. instanceKlass org/apache/maven/model/path/DefaultPathTranslator
  3510. instanceKlass org/apache/maven/model/path/PathTranslator
  3511. instanceKlass org/apache/maven/model/path/DefaultModelUrlNormalizer
  3512. instanceKlass org/apache/maven/model/path/ModelUrlNormalizer
  3513. instanceKlass org/apache/maven/model/path/DefaultModelPathTranslator
  3514. instanceKlass org/apache/maven/model/path/ModelPathTranslator
  3515. instanceKlass org/apache/maven/model/normalization/DefaultModelNormalizer
  3516. instanceKlass org/apache/maven/model/normalization/ModelNormalizer
  3517. instanceKlass org/apache/maven/model/management/DefaultPluginManagementInjector
  3518. instanceKlass org/apache/maven/model/management/PluginManagementInjector
  3519. instanceKlass org/apache/maven/model/management/DefaultDependencyManagementInjector
  3520. instanceKlass org/apache/maven/model/management/DependencyManagementInjector
  3521. instanceKlass org/apache/maven/model/locator/DefaultModelLocator
  3522. instanceKlass org/apache/maven/model/io/DefaultModelWriter
  3523. instanceKlass org/apache/maven/model/io/ModelWriter
  3524. instanceKlass org/apache/maven/model/io/DefaultModelReader
  3525. instanceKlass org/apache/maven/model/interpolation/AbstractStringBasedModelInterpolator
  3526. instanceKlass org/apache/maven/model/interpolation/ModelInterpolator
  3527. instanceKlass org/apache/maven/model/interpolation/DefaultModelVersionProcessor
  3528. instanceKlass org/apache/maven/model/interpolation/ModelVersionProcessor
  3529. instanceKlass org/apache/maven/model/inheritance/DefaultInheritanceAssembler
  3530. instanceKlass org/apache/maven/model/inheritance/InheritanceAssembler
  3531. instanceKlass org/apache/maven/model/composition/DefaultDependencyManagementImporter
  3532. instanceKlass org/apache/maven/model/composition/DependencyManagementImporter
  3533. instanceKlass @bci sun/reflect/annotation/AnnotationParser parseClassArray (ILjava/nio/ByteBuffer;Ljdk/internal/reflect/ConstantPool;Ljava/lang/Class;)Ljava/lang/Object; 10 <appendix> member <vmtarget> ; # sun/reflect/annotation/AnnotationParser$$Lambda+0x000002032b3e6438
  3534. instanceKlass org/apache/maven/model/building/DefaultModelProcessor
  3535. instanceKlass org/apache/maven/model/building/ModelProcessor
  3536. instanceKlass org/apache/maven/model/io/ModelReader
  3537. instanceKlass org/apache/maven/model/locator/ModelLocator
  3538. instanceKlass org/apache/maven/model/building/DefaultModelBuilder
  3539. instanceKlass org/apache/maven/model/building/ModelBuilder
  3540. instanceKlass org/apache/maven/cli/internal/BootstrapCoreExtensionManager
  3541. instanceKlass org/apache/maven/toolchain/io/DefaultToolchainsWriter
  3542. instanceKlass org/apache/maven/toolchain/io/ToolchainsWriter
  3543. instanceKlass org/apache/maven/toolchain/io/DefaultToolchainsReader
  3544. instanceKlass org/apache/maven/toolchain/io/ToolchainsReader
  3545. instanceKlass org/apache/maven/toolchain/building/DefaultToolchainsBuilder
  3546. instanceKlass org/apache/maven/toolchain/building/ToolchainsBuilder
  3547. instanceKlass org/apache/maven/session/scope/internal/SessionScope$ScopeState
  3548. instanceKlass @bci org/apache/maven/session/scope/internal/SessionScope <clinit> ()V 0 <appendix> argL0 ; # org/apache/maven/session/scope/internal/SessionScope$$Lambda+0x000002032b451ad8
  3549. instanceKlass org/apache/maven/session/scope/internal/SessionScope
  3550. instanceKlass org/apache/maven/plugin/internal/AbstractMavenPluginDependenciesValidator
  3551. instanceKlass org/apache/maven/plugin/internal/MavenPluginDependenciesValidator
  3552. instanceKlass org/apache/maven/plugin/internal/AbstractMavenPluginParametersValidator
  3553. instanceKlass org/apache/maven/plugin/internal/MavenPluginConfigurationValidator
  3554. instanceKlass org/apache/maven/eventspy/AbstractEventSpy
  3555. instanceKlass org/apache/maven/plugin/PluginValidationManager
  3556. instanceKlass org/apache/maven/plugin/DefaultMojosExecutionStrategy
  3557. instanceKlass org/apache/maven/plugin/MojosExecutionStrategy
  3558. instanceKlass org/apache/maven/lifecycle/internal/LifecycleDependencyResolver
  3559. instanceKlass org/apache/maven/lifecycle/internal/DefaultProjectArtifactFactory
  3560. instanceKlass org/apache/maven/lifecycle/internal/ProjectArtifactFactory
  3561. instanceKlass org/apache/maven/internal/aether/ResolverLifecycle
  3562. instanceKlass org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory
  3563. instanceKlass org/apache/maven/extension/internal/CoreExportsProvider
  3564. instanceKlass org/apache/maven/execution/scope/internal/MojoExecutionScope$ScopeState
  3565. instanceKlass org/apache/maven/execution/MojoExecutionEvent
  3566. instanceKlass org/apache/maven/execution/scope/MojoExecutionScoped
  3567. instanceKlass com/google/inject/RestrictedBindingSource$Permit
  3568. instanceKlass org/apache/maven/execution/scope/internal/MojoExecutionScope$1
  3569. instanceKlass org/apache/maven/execution/scope/internal/MojoExecutionScope
  3570. instanceKlass org/apache/maven/execution/MojoExecutionListener
  3571. instanceKlass org/eclipse/sisu/space/QualifiedTypeBinder$1
  3572. instanceKlass org/apache/maven/execution/DefaultMavenExecutionRequestPopulator
  3573. instanceKlass org/apache/maven/execution/MavenExecutionRequestPopulator
  3574. instanceKlass org/apache/maven/classrealm/DefaultClassRealmManager
  3575. instanceKlass org/apache/maven/classrealm/ClassRealmManager
  3576. instanceKlass org/apache/maven/SessionScoped
  3577. instanceKlass org/apache/maven/ReactorReader
  3578. instanceKlass org/apache/maven/repository/internal/MavenWorkspaceReader
  3579. instanceKlass org/apache/maven/DefaultArtifactFilterManager
  3580. instanceKlass org/apache/maven/ArtifactFilterManager
  3581. instanceKlass org/eclipse/sisu/space/WildcardKey$QualifiedImpl
  3582. instanceKlass org/eclipse/sisu/space/WildcardKey$Qualified
  3583. instanceKlass org/eclipse/sisu/space/WildcardKey
  3584. instanceKlass org/eclipse/sisu/Typed
  3585. instanceKlass org/sonatype/inject/EagerSingleton
  3586. instanceKlass org/eclipse/sisu/EagerSingleton
  3587. instanceKlass org/sonatype/inject/Mediator
  3588. instanceKlass org/eclipse/sisu/inject/TypeArguments
  3589. instanceKlass org/eclipse/m2e/internal/maven/listener/M2EMavenBuildDataBridge
  3590. instanceKlass org/apache/maven/eventspy/EventSpy
  3591. instanceKlass org/eclipse/sisu/space/asm/Context
  3592. instanceKlass org/eclipse/sisu/space/asm/Attribute
  3593. instanceKlass org/eclipse/sisu/space/asm/AnnotationVisitor
  3594. instanceKlass org/eclipse/sisu/space/asm/ClassReader
  3595. instanceKlass org/eclipse/sisu/space/IndexedClassFinder$1
  3596. instanceKlass org/eclipse/sisu/inject/Logs$SLF4JSink
  3597. instanceKlass org/eclipse/sisu/inject/Logs$Sink
  3598. instanceKlass org/eclipse/sisu/inject/Logs
  3599. instanceKlass org/eclipse/sisu/space/QualifierCache
  3600. instanceKlass org/eclipse/sisu/space/QualifiedTypeVisitor
  3601. instanceKlass org/eclipse/sisu/plexus/PlexusTypeVisitor$ComponentAnnotationVisitor
  3602. instanceKlass org/eclipse/sisu/space/AnnotationVisitor
  3603. instanceKlass org/eclipse/sisu/plexus/PlexusTypeVisitor
  3604. instanceKlass org/eclipse/sisu/space/ClassVisitor
  3605. instanceKlass org/eclipse/sisu/plexus/PlexusXmlBeanModule$PlexusXmlBeanSource
  3606. instanceKlass org/eclipse/sisu/inject/DescriptionSource
  3607. instanceKlass org/eclipse/sisu/inject/AnnotatedSource
  3608. instanceKlass org/eclipse/sisu/Priority
  3609. instanceKlass org/eclipse/sisu/Hidden
  3610. instanceKlass org/eclipse/sisu/Description
  3611. instanceKlass org/eclipse/sisu/inject/Sources
  3612. instanceKlass com/google/inject/internal/MoreTypes$ParameterizedTypeImpl
  3613. instanceKlass org/apache/maven/wagon/Wagon
  3614. instanceKlass org/apache/maven/toolchain/ToolchainsBuilder
  3615. instanceKlass org/apache/maven/toolchain/ToolchainManagerPrivate
  3616. instanceKlass org/apache/maven/toolchain/ToolchainManager
  3617. instanceKlass org/apache/maven/toolchain/ToolchainFactory
  3618. instanceKlass org/apache/maven/settings/MavenSettingsBuilder
  3619. instanceKlass org/apache/maven/rtinfo/RuntimeInformation
  3620. instanceKlass org/apache/maven/project/artifact/ProjectArtifactsCache
  3621. instanceKlass org/apache/maven/project/ProjectDependenciesResolver
  3622. instanceKlass org/apache/maven/project/ProjectBuildingHelper
  3623. instanceKlass org/apache/maven/project/ProjectBuilder
  3624. instanceKlass org/apache/maven/project/MavenProjectHelper
  3625. instanceKlass org/apache/maven/plugin/version/PluginVersionResolver
  3626. instanceKlass org/apache/maven/plugin/prefix/PluginPrefixResolver
  3627. instanceKlass org/apache/maven/plugin/PluginManager
  3628. instanceKlass org/apache/maven/plugin/PluginDescriptorCache
  3629. instanceKlass org/apache/maven/plugin/MavenPluginManager
  3630. instanceKlass org/apache/maven/plugin/LegacySupport
  3631. instanceKlass org/apache/maven/plugin/BuildPluginManager
  3632. instanceKlass org/apache/maven/model/plugin/LifecycleBindingsInjector
  3633. instanceKlass org/apache/maven/lifecycle/internal/builder/BuilderCommon
  3634. instanceKlass org/apache/maven/lifecycle/internal/builder/Builder
  3635. instanceKlass org/apache/maven/lifecycle/internal/MojoExecutor
  3636. instanceKlass org/apache/maven/lifecycle/internal/MojoDescriptorCreator
  3637. instanceKlass org/apache/maven/lifecycle/internal/LifecycleTaskSegmentCalculator
  3638. instanceKlass org/apache/maven/lifecycle/internal/LifecycleStarter
  3639. instanceKlass org/apache/maven/lifecycle/internal/LifecyclePluginResolver
  3640. instanceKlass org/apache/maven/lifecycle/internal/LifecycleModuleBuilder
  3641. instanceKlass org/apache/maven/lifecycle/internal/LifecycleExecutionPlanCalculator
  3642. instanceKlass org/apache/maven/lifecycle/internal/LifecycleDebugLogger
  3643. instanceKlass org/apache/maven/lifecycle/internal/ExecutionEventCatapult
  3644. instanceKlass org/apache/maven/lifecycle/internal/BuildListCalculator
  3645. instanceKlass org/apache/maven/lifecycle/MojoExecutionConfigurator
  3646. instanceKlass org/apache/maven/lifecycle/LifecycleMappingDelegate
  3647. instanceKlass org/apache/maven/lifecycle/LifecycleExecutor
  3648. instanceKlass sun/net/NetHooks
  3649. instanceKlass org/apache/maven/lifecycle/LifeCyclePluginAnalyzer
  3650. instanceKlass org/apache/maven/lifecycle/DefaultLifecycles
  3651. instanceKlass org/apache/maven/graph/GraphBuilder
  3652. instanceKlass java/net/SocksSocketImpl$3
  3653. instanceKlass org/apache/maven/exception/ExceptionHandler
  3654. instanceKlass @bci sun/nio/ch/NioSocketImpl closerFor (Ljava/io/FileDescriptor;Z)Ljava/lang/Runnable; 5 <appendix> member <vmtarget> ; # sun/nio/ch/NioSocketImpl$$Lambda+0x000002032b3e5e08
  3655. instanceKlass org/apache/maven/eventspy/internal/EventSpyDispatcher
  3656. instanceKlass org/apache/maven/configuration/BeanConfigurator
  3657. instanceKlass org/apache/maven/bridge/MavenRepositorySystem
  3658. instanceKlass org/apache/maven/artifact/resolver/ResolutionErrorHandler
  3659. instanceKlass org/apache/maven/artifact/repository/metadata/io/MetadataReader
  3660. instanceKlass org/apache/maven/artifact/metadata/ArtifactMetadataSource
  3661. instanceKlass org/apache/maven/repository/legacy/metadata/ArtifactMetadataSource
  3662. instanceKlass jdk/net/ExtendedSocketOptions$2
  3663. instanceKlass jdk/net/ExtendedSocketOptions$PlatformSocketOptions
  3664. instanceKlass org/apache/maven/artifact/handler/manager/ArtifactHandlerManager
  3665. instanceKlass jdk/net/ExtendedSocketOptions$ExtSocketOption
  3666. instanceKlass java/net/SocketOption
  3667. instanceKlass org/apache/maven/artifact/factory/ArtifactFactory
  3668. instanceKlass jdk/net/ExtendedSocketOptions
  3669. instanceKlass org/apache/maven/ProjectDependenciesResolver
  3670. instanceKlass org/apache/maven/Maven
  3671. instanceKlass sun/net/ext/ExtendedSocketOptions
  3672. instanceKlass sun/nio/ch/Net$1
  3673. instanceKlass sun/nio/ch/Net
  3674. instanceKlass java/net/InetSocketAddress$InetSocketAddressHolder
  3675. instanceKlass java/net/InetAddress$CachedLookup
  3676. instanceKlass sun/net/InetAddressCachePolicy$1
  3677. instanceKlass sun/net/InetAddressCachePolicy
  3678. instanceKlass @bci java/net/InetAddress getAddressesFromNameService (Ljava/lang/String;)[Ljava/net/InetAddress; 94 <appendix> argL0 ; # java/net/InetAddress$$Lambda+0x000002032b3e31b0
  3679. instanceKlass org/apache/maven/artifact/handler/ArtifactHandler
  3680. instanceKlass org/sonatype/plexus/components/sec/dispatcher/SecDispatcher
  3681. instanceKlass org/apache/maven/lifecycle/Lifecycle
  3682. instanceKlass org/eclipse/sisu/space/CloningClassSpace$1
  3683. instanceKlass org/apache/maven/lifecycle/mapping/LifecycleMapping
  3684. instanceKlass org/apache/maven/repository/metadata/GraphConflictResolver
  3685. instanceKlass org/apache/maven/repository/metadata/GraphConflictResolutionPolicy
  3686. instanceKlass org/eclipse/sisu/plexus/ConfigurationImpl
  3687. instanceKlass org/apache/maven/repository/metadata/ClasspathTransformation
  3688. instanceKlass org/apache/maven/repository/legacy/resolver/transform/ArtifactTransformationManager
  3689. instanceKlass org/apache/maven/repository/legacy/resolver/transform/ArtifactTransformation
  3690. instanceKlass org/apache/maven/repository/legacy/resolver/conflict/ConflictResolverFactory
  3691. instanceKlass org/apache/maven/repository/legacy/resolver/conflict/ConflictResolver
  3692. instanceKlass org/apache/maven/repository/legacy/repository/ArtifactRepositoryFactory
  3693. instanceKlass org/apache/maven/repository/legacy/UpdateCheckManager
  3694. instanceKlass org/apache/maven/repository/RepositorySystem
  3695. instanceKlass org/apache/maven/repository/MirrorSelector
  3696. instanceKlass org/apache/maven/project/validation/ModelValidator
  3697. instanceKlass org/apache/maven/project/path/PathTranslator
  3698. instanceKlass org/apache/maven/project/interpolation/ModelInterpolator
  3699. instanceKlass org/apache/maven/project/inheritance/ModelInheritanceAssembler
  3700. instanceKlass org/apache/maven/project/MavenProjectBuilder
  3701. instanceKlass org/apache/maven/profiles/MavenProfilesBuilder
  3702. instanceKlass org/apache/maven/execution/RuntimeInformation
  3703. instanceKlass org/apache/maven/artifact/resolver/ArtifactResolver
  3704. instanceKlass org/apache/maven/artifact/resolver/ArtifactCollector
  3705. instanceKlass org/apache/maven/repository/legacy/resolver/LegacyArtifactCollector
  3706. instanceKlass org/apache/maven/artifact/repository/metadata/RepositoryMetadataManager
  3707. instanceKlass org/apache/maven/artifact/repository/layout/ArtifactRepositoryLayout
  3708. instanceKlass org/apache/maven/artifact/repository/ArtifactRepositoryFactory
  3709. instanceKlass org/apache/maven/artifact/manager/WagonManager
  3710. instanceKlass org/apache/maven/repository/legacy/WagonManager
  3711. instanceKlass org/apache/maven/artifact/installer/ArtifactInstaller
  3712. instanceKlass org/eclipse/sisu/plexus/PlexusXmlMetadata
  3713. instanceKlass org/eclipse/sisu/plexus/Roles
  3714. instanceKlass org/apache/maven/artifact/deployer/ArtifactDeployer
  3715. instanceKlass org/eclipse/sisu/plexus/Hints
  3716. instanceKlass org/eclipse/sisu/space/AbstractDeferredClass
  3717. instanceKlass org/eclipse/sisu/plexus/RequirementImpl
  3718. instanceKlass org/codehaus/plexus/component/annotations/Requirement
  3719. instanceKlass org/eclipse/sisu/space/Streams
  3720. instanceKlass org/eclipse/sisu/plexus/ComponentImpl
  3721. instanceKlass org/eclipse/sisu/plexus/PlexusTypeRegistry
  3722. instanceKlass org/eclipse/sisu/plexus/PlexusXmlScanner
  3723. instanceKlass org/eclipse/equinox/internal/app/EclipseAppHandle$1
  3724. instanceKlass org/eclipse/sisu/space/QualifiedTypeBinder
  3725. instanceKlass org/eclipse/equinox/internal/app/EclipseAppHandle$2
  3726. instanceKlass org/eclipse/sisu/plexus/PlexusTypeBinder
  3727. instanceKlass @bci java/util/regex/Pattern CIRange (II)Ljava/util/regex/Pattern$CharPredicate; 2 <appendix> member <vmtarget> ; # java/util/regex/Pattern$$Lambda+0x000002032b3e2d00
  3728. instanceKlass org/eclipse/aether/AbstractRepositoryListener
  3729. instanceKlass @bci java/util/regex/Pattern SingleI (II)Ljava/util/regex/Pattern$BmpCharPredicate; 2 <appendix> member <vmtarget> ; # java/util/regex/Pattern$$Lambda+0x000002032b3e2a80
  3730. instanceKlass java/time/format/Parsed
  3731. instanceKlass org/eclipse/aether/RepositoryListener
  3732. instanceKlass java/time/format/DateTimeParseContext
  3733. instanceKlass com/google/inject/Key$AnnotationInstanceStrategy
  3734. instanceKlass org/eclipse/jdt/ls/core/internal/LogReader$LogEntry
  3735. instanceKlass java/io/PrintWriter$1
  3736. instanceKlass jdk/internal/access/JavaIOPrintWriterAccess
  3737. instanceKlass org/eclipse/jdt/ls/core/internal/LogReader$LogSession
  3738. instanceKlass com/google/inject/name/NamedImpl
  3739. instanceKlass com/google/inject/name/Named
  3740. instanceKlass com/google/inject/name/Names
  3741. instanceKlass java/text/CalendarBuilder
  3742. instanceKlass org/apache/maven/artifact/versioning/ComparableVersion$IntItem
  3743. instanceKlass java/text/ParsePosition
  3744. instanceKlass sun/nio/ch/WindowsAsynchronousFileChannelImpl$ReadTask
  3745. instanceKlass sun/nio/ch/Iocp$ResultHandler
  3746. instanceKlass sun/nio/ch/PendingFuture
  3747. instanceKlass org/eclipse/jdt/ls/core/internal/LogReader
  3748. instanceKlass org/eclipse/lsp4j/jsonrpc/json/StreamMessageProducer$Headers
  3749. instanceKlass org/eclipse/lsp4j/jsonrpc/json/ConcurrentMessageProcessor$1
  3750. instanceKlass @bci org/eclipse/jdt/ls/core/internal/handlers/WorkspaceEventsHandler <init> (Lorg/eclipse/jdt/ls/core/internal/managers/ProjectsManager;Lorg/eclipse/jdt/ls/core/internal/JavaClientConnection;Lorg/eclipse/jdt/ls/core/internal/handlers/BaseDocumentLifeCycleHandler;)V 35 <appendix> member <vmtarget> ; # org/eclipse/jdt/ls/core/internal/handlers/WorkspaceEventsHandler$$Lambda+0x000002032b405b80
  3751. instanceKlass org/apache/maven/artifact/versioning/ComparableVersion$Item
  3752. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/WorkspaceEventsHandler
  3753. instanceKlass org/apache/maven/artifact/versioning/ComparableVersion
  3754. instanceKlass org/apache/maven/artifact/versioning/DefaultArtifactVersion
  3755. instanceKlass org/eclipse/jdt/core/manipulation/CoreASTProvider$WAIT_FLAG
  3756. instanceKlass org/eclipse/jdt/core/manipulation/CoreASTProvider
  3757. instanceKlass org/apache/maven/artifact/versioning/ArtifactVersion
  3758. instanceKlass org/eclipse/m2e/core/internal/embedder/EclipseClassRealmManagerDelegate
  3759. instanceKlass org/eclipse/jdt/ls/core/internal/MovingAverage
  3760. instanceKlass org/apache/maven/classrealm/ClassRealmManagerDelegate
  3761. instanceKlass org/sonatype/plexus/build/incremental/ThreadBuildContext
  3762. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/BaseDiagnosticsHandler
  3763. instanceKlass org/sonatype/plexus/build/incremental/BuildContext
  3764. instanceKlass org/apache/maven/plugin/internal/DefaultPluginDependenciesResolver
  3765. instanceKlass org/apache/maven/plugin/internal/PluginDependenciesResolver
  3766. instanceKlass @bci java/net/InetAddress loadResolver ()Ljava/net/spi/InetAddressResolver; 8 <appendix> argL0 ; # java/net/InetAddress$$Lambda+0x000002032b3e1508
  3767. instanceKlass org/apache/maven/plugin/DefaultPluginArtifactsCache
  3768. instanceKlass java/net/spi/InetAddressResolverProvider
  3769. instanceKlass java/net/InetAddress$NameServiceAddresses
  3770. instanceKlass org/eclipse/jdt/core/IProblemRequestor
  3771. instanceKlass java/net/InetAddress$Addresses
  3772. instanceKlass org/apache/maven/plugin/PluginArtifactsCache
  3773. instanceKlass java/util/concurrent/ConcurrentSkipListMap$Iter
  3774. instanceKlass org/eclipse/lsp4j/jsonrpc/StandardLauncher
  3775. instanceKlass org/apache/maven/plugin/DefaultPluginRealmCache
  3776. instanceKlass org/eclipse/lsp4j/jsonrpc/json/ConcurrentMessageProcessor
  3777. instanceKlass org/apache/maven/plugin/PluginRealmCache
  3778. instanceKlass sun/security/ssl/DTLSRecord
  3779. instanceKlass org/apache/maven/project/DefaultProjectRealmCache
  3780. instanceKlass org/eclipse/lsp4j/jsonrpc/json/StreamMessageProducer
  3781. instanceKlass org/apache/maven/project/ProjectRealmCache
  3782. instanceKlass sun/security/ssl/SessionId
  3783. instanceKlass org/apache/maven/plugin/DefaultExtensionRealmCache
  3784. instanceKlass org/apache/maven/plugin/ExtensionRealmCache
  3785. instanceKlass @bci java/lang/reflect/Proxy getProxyConstructor (Ljava/lang/Class;Ljava/lang/ClassLoader;[Ljava/lang/Class;)Ljava/lang/reflect/Constructor; 80 <appendix> argL0 ; # java/lang/reflect/Proxy$$Lambda+0x000002032b3de908
  3786. instanceKlass @bci org/eclipse/lsp4j/jsonrpc/services/EndpointProxy <init> (Lorg/eclipse/lsp4j/jsonrpc/Endpoint;Ljava/util/Collection;)V 197 <appendix> member <vmtarget> ; # org/eclipse/lsp4j/jsonrpc/services/EndpointProxy$$Lambda+0x000002032b430da0
  3787. instanceKlass org/codehaus/plexus/component/annotations/Component
  3788. instanceKlass @bci org/eclipse/lsp4j/jsonrpc/services/EndpointProxy <init> (Lorg/eclipse/lsp4j/jsonrpc/Endpoint;Ljava/util/Collection;)V 178 <appendix> member <vmtarget> ; # org/eclipse/lsp4j/jsonrpc/services/EndpointProxy$$Lambda+0x000002032b430b78
  3789. instanceKlass java/security/spec/MGF1ParameterSpec
  3790. instanceKlass org/eclipse/lsp4j/jsonrpc/services/EndpointProxy
  3791. instanceKlass sun/security/ec/ParametersMap$1
  3792. instanceKlass @bci org/eclipse/lsp4j/jsonrpc/RemoteEndpoint <clinit> ()V 11 <appendix> argL0 ; # org/eclipse/lsp4j/jsonrpc/RemoteEndpoint$$Lambda+0x000002032b430720
  3793. instanceKlass @bci sun/security/ec/ed/EdDSAParameters <clinit> ()V 268 <appendix> argL0 ; # sun/security/ec/ed/EdDSAParameters$$Lambda+0x000002032b42b2e0
  3794. instanceKlass org/apache/maven/project/artifact/DefaultMavenMetadataCache
  3795. instanceKlass org/eclipse/lsp4j/jsonrpc/messages/ResponseError
  3796. instanceKlass sun/security/ec/ed/EdDSAParameters$SHAKE256DigesterFactory
  3797. instanceKlass org/eclipse/m2e/core/internal/project/IManagedCache
  3798. instanceKlass sun/security/ec/point/ProjectivePoint
  3799. instanceKlass org/apache/maven/project/artifact/MavenMetadataCache
  3800. instanceKlass org/eclipse/m2e/core/internal/embedder/DefaultMavenComponentContributor
  3801. instanceKlass org/eclipse/m2e/core/internal/embedder/IMavenComponentContributor
  3802. instanceKlass @bci sun/security/ec/ed/EdDSAParameters <clinit> ()V 117 <appendix> argL0 ; # sun/security/ec/ed/EdDSAParameters$$Lambda+0x000002032b42a958
  3803. instanceKlass sun/security/ec/ed/EdDSAParameters$Digester
  3804. instanceKlass org/eclipse/lsp4j/jsonrpc/RemoteEndpoint
  3805. instanceKlass sun/security/ec/ed/EdDSAParameters$SHA512DigesterFactory
  3806. instanceKlass sun/security/ec/point/ExtendedHomogeneousPoint
  3807. instanceKlass sun/security/ec/point/AffinePoint
  3808. instanceKlass ch/qos/logback/classic/spi/LoggerContextListener
  3809. instanceKlass sun/security/util/math/intpoly/IntegerPolynomial$Limb
  3810. instanceKlass @bci java/lang/reflect/Executable sharedToString (IZ[Ljava/lang/Class;[Ljava/lang/Class;)Ljava/lang/String; 29 <appendix> argL0 ; # java/lang/reflect/Executable$$Lambda+0x000002032b3dd520
  3811. instanceKlass sun/security/util/math/SmallValue
  3812. instanceKlass sun/security/ec/point/MutablePoint
  3813. instanceKlass sun/security/ec/point/ImmutablePoint
  3814. instanceKlass sun/security/ec/point/Point
  3815. instanceKlass @bci org/eclipse/lsp4j/jsonrpc/services/GenericEndpoint recursiveFindRpcMethods (Ljava/lang/Object;Ljava/util/Set;Ljava/util/Set;)V 24 <appendix> member <vmtarget> ; # org/eclipse/lsp4j/jsonrpc/services/GenericEndpoint$$Lambda+0x000002032b3a76e0
  3816. instanceKlass @cpi org/eclipse/m2e/core/internal/builder/MavenBuilderImpl 922 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b429000
  3817. instanceKlass ch/qos/logback/core/spi/ConfigurationEvent
  3818. instanceKlass sun/security/util/math/intpoly/IntegerPolynomial$Element
  3819. instanceKlass sun/security/util/math/ImmutableIntegerModuloP
  3820. instanceKlass sun/security/util/math/IntegerModuloP
  3821. instanceKlass ch/qos/logback/core/spi/ConfigurationEventListener
  3822. instanceKlass ch/qos/logback/core/spi/SequenceNumberGenerator
  3823. instanceKlass ch/qos/logback/core/LifeCycleManager
  3824. instanceKlass sun/security/util/math/intpoly/IntegerPolynomial
  3825. instanceKlass com/google/inject/spi/InjectionRequest
  3826. instanceKlass sun/security/ec/ParametersMap
  3827. instanceKlass org/eclipse/sisu/bean/BeanProperty
  3828. instanceKlass sun/security/ec/ed/EdECOperations
  3829. instanceKlass sun/security/ec/ed/EdDSAParameters$DigesterFactory
  3830. instanceKlass sun/security/util/math/IntegerFieldModuloP
  3831. instanceKlass com/google/common/collect/ObjectArrays
  3832. instanceKlass sun/security/ec/ed/EdDSAParameters
  3833. instanceKlass com/google/inject/internal/Nullability
  3834. instanceKlass @bci org/eclipse/lsp4j/jsonrpc/services/GenericEndpoint lambda$recursiveFindRpcMethods$1 (Ljava/lang/Object;Lorg/eclipse/lsp4j/jsonrpc/services/AnnotationUtil$MethodInfo;)V 3 <appendix> member <vmtarget> ; # org/eclipse/lsp4j/jsonrpc/services/GenericEndpoint$$Lambda+0x000002032b3a74a8
  3835. instanceKlass @bci sun/security/ec/ed/EdDSASignature <init> (Ljava/security/spec/NamedParameterSpec;)V 27 <appendix> argL0 ; # sun/security/ec/ed/EdDSASignature$$Lambda+0x000002032b422768
  3836. instanceKlass @bci com/google/inject/internal/KotlinSupport$KotlinUnsupported <clinit> ()V 7 <appendix> argL0 ; # com/google/inject/internal/KotlinSupport$KotlinUnsupported$$Lambda+0x000002032b42ca30
  3837. instanceKlass java/security/spec/EdDSAParameterSpec
  3838. instanceKlass @bci org/eclipse/lsp4j/jsonrpc/services/GenericEndpoint recursiveFindRpcMethods (Ljava/lang/Object;Ljava/util/Set;Ljava/util/Set;)V 7 <appendix> member <vmtarget> ; # org/eclipse/lsp4j/jsonrpc/services/GenericEndpoint$$Lambda+0x000002032b3a7280
  3839. instanceKlass sun/security/ec/ed/EdDSASignature$MessageAccumulator
  3840. instanceKlass com/google/inject/internal/KotlinSupport$KotlinUnsupported
  3841. instanceKlass com/google/inject/internal/KotlinSupport$KotlinSupportHolder
  3842. instanceKlass com/google/inject/internal/KotlinSupportInterface
  3843. instanceKlass org/eclipse/lsp4j/jsonrpc/services/GenericEndpoint
  3844. instanceKlass com/google/inject/internal/KotlinSupport
  3845. instanceKlass com/google/inject/spi/InjectionPoint$OverrideIndex
  3846. instanceKlass @bci org/eclipse/jdt/ls/core/internal/ParentProcessWatcher apply (Lorg/eclipse/lsp4j/jsonrpc/MessageConsumer;)Lorg/eclipse/lsp4j/jsonrpc/MessageConsumer; 2 <appendix> member <vmtarget> ; # org/eclipse/jdt/ls/core/internal/ParentProcessWatcher$$Lambda+0x000002032b404438
  3847. instanceKlass org/eclipse/lsp4j/jsonrpc/messages/Message
  3848. instanceKlass org/eclipse/lsp4j/jsonrpc/json/StreamMessageConsumer
  3849. instanceKlass org/eclipse/lsp4j/jsonrpc/json/MessageConstants
  3850. instanceKlass org/eclipse/sisu/inject/RankedBindings
  3851. instanceKlass com/google/gson/internal/bind/ReflectiveTypeAdapterFactory$BoundField
  3852. instanceKlass org/eclipse/sisu/Mediator
  3853. instanceKlass javax/net/ssl/ExtendedSSLSession
  3854. instanceKlass javax/net/ssl/SSLSession
  3855. instanceKlass com/google/gson/internal/bind/ReflectiveTypeAdapterFactory
  3856. instanceKlass com/google/inject/Inject
  3857. instanceKlass javax/inject/Inject
  3858. instanceKlass com/google/gson/internal/bind/JsonAdapterAnnotationTypeAdapterFactory$DummyTypeAdapterFactory
  3859. instanceKlass @bci com/google/inject/internal/DeclaredMembers getDeclaredFields (Ljava/lang/Class;)[Ljava/lang/reflect/Field; 38 <appendix> argL0 ; # com/google/inject/internal/DeclaredMembers$$Lambda+0x000002032b40f260
  3860. instanceKlass @bci com/google/inject/internal/DeclaredMembers getDeclaredFields (Ljava/lang/Class;)[Ljava/lang/reflect/Field; 20 <appendix> argL0 ; # com/google/inject/internal/DeclaredMembers$$Lambda+0x000002032b40f030
  3861. instanceKlass @bci com/google/inject/internal/DeclaredMembers getDeclaredFields (Ljava/lang/Class;)[Ljava/lang/reflect/Field; 15 <appendix> argL0 ; # com/google/inject/internal/DeclaredMembers$$Lambda+0x000002032b40ee00
  3862. instanceKlass com/google/gson/internal/bind/JsonAdapterAnnotationTypeAdapterFactory
  3863. instanceKlass @bci com/google/inject/internal/DeclaredMembers getDeclaredFields (Ljava/lang/Class;)[Ljava/lang/reflect/Field; 7 <appendix> argL0 ; # com/google/inject/internal/DeclaredMembers$$Lambda+0x000002032b40ebd0
  3864. instanceKlass com/google/inject/spi/InjectionPoint$InjectableMembers
  3865. instanceKlass com/google/gson/internal/bind/MapTypeAdapterFactory
  3866. instanceKlass javax/crypto/spec/DHParameterSpec
  3867. instanceKlass sun/security/ssl/PredefinedDHParameterSpecs$1
  3868. instanceKlass com/google/gson/internal/bind/CollectionTypeAdapterFactory
  3869. instanceKlass com/google/gson/internal/bind/ArrayTypeAdapter$1
  3870. instanceKlass com/google/inject/spi/InjectionPoint$InjectableMember
  3871. instanceKlass com/google/inject/spi/InjectionPoint
  3872. instanceKlass com/google/gson/internal/bind/DefaultDateTypeAdapter$1
  3873. instanceKlass sun/security/ssl/PredefinedDHParameterSpecs
  3874. instanceKlass java/util/concurrent/atomic/AtomicLongArray
  3875. instanceKlass com/sun/security/sasl/Provider$1
  3876. instanceKlass com/google/inject/internal/MoreTypes$GenericArrayTypeImpl
  3877. instanceKlass com/google/gson/internal/bind/NumberTypeAdapter$1
  3878. instanceKlass com/google/inject/internal/MoreTypes$CompositeType
  3879. instanceKlass com/google/inject/Key$AnnotationTypeStrategy
  3880. instanceKlass com/google/common/cache/LocalCache$StrongValueReference
  3881. instanceKlass @bci sun/security/provider/certpath/ldap/JdkLDAP <init> ()V 15 <appendix> member <vmtarget> ; # sun/security/provider/certpath/ldap/JdkLDAP$$Lambda+0x000002032b3d8c80
  3882. instanceKlass com/google/gson/internal/bind/ObjectTypeAdapter$1
  3883. instanceKlass com/google/common/util/concurrent/AbstractFuture$Failure
  3884. instanceKlass com/google/common/util/concurrent/AbstractFuture$Cancellation
  3885. instanceKlass com/google/common/util/concurrent/AbstractFuture$DelegatingToFuture
  3886. instanceKlass com/google/gson/internal/bind/EnumTypeAdapter$1
  3887. instanceKlass com/google/common/util/concurrent/Platform
  3888. instanceKlass sun/security/smartcardio/SunPCSC$1
  3889. instanceKlass @bci sun/security/jgss/SunProvider <init> ()V 15 <appendix> member <vmtarget> ; # sun/security/jgss/SunProvider$$Lambda+0x000002032b420da0
  3890. instanceKlass com/google/gson/internal/bind/TypeAdapters$31
  3891. instanceKlass java/util/Currency
  3892. instanceKlass com/google/common/util/concurrent/Uninterruptibles
  3893. instanceKlass com/google/gson/internal/bind/TypeAdapters$32
  3894. instanceKlass org/jcp/xml/dsig/internal/dom/XMLDSigRI$2
  3895. instanceKlass org/jcp/xml/dsig/internal/dom/XMLDSigRI$1
  3896. instanceKlass java/util/concurrent/atomic/AtomicIntegerArray
  3897. instanceKlass com/google/gson/internal/bind/TypeAdapters$30
  3898. instanceKlass com/google/common/util/concurrent/AbstractFuture$Listener
  3899. instanceKlass com/google/gson/internal/bind/TypeAdapters$29
  3900. instanceKlass com/google/common/util/concurrent/AbstractFutureState$Waiter
  3901. instanceKlass com/sun/security/sasl/gsskerb/JdkSASL$1
  3902. instanceKlass com/google/common/util/concurrent/LazyLogger
  3903. instanceKlass com/google/gson/internal/bind/TypeAdapters
  3904. instanceKlass com/google/gson/internal/ConstructorConstructor
  3905. instanceKlass com/google/common/util/concurrent/AbstractFutureState$AtomicHelper
  3906. instanceKlass com/google/gson/internal/sql/SqlTimestampTypeAdapter$1
  3907. instanceKlass sun/security/mscapi/SunMSCAPI$2
  3908. instanceKlass com/google/gson/internal/sql/SqlTimeTypeAdapter$1
  3909. instanceKlass com/google/common/util/concurrent/internal/InternalFutureFailureAccess
  3910. instanceKlass com/google/gson/internal/sql/SqlDateTypeAdapter$1
  3911. instanceKlass com/google/common/util/concurrent/AbstractFuture$Trusted
  3912. instanceKlass com/google/gson/internal/bind/DefaultDateTypeAdapter$DateType
  3913. instanceKlass com/google/common/util/concurrent/ListenableFuture
  3914. instanceKlass com/google/gson/internal/sql/SqlTypesSupport
  3915. instanceKlass org/eclipse/lsp4j/jsonrpc/json/adapters/MessageTypeAdapter$Factory
  3916. instanceKlass org/eclipse/lsp4j/jsonrpc/json/adapters/EnumTypeAdapter$Factory
  3917. instanceKlass org/eclipse/lsp4j/jsonrpc/json/adapters/TupleTypeAdapters$TwoTypeAdapterFactory
  3918. instanceKlass org/eclipse/lsp4j/jsonrpc/json/adapters/EitherTypeAdapter$Factory
  3919. instanceKlass org/eclipse/lsp4j/jsonrpc/json/adapters/ThrowableTypeAdapter$Factory
  3920. instanceKlass org/eclipse/lsp4j/jsonrpc/json/adapters/CollectionTypeAdapter$Factory
  3921. instanceKlass @bci sun/reflect/annotation/AnnotationParser parseEnumArray (ILjava/lang/Class;Ljava/nio/ByteBuffer;Ljdk/internal/reflect/ConstantPool;Ljava/lang/Class;)Ljava/lang/Object; 16 <appendix> member <vmtarget> ; # sun/reflect/annotation/AnnotationParser$$Lambda+0x000002032b3d7948
  3922. instanceKlass javax/inject/Named
  3923. instanceKlass javax/inject/Qualifier
  3924. instanceKlass com/google/inject/BindingAnnotation
  3925. instanceKlass javax/inject/Scope
  3926. instanceKlass com/google/gson/FormattingStyle
  3927. instanceKlass sun/security/mscapi/SunMSCAPI$1
  3928. instanceKlass com/google/inject/ScopeAnnotation
  3929. instanceKlass com/google/gson/stream/JsonWriter
  3930. instanceKlass com/google/inject/internal/Annotations$AnnotationChecker
  3931. instanceKlass com/google/gson/stream/JsonReader
  3932. instanceKlass com/google/gson/ToNumberStrategy
  3933. instanceKlass com/google/inject/internal/Annotations$TestAnnotation
  3934. instanceKlass com/google/gson/Gson
  3935. instanceKlass sun/security/ssl/NamedGroup$SupportedGroups
  3936. instanceKlass sun/security/ssl/SSLConfiguration$CustomizedClientSignatureSchemes
  3937. instanceKlass javax/crypto/KeyGeneratorSpi
  3938. instanceKlass com/google/inject/internal/Annotations$AnnotationToStringConfig
  3939. instanceKlass com/google/common/base/Joiner$MapJoiner
  3940. instanceKlass javax/crypto/KeyGenerator
  3941. instanceKlass sun/security/ssl/SSLConfiguration
  3942. instanceKlass com/google/common/base/Joiner
  3943. instanceKlass sun/security/ssl/SSLCipher$SSLWriteCipher
  3944. instanceKlass sun/security/ssl/KeyUpdate$KeyUpdateProducer
  3945. instanceKlass sun/security/ssl/KeyUpdate$KeyUpdateConsumer
  3946. instanceKlass sun/security/ssl/KeyUpdate$KeyUpdateKickstartProducer
  3947. instanceKlass sun/security/ssl/KeyUpdate
  3948. instanceKlass com/google/inject/internal/Annotations
  3949. instanceKlass sun/security/ssl/CertificateStatus$CertificateStatusAbsence
  3950. instanceKlass sun/security/ssl/HandshakeAbsence
  3951. instanceKlass sun/security/ssl/CertificateStatus$CertificateStatusProducer
  3952. instanceKlass sun/security/ssl/CertificateStatus$CertificateStatusConsumer
  3953. instanceKlass sun/security/ssl/CertificateStatus
  3954. instanceKlass com/google/gson/internal/Excluder
  3955. instanceKlass org/eclipse/sisu/Parameters
  3956. instanceKlass sun/security/ssl/Finished$T13FinishedProducer
  3957. instanceKlass org/eclipse/sisu/wire/ParameterKeys
  3958. instanceKlass sun/security/ssl/Finished$T13FinishedConsumer
  3959. instanceKlass com/google/gson/FieldNamingStrategy
  3960. instanceKlass sun/security/ssl/Finished$T12FinishedProducer
  3961. instanceKlass com/google/gson/GsonBuilder
  3962. instanceKlass sun/security/ssl/Finished$T12FinishedConsumer
  3963. instanceKlass sun/security/ssl/Finished
  3964. instanceKlass sun/security/ssl/ClientKeyExchange$ClientKeyExchangeProducer
  3965. instanceKlass sun/security/ssl/ClientKeyExchange$ClientKeyExchangeConsumer
  3966. instanceKlass sun/security/ssl/ClientKeyExchange
  3967. instanceKlass com/google/inject/internal/util/StackTraceElements$InMemoryStackTraceElement
  3968. instanceKlass sun/security/ssl/CertificateVerify$T13CertificateVerifyProducer
  3969. instanceKlass sun/security/ssl/CertificateVerify$T13CertificateVerifyConsumer
  3970. instanceKlass sun/security/ssl/CertificateVerify$T12CertificateVerifyProducer
  3971. instanceKlass sun/security/ssl/CertificateVerify$T12CertificateVerifyConsumer
  3972. instanceKlass com/google/inject/internal/util/StackTraceElements
  3973. instanceKlass sun/security/ssl/CertificateVerify$T10CertificateVerifyProducer
  3974. instanceKlass org/eclipse/lsp4j/jsonrpc/messages/CancelParams
  3975. instanceKlass sun/security/ssl/CertificateVerify$T10CertificateVerifyConsumer
  3976. instanceKlass sun/security/ssl/CertificateVerify$S30CertificateVerifyProducer
  3977. instanceKlass sun/security/ssl/CertificateVerify$S30CertificateVerifyConsumer
  3978. instanceKlass sun/security/ssl/CertificateVerify
  3979. instanceKlass sun/security/ssl/ServerHelloDone$ServerHelloDoneProducer
  3980. instanceKlass org/eclipse/sisu/wire/TypeConverterCache
  3981. instanceKlass sun/security/ssl/ServerHelloDone$ServerHelloDoneConsumer
  3982. instanceKlass sun/security/ssl/ServerHelloDone
  3983. instanceKlass sun/security/ssl/CertificateRequest$T13CertificateRequestProducer
  3984. instanceKlass sun/security/ssl/CertificateRequest$T13CertificateRequestConsumer
  3985. instanceKlass org/eclipse/lsp4j/jsonrpc/json/MessageJsonHandler
  3986. instanceKlass sun/security/ssl/CertificateRequest$T12CertificateRequestProducer
  3987. instanceKlass sun/security/ssl/CertificateRequest$T12CertificateRequestConsumer
  3988. instanceKlass sun/security/ssl/CertificateRequest$T10CertificateRequestProducer
  3989. instanceKlass sun/security/ssl/CertificateRequest$T10CertificateRequestConsumer
  3990. instanceKlass sun/security/ssl/CertificateRequest
  3991. instanceKlass sun/security/ssl/ServerKeyExchange$ServerKeyExchangeProducer
  3992. instanceKlass sun/security/ssl/ServerKeyExchange$ServerKeyExchangeConsumer
  3993. instanceKlass sun/security/ssl/ServerKeyExchange
  3994. instanceKlass sun/security/ssl/CertificateMessage$T13CertificateProducer
  3995. instanceKlass org/eclipse/lsp4j/DidChangeNotebookDocumentParams
  3996. instanceKlass sun/security/ssl/CertificateMessage$T13CertificateConsumer
  3997. instanceKlass org/eclipse/lsp4j/DidCloseNotebookDocumentParams
  3998. instanceKlass sun/security/ssl/CertificateMessage$T12CertificateProducer
  3999. instanceKlass com/google/inject/internal/Scoping
  4000. instanceKlass org/eclipse/lsp4j/DidOpenNotebookDocumentParams
  4001. instanceKlass sun/security/ssl/CertificateMessage$T12CertificateConsumer
  4002. instanceKlass org/eclipse/lsp4j/DidSaveNotebookDocumentParams
  4003. instanceKlass com/google/inject/internal/InternalFactory
  4004. instanceKlass sun/security/ssl/CertificateMessage
  4005. instanceKlass sun/security/ssl/EncryptedExtensions$EncryptedExtensionsConsumer
  4006. instanceKlass sun/security/ssl/EncryptedExtensions$EncryptedExtensionsProducer
  4007. instanceKlass sun/security/ssl/EncryptedExtensions
  4008. instanceKlass sun/security/ssl/NewSessionTicket$T12NewSessionTicketProducer
  4009. instanceKlass sun/security/ssl/NewSessionTicket$T13NewSessionTicketProducer
  4010. instanceKlass sun/security/ssl/NewSessionTicket$T12NewSessionTicketConsumer
  4011. instanceKlass sun/security/ssl/NewSessionTicket$T13NewSessionTicketConsumer
  4012. instanceKlass sun/security/ssl/NewSessionTicket
  4013. instanceKlass com/google/inject/internal/InternalFlags$1
  4014. instanceKlass sun/security/ssl/HelloVerifyRequest$HelloVerifyRequestProducer
  4015. instanceKlass sun/security/ssl/HelloVerifyRequest$HelloVerifyRequestConsumer
  4016. instanceKlass sun/security/ssl/HelloVerifyRequest
  4017. instanceKlass sun/security/ssl/ServerHello$T13HelloRetryRequestConsumer
  4018. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/DocumentSymbolHandler
  4019. instanceKlass sun/security/ssl/ServerHello$T13ServerHelloConsumer
  4020. instanceKlass sun/security/ssl/ServerHello$T12ServerHelloConsumer
  4021. instanceKlass sun/security/ssl/ServerHello$T13HelloRetryRequestReproducer
  4022. instanceKlass sun/security/ssl/ServerHello$T13HelloRetryRequestProducer
  4023. instanceKlass sun/security/ssl/ServerHello$T13ServerHelloProducer
  4024. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/NavigateToTypeDefinitionHandler
  4025. instanceKlass sun/security/ssl/ServerHello$T12ServerHelloProducer
  4026. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/BuildWorkspaceHandler
  4027. instanceKlass com/google/inject/internal/InternalFlags
  4028. instanceKlass sun/security/ssl/ServerHello$ServerHelloConsumer
  4029. instanceKlass sun/security/ssl/ServerHello
  4030. instanceKlass com/google/inject/spi/ProviderKeyBinding
  4031. instanceKlass sun/security/ssl/ClientHello$D13ClientHelloConsumer
  4032. instanceKlass sun/security/ssl/ClientHello$D12ClientHelloConsumer
  4033. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/ReferencesHandler
  4034. instanceKlass sun/security/ssl/ClientHello$T13ClientHelloConsumer
  4035. instanceKlass com/google/inject/spi/ProviderInstanceBinding
  4036. instanceKlass sun/security/ssl/ClientHello$T12ClientHelloConsumer
  4037. instanceKlass sun/security/ssl/HandshakeConsumer
  4038. instanceKlass sun/security/ssl/ClientHello$ClientHelloProducer
  4039. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/SaveActionHandler
  4040. instanceKlass sun/security/ssl/ClientHello$ClientHelloConsumer
  4041. instanceKlass com/google/inject/internal/DelayedInitialize
  4042. instanceKlass sun/security/ssl/ClientHello$ClientHelloKickstartProducer
  4043. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/RenameHandler
  4044. instanceKlass com/google/inject/spi/ConstructorBinding
  4045. instanceKlass sun/security/ssl/ClientHello
  4046. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/PrepareRenameHandler
  4047. instanceKlass sun/security/ssl/HelloRequest$HelloRequestProducer
  4048. instanceKlass sun/security/ssl/HelloRequest$HelloRequestConsumer
  4049. instanceKlass sun/security/ssl/HelloRequest$HelloRequestKickstartProducer
  4050. instanceKlass sun/security/ssl/SSLProducer
  4051. instanceKlass com/google/inject/spi/InstanceBinding
  4052. instanceKlass sun/security/ssl/HelloRequest
  4053. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/CodeActionResolveHandler
  4054. instanceKlass com/google/inject/spi/HasDependencies
  4055. instanceKlass sun/security/ssl/HandshakeProducer
  4056. instanceKlass sun/security/ssl/SSLConsumer
  4057. instanceKlass com/google/inject/spi/LinkedKeyBinding
  4058. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/NavigateToDefinitionHandler
  4059. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/CodeLensHandler
  4060. instanceKlass com/google/inject/spi/UntargettedBinding
  4061. instanceKlass com/google/inject/internal/BindingImpl
  4062. instanceKlass sun/security/ssl/Authenticator$MacImpl
  4063. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/CodeActionHandler
  4064. instanceKlass sun/security/ssl/Authenticator$MAC
  4065. instanceKlass com/google/inject/Key$AnnotationStrategy
  4066. instanceKlass sun/security/ssl/Authenticator
  4067. instanceKlass sun/security/ssl/SSLCipher$SSLReadCipher
  4068. instanceKlass sun/security/ssl/InputRecord
  4069. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/SignatureHelpHandler
  4070. instanceKlass org/eclipse/sisu/wire/ElementAnalyzer$1
  4071. instanceKlass sun/security/ssl/SSLRecord
  4072. instanceKlass sun/security/ssl/Record
  4073. instanceKlass sun/security/ssl/TransportContext
  4074. instanceKlass sun/security/ssl/ConnectionContext
  4075. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/NavigateToDeclarationHandler
  4076. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/HoverHandler
  4077. instanceKlass sun/security/ssl/HandshakeHash$CacheOnlyHash
  4078. instanceKlass org/eclipse/jdt/ls/core/internal/codemanipulation/GenerateGetterSetterOperation$AccessorField
  4079. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/ExtractInterfaceHandler$CheckExtractInterfaceResponse
  4080. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/InferSelectionHandler$SelectionInfo
  4081. instanceKlass com/google/inject/util/Modules$EmptyModule
  4082. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/MoveHandler$MoveDestinationsResponse
  4083. instanceKlass org/eclipse/jdt/ls/core/internal/text/correction/ChangeSignatureInfo
  4084. instanceKlass sun/security/ssl/HandshakeHash$TranscriptHash
  4085. instanceKlass sun/security/ssl/HandshakeHash
  4086. instanceKlass com/google/inject/util/Modules$OverriddenModuleBuilder
  4087. instanceKlass com/google/inject/util/Modules
  4088. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/GenerateDelegateMethodsHandler$CheckDelegateMethodsResponse
  4089. instanceKlass java/net/SocksConsts
  4090. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/GenerateConstructorsHandler$CheckConstructorsResponse
  4091. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/GenerateToStringHandler$CheckToStringResponse
  4092. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/HashCodeEqualsHandler$CheckHashCodeEqualsResponse
  4093. instanceKlass @bci com/google/inject/internal/DeclaredMembers getDeclaredMethods (Ljava/lang/Class;)[Ljava/lang/reflect/Method; 62 <appendix> argL0 ; # com/google/inject/internal/DeclaredMembers$$Lambda+0x000002032b3b8ce8
  4094. instanceKlass sun/net/PlatformSocketImpl
  4095. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/OverrideMethodsHandler$OverridableMethodsResponse
  4096. instanceKlass java/net/SocketImpl
  4097. instanceKlass java/net/SocketOptions
  4098. instanceKlass java/net/Socket
  4099. instanceKlass sun/reflect/generics/tree/ArrayTypeSignature
  4100. instanceKlass sun/reflect/generics/tree/BooleanSignature
  4101. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/GetRefactorEditHandler$RefactorWorkspaceEdit
  4102. instanceKlass sun/security/ssl/SSLTransport
  4103. instanceKlass org/eclipse/lsp4j/extended/ProjectConfigurationsUpdateParam
  4104. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/InferSelectionHandler$InferSelectionParams
  4105. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/OverrideMethodsHandler$AddOverridableMethodParams
  4106. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/GenerateConstructorsHandler$GenerateConstructorsParams
  4107. instanceKlass sun/net/www/http/KeepAliveKey
  4108. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/HashCodeEqualsHandler$GenerateHashCodeEqualsParams
  4109. instanceKlass org/eclipse/lsp4j/extended/ProjectBuildParams
  4110. instanceKlass com/google/common/collect/Ordering
  4111. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/GenerateToStringHandler$GenerateToStringParams
  4112. instanceKlass sun/net/NetworkClient$1
  4113. instanceKlass org/eclipse/jdt/ls/core/internal/lsp/ValidateDocumentParams
  4114. instanceKlass sun/net/NetworkClient
  4115. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/GetRefactorEditHandler$GetRefactorEditParams
  4116. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/GenerateAccessorsHandler$GenerateAccessorsParams
  4117. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/FindLinksHandler$FindLinksParams
  4118. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/GenerateDelegateMethodsHandler$GenerateDelegateMethodsParams
  4119. instanceKlass javax/net/ssl/HandshakeCompletedListener
  4120. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/MoveHandler$MoveParams
  4121. instanceKlass @bci com/google/inject/internal/DeclaredMembers getDeclaredMethods (Ljava/lang/Class;)[Ljava/lang/reflect/Method; 38 <appendix> argL0 ; # com/google/inject/internal/DeclaredMembers$$Lambda+0x000002032b3b8ab8
  4122. instanceKlass @bci com/google/inject/internal/DeclaredMembers getDeclaredMethods (Ljava/lang/Class;)[Ljava/lang/reflect/Method; 33 <appendix> argL0 ; # com/google/inject/internal/DeclaredMembers$$Lambda+0x000002032b3b8888
  4123. instanceKlass org/eclipse/lsp4j/TextDocumentIdentifier
  4124. instanceKlass sun/net/spi/DefaultProxySelector$3
  4125. instanceKlass @bci com/google/inject/internal/DeclaredMembers getDeclaredMethods (Ljava/lang/Class;)[Ljava/lang/reflect/Method; 20 <appendix> argL0 ; # com/google/inject/internal/DeclaredMembers$$Lambda+0x000002032b3b8658
  4126. instanceKlass sun/net/spi/DefaultProxySelector$NonProxyInfo
  4127. instanceKlass @bci com/google/inject/internal/DeclaredMembers getDeclaredMethods (Ljava/lang/Class;)[Ljava/lang/reflect/Method; 15 <appendix> argL0 ; # com/google/inject/internal/DeclaredMembers$$Lambda+0x000002032b3b8428
  4128. instanceKlass org/eclipse/lsp4j/WorkspaceDiagnosticReport
  4129. instanceKlass sun/net/spi/DefaultProxySelector$1
  4130. instanceKlass @bci com/google/inject/internal/DeclaredMembers getDeclaredMethods (Ljava/lang/Class;)[Ljava/lang/reflect/Method; 7 <appendix> argL0 ; # com/google/inject/internal/DeclaredMembers$$Lambda+0x000002032b3b81f8
  4131. instanceKlass java/net/Proxy
  4132. instanceKlass com/google/inject/internal/DeclaredMembers
  4133. instanceKlass java/net/ProxySelector
  4134. instanceKlass sun/net/www/protocol/http/HttpURLConnection$7
  4135. instanceKlass java/net/ResponseCache
  4136. instanceKlass sun/net/www/protocol/http/HttpURLConnection$3
  4137. instanceKlass java/net/CookieHandler
  4138. instanceKlass com/google/common/base/ExtraObjectsMethodsForWeb
  4139. instanceKlass sun/net/www/protocol/http/HttpURLConnection$2
  4140. instanceKlass org/eclipse/lsp4j/adapters/WorkspaceSymbolResponseAdapter
  4141. instanceKlass @bci sun/net/www/protocol/http/AuthCacheImpl getAuthCacheFor (Ljava/net/Authenticator;)Lsun/net/www/protocol/http/AuthCacheImpl; 4 <appendix> argL0 ; # sun/net/www/protocol/http/AuthCacheImpl$$Lambda+0x000002032b3c23d8
  4142. instanceKlass org/eclipse/lsp4j/RenameFilesParams
  4143. instanceKlass sun/net/www/protocol/http/AuthCacheImpl
  4144. instanceKlass sun/net/www/protocol/http/AuthCache
  4145. instanceKlass org/eclipse/lsp4j/DeleteFilesParams
  4146. instanceKlass org/eclipse/lsp4j/CreateFilesParams
  4147. instanceKlass org/eclipse/lsp4j/DidChangeWorkspaceFoldersParams
  4148. instanceKlass org/eclipse/lsp4j/DidChangeWatchedFilesParams
  4149. instanceKlass org/eclipse/lsp4j/WorkspaceSymbol
  4150. instanceKlass org/eclipse/lsp4j/DidChangeConfigurationParams
  4151. instanceKlass org/eclipse/lsp4j/adapters/DocumentDiagnosticReportTypeAdapter
  4152. instanceKlass org/eclipse/lsp4j/Moniker
  4153. instanceKlass sun/net/NetProperties$1
  4154. instanceKlass sun/net/NetProperties
  4155. instanceKlass org/eclipse/lsp4j/Command
  4156. instanceKlass @bci sun/net/www/protocol/http/HttpURLConnection getNetProperty (Ljava/lang/String;)Ljava/lang/String; 1 <appendix> member <vmtarget> ; # sun/net/www/protocol/http/HttpURLConnection$$Lambda+0x000002032b3c1970
  4157. instanceKlass org/eclipse/lsp4j/adapters/CodeActionResponseAdapter
  4158. instanceKlass org/eclipse/lsp4j/ColorPresentation
  4159. instanceKlass com/google/common/collect/ImmutableMap$Builder
  4160. instanceKlass org/eclipse/lsp4j/ColorInformation
  4161. instanceKlass org/eclipse/lsp4j/TextEdit
  4162. instanceKlass com/google/inject/internal/MoreTypes
  4163. instanceKlass org/eclipse/lsp4j/LinkedEditingRanges
  4164. instanceKlass @bci sun/security/ssl/SSLContextImpl engineInit ([Ljavax/net/ssl/KeyManager;[Ljavax/net/ssl/TrustManager;Ljava/security/SecureRandom;)V 57 <appendix> argL0 ; # sun/security/ssl/SSLContextImpl$$Lambda+0x000002032b3c06e0
  4165. instanceKlass org/eclipse/lsp4j/SignatureHelp
  4166. instanceKlass javax/net/ssl/X509ExtendedKeyManager
  4167. instanceKlass javax/net/ssl/X509KeyManager
  4168. instanceKlass javax/net/ssl/KeyManager
  4169. instanceKlass org/eclipse/lsp4j/SelectionRange
  4170. instanceKlass com/google/inject/multibindings/ProvidesIntoOptional
  4171. instanceKlass com/google/inject/multibindings/ProvidesIntoMap
  4172. instanceKlass javax/net/ssl/KeyManagerFactorySpi
  4173. instanceKlass com/google/inject/multibindings/ProvidesIntoSet
  4174. instanceKlass @bci javax/net/ssl/KeyManagerFactory getDefaultAlgorithm ()Ljava/lang/String; 0 <appendix> argL0 ; # javax/net/ssl/KeyManagerFactory$$Lambda+0x000002032b37f210
  4175. instanceKlass com/google/inject/Provides
  4176. instanceKlass javax/net/ssl/KeyManagerFactory
  4177. instanceKlass org/eclipse/lsp4j/DocumentSymbol
  4178. instanceKlass sun/security/ssl/SSLContextImpl$DefaultManagersHolder$1
  4179. instanceKlass org/eclipse/lsp4j/SymbolInformation
  4180. instanceKlass javax/net/ssl/X509ExtendedTrustManager
  4181. instanceKlass javax/net/ssl/X509TrustManager
  4182. instanceKlass javax/net/ssl/TrustManager
  4183. instanceKlass org/eclipse/lsp4j/adapters/DocumentSymbolResponseAdapter
  4184. instanceKlass javax/inject/Singleton
  4185. instanceKlass org/eclipse/lsp4j/FoldingRange
  4186. instanceKlass org/eclipse/lsp4j/Hover
  4187. instanceKlass com/google/inject/spi/ElementSource
  4188. instanceKlass sun/security/validator/TrustStoreUtil
  4189. instanceKlass com/google/inject/spi/ScopeBinding
  4190. instanceKlass org/eclipse/lsp4j/PrepareRenameDefaultBehavior
  4191. instanceKlass org/eclipse/lsp4j/PrepareRenameResult
  4192. instanceKlass org/eclipse/lsp4j/Range
  4193. instanceKlass com/google/inject/Scopes$2
  4194. instanceKlass org/eclipse/lsp4j/adapters/PrepareRenameResponseAdapter
  4195. instanceKlass org/eclipse/lsp4j/InlineValueEvaluatableExpression
  4196. instanceKlass com/google/inject/Scopes$1
  4197. instanceKlass org/eclipse/lsp4j/InlineValueVariableLookup
  4198. instanceKlass com/google/inject/internal/SingletonScope
  4199. instanceKlass com/google/inject/Scopes
  4200. instanceKlass com/google/inject/Singleton
  4201. instanceKlass com/google/inject/spi/Elements$ModuleInfo
  4202. instanceKlass org/eclipse/lsp4j/adapters/InlineValueResponseAdapter
  4203. instanceKlass org/eclipse/lsp4j/CallHierarchyItem
  4204. instanceKlass org/eclipse/lsp4j/SemanticTokensDelta
  4205. instanceKlass com/google/inject/PrivateModule
  4206. instanceKlass org/eclipse/lsp4j/adapters/SemanticTokensFullDeltaResponseAdapter
  4207. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b3a9c00
  4208. instanceKlass org/eclipse/lsp4j/CallHierarchyOutgoingCall
  4209. instanceKlass org/eclipse/lsp4j/CallHierarchyIncomingCall
  4210. instanceKlass @bci com/google/inject/spi/BindingSourceRestriction$PermitMapConstruction pushModule (Ljava/lang/Class;Lcom/google/inject/spi/ModuleSource;)V 5 <appendix> member <vmtarget> ; # com/google/inject/spi/BindingSourceRestriction$PermitMapConstruction$$Lambda+0x000002032b39dd68
  4211. instanceKlass org/eclipse/lsp4j/SemanticTokens
  4212. instanceKlass org/eclipse/lsp4j/TypeHierarchyItem
  4213. instanceKlass @bci com/google/inject/spi/BindingSourceRestriction getPermits (Ljava/lang/Class;)Ljava/util/stream/Stream; 43 <appendix> argL0 ; # com/google/inject/spi/BindingSourceRestriction$$Lambda+0x000002032b39db28
  4214. instanceKlass @bci com/google/inject/spi/BindingSourceRestriction getPermits (Ljava/lang/Class;)Ljava/util/stream/Stream; 33 <appendix> argL0 ; # com/google/inject/spi/BindingSourceRestriction$$Lambda+0x000002032b39d8f8
  4215. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b3a9800
  4216. instanceKlass org/eclipse/lsp4j/CompletionList
  4217. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b3a9400
  4218. instanceKlass sun/reflect/annotation/AnnotatedTypeFactory$AnnotatedTypeBaseImpl
  4219. instanceKlass org/eclipse/lsp4j/LocationLink
  4220. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b3a9000
  4221. instanceKlass sun/reflect/annotation/AnnotatedTypeFactory
  4222. instanceKlass org/eclipse/lsp4j/Location
  4223. instanceKlass com/google/gson/internal/GsonTypes$WildcardTypeImpl
  4224. instanceKlass sun/reflect/annotation/TypeAnnotation$LocationInfo$Location
  4225. instanceKlass sun/reflect/annotation/TypeAnnotation$LocationInfo
  4226. instanceKlass com/google/gson/internal/GsonPreconditions
  4227. instanceKlass sun/reflect/annotation/TypeAnnotation
  4228. instanceKlass sun/reflect/annotation/TypeAnnotationParser
  4229. instanceKlass com/google/gson/internal/GsonTypes$ParameterizedTypeImpl
  4230. instanceKlass com/google/gson/internal/GsonTypes
  4231. instanceKlass com/google/inject/RestrictedBindingSource
  4232. instanceKlass com/google/inject/spi/BindingSourceRestriction
  4233. instanceKlass com/google/gson/TypeAdapter
  4234. instanceKlass com/google/inject/spi/ModuleSource
  4235. instanceKlass java/lang/reflect/WildcardType
  4236. instanceKlass com/google/inject/internal/ProviderMethodsModule
  4237. instanceKlass sun/reflect/generics/tree/Wildcard
  4238. instanceKlass sun/reflect/generics/tree/BottomSignature
  4239. instanceKlass com/google/inject/spi/BindingSourceRestriction$PermitMapConstruction$PermitMapImpl
  4240. instanceKlass com/google/inject/spi/BindingSourceRestriction$PermitMap
  4241. instanceKlass com/google/inject/spi/BindingSourceRestriction$PermitMapConstruction
  4242. instanceKlass org/eclipse/lsp4j/adapters/LocationLinkListAdapter
  4243. instanceKlass com/google/gson/TypeAdapterFactory
  4244. instanceKlass org/eclipse/lsp4j/WorkspaceEdit
  4245. instanceKlass org/eclipse/lsp4j/InlayHintParams
  4246. instanceKlass org/eclipse/lsp4j/DocumentRangeFormattingParams
  4247. instanceKlass org/eclipse/lsp4j/WillSaveTextDocumentParams
  4248. instanceKlass org/eclipse/lsp4j/CodeLens
  4249. instanceKlass org/eclipse/lsp4j/CodeAction
  4250. instanceKlass org/eclipse/lsp4j/DidChangeTextDocumentParams
  4251. instanceKlass org/eclipse/lsp4j/DocumentFormattingParams
  4252. instanceKlass org/eclipse/lsp4j/DidCloseTextDocumentParams
  4253. instanceKlass org/eclipse/lsp4j/DidOpenTextDocumentParams
  4254. instanceKlass org/eclipse/lsp4j/DidSaveTextDocumentParams
  4255. instanceKlass org/eclipse/lsp4j/InlayHint
  4256. instanceKlass org/eclipse/lsp4j/InlineValueParams
  4257. instanceKlass com/google/common/collect/Hashing
  4258. instanceKlass org/eclipse/lsp4j/DocumentLink
  4259. instanceKlass com/google/common/math/IntMath$1
  4260. instanceKlass com/google/common/math/MathPreconditions
  4261. instanceKlass org/eclipse/lsp4j/CompletionItem
  4262. instanceKlass com/google/common/math/IntMath
  4263. instanceKlass org/eclipse/lsp4j/WorkDoneProgressAndPartialResultParams
  4264. instanceKlass com/google/inject/internal/AbstractBindingBuilder
  4265. instanceKlass com/google/inject/binder/ConstantBindingBuilder
  4266. instanceKlass com/google/inject/binder/AnnotatedElementBuilder
  4267. instanceKlass com/google/inject/spi/Elements$RecordingBinder
  4268. instanceKlass com/google/inject/Binding
  4269. instanceKlass com/google/inject/spi/DefaultBindingTargetVisitor
  4270. instanceKlass org/eclipse/lsp4j/InitializeResult
  4271. instanceKlass com/google/inject/spi/BindingTargetVisitor
  4272. instanceKlass com/google/inject/spi/Elements
  4273. instanceKlass com/google/inject/internal/InjectorShell$RootModule
  4274. instanceKlass org/eclipse/lsp4j/WorkDoneProgressCancelParams
  4275. instanceKlass org/eclipse/lsp4j/SetTraceParams
  4276. instanceKlass org/eclipse/lsp4j/services/NotebookDocumentService
  4277. instanceKlass org/eclipse/lsp4j/InitializedParams
  4278. instanceKlass org/eclipse/lsp4j/InitializeParams
  4279. instanceKlass org/eclipse/jdt/ls/core/internal/JavaClientConnection
  4280. instanceKlass com/google/common/collect/ListMultimap
  4281. instanceKlass com/google/inject/internal/InjectorBindingData
  4282. instanceKlass org/eclipse/lsp4j/jsonrpc/CancelChecker
  4283. instanceKlass @bci com/google/inject/internal/WeakKeySet <init> (Ljava/lang/Object;)V 12 <appendix> member <vmtarget> ; # com/google/inject/internal/WeakKeySet$$Lambda+0x000002032b38e518
  4284. instanceKlass com/google/inject/internal/WeakKeySet
  4285. instanceKlass jdk/internal/vm/annotation/IntrinsicCandidate
  4286. instanceKlass com/google/common/collect/Sets
  4287. instanceKlass java/lang/Deprecated
  4288. instanceKlass org/eclipse/lsp4j/jsonrpc/json/JsonRpcMethodProvider
  4289. instanceKlass org/eclipse/lsp4j/jsonrpc/services/JsonDelegate
  4290. instanceKlass com/google/inject/internal/InjectorJitBindingData
  4291. instanceKlass com/google/inject/internal/ProcessedBindingData
  4292. instanceKlass com/google/inject/spi/DefaultElementVisitor
  4293. instanceKlass @bci org/eclipse/lsp4j/jsonrpc/services/ServiceEndpoints getSupportedMethods (Ljava/lang/Class;Ljava/util/Set;)Ljava/util/Map; 29 <appendix> member <vmtarget> ; # org/eclipse/lsp4j/jsonrpc/services/ServiceEndpoints$$Lambda+0x000002032b3812c8
  4294. instanceKlass org/eclipse/jdt/ls/core/internal/EventNotification
  4295. instanceKlass com/google/inject/internal/InjectorShell$Builder
  4296. instanceKlass org/eclipse/jdt/ls/core/internal/StatusReport
  4297. instanceKlass org/eclipse/jdt/ls/core/internal/ProgressReport
  4298. instanceKlass org/eclipse/jdt/ls/core/internal/ActionableNotification
  4299. instanceKlass com/google/common/collect/Lists
  4300. instanceKlass com/google/common/collect/AbstractMapEntry
  4301. instanceKlass com/google/common/collect/LinkedHashMultimap$ValueSetLink
  4302. instanceKlass org/eclipse/lsp4j/ExecuteCommandParams
  4303. instanceKlass sun/security/x509/NetscapeCertTypeExtension$MapEntry
  4304. instanceKlass com/google/common/collect/CollectPreconditions
  4305. instanceKlass com/google/common/collect/Platform
  4306. instanceKlass org/eclipse/lsp4j/ShowDocumentResult
  4307. instanceKlass com/google/common/collect/Multiset
  4308. instanceKlass org/eclipse/lsp4j/WorkspaceFolder
  4309. instanceKlass org/eclipse/lsp4j/MessageActionItem
  4310. instanceKlass org/eclipse/lsp4j/ApplyWorkspaceEditResponse
  4311. instanceKlass com/google/common/collect/AbstractMultimap
  4312. instanceKlass com/google/common/collect/SetMultimap
  4313. instanceKlass org/eclipse/lsp4j/jsonrpc/services/JsonNotification
  4314. instanceKlass org/eclipse/lsp4j/jsonrpc/json/JsonRpcMethod
  4315. instanceKlass com/google/inject/internal/CycleDetectingLock
  4316. instanceKlass com/google/common/collect/Multimap
  4317. instanceKlass com/google/inject/internal/CycleDetectingLock$CycleDetectingLockFactory
  4318. instanceKlass com/google/inject/internal/Initializable
  4319. instanceKlass com/google/inject/internal/Initializer
  4320. instanceKlass org/eclipse/lsp4j/jsonrpc/json/ResponseJsonAdapter
  4321. instanceKlass sun/security/x509/RFC822Name
  4322. instanceKlass sun/reflect/generics/reflectiveObjects/LazyReflectiveObjectGenerator
  4323. instanceKlass sun/reflect/generics/tree/TypeVariableSignature
  4324. instanceKlass sun/reflect/generics/tree/ClassSignature
  4325. instanceKlass sun/reflect/generics/reflectiveObjects/ParameterizedTypeImpl
  4326. instanceKlass java/lang/reflect/ParameterizedType
  4327. instanceKlass com/google/common/collect/ImmutableCollection$Builder
  4328. instanceKlass com/google/common/collect/ImmutableSet$SetBuilderImpl
  4329. instanceKlass java/security/interfaces/ECPublicKey
  4330. instanceKlass sun/security/pkcs12/PKCS12KeyStore$Entry
  4331. instanceKlass sun/security/util/IOUtils
  4332. instanceKlass sun/security/action/OpenFileInputStreamAction
  4333. instanceKlass @bci sun/security/util/KeyStoreDelegator <init> (Ljava/lang/String;Ljava/lang/Class;Ljava/lang/String;Ljava/lang/Class;)V 4 <appendix> argL0 ; # sun/security/util/KeyStoreDelegator$$Lambda+0x000002032b377eb8
  4334. instanceKlass sun/reflect/generics/tree/MethodTypeSignature
  4335. instanceKlass sun/reflect/generics/tree/Signature
  4336. instanceKlass sun/reflect/generics/tree/FormalTypeParameter
  4337. instanceKlass com/google/inject/internal/util/SourceProvider
  4338. instanceKlass sun/reflect/generics/repository/AbstractRepository
  4339. instanceKlass @bci org/eclipse/lsp4j/jsonrpc/services/AnnotationUtil getParameterTypes (Ljava/lang/reflect/Method;)[Ljava/lang/reflect/Type; 17 <appendix> argL0 ; # org/eclipse/lsp4j/jsonrpc/services/AnnotationUtil$$Lambda+0x000002032b380860
  4340. instanceKlass @bci org/eclipse/lsp4j/jsonrpc/services/AnnotationUtil getParameterTypes (Ljava/lang/reflect/Method;)[Ljava/lang/reflect/Type; 7 <appendix> argL0 ; # org/eclipse/lsp4j/jsonrpc/services/AnnotationUtil$$Lambda+0x000002032b380630
  4341. instanceKlass java/security/KeyStoreSpi
  4342. instanceKlass com/google/inject/spi/ErrorDetail
  4343. instanceKlass com/google/inject/internal/Errors
  4344. instanceKlass com/google/common/base/Stopwatch
  4345. instanceKlass com/google/inject/internal/util/ContinuousStopwatch
  4346. instanceKlass @bci java/security/KeyStore getDefaultType ()Ljava/lang/String; 0 <appendix> argL0 ; # java/security/KeyStore$$Lambda+0x000002032b374d68
  4347. instanceKlass org/eclipse/lsp4j/jsonrpc/services/JsonRequest
  4348. instanceKlass java/security/KeyStore
  4349. instanceKlass org/eclipse/lsp4j/ShowDocumentParams
  4350. instanceKlass org/eclipse/lsp4j/ProgressParams
  4351. instanceKlass sun/security/ssl/TrustStoreManager$TrustStoreDescriptor$1
  4352. instanceKlass sun/security/util/FilePaths
  4353. instanceKlass org/eclipse/lsp4j/WorkDoneProgressCreateParams
  4354. instanceKlass com/google/inject/Injector
  4355. instanceKlass sun/security/ssl/TrustStoreManager$TrustStoreDescriptor
  4356. instanceKlass sun/security/ssl/TrustStoreManager$TrustAnchorManager
  4357. instanceKlass com/google/inject/internal/InternalInjectorCreator
  4358. instanceKlass sun/security/ssl/TrustStoreManager
  4359. instanceKlass org/eclipse/lsp4j/MessageParams
  4360. instanceKlass org/eclipse/lsp4j/PublishDiagnosticsParams
  4361. instanceKlass javax/net/ssl/TrustManagerFactorySpi
  4362. instanceKlass com/google/inject/Guice
  4363. instanceKlass org/eclipse/lsp4j/ApplyWorkspaceEditParams
  4364. instanceKlass org/eclipse/sisu/wire/Wiring
  4365. instanceKlass @bci javax/net/ssl/TrustManagerFactory getDefaultAlgorithm ()Ljava/lang/String; 0 <appendix> argL0 ; # javax/net/ssl/TrustManagerFactory$$Lambda+0x000002032b3738e0
  4366. instanceKlass org/eclipse/sisu/wire/WireModule$Strategy$1
  4367. instanceKlass org/eclipse/lsp4j/LogTraceParams
  4368. instanceKlass org/eclipse/sisu/wire/WireModule$Strategy
  4369. instanceKlass javax/net/ssl/TrustManagerFactory
  4370. instanceKlass sun/security/ssl/SSLContextImpl$DefaultManagersHolder
  4371. instanceKlass sun/security/ssl/SSLSessionContextImpl
  4372. instanceKlass javax/net/ssl/SSLSessionContext
  4373. instanceKlass sun/security/ssl/EphemeralKeyManager$EphemeralKeyPair
  4374. instanceKlass sun/security/ssl/EphemeralKeyManager
  4375. instanceKlass org/eclipse/sisu/wire/AbstractTypeConverter
  4376. instanceKlass sun/security/ssl/SSLContextImpl$CustomizedSSLProtocols
  4377. instanceKlass com/google/inject/spi/ElementVisitor
  4378. instanceKlass org/eclipse/sisu/wire/WireModule
  4379. instanceKlass org/eclipse/sisu/bean/BeanBinder
  4380. instanceKlass org/eclipse/sisu/plexus/PlexusBindingModule
  4381. instanceKlass org/codehaus/plexus/DefaultPlexusContainer$BootModule
  4382. instanceKlass org/codehaus/plexus/component/annotations/Configuration
  4383. instanceKlass org/eclipse/sisu/plexus/PlexusAnnotatedMetadata
  4384. instanceKlass java/security/spec/NamedParameterSpec
  4385. instanceKlass sun/security/util/ECKeySizeParameterSpec
  4386. instanceKlass org/eclipse/sisu/plexus/PlexusBeanMetadata
  4387. instanceKlass org/eclipse/sisu/plexus/PlexusAnnotatedBeanModule$PlexusAnnotatedBeanSource
  4388. instanceKlass org/eclipse/sisu/space/SpaceModule$2
  4389. instanceKlass org/eclipse/sisu/space/SpaceModule$Strategy$2
  4390. instanceKlass org/eclipse/sisu/space/SpaceModule$Strategy$1
  4391. instanceKlass java/security/AlgorithmParametersSpi
  4392. instanceKlass java/security/AlgorithmParameters
  4393. instanceKlass sun/security/util/ECUtil
  4394. instanceKlass org/eclipse/sisu/space/DefaultClassFinder
  4395. instanceKlass org/eclipse/sisu/space/asm/ClassVisitor
  4396. instanceKlass org/eclipse/sisu/space/SpaceScanner
  4397. instanceKlass org/eclipse/lsp4j/RegistrationParams
  4398. instanceKlass org/eclipse/lsp4j/UnregistrationParams
  4399. instanceKlass org/eclipse/sisu/space/IndexedClassFinder
  4400. instanceKlass org/eclipse/sisu/space/ClassFinder
  4401. instanceKlass java/util/concurrent/CompletableFuture
  4402. instanceKlass org/eclipse/sisu/space/SpaceModule
  4403. instanceKlass org/eclipse/sisu/space/SpaceVisitor
  4404. instanceKlass org/eclipse/sisu/plexus/PlexusTypeListener
  4405. instanceKlass org/eclipse/sisu/space/QualifiedTypeListener
  4406. instanceKlass org/eclipse/lsp4j/ConfigurationParams
  4407. instanceKlass org/eclipse/sisu/plexus/PlexusAnnotatedBeanModule$1
  4408. instanceKlass org/eclipse/sisu/space/SpaceModule$Strategy
  4409. instanceKlass org/eclipse/lsp4j/jsonrpc/services/JsonSegment
  4410. instanceKlass org/eclipse/lsp4j/jsonrpc/services/AnnotationUtil
  4411. instanceKlass org/eclipse/sisu/plexus/PlexusAnnotatedBeanModule
  4412. instanceKlass @bci org/eclipse/lsp4j/jsonrpc/services/ServiceEndpoints getSupportedMethods (Ljava/lang/Class;Ljava/util/Set;)Ljava/util/Map; 11 <appendix> member <vmtarget> ; # org/eclipse/lsp4j/jsonrpc/services/ServiceEndpoints$$Lambda+0x000002032b35dbb8
  4413. instanceKlass org/eclipse/sisu/plexus/PlexusBeanSource
  4414. instanceKlass org/eclipse/lsp4j/jsonrpc/services/AnnotationUtil$MethodInfo
  4415. instanceKlass org/eclipse/lsp4j/jsonrpc/services/ServiceEndpoints
  4416. instanceKlass org/eclipse/sisu/plexus/PlexusXmlBeanModule
  4417. instanceKlass org/eclipse/sisu/plexus/PlexusBeanModule
  4418. instanceKlass java/security/KeyPairGeneratorSpi
  4419. instanceKlass org/eclipse/lsp4j/jsonrpc/json/MethodProvider
  4420. instanceKlass org/eclipse/lsp4j/jsonrpc/Endpoint
  4421. instanceKlass org/eclipse/lsp4j/jsonrpc/MessageProducer
  4422. instanceKlass org/eclipse/lsp4j/jsonrpc/MessageConsumer
  4423. instanceKlass org/eclipse/lsp4j/jsonrpc/MessageIssueHandler
  4424. instanceKlass org/eclipse/lsp4j/jsonrpc/Launcher$Builder
  4425. instanceKlass org/eclipse/sisu/space/URLClassSpace
  4426. instanceKlass org/eclipse/lsp4j/jsonrpc/Launcher
  4427. instanceKlass org/eclipse/jdt/ls/core/internal/JavaClientConnection$JavaLanguageClient
  4428. instanceKlass org/eclipse/jdt/ls/core/internal/lsp/ExecuteCommandProposedClient
  4429. instanceKlass javax/crypto/KeyAgreement
  4430. instanceKlass org/eclipse/lsp4j/services/LanguageClient
  4431. instanceKlass sun/security/ssl/JsseJce$EcAvailability
  4432. instanceKlass sun/security/ssl/SSLAlgorithmDecomposer$1
  4433. instanceKlass org/codehaus/plexus/DefaultPlexusContainer$SLF4JLoggerFactoryProvider
  4434. instanceKlass sun/security/ssl/Utilities
  4435. instanceKlass sun/security/ssl/JsseJce
  4436. instanceKlass sun/security/ssl/NamedGroup$XDHScheme
  4437. instanceKlass sun/security/ssl/NamedGroup$FFDHEScheme
  4438. instanceKlass com/google/inject/util/Providers$ConstantProvider
  4439. instanceKlass com/google/inject/util/Providers
  4440. instanceKlass sun/security/ssl/NamedGroup$ECDHEScheme
  4441. instanceKlass sun/security/ssl/NamedGroup$NamedGroupScheme
  4442. instanceKlass org/codehaus/plexus/personality/plexus/lifecycle/phase/Disposable
  4443. instanceKlass org/codehaus/plexus/personality/plexus/lifecycle/phase/Startable
  4444. instanceKlass org/codehaus/plexus/personality/plexus/lifecycle/phase/Initializable
  4445. instanceKlass org/codehaus/plexus/personality/plexus/lifecycle/phase/Contextualizable
  4446. instanceKlass org/codehaus/plexus/logging/LogEnabled
  4447. instanceKlass org/eclipse/sisu/bean/PropertyBinding
  4448. instanceKlass sun/security/ssl/SSLCipher$1
  4449. instanceKlass javax/annotation/PreDestroy
  4450. instanceKlass javax/annotation/PostConstruct
  4451. instanceKlass sun/security/ssl/SSLCipher$T13CC20P1305WriteCipherGenerator
  4452. instanceKlass sun/security/ssl/SSLCipher$T12CC20P1305WriteCipherGenerator
  4453. instanceKlass sun/security/ssl/SSLCipher$T13CC20P1305ReadCipherGenerator
  4454. instanceKlass sun/security/ssl/SSLCipher$T12CC20P1305ReadCipherGenerator
  4455. instanceKlass sun/security/ssl/SSLCipher$T13GcmWriteCipherGenerator
  4456. instanceKlass org/eclipse/sisu/bean/LifecycleBuilder
  4457. instanceKlass sun/security/ssl/SSLCipher$T13GcmReadCipherGenerator
  4458. instanceKlass org/eclipse/sisu/bean/BeanScheduler$1
  4459. instanceKlass sun/security/ssl/SSLCipher$T12GcmWriteCipherGenerator
  4460. instanceKlass sun/security/ssl/SSLCipher$T12GcmReadCipherGenerator
  4461. instanceKlass com/google/inject/spi/DefaultBindingScopingVisitor
  4462. instanceKlass com/google/inject/spi/BindingScopingVisitor
  4463. instanceKlass com/sun/crypto/provider/AESConstants
  4464. instanceKlass org/eclipse/sisu/bean/BeanScheduler$CycleActivator
  4465. instanceKlass com/google/inject/PrivateBinder
  4466. instanceKlass com/google/inject/MembersInjector
  4467. instanceKlass java/util/Vector$1
  4468. instanceKlass com/google/inject/spi/TypeListener
  4469. instanceKlass @bci javax/crypto/JceSecurityManager <clinit> ()V 67 <appendix> argL0 ; # javax/crypto/JceSecurityManager$$Lambda+0x000002032b36aec8
  4470. instanceKlass org/aopalliance/intercept/MethodInterceptor
  4471. instanceKlass @bci javax/crypto/JceSecurityManager <clinit> ()V 49 <appendix> argL0 ; # javax/crypto/JceSecurityManager$$Lambda+0x000002032b36acb8
  4472. instanceKlass org/aopalliance/intercept/Interceptor
  4473. instanceKlass org/aopalliance/aop/Advice
  4474. instanceKlass javax/crypto/JceSecurityManager
  4475. instanceKlass com/google/inject/binder/AnnotatedConstantBindingBuilder
  4476. instanceKlass com/google/inject/Scope
  4477. instanceKlass sun/security/ssl/SSLCipher$T11BlockWriteCipherGenerator
  4478. instanceKlass sun/security/ssl/SSLCipher$T11BlockReadCipherGenerator
  4479. instanceKlass com/google/inject/spi/ModuleAnnotatedMethodScanner
  4480. instanceKlass com/sun/crypto/provider/PKCS5Padding
  4481. instanceKlass com/sun/crypto/provider/Padding
  4482. instanceKlass com/google/inject/spi/Message
  4483. instanceKlass com/google/inject/spi/Element
  4484. instanceKlass com/google/inject/spi/Dependency
  4485. instanceKlass com/google/inject/Key
  4486. instanceKlass com/google/inject/binder/AnnotatedBindingBuilder
  4487. instanceKlass com/google/inject/binder/LinkedBindingBuilder
  4488. instanceKlass com/google/inject/binder/ScopedBindingBuilder
  4489. instanceKlass com/sun/crypto/provider/FeedbackCipher
  4490. instanceKlass com/google/inject/TypeLiteral
  4491. instanceKlass com/sun/crypto/provider/SymmetricCipher
  4492. instanceKlass com/sun/crypto/provider/DESConstants
  4493. instanceKlass com/google/inject/spi/ProvisionListener
  4494. instanceKlass com/google/inject/Binder
  4495. instanceKlass org/eclipse/sisu/bean/BeanScheduler
  4496. instanceKlass org/eclipse/sisu/plexus/DefaultPlexusBeanLocator
  4497. instanceKlass com/sun/crypto/provider/CipherCore
  4498. instanceKlass org/eclipse/sisu/plexus/RealmManager
  4499. instanceKlass org/codehaus/plexus/context/ContextMapAdapter
  4500. instanceKlass sun/security/ssl/SSLCipher$T10BlockWriteCipherGenerator
  4501. instanceKlass org/codehaus/plexus/context/DefaultContext
  4502. instanceKlass sun/security/ssl/SSLCipher$T10BlockReadCipherGenerator
  4503. instanceKlass org/codehaus/plexus/logging/AbstractLogger
  4504. instanceKlass javax/crypto/CipherSpi
  4505. instanceKlass org/codehaus/plexus/DefaultPlexusContainer$LoggerProvider
  4506. instanceKlass org/codehaus/plexus/DefaultPlexusContainer$DefaultsModule
  4507. instanceKlass javax/crypto/ProviderVerifier
  4508. instanceKlass org/codehaus/plexus/DefaultPlexusContainer$ContainerModule
  4509. instanceKlass javax/crypto/JceSecurity$3
  4510. instanceKlass javax/crypto/JceSecurity$2
  4511. instanceKlass org/eclipse/sisu/inject/ImplicitBindings
  4512. instanceKlass org/eclipse/sisu/inject/MildValues$InverseMapping
  4513. instanceKlass org/eclipse/sisu/inject/MildValues
  4514. instanceKlass java/util/Vector$Itr
  4515. instanceKlass sun/reflect/misc/ReflectUtil
  4516. instanceKlass java/util/concurrent/atomic/AtomicReferenceFieldUpdater$AtomicReferenceFieldUpdaterImpl$1
  4517. instanceKlass java/util/concurrent/atomic/AtomicReferenceFieldUpdater
  4518. instanceKlass org/eclipse/sisu/inject/RankedSequence$Content
  4519. instanceKlass org/eclipse/sisu/inject/RankedSequence
  4520. instanceKlass org/eclipse/sisu/inject/BindingSubscriber
  4521. instanceKlass org/eclipse/sisu/inject/DefaultBeanLocator
  4522. instanceKlass org/eclipse/sisu/inject/DeferredClass
  4523. instanceKlass org/codehaus/plexus/DefaultPlexusContainer$LoggerManagerProvider
  4524. instanceKlass org/eclipse/sisu/inject/DeferredProvider
  4525. instanceKlass com/google/inject/Provider
  4526. instanceKlass javax/crypto/CryptoPolicyParser$CryptoPermissionEntry
  4527. instanceKlass org/eclipse/m2e/core/internal/embedder/IMavenComponentContributor$IMavenComponentBinder
  4528. instanceKlass javax/crypto/CryptoPolicyParser$GrantEntry
  4529. instanceKlass com/google/inject/AbstractModule
  4530. instanceKlass java/io/StreamTokenizer
  4531. instanceKlass javax/crypto/CryptoPolicyParser
  4532. instanceKlass org/codehaus/plexus/context/Context
  4533. instanceKlass org/eclipse/sisu/inject/BindingPublisher
  4534. instanceKlass org/eclipse/sisu/inject/RankingFunction
  4535. instanceKlass org/eclipse/sisu/space/ClassSpace
  4536. instanceKlass javax/inject/Provider
  4537. instanceKlass org/eclipse/sisu/bean/BeanManager
  4538. instanceKlass org/eclipse/sisu/plexus/PlexusBeanLocator
  4539. instanceKlass org/eclipse/jdt/ls/core/internal/ParentProcessWatcher
  4540. instanceKlass org/eclipse/sisu/inject/MutableBeanLocator
  4541. instanceKlass org/eclipse/sisu/inject/BeanLocator
  4542. instanceKlass org/codehaus/plexus/DefaultPlexusContainer
  4543. instanceKlass org/codehaus/plexus/MutablePlexusContainer
  4544. instanceKlass sun/nio/ch/PendingIoCache
  4545. instanceKlass sun/nio/ch/Invoker$GroupAndInvokeCount
  4546. instanceKlass sun/nio/ch/Invoker
  4547. instanceKlass sun/nio/ch/AsynchronousChannelGroupImpl$1
  4548. instanceKlass java/nio/file/Files$1
  4549. instanceKlass sun/nio/fs/WindowsFileSystem$2
  4550. instanceKlass java/nio/file/PathMatcher
  4551. instanceKlass sun/nio/ch/AsynchronousChannelGroupImpl$2
  4552. instanceKlass @bci java/util/function/Function andThen (Ljava/util/function/Function;)Ljava/util/function/Function; 7 <appendix> member <vmtarget> ; # java/util/function/Function$$Lambda+0x000002032b364678
  4553. instanceKlass sun/nio/fs/Globs
  4554. instanceKlass sun/nio/ch/Iocp$EventHandlerTask
  4555. instanceKlass @bci sun/nio/ch/ThreadPool defaultThreadFactory ()Ljava/util/concurrent/ThreadFactory; 6 <appendix> argL0 ; # sun/nio/ch/ThreadPool$$Lambda+0x000002032b364050
  4556. instanceKlass sun/nio/ch/ThreadPool
  4557. instanceKlass @cpi java/util/function/Function 58 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b350c00
  4558. instanceKlass sun/nio/ch/Iocp$CompletionStatus
  4559. instanceKlass java/nio/channels/AsynchronousChannelGroup
  4560. instanceKlass sun/nio/ch/WindowsAsynchronousFileChannelImpl$DefaultIocpHolder
  4561. instanceKlass org/eclipse/jdt/ls/core/internal/JobHelpers$ProjectRegistryRefreshJobMatcher
  4562. instanceKlass org/eclipse/jdt/ls/core/internal/JobHelpers$IJobMatcher
  4563. instanceKlass @bci org/apache/maven/extension/internal/CoreExports <init> (Lorg/codehaus/plexus/classworlds/realm/ClassRealm;Ljava/util/Set;Ljava/util/Set;)V 38 <appendix> argL0 ; # org/apache/maven/extension/internal/CoreExports$$Lambda+0x000002032b3462d0
  4564. instanceKlass javax/crypto/JceSecurity$1
  4565. instanceKlass sun/nio/ch/Groupable
  4566. instanceKlass sun/nio/ch/Iocp$OverlappedChannel
  4567. instanceKlass javax/crypto/JceSecurity
  4568. instanceKlass java/nio/channels/AsynchronousFileChannel
  4569. instanceKlass org/eclipse/jdt/ls/core/internal/JobHelpers
  4570. instanceKlass @bci java/util/stream/Collectors uniqKeysMapMerger ()Ljava/util/function/BinaryOperator; 0 <appendix> argL0 ; # java/util/stream/Collectors$$Lambda+0x000002032b361b50
  4571. instanceKlass @bci java/util/stream/Collectors uniqKeysMapAccumulator (Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/util/function/BiConsumer; 2 <appendix> member <vmtarget> ; # java/util/stream/Collectors$$Lambda+0x000002032b361928
  4572. instanceKlass @bci java/util/stream/Collectors toMap (Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/util/stream/Collector; 4 <appendix> argL0 ; # java/util/stream/Collectors$$Lambda+0x000002032b361718
  4573. instanceKlass @bci org/apache/maven/extension/internal/CoreExports <init> (Lorg/codehaus/plexus/classworlds/realm/ClassRealm;Ljava/util/Set;Ljava/util/Set;)V 30 <appendix> member <vmtarget> ; # org/apache/maven/extension/internal/CoreExports$$Lambda+0x000002032b346098
  4574. instanceKlass @bci java/util/function/Function identity ()Ljava/util/function/Function; 0 <appendix> argL0 ; # java/util/function/Function$$Lambda+0x000002032b361038
  4575. instanceKlass javax/crypto/Cipher$Transform
  4576. instanceKlass org/apache/maven/extension/internal/CoreExports
  4577. instanceKlass javax/crypto/Cipher
  4578. instanceKlass java/net/ProtocolFamily
  4579. instanceKlass org/codehaus/plexus/DefaultContainerConfiguration
  4580. instanceKlass org/codehaus/plexus/ContainerConfiguration
  4581. instanceKlass sun/security/ssl/SSLCipher$StreamWriteCipherGenerator
  4582. instanceKlass org/eclipse/jdt/ls/core/internal/ConnectionStreamFactory$PipeStreamProvider
  4583. instanceKlass sun/security/ssl/SSLCipher$StreamReadCipherGenerator
  4584. instanceKlass sun/security/ssl/SSLCipher$NullWriteCipherGenerator
  4585. instanceKlass sun/security/ssl/SSLCipher$WriteCipherGenerator
  4586. instanceKlass @bci org/eclipse/jdt/ls/core/internal/ConnectionStreamFactory getPipeFile ()Ljava/io/File; 58 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/ConnectionStreamFactory$$Lambda+0x000002032b2f6bb0
  4587. instanceKlass sun/security/ssl/SSLCipher$NullReadCipherGenerator
  4588. instanceKlass sun/security/ssl/SSLCipher$ReadCipherGenerator
  4589. instanceKlass org/codehaus/plexus/util/BaseIOUtil
  4590. instanceKlass com/google/common/collect/PeekingIterator
  4591. instanceKlass @bci org/eclipse/buildship/core/internal/CorePlugin scheduleSynchronizationForAbsentModels ()V 15 <appendix> argL0 ; # org/eclipse/buildship/core/internal/CorePlugin$$Lambda+0x000002032b34de90
  4592. instanceKlass org/eclipse/buildship/core/internal/configuration/GradleProjectNature
  4593. instanceKlass org/eclipse/buildship/core/internal/extension/DefaultExtensionManager
  4594. instanceKlass org/codehaus/plexus/util/xml/XMLWriter
  4595. instanceKlass java/lang/ProcessHandleImpl$Info
  4596. instanceKlass java/lang/ProcessHandle$Info
  4597. instanceKlass org/eclipse/buildship/core/internal/operation/DefaultToolingApiOperationManager
  4598. instanceKlass org/codehaus/plexus/util/xml/Xpp3Dom
  4599. instanceKlass @bci java/lang/ProcessHandleImpl lambda$static$1 ()Ljava/util/concurrent/Executor; 45 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b350800
  4600. instanceKlass org/eclipse/buildship/core/internal/launch/DefaultExternalLaunchConfigurationManager$LaunchConfigurationListener
  4601. instanceKlass @bci java/lang/ProcessHandleImpl lambda$static$1 ()Ljava/util/concurrent/Executor; 45 <appendix> member <vmtarget> ; # java/lang/ProcessHandleImpl$$Lambda+0x000002032b1fed90
  4602. instanceKlass @cpi java/lang/ProcessHandleImpl 436 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b350400
  4603. instanceKlass org/eclipse/buildship/core/internal/launch/DefaultExternalLaunchConfigurationManager
  4604. instanceKlass com/google/common/collect/Iterators
  4605. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b350000
  4606. instanceKlass org/eclipse/buildship/core/internal/configuration/BuildConfigurationPersistence
  4607. instanceKlass @bci java/lang/ProcessHandleImpl <clinit> ()V 32 <appendix> argL0 ; # java/lang/ProcessHandleImpl$$Lambda+0x000002032b1feb80
  4608. instanceKlass java/lang/ProcessHandleImpl
  4609. instanceKlass java/lang/ProcessHandle
  4610. instanceKlass org/eclipse/buildship/core/internal/configuration/WorkspaceConfigurationPersistence
  4611. instanceKlass org/eclipse/jdt/ls/core/internal/ConnectionStreamFactory$StreamProvider
  4612. instanceKlass org/eclipse/jdt/ls/core/internal/ConnectionStreamFactory
  4613. instanceKlass org/eclipse/buildship/core/internal/configuration/TestRunConfiguration
  4614. instanceKlass org/eclipse/jdt/ls/core/internal/JVMConfigurator
  4615. instanceKlass org/eclipse/buildship/core/internal/launch/BaseRunConfigurationAttributes
  4616. instanceKlass org/eclipse/buildship/core/internal/configuration/RunConfiguration
  4617. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/TypeHierarchyHandler
  4618. instanceKlass org/eclipse/buildship/core/internal/configuration/BaseRunConfiguration
  4619. instanceKlass org/eclipse/buildship/core/GradleDistribution
  4620. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/WorkspaceExecuteCommandHandler$CommandHandlerHolder
  4621. instanceKlass org/eclipse/buildship/core/internal/configuration/BuildConfiguration
  4622. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/WorkspaceExecuteCommandHandler
  4623. instanceKlass org/eclipse/buildship/core/internal/configuration/ProjectConfiguration
  4624. instanceKlass sun/security/ssl/SSLAlgorithmConstraints
  4625. instanceKlass org/eclipse/buildship/core/internal/configuration/DefaultConfigurationManager
  4626. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/BaseDocumentLifeCycleHandler
  4627. instanceKlass sun/security/ssl/SSLLogger
  4628. instanceKlass org/codehaus/plexus/util/xml/pull/MXParser
  4629. instanceKlass org/eclipse/buildship/core/internal/invocation/InvocationCustomizerCollector
  4630. instanceKlass org/eclipse/buildship/core/internal/operation/ToolingApiJobResultHandler
  4631. instanceKlass @bci sun/security/ssl/SunJSSE registerAlgorithms ()V 1 <appendix> member <vmtarget> ; # sun/security/ssl/SunJSSE$$Lambda+0x000002032b1fc368
  4632. instanceKlass org/eclipse/buildship/core/internal/workspace/SynchronizingBuildScriptUpdateListener
  4633. instanceKlass org/codehaus/plexus/util/xml/pull/XmlPullParser
  4634. instanceKlass org/codehaus/plexus/util/xml/Xpp3DomBuilder
  4635. instanceKlass org/eclipse/buildship/core/internal/workspace/ProjectChangeListener
  4636. instanceKlass @bci java/util/regex/Pattern union (Ljava/util/regex/Pattern$CharPredicate;Ljava/util/regex/Pattern$CharPredicate;Z)Ljava/util/regex/Pattern$CharPredicate; 14 <appendix> member <vmtarget> ; # java/util/regex/Pattern$$Lambda+0x000002032b1fb9b8
  4637. instanceKlass org/codehaus/plexus/util/ReaderFactory
  4638. instanceKlass org/eclipse/lsp4j/PartialResultParams
  4639. instanceKlass org/apache/maven/project/ExtensionDescriptor
  4640. instanceKlass org/eclipse/buildship/core/internal/preferences/PersistentModel
  4641. instanceKlass sun/security/ec/SunEC$1
  4642. instanceKlass org/eclipse/lsp4j/WorkDoneProgressParams
  4643. instanceKlass org/eclipse/lsp4j/TextDocumentPositionParams
  4644. instanceKlass org/eclipse/buildship/core/internal/preferences/DefaultModelPersistence
  4645. instanceKlass org/eclipse/buildship/core/internal/event/EventListener
  4646. instanceKlass org/apache/maven/project/ExtensionDescriptorBuilder
  4647. instanceKlass org/eclipse/buildship/core/internal/event/DefaultListenerRegistry
  4648. instanceKlass org/codehaus/plexus/classworlds/strategy/AbstractStrategy
  4649. instanceKlass org/codehaus/plexus/classworlds/strategy/Strategy
  4650. instanceKlass org/eclipse/debug/core/model/ISourceLocator
  4651. instanceKlass org/eclipse/jdt/internal/launching/sourcelookup/advanced/AdvancedSourceLookupSupport
  4652. instanceKlass org/eclipse/debug/internal/core/groups/GroupMemberChangeListener
  4653. instanceKlass org/codehaus/plexus/classworlds/strategy/StrategyFactory
  4654. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/MavenProjectCache$CacheKey equals (Ljava/lang/Object;)Z 2 <adapter> ; # java/lang/invoke/LambdaForm$MH+0x000002032b33a000
  4655. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b339c00
  4656. instanceKlass org/eclipse/core/internal/watson/ElementTreeIterator
  4657. instanceKlass @bci sun/security/pkcs11/SunPKCS11 register (Lsun/security/pkcs11/SunPKCS11$Descriptor;)V 27 <appendix> argL0 ; # sun/security/pkcs11/SunPKCS11$$Lambda+0x000002032b2f1ac8
  4658. instanceKlass @bci org/eclipse/core/internal/resources/Resource accept (Lorg/eclipse/core/resources/IResourceProxyVisitor;II)V 50 <adapter> ; # java/lang/invoke/LambdaForm$MH+0x000002032b339800
  4659. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b339400
  4660. instanceKlass sun/security/pkcs11/SunPKCS11$Descriptor
  4661. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/MavenProjectCache$CacheKey equals (Ljava/lang/Object;)Z 2 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b339000
  4662. instanceKlass @bci org/eclipse/core/internal/resources/Resource accept (Lorg/eclipse/core/resources/IResourceProxyVisitor;II)V 50 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b338c00
  4663. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/MavenProjectCache$CacheKey equals (Ljava/lang/Object;)Z 2 <appendix> argL1 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b338800
  4664. instanceKlass javax/security/auth/Subject
  4665. instanceKlass javax/security/auth/callback/CallbackHandler
  4666. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/MavenProjectCache$CacheKey equals (Ljava/lang/Object;)Z 2 <appendix> form names 9 function resolvedHandle form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b338400
  4667. instanceKlass @bci org/eclipse/core/internal/resources/Resource accept (Lorg/eclipse/core/resources/IResourceProxyVisitor;II)V 50 <appendix> member <vmtarget> ; # org/eclipse/core/internal/resources/Resource$$Lambda+0x000002032b26a590
  4668. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b338000
  4669. instanceKlass @cpi org/eclipse/core/internal/resources/Resource 1632 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b333400
  4670. instanceKlass @bci org/eclipse/m2e/core/internal/embedder/PlexusContainerManager cleanup ()V 16 <appendix> argL0 ; # org/eclipse/m2e/core/internal/embedder/PlexusContainerManager$$Lambda+0x000002032b3341f8
  4671. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b333000
  4672. instanceKlass org/apache/maven/settings/building/SettingsBuilder
  4673. instanceKlass org/eclipse/core/internal/resources/ResourceProxy
  4674. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b332c00
  4675. instanceKlass org/eclipse/m2e/core/internal/M2EUtils
  4676. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b332800
  4677. instanceKlass org/eclipse/debug/internal/core/LaunchManager$ResourceProxyVisitor
  4678. instanceKlass @cpi org/eclipse/jdt/internal/launching/environments/EnvironmentsManager 651 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b332400
  4679. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b332000
  4680. instanceKlass org/apache/maven/settings/building/DefaultSettingsBuildingRequest
  4681. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b331c00
  4682. instanceKlass @bci org/eclipse/m2e/core/embedder/ArtifactRef hashCode ()I 1 <adapter> ; # java/lang/invoke/LambdaForm$MH+0x000002032b331400
  4683. instanceKlass @bci org/eclipse/m2e/core/embedder/ArtifactRef hashCode ()I 1 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b331000
  4684. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b330800
  4685. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b330000
  4686. instanceKlass @bci org/eclipse/m2e/core/embedder/ArtifactRef hashCode ()I 1 <appendix> form names 7 function resolvedHandle form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b32d800
  4687. instanceKlass sun/security/jca/ProviderConfig$ProviderLoader
  4688. instanceKlass org/eclipse/jdt/launching/StandardClasspathProvider
  4689. instanceKlass sun/security/jca/ProviderConfig$3
  4690. instanceKlass javax/net/ssl/SSLContextSpi
  4691. instanceKlass org/eclipse/m2e/core/MavenPlugin
  4692. instanceKlass @bci org/eclipse/m2e/core/embedder/ArtifactRef hashCode ()I 1 <appendix> argL2 argL2 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b32d400
  4693. instanceKlass @bci java/lang/runtime/ObjectMethods bootstrap (Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/TypeDescriptor;Ljava/lang/Class;Ljava/lang/String;[Ljava/lang/invoke/MethodHandle;)Ljava/lang/Object; 37 <appendix> argL0 ; # java/lang/runtime/ObjectMethods$$Lambda+0x000002032b1f9b90
  4694. instanceKlass javax/net/ssl/SSLContext
  4695. instanceKlass org/eclipse/aether/DefaultRepositoryCache
  4696. instanceKlass @bci javax/net/ssl/SSLSocketFactory getSecurityProperty (Ljava/lang/String;)Ljava/lang/String; 1 <appendix> member <vmtarget> ; # javax/net/ssl/SSLSocketFactory$$Lambda+0x000002032b1f9778
  4697. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b32d000
  4698. instanceKlass org/eclipse/jdt/launching/IVMConnector
  4699. instanceKlass javax/net/ssl/SSLSocketFactory$DefaultFactoryHolder
  4700. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b32cc00
  4701. instanceKlass org/eclipse/aether/RepositoryCache
  4702. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b32c800
  4703. instanceKlass org/apache/maven/execution/DefaultMavenExecutionRequest
  4704. instanceKlass org/eclipse/jdt/launching/IRuntimeClasspathEntry
  4705. instanceKlass javax/net/SocketFactory
  4706. instanceKlass org/eclipse/jdt/launching/IRuntimeClasspathEntryResolver
  4707. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b32c400
  4708. instanceKlass org/eclipse/jdt/launching/environments/IExecutionEnvironmentsManager
  4709. instanceKlass @bci org/eclipse/m2e/core/internal/embedder/MavenExecutionContext newExecutionRequest ()Lorg/apache/maven/execution/MavenExecutionRequest; 125 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/embedder/MavenExecutionContext$$Lambda+0x000002032b267a08
  4710. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b32c000
  4711. instanceKlass org/eclipse/jdt/launching/IVMInstall
  4712. instanceKlass javax/net/ssl/HttpsURLConnection$DefaultHostnameVerifier
  4713. instanceKlass javax/net/ssl/HostnameVerifier
  4714. instanceKlass @bci org/eclipse/m2e/core/internal/embedder/MavenExecutionContext newExecutionRequest ()Lorg/apache/maven/execution/MavenExecutionRequest; 111 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/embedder/MavenExecutionContext$$Lambda+0x000002032b2677d0
  4715. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b32b400
  4716. instanceKlass org/eclipse/jdt/launching/IRuntimeClasspathProvider
  4717. instanceKlass org/eclipse/jdt/launching/JavaRuntime
  4718. instanceKlass @bci org/eclipse/m2e/core/internal/MavenPluginActivator getService (Ljava/lang/Class;)Ljava/lang/Object; 18 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/MavenPluginActivator$$Lambda+0x000002032b267598
  4719. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b32b000
  4720. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b32ac00
  4721. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/ProjectRegistryRefreshJob run (Lorg/eclipse/core/runtime/IProgressMonitor;)Lorg/eclipse/core/runtime/IStatus; 74 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/project/registry/ProjectRegistryRefreshJob$$Lambda+0x000002032b267380
  4722. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b32a800
  4723. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b32a400
  4724. instanceKlass @cpi org/eclipse/m2e/apt/internal/utils/ProjectUtils 430 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b32a000
  4725. instanceKlass org/apache/maven/shared/utils/StringUtils
  4726. instanceKlass java/lang/runtime/ObjectMethods$1
  4727. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b329c00
  4728. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b329800
  4729. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b329400
  4730. instanceKlass org/eclipse/core/resources/IResourceProxyVisitor
  4731. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b329000
  4732. instanceKlass org/eclipse/debug/core/ILaunchDelegate
  4733. instanceKlass org/eclipse/jdt/internal/launching/LaunchingPlugin$1$1
  4734. instanceKlass org/eclipse/debug/core/ILaunchMode
  4735. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b328c00
  4736. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b328800
  4737. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b328400
  4738. instanceKlass org/apache/maven/cli/MavenCli
  4739. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b328000
  4740. instanceKlass org/eclipse/osgi/internal/url/URLStreamHandlerProxy$1
  4741. instanceKlass java/lang/invoke/MethodHandleImpl$Makers$2
  4742. instanceKlass java/lang/invoke/MethodHandleImpl$Makers$1
  4743. instanceKlass org/eclipse/osgi/internal/url/URLStreamHandlerSetter
  4744. instanceKlass org/eclipse/debug/core/ILaunchConfiguration
  4745. instanceKlass java/lang/invoke/MethodHandleImpl$Makers
  4746. instanceKlass @bci java/lang/invoke/BootstrapMethodInvoker invoke (Ljava/lang/Class;Ljava/lang/invoke/MethodHandle;Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Class;)Ljava/lang/Object; 862 <adapter> ; # java/lang/invoke/LambdaForm$MH+0x000002032b321400
  4747. instanceKlass org/eclipse/osgi/internal/url/NullURLStreamHandlerService
  4748. instanceKlass org/eclipse/buildship/core/internal/launch/DefaultGradleLaunchConfigurationManager
  4749. instanceKlass org/osgi/service/url/URLStreamHandlerSetter
  4750. instanceKlass @bci org/eclipse/osgi/internal/url/URLStreamHandlerFactoryImpl createInternalURLStreamHandler (Ljava/lang/String;)Ljava/net/URLStreamHandler; 18 <appendix> member <vmtarget> ; # org/eclipse/osgi/internal/url/URLStreamHandlerFactoryImpl$$Lambda+0x000002032b2276f8
  4751. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b321000
  4752. instanceKlass org/eclipse/debug/core/model/IDebugElement
  4753. instanceKlass org/eclipse/buildship/core/internal/console/StdProcessStreamsProvider$1
  4754. instanceKlass @bci org/eclipse/equinox/plurl/impl/PlurlImpl$PlurlFactoryHolder getHandler (Ljava/lang/String;)Ljava/lang/Object; 35 <appendix> member <vmtarget> ; # org/eclipse/equinox/plurl/impl/PlurlImpl$PlurlFactoryHolder$$Lambda+0x000002032b2274c0
  4755. instanceKlass java/lang/runtime/ObjectMethods
  4756. instanceKlass org/eclipse/debug/core/ILaunch
  4757. instanceKlass @bci org/eclipse/m2e/core/internal/embedder/MavenImpl getSettings (Lorg/eclipse/m2e/core/embedder/MavenSettingsLocations;)Lorg/apache/maven/settings/Settings; 6 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/embedder/MavenImpl$$Lambda+0x000002032b267148
  4758. instanceKlass org/eclipse/debug/core/model/ISuspendResume
  4759. instanceKlass org/eclipse/equinox/plurl/impl/PlurlImpl$4
  4760. instanceKlass org/eclipse/buildship/core/internal/console/ProcessStreams
  4761. instanceKlass org/eclipse/debug/core/model/IStepFilters
  4762. instanceKlass org/eclipse/buildship/core/internal/console/StdProcessStreamsProvider
  4763. instanceKlass org/eclipse/debug/core/model/IStep
  4764. instanceKlass org/eclipse/debug/core/model/IDropToFrame
  4765. instanceKlass org/apache/maven/building/Source
  4766. instanceKlass org/apache/maven/cli/configuration/SettingsXmlConfigurationProcessor
  4767. instanceKlass org/eclipse/buildship/core/internal/workspace/InternalGradleBuild
  4768. instanceKlass org/eclipse/debug/core/model/IDisconnect
  4769. instanceKlass org/apache/maven/cli/configuration/ConfigurationProcessor
  4770. instanceKlass org/eclipse/aether/transfer/TransferListener
  4771. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/BasicProjectRegistry copy (Ljava/util/Map;Ljava/util/Map;)V 2 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/project/registry/BasicProjectRegistry$$Lambda+0x000002032b266f20
  4772. instanceKlass org/eclipse/buildship/core/internal/workspace/DefaultGradleWorkspace
  4773. instanceKlass org/eclipse/debug/internal/core/commands/ForEachCommand$ExclusiveRule
  4774. instanceKlass org/eclipse/debug/core/commands/AbstractDebugCommand
  4775. instanceKlass com/google/gson/reflect/TypeToken
  4776. instanceKlass org/eclipse/debug/core/commands/IStepFiltersHandler
  4777. instanceKlass org/eclipse/debug/core/commands/IResumeHandler
  4778. instanceKlass org/eclipse/debug/core/commands/ISuspendHandler
  4779. instanceKlass org/eclipse/buildship/core/internal/event/Event
  4780. instanceKlass org/eclipse/debug/core/commands/IDisconnectHandler
  4781. instanceKlass org/eclipse/buildship/core/internal/util/gradle/PublishedGradleVersions
  4782. instanceKlass org/eclipse/debug/core/commands/IDropToFrameHandler
  4783. instanceKlass org/eclipse/buildship/core/internal/workspace/DefaultWorkspaceOperations
  4784. instanceKlass org/eclipse/debug/core/commands/IStepReturnHandler
  4785. instanceKlass org/eclipse/debug/core/commands/IStepIntoHandler
  4786. instanceKlass org/eclipse/debug/core/commands/IStepOverHandler
  4787. instanceKlass org/eclipse/debug/core/commands/ITerminateHandler
  4788. instanceKlass org/eclipse/debug/core/commands/IDebugCommandHandler
  4789. instanceKlass org/eclipse/debug/internal/core/commands/CommandAdapterFactory
  4790. instanceKlass org/eclipse/buildship/core/internal/util/gradle/PublishedGradleVersionsWrapper$LoadVersionsJob$1
  4791. instanceKlass org/eclipse/debug/core/DebugPlugin$1$1
  4792. instanceKlass org/eclipse/buildship/core/internal/util/logging/EclipseLogger
  4793. instanceKlass org/eclipse/debug/internal/core/DebugOptions
  4794. instanceKlass org/eclipse/debug/core/DebugPlugin$AsynchRunner
  4795. instanceKlass org/eclipse/debug/core/DebugPlugin$EventNotifier
  4796. instanceKlass com/google/common/collect/ImmutableMap
  4797. instanceKlass com/google/common/base/Converter
  4798. instanceKlass com/google/common/collect/BiMap
  4799. instanceKlass org/eclipse/debug/core/model/IProcess
  4800. instanceKlass org/eclipse/debug/core/model/ITerminate
  4801. instanceKlass org/eclipse/debug/core/IExpressionManager
  4802. instanceKlass org/eclipse/debug/core/IBreakpointManager
  4803. instanceKlass org/eclipse/debug/core/IMemoryBlockManager
  4804. instanceKlass com/google/common/collect/UnmodifiableIterator
  4805. instanceKlass com/google/common/collect/SortedMapDifference
  4806. instanceKlass org/eclipse/debug/core/ILaunchManager
  4807. instanceKlass org/eclipse/debug/core/ILaunchConfigurationListener
  4808. instanceKlass com/google/common/collect/MapDifference
  4809. instanceKlass com/google/common/collect/Maps
  4810. instanceKlass org/eclipse/buildship/core/internal/util/gradle/PublishedGradleVersionsWrapper
  4811. instanceKlass org/eclipse/debug/core/IDebugEventSetListener
  4812. instanceKlass org/eclipse/buildship/core/internal/Logger
  4813. instanceKlass org/eclipse/debug/core/ILaunchesListener
  4814. instanceKlass org/eclipse/buildship/core/internal/launch/GradleLaunchConfigurationManager
  4815. instanceKlass org/eclipse/buildship/core/GradleBuild
  4816. instanceKlass org/eclipse/buildship/core/internal/launch/ExternalLaunchConfigurationManager
  4817. instanceKlass org/eclipse/buildship/core/internal/console/ProcessStreamsProvider
  4818. instanceKlass org/eclipse/jdt/launching/IVMInstallChangedListener
  4819. instanceKlass org/eclipse/buildship/core/internal/preferences/ModelPersistence
  4820. instanceKlass org/eclipse/buildship/core/internal/workspace/InternalGradleWorkspace
  4821. instanceKlass org/eclipse/buildship/core/GradleWorkspace
  4822. instanceKlass org/eclipse/buildship/core/internal/workspace/WorkspaceOperations
  4823. instanceKlass java/util/concurrent/Executors$DefaultThreadFactory
  4824. instanceKlass org/eclipse/jdt/ls/core/internal/ProjectUtils
  4825. instanceKlass org/eclipse/buildship/core/internal/event/ListenerRegistry
  4826. instanceKlass org/eclipse/buildship/core/internal/extension/ExtensionManager
  4827. instanceKlass org/eclipse/buildship/core/internal/operation/ToolingApiOperationManager
  4828. instanceKlass org/eclipse/buildship/core/internal/configuration/ConfigurationManager
  4829. instanceKlass com/google/gson/JsonElement
  4830. instanceKlass org/eclipse/buildship/core/invocation/InvocationCustomizer
  4831. instanceKlass org/eclipse/buildship/core/internal/TraceScope
  4832. instanceKlass org/eclipse/jdt/ls/core/internal/managers/TelemetryManager
  4833. instanceKlass org/eclipse/core/runtime/jobs/ProgressProvider
  4834. instanceKlass org/eclipse/jdt/ls/core/internal/LanguageServerApplication
  4835. instanceKlass org/eclipse/equinox/app/IApplication
  4836. instanceKlass org/eclipse/core/runtime/internal/adaptor/EclipseAppLauncher
  4837. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/BundleUtils
  4838. instanceKlass @bci jdk/internal/reflect/MethodHandleShortFieldAccessorImpl setShort (Ljava/lang/Object;S)V 41 <adapter> ; # java/lang/invoke/LambdaForm$MH+0x000002032b30f800
  4839. instanceKlass com/sun/jna/Structure$ByReference
  4840. instanceKlass @bci jdk/internal/reflect/MethodHandleShortFieldAccessorImpl getShort (Ljava/lang/Object;)S 20 <adapter> ; # java/lang/invoke/LambdaForm$MH+0x000002032b30f400
  4841. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b30f000
  4842. # instanceKlass java/lang/invoke/LambdaForm$BMH+0x000002032b30ec00
  4843. instanceKlass @cpi java/io/ObjectInputStream 1214 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b30e800
  4844. instanceKlass com/sun/jna/Structure$StructField
  4845. instanceKlass com/sun/jna/Structure$LayoutInfo
  4846. instanceKlass java/lang/Class$AnnotationData
  4847. instanceKlass java/lang/annotation/Documented
  4848. instanceKlass com/sun/jna/Structure$FieldOrder
  4849. instanceKlass @bci com/sun/jna/Structure fieldOrder ()Ljava/util/List; 84 <appendix> member <vmtarget> ; # com/sun/jna/Structure$$Lambda+0x000002032b308ac8
  4850. instanceKlass com/sun/jna/Klass
  4851. instanceKlass com/sun/jna/NativeMappedConverter
  4852. instanceKlass @bci com/sun/jna/Structure getFieldList ()Ljava/util/List; 84 <appendix> member <vmtarget> ; # com/sun/jna/Structure$$Lambda+0x000002032b308428
  4853. instanceKlass @bci com/sun/jna/Structure validateFields ()V 75 <appendix> member <vmtarget> ; # com/sun/jna/Structure$$Lambda+0x000002032b3081f0
  4854. instanceKlass org/eclipse/equinox/internal/security/storage/SecurePreferencesWrapper
  4855. instanceKlass org/eclipse/equinox/security/storage/ISecurePreferences
  4856. instanceKlass org/eclipse/equinox/internal/security/storage/SecurePreferencesContainer
  4857. instanceKlass @bci org/eclipse/equinox/internal/security/storage/SecurePreferencesRoot load ()V 241 <appendix> member <vmtarget> ; # org/eclipse/equinox/internal/security/storage/SecurePreferencesRoot$$Lambda+0x000002032b30d2c8
  4858. instanceKlass javax/crypto/spec/PBEKeySpec
  4859. instanceKlass org/eclipse/equinox/internal/security/storage/PasswordExt
  4860. instanceKlass org/eclipse/equinox/internal/security/storage/JavaEncryption
  4861. instanceKlass org/eclipse/equinox/security/storage/provider/IPreferencesContainer
  4862. instanceKlass org/eclipse/equinox/internal/security/storage/SecurePreferences
  4863. instanceKlass org/eclipse/equinox/internal/security/storage/friends/IStorageConstants
  4864. instanceKlass org/eclipse/equinox/internal/security/storage/StorageUtils
  4865. instanceKlass org/eclipse/equinox/internal/security/storage/SecurePreferencesMapper
  4866. instanceKlass org/eclipse/equinox/security/storage/SecurePreferencesFactory
  4867. instanceKlass com/sun/jna/Function$PostCallRead
  4868. instanceKlass com/sun/jna/Memory$MemoryDisposer
  4869. instanceKlass com/sun/jna/WeakMemoryHolder
  4870. instanceKlass com/sun/jna/NativeString
  4871. instanceKlass com/sun/jna/Library$Handler$FunctionInfo
  4872. instanceKlass com/sun/jna/VarArgsChecker
  4873. instanceKlass com/sun/jna/internal/ReflectionUtils
  4874. instanceKlass com/sun/jna/Native$3
  4875. instanceKlass com/sun/jna/NativeLibrary$NativeLibraryDisposer
  4876. instanceKlass com/sun/jna/internal/Cleaner$Cleanable
  4877. instanceKlass com/sun/jna/internal/Cleaner
  4878. instanceKlass com/sun/jna/NativeLibrary$1
  4879. instanceKlass com/sun/jna/SymbolProvider
  4880. instanceKlass com/sun/jna/NativeLibrary
  4881. instanceKlass com/sun/jna/Library$Handler
  4882. instanceKlass com/sun/jna/Native$2
  4883. instanceKlass com/sun/jna/Structure$FFIType$FFITypes
  4884. instanceKlass com/sun/jna/Native$ffi_callback
  4885. instanceKlass com/sun/jna/JNIEnv
  4886. instanceKlass com/sun/jna/PointerType
  4887. instanceKlass com/sun/jna/NativeMapped
  4888. instanceKlass com/sun/jna/WString
  4889. instanceKlass com/sun/jna/win32/DLLCallback
  4890. instanceKlass com/sun/jna/CallbackProxy
  4891. instanceKlass com/sun/jna/Callback
  4892. instanceKlass com/sun/jna/Structure$ByValue
  4893. instanceKlass com/sun/jna/ToNativeContext
  4894. instanceKlass com/sun/jna/Structure
  4895. instanceKlass com/sun/jna/Pointer
  4896. instanceKlass jdk/internal/loader/NativeLibraries$Unloader
  4897. instanceKlass java/io/File$TempDirectory
  4898. instanceKlass com/sun/jna/Native$5
  4899. instanceKlass com/sun/jna/Platform
  4900. instanceKlass com/sun/jna/Native$1
  4901. instanceKlass com/sun/jna/FromNativeContext
  4902. instanceKlass com/sun/jna/Callback$UncaughtExceptionHandler
  4903. instanceKlass com/sun/jna/Native
  4904. instanceKlass com/sun/jna/Version
  4905. instanceKlass com/sun/jna/win32/W32APIFunctionMapper
  4906. instanceKlass com/sun/jna/win32/W32APITypeMapper$2
  4907. instanceKlass com/sun/jna/DefaultTypeMapper$Entry
  4908. instanceKlass com/sun/jna/win32/W32APITypeMapper$1
  4909. instanceKlass com/sun/jna/TypeConverter
  4910. instanceKlass com/sun/jna/ToNativeConverter
  4911. instanceKlass com/sun/jna/FromNativeConverter
  4912. instanceKlass com/sun/jna/DefaultTypeMapper
  4913. instanceKlass com/sun/jna/TypeMapper
  4914. instanceKlass com/sun/jna/FunctionMapper
  4915. instanceKlass com/sun/jna/win32/W32APIOptions
  4916. instanceKlass org/eclipse/core/net/internal/proxy/win32/ProxyProviderWin32$WinHttp
  4917. instanceKlass com/sun/jna/win32/StdCallLibrary
  4918. instanceKlass com/sun/jna/win32/StdCall
  4919. instanceKlass com/sun/jna/AltCallingConvention
  4920. instanceKlass org/eclipse/core/internal/net/ProxyData
  4921. instanceKlass com/sun/jna/Library
  4922. instanceKlass org/eclipse/equinox/internal/security/auth/AuthPlugin
  4923. instanceKlass org/eclipse/core/internal/net/ProxyType
  4924. instanceKlass org/eclipse/core/net/proxy/IProxyChangeEvent
  4925. instanceKlass org/eclipse/core/internal/net/AbstractProxyProvider
  4926. instanceKlass org/eclipse/core/internal/net/ProxyManager
  4927. instanceKlass org/eclipse/core/net/proxy/IProxyService
  4928. instanceKlass @bci org/eclipse/core/internal/net/Policy <clinit> ()V 8 <appendix> argL0 ; # org/eclipse/core/internal/net/Policy$$Lambda+0x000002032b2f35e8
  4929. instanceKlass org/eclipse/core/internal/net/Policy
  4930. instanceKlass org/eclipse/core/net/proxy/IProxyData
  4931. instanceKlass org/eclipse/core/internal/net/PreferenceManager
  4932. instanceKlass org/eclipse/core/internal/net/Activator
  4933. instanceKlass org/eclipse/core/internal/net/ProxySelector
  4934. instanceKlass java/text/DontCareFieldPosition$1
  4935. instanceKlass java/io/FileOutputStream$1
  4936. instanceKlass org/eclipse/osgi/framework/log/FrameworkLogEntry
  4937. instanceKlass org/eclipse/jdt/ls/core/internal/DiagnosticsState
  4938. instanceKlass org/eclipse/jdt/ls/core/internal/managers/ContentProviderManager
  4939. instanceKlass org/eclipse/jdt/ls/core/internal/managers/DigestStore
  4940. instanceKlass org/eclipse/lsp4j/jsonrpc/messages/Either
  4941. instanceKlass org/eclipse/jdt/ls/core/internal/framework/IFrameworkSupport
  4942. instanceKlass org/eclipse/jdt/ls/core/internal/preferences/IPreferencesChangeListener
  4943. instanceKlass com/sun/org/apache/xerces/internal/dom/DeepNodeListImpl
  4944. instanceKlass com/sun/org/apache/xerces/internal/dom/DeferredDocumentImpl$RefCount
  4945. instanceKlass com/sun/org/apache/xerces/internal/dom/DeferredNode
  4946. instanceKlass org/eclipse/text/templates/TemplateStoreCore
  4947. instanceKlass com/sun/org/apache/xml/internal/serializer/WriterChain
  4948. instanceKlass com/sun/org/apache/xalan/internal/xsltc/trax/DOM2TO
  4949. instanceKlass javax/xml/transform/stax/StAXSource
  4950. instanceKlass javax/xml/transform/sax/SAXSource
  4951. instanceKlass javax/xml/transform/stream/StreamSource
  4952. instanceKlass com/sun/org/apache/xml/internal/serializer/NamespaceMappings$MappingRecord
  4953. instanceKlass com/sun/org/apache/xml/internal/serializer/NamespaceMappings
  4954. instanceKlass java/nio/charset/Charset$1
  4955. instanceKlass java/nio/charset/Charset$2
  4956. instanceKlass java/nio/charset/Charset$ThreadTrackHolder
  4957. instanceKlass java/nio/charset/Charset$ExtendedProviderHolder$1
  4958. instanceKlass java/nio/charset/Charset$ExtendedProviderHolder
  4959. instanceKlass @bci jdk/xml/internal/SecuritySupport getResourceAsStream (Ljava/lang/String;)Ljava/io/InputStream; 1 <appendix> member <vmtarget> ; # jdk/xml/internal/SecuritySupport$$Lambda+0x000002032b1ec808
  4960. instanceKlass com/sun/org/apache/xml/internal/serializer/Encodings$EncodingInfos
  4961. instanceKlass com/sun/org/apache/xml/internal/serializer/Encodings
  4962. instanceKlass com/sun/org/apache/xml/internal/serializer/ToStream$CharacterBuffer
  4963. instanceKlass com/sun/org/apache/xml/internal/serializer/EncodingInfo
  4964. instanceKlass com/sun/org/apache/xml/internal/serializer/ToStream$BoolStack
  4965. instanceKlass com/sun/org/apache/xml/internal/serializer/ElemContext
  4966. instanceKlass org/xml/sax/helpers/AttributesImpl
  4967. instanceKlass com/sun/org/apache/xml/internal/serializer/CharInfo$CharKey
  4968. instanceKlass sun/util/ResourceBundleEnumeration
  4969. instanceKlass com/sun/org/apache/xml/internal/serializer/CharInfo
  4970. instanceKlass com/sun/org/apache/xml/internal/serializer/SerializerBase
  4971. instanceKlass com/sun/org/apache/xml/internal/serializer/SerializerConstants
  4972. instanceKlass com/sun/org/apache/xml/internal/serializer/SerializationHandler
  4973. instanceKlass com/sun/org/apache/xml/internal/serializer/Serializer
  4974. instanceKlass com/sun/org/apache/xml/internal/serializer/DOMSerializer
  4975. instanceKlass org/xml/sax/ext/DeclHandler
  4976. instanceKlass com/sun/org/apache/xml/internal/serializer/XSLOutputAttributes
  4977. instanceKlass com/sun/org/apache/xml/internal/serializer/ExtendedLexicalHandler
  4978. instanceKlass org/xml/sax/ext/LexicalHandler
  4979. instanceKlass com/sun/org/apache/xml/internal/serializer/ExtendedContentHandler
  4980. instanceKlass javax/xml/transform/dom/DOMResult
  4981. instanceKlass javax/xml/transform/stax/StAXResult
  4982. instanceKlass javax/xml/transform/sax/SAXResult
  4983. instanceKlass com/sun/org/apache/xalan/internal/xsltc/runtime/output/TransletOutputHandlerFactory
  4984. instanceKlass javax/xml/transform/dom/DOMSource
  4985. instanceKlass com/sun/org/apache/xml/internal/utils/XMLReaderManager
  4986. instanceKlass com/sun/org/apache/xml/internal/serializer/OutputPropertiesFactory
  4987. instanceKlass javax/xml/transform/Transformer
  4988. instanceKlass com/sun/org/apache/xalan/internal/xsltc/DOMCache
  4989. instanceKlass @bci javax/xml/catalog/CatalogFeatures setProperties (Ljavax/xml/catalog/CatalogFeatures$Builder;)V 5 <appendix> member <vmtarget> ; # javax/xml/catalog/CatalogFeatures$$Lambda+0x000002032b1e5f18
  4990. instanceKlass javax/xml/catalog/CatalogMessages
  4991. instanceKlass javax/xml/catalog/Util
  4992. instanceKlass @bci javax/xml/transform/FactoryFinder newInstance (Ljava/lang/Class;Ljava/lang/String;Ljava/lang/ClassLoader;Z)Ljava/lang/Object; 107 <appendix> member <vmtarget> ; # javax/xml/transform/FactoryFinder$$Lambda+0x000002032b1e54f0
  4993. instanceKlass jdk/xml/internal/JdkProperty
  4994. instanceKlass jdk/xml/internal/XMLSecurityManager
  4995. instanceKlass com/sun/org/apache/xalan/internal/utils/FeaturePropertyBase
  4996. instanceKlass jdk/xml/internal/JdkXmlFeatures
  4997. instanceKlass javax/xml/catalog/CatalogFeatures$Builder
  4998. instanceKlass javax/xml/catalog/CatalogFeatures
  4999. instanceKlass jdk/xml/internal/TransformErrorListener
  5000. instanceKlass javax/xml/transform/ErrorListener
  5001. instanceKlass com/sun/org/apache/xalan/internal/xsltc/compiler/SourceLoader
  5002. instanceKlass @bci javax/xml/transform/FactoryFinder find (Ljava/lang/Class;Ljava/lang/String;)Ljava/lang/Object; 123 <appendix> member <vmtarget> ; # javax/xml/transform/FactoryFinder$$Lambda+0x000002032b1e1b60
  5003. instanceKlass javax/xml/transform/FactoryFinder$1
  5004. instanceKlass @bci javax/xml/transform/FactoryFinder find (Ljava/lang/Class;Ljava/lang/String;)Ljava/lang/Object; 24 <appendix> member <vmtarget> ; # javax/xml/transform/FactoryFinder$$Lambda+0x000002032b1e1728
  5005. instanceKlass javax/xml/transform/FactoryFinder
  5006. instanceKlass javax/xml/transform/TransformerFactory
  5007. instanceKlass com/sun/org/apache/xerces/internal/dom/CharacterDataImpl$1
  5008. instanceKlass org/w3c/dom/Text
  5009. instanceKlass org/w3c/dom/CharacterData
  5010. instanceKlass org/w3c/dom/Attr
  5011. instanceKlass com/sun/org/apache/xerces/internal/dom/NamedNodeMapImpl
  5012. instanceKlass org/w3c/dom/NamedNodeMap
  5013. instanceKlass com/sun/org/apache/xerces/internal/dom/NodeListCache
  5014. instanceKlass org/w3c/dom/TypeInfo
  5015. instanceKlass org/w3c/dom/ElementTraversal
  5016. instanceKlass org/w3c/dom/Element
  5017. instanceKlass org/w3c/dom/DocumentType
  5018. instanceKlass com/sun/org/apache/xerces/internal/dom/NodeImpl
  5019. instanceKlass org/w3c/dom/events/EventTarget
  5020. instanceKlass org/w3c/dom/NodeList
  5021. instanceKlass org/w3c/dom/Document
  5022. instanceKlass org/w3c/dom/ranges/DocumentRange
  5023. instanceKlass org/w3c/dom/events/DocumentEvent
  5024. instanceKlass org/w3c/dom/traversal/DocumentTraversal
  5025. instanceKlass javax/xml/parsers/DocumentBuilder
  5026. instanceKlass javax/xml/parsers/DocumentBuilderFactory
  5027. instanceKlass org/eclipse/core/internal/runtime/XmlProcessorFactory
  5028. instanceKlass javax/xml/transform/stream/StreamResult
  5029. instanceKlass org/eclipse/text/templates/TemplateReaderWriter
  5030. instanceKlass @bci org/eclipse/jdt/ls/core/internal/preferences/PreferenceManager reloadTemplateStore ()V 24 <appendix> argL0 ; # org/eclipse/jdt/ls/core/internal/preferences/PreferenceManager$$Lambda+0x000002032b2e5f50
  5031. instanceKlass org/eclipse/text/templates/TemplatePersistenceData
  5032. instanceKlass org/eclipse/jface/text/templates/Template
  5033. instanceKlass java/util/ResourceBundle$Control$2
  5034. instanceKlass @bci java/util/ResourceBundle$ResourceBundleControlProviderHolder lambda$static$0 ()Ljava/util/List; 11 <appendix> argL0 ; # java/util/ResourceBundle$ResourceBundleControlProviderHolder$$Lambda+0x000002032b1d8888
  5035. instanceKlass java/util/ServiceLoader$ProviderSpliterator
  5036. instanceKlass java/util/spi/ResourceBundleControlProvider
  5037. instanceKlass @bci java/util/ResourceBundle$ResourceBundleControlProviderHolder <clinit> ()V 0 <appendix> argL0 ; # java/util/ResourceBundle$ResourceBundleControlProviderHolder$$Lambda+0x000002032b1d81f8
  5038. instanceKlass java/util/ResourceBundle$ResourceBundleControlProviderHolder
  5039. instanceKlass org/eclipse/jface/text/templates/TextTemplateMessages
  5040. instanceKlass sun/util/cldr/CLDRBaseLocaleDataMetaInfo$TZCanonicalIDMapHolder
  5041. instanceKlass sun/util/resources/provider/NonBaseLocaleDataMetaInfo
  5042. instanceKlass @bci sun/util/locale/provider/JRELocaleProviderAdapter createSupportedLocaleString (Ljava/lang/String;)Ljava/lang/String; 6 <appendix> member <vmtarget> ; # sun/util/locale/provider/JRELocaleProviderAdapter$$Lambda+0x000002032b1d6db0
  5043. instanceKlass sun/util/locale/provider/BaseLocaleDataMetaInfo
  5044. instanceKlass @bci sun/util/locale/provider/JRELocaleProviderAdapter getTimeZoneNameProvider ()Ljava/util/spi/TimeZoneNameProvider; 8 <appendix> member <vmtarget> ; # sun/util/locale/provider/JRELocaleProviderAdapter$$Lambda+0x000002032b1d6950
  5045. instanceKlass @bci sun/util/cldr/CLDRLocaleProviderAdapter getTimeZoneNameProvider ()Ljava/util/spi/TimeZoneNameProvider; 8 <appendix> member <vmtarget> ; # sun/util/cldr/CLDRLocaleProviderAdapter$$Lambda+0x000002032b1d62d8
  5046. instanceKlass sun/util/locale/provider/TimeZoneNameUtility$TimeZoneNameGetter
  5047. instanceKlass sun/util/locale/provider/TimeZoneNameUtility
  5048. instanceKlass sun/nio/cs/Surrogate
  5049. instanceKlass sun/nio/cs/Surrogate$Parser
  5050. instanceKlass @bci org/eclipse/core/internal/preferences/SortedProperties <clinit> ()V 0 <appendix> argL0 ; # org/eclipse/core/internal/preferences/SortedProperties$$Lambda+0x000002032b1b13b8
  5051. instanceKlass @bci org/eclipse/jdt/internal/core/JavaModelManager$TouchJob runInWorkspace (Lorg/eclipse/core/runtime/IProgressMonitor;)Lorg/eclipse/core/runtime/IStatus; 24 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/core/JavaModelManager$TouchJob$$Lambda+0x000002032b2ce428
  5052. instanceKlass org/eclipse/jface/text/IRegion
  5053. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/FormatterHandler
  5054. instanceKlass org/eclipse/jdt/internal/core/util/Util
  5055. instanceKlass org/apache/commons/lang3/text/StrTokenizer
  5056. instanceKlass org/apache/commons/lang3/text/StrBuilder
  5057. instanceKlass org/apache/commons/lang3/builder/Builder
  5058. instanceKlass @bci java/util/regex/CharPredicates forUnicodeBlock (Ljava/lang/String;)Ljava/util/regex/Pattern$CharPredicate; 6 <appendix> member <vmtarget> ; # java/util/regex/CharPredicates$$Lambda+0x000002032b1d5390
  5059. instanceKlass java/lang/Character$Subset
  5060. instanceKlass org/apache/commons/lang3/StringUtils
  5061. instanceKlass java/util/DualPivotQuicksort
  5062. instanceKlass org/apache/commons/lang3/ArraySorter
  5063. instanceKlass org/apache/commons/lang3/text/StrMatcher
  5064. instanceKlass org/apache/commons/lang3/text/StrSubstitutor
  5065. instanceKlass org/apache/commons/lang3/text/StrLookup
  5066. instanceKlass org/eclipse/jdt/ls/core/internal/ResourceUtils
  5067. instanceKlass org/eclipse/jdt/ls/core/internal/preferences/Preferences$ReferencedLibraries
  5068. instanceKlass sun/security/provider/AbstractDrbg$NonceProvider
  5069. instanceKlass @bci sun/security/provider/AbstractDrbg$SeederHolder <clinit> ()V 42 <appendix> member <vmtarget> ; # sun/security/provider/AbstractDrbg$SeederHolder$$Lambda+0x000002032b1d45b8
  5070. instanceKlass @cpi sun/security/provider/AbstractDrbg$SeederHolder 91 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b2db400
  5071. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b2db000
  5072. instanceKlass sun/nio/fs/BasicFileAttributesHolder
  5073. instanceKlass sun/nio/fs/WindowsDirectoryStream$WindowsDirectoryIterator
  5074. instanceKlass sun/nio/fs/WindowsDirectoryStream
  5075. instanceKlass java/nio/file/DirectoryStream
  5076. instanceKlass java/nio/file/Files$AcceptAllFilter
  5077. instanceKlass java/nio/file/DirectoryStream$Filter
  5078. instanceKlass java/net/NetworkInterface$1
  5079. instanceKlass java/net/DefaultInterface
  5080. instanceKlass java/net/Inet6Address$Inet6AddressHolder
  5081. instanceKlass java/net/InetAddress$PlatformResolver
  5082. instanceKlass java/net/spi/InetAddressResolver
  5083. instanceKlass java/net/spi/InetAddressResolver$LookupPolicy
  5084. instanceKlass java/net/Inet4AddressImpl
  5085. instanceKlass java/net/Inet6AddressImpl
  5086. instanceKlass java/net/InetAddressImpl
  5087. instanceKlass java/net/InetAddress$InetAddressHolder
  5088. instanceKlass java/net/InetAddress$1
  5089. instanceKlass jdk/internal/access/JavaNetInetAddressAccess
  5090. instanceKlass java/net/InterfaceAddress
  5091. instanceKlass java/net/NetworkInterface
  5092. instanceKlass sun/security/provider/SeedGenerator$1
  5093. instanceKlass sun/security/provider/SeedGenerator
  5094. instanceKlass sun/security/provider/AbstractDrbg$SeederHolder
  5095. instanceKlass java/security/DrbgParameters$NextBytes
  5096. instanceKlass @bci sun/security/provider/AbstractDrbg <clinit> ()V 12 <appendix> argL0 ; # sun/security/provider/AbstractDrbg$$Lambda+0x000002032b1d1d30
  5097. instanceKlass @cpi sun/security/provider/AbstractDrbg 383 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b2dac00
  5098. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b2da800
  5099. instanceKlass sun/security/provider/EntropySource
  5100. instanceKlass sun/security/provider/AbstractDrbg
  5101. instanceKlass java/security/DrbgParameters$Instantiation
  5102. instanceKlass java/security/DrbgParameters
  5103. instanceKlass sun/security/provider/MoreDrbgParameters
  5104. instanceKlass @bci sun/security/provider/DRBG <init> (Ljava/security/SecureRandomParameters;)V 26 <appendix> argL0 ; # sun/security/provider/DRBG$$Lambda+0x000002032b1d0870
  5105. instanceKlass java/security/SecureRandomSpi
  5106. instanceKlass java/util/UUID$Holder
  5107. instanceKlass org/eclipse/jdt/ls/core/internal/preferences/Preferences
  5108. instanceKlass org/eclipse/jface/text/templates/TemplateContextType
  5109. instanceKlass org/eclipse/jface/text/templates/TemplateVariableResolver
  5110. instanceKlass java/lang/ProcessEnvironment$CheckedEntry
  5111. instanceKlass java/lang/ProcessEnvironment$CheckedEntrySet$1
  5112. instanceKlass java/lang/ProcessEnvironment$EntryComparator
  5113. instanceKlass java/lang/ProcessEnvironment$NameComparator
  5114. instanceKlass org/eclipse/jdt/ls/core/internal/Environment
  5115. instanceKlass org/eclipse/jdt/ls/core/internal/JDTEnvironmentUtils
  5116. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/LogHandler$1
  5117. instanceKlass @bci sun/util/locale/provider/JRELocaleProviderAdapter getDateFormatProvider ()Ljava/text/spi/DateFormatProvider; 8 <appendix> member <vmtarget> ; # sun/util/locale/provider/JRELocaleProviderAdapter$$Lambda+0x800000064
  5118. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/DefaultLogFilter
  5119. instanceKlass org/eclipse/core/runtime/ILogListener
  5120. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/LogHandler
  5121. instanceKlass org/eclipse/jdt/internal/core/manipulation/MembersOrderPreferenceCacheCommon
  5122. instanceKlass org/eclipse/jdt/core/manipulation/JavaManipulation
  5123. instanceKlass org/eclipse/jdt/ls/core/contentassist/ICompletionContributionService
  5124. instanceKlass java/net/Authenticator
  5125. instanceKlass java/nio/channels/AsynchronousByteChannel
  5126. instanceKlass java/nio/channels/AsynchronousChannel
  5127. instanceKlass java/net/SocketAddress
  5128. instanceKlass org/eclipse/jdt/ls/core/internal/lsp/JavaProtocolExtensions
  5129. instanceKlass org/eclipse/jdt/ls/core/internal/syntaxserver/IExtendedProtocol
  5130. instanceKlass org/eclipse/lsp4j/services/WorkspaceService
  5131. instanceKlass org/eclipse/lsp4j/services/TextDocumentService
  5132. instanceKlass org/eclipse/lsp4j/services/LanguageServer
  5133. instanceKlass org/eclipse/jdt/ls/core/internal/BaseJDTLanguageServer
  5134. instanceKlass org/eclipse/jdt/ls/core/internal/managers/ISourceDownloader
  5135. instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$21$1
  5136. instanceKlass @bci org/eclipse/jdt/internal/core/search/processing/JobManager reset ()V 38 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/core/search/processing/JobManager$$Lambda+0x000002032b2cd6e8
  5137. instanceKlass org/eclipse/jdt/internal/core/ExternalAnnotationTracker$DirectoryNode
  5138. instanceKlass org/eclipse/jdt/internal/core/ExternalAnnotationTracker
  5139. instanceKlass org/eclipse/jdt/core/IJavaModelStatusConstants
  5140. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b2d3400
  5141. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b2d3000
  5142. instanceKlass org/eclipse/jdt/internal/compiler/CompilationResult
  5143. instanceKlass lombok/eclipse/agent/PatchDelegate$BindingTuple
  5144. instanceKlass org/eclipse/jdt/internal/compiler/ast/TypeOrLambda
  5145. instanceKlass org/eclipse/jdt/internal/compiler/ast/Invocation
  5146. instanceKlass org/eclipse/jdt/internal/compiler/ast/IPolyExpression
  5147. instanceKlass lombok/eclipse/agent/PatchDelegate
  5148. instanceKlass lombok/eclipse/agent/PatchDelegatePortal
  5149. instanceKlass lombok/core/LombokNode
  5150. instanceKlass lombok/core/DiagnosticsReceiver
  5151. instanceKlass lombok/launch/PatchFixesHider$Util
  5152. instanceKlass lombok/launch/PatchFixesHider$Delegate
  5153. instanceKlass org/eclipse/jdt/internal/core/DeltaProcessingState$RootInfos
  5154. instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$20
  5155. instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$19
  5156. instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$14
  5157. instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$13
  5158. instanceKlass org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions
  5159. instanceKlass org/eclipse/jdt/core/formatter/DefaultCodeFormatterConstants
  5160. instanceKlass org/eclipse/jdt/internal/compiler/util/Util
  5161. instanceKlass org/eclipse/jdt/internal/compiler/impl/IrritantSet
  5162. instanceKlass org/eclipse/jdt/internal/core/util/ICacheEnumeration
  5163. instanceKlass org/eclipse/jdt/internal/formatter/TokenTraverser
  5164. instanceKlass org/eclipse/text/edits/TextEdit
  5165. instanceKlass org/eclipse/jdt/core/formatter/CodeFormatter
  5166. instanceKlass lombok/patcher/scripts/WrapperMethodDescriptor
  5167. instanceKlass lombok/patcher/scripts/SetSymbolDuringMethodCallScript$1
  5168. instanceKlass org/eclipse/jdt/core/SourceRange
  5169. instanceKlass org/eclipse/jdt/internal/compiler/util/JRTUtil$JrtFileVisitor
  5170. instanceKlass org/eclipse/jdt/core/IOrdinaryClassFile
  5171. instanceKlass org/eclipse/jdt/internal/core/util/ReferenceInfoAdapter
  5172. instanceKlass org/eclipse/jdt/internal/compiler/ISourceElementRequestor
  5173. instanceKlass org/eclipse/jdt/core/search/TypeNameMatchRequestor
  5174. instanceKlass org/eclipse/jdt/internal/compiler/env/ISourceType
  5175. instanceKlass org/eclipse/jdt/internal/compiler/env/IGenericType
  5176. instanceKlass org/eclipse/jdt/internal/compiler/problem/ProblemHandler
  5177. instanceKlass org/eclipse/jdt/core/search/SearchParticipant
  5178. instanceKlass org/eclipse/jdt/core/search/MethodNameMatch
  5179. instanceKlass org/eclipse/jdt/core/search/TypeNameMatch
  5180. instanceKlass org/eclipse/jdt/core/search/IJavaSearchScope
  5181. instanceKlass org/eclipse/jdt/internal/compiler/ASTVisitor
  5182. instanceKlass org/eclipse/jdt/internal/core/search/IndexQueryRequestor
  5183. instanceKlass org/eclipse/jdt/core/search/IParallelizable
  5184. instanceKlass org/eclipse/jdt/core/search/SearchPattern
  5185. instanceKlass org/eclipse/jdt/internal/core/search/BasicSearchEngine
  5186. instanceKlass org/eclipse/jdt/core/ITypeParameter
  5187. instanceKlass org/eclipse/jdt/core/ISourceRange
  5188. instanceKlass org/eclipse/jdt/core/IAnnotation
  5189. instanceKlass org/eclipse/jdt/internal/core/AbstractModule
  5190. instanceKlass org/eclipse/jdt/core/IModuleDescription
  5191. instanceKlass org/eclipse/jdt/internal/core/NameLookup
  5192. instanceKlass org/eclipse/jface/text/IDocument
  5193. instanceKlass org/eclipse/jdt/internal/core/JavaModelCache$1
  5194. instanceKlass org/eclipse/jdt/internal/compiler/env/IBinaryInfo
  5195. instanceKlass org/eclipse/jdt/internal/core/JavaModelCache
  5196. instanceKlass org/eclipse/jdt/core/IType
  5197. instanceKlass org/eclipse/jdt/core/IAnnotatable
  5198. instanceKlass org/eclipse/jdt/core/IMember
  5199. instanceKlass org/eclipse/jdt/internal/core/hierarchy/HierarchyBuilder
  5200. instanceKlass org/eclipse/jdt/internal/core/hierarchy/TypeHierarchy
  5201. instanceKlass org/eclipse/jdt/core/ITypeHierarchy
  5202. instanceKlass org/eclipse/jdt/core/dom/ASTNode
  5203. instanceKlass org/eclipse/jdt/core/dom/StructuralPropertyDescriptor
  5204. instanceKlass org/eclipse/jdt/internal/core/dom/rewrite/RewriteEvent
  5205. instanceKlass org/eclipse/jdt/internal/core/dom/rewrite/RewriteEventStore
  5206. instanceKlass org/eclipse/jdt/core/dom/ASTVisitor
  5207. instanceKlass org/eclipse/jdt/internal/core/DeltaProcessor
  5208. instanceKlass org/eclipse/jdt/internal/codeassist/CompletionEngine$1
  5209. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/ReferenceBinding <clinit> ()V 46 <appendix> argL0 ; # org/eclipse/jdt/internal/compiler/lookup/ReferenceBinding$$Lambda+0x000002032b2a66f8
  5210. instanceKlass @cpi org/eclipse/jdt/internal/compiler/util/SortedCharArrays 78 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b2a8000
  5211. instanceKlass org/eclipse/jdt/internal/compiler/lookup/ParameterNonNullDefaultProvider
  5212. instanceKlass org/eclipse/jdt/internal/compiler/lookup/ReferenceBinding$3
  5213. instanceKlass org/eclipse/jdt/internal/compiler/lookup/ReferenceBinding$2
  5214. instanceKlass org/eclipse/jdt/internal/compiler/lookup/ReductionResult
  5215. instanceKlass org/eclipse/jdt/internal/compiler/lookup/ElementValuePair
  5216. instanceKlass org/eclipse/jdt/internal/compiler/lookup/AnnotationBinding
  5217. instanceKlass org/eclipse/jdt/internal/compiler/env/IUpdatableModule
  5218. instanceKlass org/eclipse/jdt/internal/compiler/lookup/TypeBindingVisitor
  5219. instanceKlass org/eclipse/jdt/internal/compiler/lookup/HotSwappable
  5220. instanceKlass org/eclipse/jdt/internal/compiler/parser/ScannerHelper
  5221. instanceKlass org/eclipse/jdt/core/Signature
  5222. instanceKlass org/eclipse/jdt/internal/compiler/lookup/TypeConstants$CloseMethodRecord
  5223. instanceKlass org/eclipse/jdt/internal/core/INamingRequestor
  5224. instanceKlass org/eclipse/jdt/internal/compiler/lookup/Substitution
  5225. instanceKlass org/eclipse/jdt/core/CompletionRequestor
  5226. instanceKlass org/eclipse/jdt/internal/core/IJavaElementRequestor
  5227. instanceKlass org/eclipse/jdt/internal/codeassist/MissingTypesGuesser$GuessedTypeRequestor
  5228. instanceKlass org/eclipse/jdt/core/CompletionProposal
  5229. instanceKlass org/eclipse/jdt/internal/codeassist/complete/CompletionNode
  5230. instanceKlass lombok/patcher/scripts/ReplaceMethodCallScript$1
  5231. instanceKlass org/eclipse/jdt/internal/compiler/lookup/Binding
  5232. instanceKlass org/eclipse/jdt/core/search/SearchRequestor
  5233. instanceKlass org/eclipse/jdt/internal/codeassist/UnresolvedReferenceNameFinder$UnresolvedReferenceNameRequestor
  5234. instanceKlass org/eclipse/jdt/internal/compiler/lookup/Scope
  5235. instanceKlass org/eclipse/jdt/core/compiler/IProblem
  5236. instanceKlass org/eclipse/core/internal/jobs/JobQueue$2
  5237. instanceKlass org/eclipse/jdt/core/CompletionContext
  5238. instanceKlass org/eclipse/jdt/internal/compiler/env/INameEnvironment
  5239. instanceKlass org/eclipse/jdt/internal/compiler/lookup/InvocationSite
  5240. instanceKlass org/eclipse/jdt/internal/compiler/ast/ASTNode
  5241. instanceKlass org/eclipse/jdt/internal/codeassist/impl/Engine
  5242. instanceKlass org/eclipse/jdt/internal/codeassist/ICompletionEngine
  5243. instanceKlass org/eclipse/jdt/internal/codeassist/RelevanceConstants
  5244. instanceKlass org/eclipse/jdt/internal/compiler/lookup/TypeConstants
  5245. instanceKlass org/eclipse/jdt/internal/codeassist/ISearchRequestor
  5246. instanceKlass org/eclipse/jdt/internal/compiler/impl/ReferenceContext
  5247. instanceKlass org/eclipse/jdt/internal/compiler/ICompilerRequestor
  5248. instanceKlass org/eclipse/jdt/internal/compiler/Compiler
  5249. instanceKlass org/eclipse/jdt/internal/compiler/problem/ProblemSeverities
  5250. instanceKlass org/eclipse/jdt/internal/compiler/impl/ITypeRequestor
  5251. instanceKlass org/eclipse/jdt/internal/core/builder/ClasspathLocation
  5252. instanceKlass org/eclipse/jdt/core/IBuffer
  5253. instanceKlass org/eclipse/jdt/core/IBufferFactory
  5254. instanceKlass org/eclipse/jdt/internal/core/BufferManager
  5255. instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$8
  5256. instanceKlass @bci org/eclipse/jdt/internal/core/JavaModelManager <clinit> ()V 139 <appendix> argL0 ; # org/eclipse/jdt/internal/core/JavaModelManager$$Lambda+0x000002032b282218
  5257. instanceKlass @bci org/eclipse/jdt/internal/core/search/indexing/IndexNamesRegistry <init> (Ljava/io/File;Lorg/eclipse/core/runtime/IPath;)V 24 <appendix> member <vmtarget> ; # org/eclipse/jdt/internal/core/search/indexing/IndexNamesRegistry$$Lambda+0x000002032b282000
  5258. instanceKlass org/eclipse/jdt/internal/core/search/indexing/IndexNamesRegistry
  5259. instanceKlass org/eclipse/jdt/internal/compiler/util/SimpleLookupTable
  5260. instanceKlass org/eclipse/jdt/internal/core/index/IndexLocation
  5261. instanceKlass org/eclipse/jdt/internal/compiler/parser/Parser
  5262. instanceKlass org/eclipse/jdt/internal/compiler/lookup/TypeIds
  5263. instanceKlass org/eclipse/jdt/internal/compiler/ast/OperatorIds
  5264. instanceKlass org/eclipse/jdt/internal/compiler/parser/ConflictedParser
  5265. instanceKlass org/eclipse/jdt/internal/compiler/parser/ParserBasicInformation
  5266. instanceKlass org/eclipse/jdt/internal/compiler/IProblemFactory
  5267. instanceKlass org/eclipse/jdt/internal/core/search/indexing/IndexRequest
  5268. instanceKlass org/eclipse/jdt/internal/core/search/processing/JobManager
  5269. instanceKlass org/eclipse/jdt/internal/core/search/indexing/IIndexConstants
  5270. instanceKlass @bci org/eclipse/jdt/internal/core/JavaModelManager <init> ()V 404 <appendix> argL0 ; # org/eclipse/jdt/internal/core/JavaModelManager$$Lambda+0x000002032b279a50
  5271. instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$3
  5272. instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$2
  5273. instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$EclipsePreferencesListener
  5274. instanceKlass org/eclipse/jdt/core/IElementChangedListener
  5275. instanceKlass @bci org/eclipse/core/internal/jobs/JobManager wakeUp (Lorg/eclipse/core/internal/jobs/InternalJob;J)V 23 <appendix> member <vmtarget> ; # org/eclipse/core/internal/jobs/JobManager$$Lambda+0x000002032b1b9798
  5276. instanceKlass org/eclipse/jdt/internal/core/DeltaProcessingState
  5277. instanceKlass org/eclipse/core/internal/dtree/DataTreeLookup
  5278. instanceKlass org/eclipse/jdt/internal/core/ExternalFoldersManager
  5279. instanceKlass org/eclipse/jdt/internal/core/util/Util$Comparer
  5280. instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$CompilationParticipants
  5281. instanceKlass org/eclipse/jdt/internal/core/BatchInitializationMonitor
  5282. instanceKlass org/eclipse/jdt/internal/core/JavaModelOperation
  5283. instanceKlass org/eclipse/jdt/internal/core/JavaElementInfo
  5284. instanceKlass org/eclipse/jdt/internal/codeassist/ISelectionRequestor
  5285. instanceKlass org/eclipse/jdt/core/IJavaModelStatus
  5286. instanceKlass org/eclipse/jdt/internal/compiler/env/IElementInfo
  5287. instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$1
  5288. instanceKlass org/eclipse/jdt/internal/compiler/util/Util$Displayable
  5289. instanceKlass org/eclipse/jdt/core/IClassFile
  5290. instanceKlass org/eclipse/jdt/core/IPackageFragment
  5291. instanceKlass org/eclipse/jdt/internal/core/search/processing/IJob
  5292. instanceKlass org/eclipse/jdt/core/IAccessRule
  5293. instanceKlass org/eclipse/jdt/internal/core/util/LRUCache
  5294. instanceKlass org/eclipse/jdt/internal/core/search/IRestrictedAccessTypeRequestor
  5295. instanceKlass org/eclipse/jdt/core/IPackageFragmentRoot
  5296. instanceKlass org/eclipse/jdt/core/IJavaElementDelta
  5297. instanceKlass org/eclipse/jdt/core/IBufferChangedListener
  5298. instanceKlass org/eclipse/jdt/internal/compiler/util/SuffixConstants
  5299. instanceKlass org/eclipse/jdt/internal/compiler/env/ICompilationUnit
  5300. instanceKlass org/eclipse/jdt/internal/compiler/env/IDependent
  5301. instanceKlass org/eclipse/jdt/core/ICompilationUnit
  5302. instanceKlass org/eclipse/jdt/core/ISourceManipulation
  5303. instanceKlass org/eclipse/jdt/core/ITypeRoot
  5304. instanceKlass org/eclipse/jdt/core/ICodeAssist
  5305. instanceKlass org/eclipse/jdt/core/ISourceReference
  5306. instanceKlass org/lombokweb/asm/Handle
  5307. instanceKlass org/eclipse/jdt/core/IJavaProject
  5308. instanceKlass org/eclipse/jdt/core/IClasspathContainer
  5309. instanceKlass org/eclipse/jdt/internal/core/JavaModelManager
  5310. instanceKlass @bci java/util/Comparator comparingDouble (Ljava/util/function/ToDoubleFunction;)Ljava/util/Comparator; 6 <appendix> member <vmtarget> ; # java/util/Comparator$$Lambda+0x000002032b1cc3d8
  5311. instanceKlass @bci org/eclipse/jdt/core/JavaCore <clinit> ()V 200 <appendix> argL0 ; # org/eclipse/jdt/core/JavaCore$$Lambda+0x000002032b26f838
  5312. instanceKlass @cpi org/eclipse/jdt/core/JavaCore 2468 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b271400
  5313. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b271000
  5314. instanceKlass java/util/function/ToDoubleFunction
  5315. instanceKlass org/eclipse/jdt/core/compiler/CharOperation
  5316. instanceKlass org/eclipse/jdt/internal/compiler/impl/CompilerOptions
  5317. instanceKlass org/eclipse/jdt/internal/compiler/env/IModule
  5318. instanceKlass org/eclipse/jdt/core/IClasspathAttribute
  5319. instanceKlass org/eclipse/jdt/core/IWorkingCopy
  5320. instanceKlass org/eclipse/jdt/core/search/TypeNameRequestor
  5321. instanceKlass org/eclipse/jdt/core/IClasspathEntry
  5322. instanceKlass org/eclipse/jdt/core/IRegion
  5323. instanceKlass org/eclipse/jdt/core/IJavaModel
  5324. instanceKlass org/eclipse/jdt/core/IParent
  5325. instanceKlass org/eclipse/jdt/core/IOpenable
  5326. instanceKlass org/eclipse/jdt/core/IJavaElement
  5327. instanceKlass org/eclipse/core/resources/IWorkspaceRunnable
  5328. instanceKlass org/eclipse/jdt/core/WorkingCopyOwner
  5329. instanceKlass org/eclipse/core/internal/events/NodeIDMap
  5330. instanceKlass org/eclipse/core/internal/events/ResourceDeltaInfo
  5331. instanceKlass org/eclipse/text/templates/ContextTypeRegistry
  5332. instanceKlass org/eclipse/core/internal/dtree/NodeComparison
  5333. instanceKlass org/eclipse/core/internal/events/ResourceComparator
  5334. instanceKlass org/eclipse/core/internal/events/ResourceDeltaFactory
  5335. instanceKlass org/eclipse/core/resources/IMarkerDelta
  5336. instanceKlass org/eclipse/jdt/ls/core/internal/preferences/PreferenceManager
  5337. instanceKlass org/eclipse/core/runtime/SubMonitor$RootInfo
  5338. instanceKlass org/eclipse/core/resources/team/ResourceRuleFactory
  5339. instanceKlass org/eclipse/m2e/core/internal/repository/IRepositoryIndexer
  5340. instanceKlass org/apache/maven/wagon/authentication/AuthenticationInfo
  5341. instanceKlass org/eclipse/m2e/core/internal/repository/IRepositoryDiscoverer
  5342. instanceKlass org/eclipse/m2e/core/internal/repository/RepositoryInfo
  5343. instanceKlass org/eclipse/m2e/core/repository/IRepository
  5344. instanceKlass org/eclipse/m2e/core/internal/repository/RepositoryRegistry
  5345. instanceKlass org/eclipse/m2e/core/repository/IRepositoryRegistry
  5346. instanceKlass org/eclipse/m2e/core/internal/project/WorkspaceStateWriter
  5347. instanceKlass @bci org/eclipse/core/internal/runtime/AdapterManager registerFactory (Lorg/eclipse/core/runtime/IAdapterFactory;Ljava/lang/String;)V 5 <appendix> argL0 ; # org/eclipse/core/internal/runtime/AdapterManager$$Lambda+0x000002032b1a1550
  5348. instanceKlass org/eclipse/m2e/core/project/ResolverConfiguration
  5349. instanceKlass org/eclipse/m2e/core/project/configurator/ILifecycleMapping
  5350. instanceKlass org/eclipse/m2e/core/project/IProjectCreationListener
  5351. instanceKlass org/eclipse/m2e/core/project/ProjectImportConfiguration
  5352. instanceKlass org/eclipse/m2e/core/project/MavenProjectInfo
  5353. instanceKlass org/eclipse/aether/graph/DependencyNode
  5354. instanceKlass ch/qos/logback/classic/spi/EventArgUtil
  5355. instanceKlass ch/qos/logback/classic/spi/IThrowableProxy
  5356. instanceKlass ch/qos/logback/classic/spi/LoggingEvent
  5357. instanceKlass org/eclipse/m2e/core/internal/project/registry/MavenProjectManager
  5358. instanceKlass org/eclipse/m2e/core/project/IMavenProjectRegistry
  5359. instanceKlass org/eclipse/aether/graph/DependencyVisitor
  5360. instanceKlass org/eclipse/aether/graph/DependencyFilter
  5361. instanceKlass org/eclipse/aether/collection/DependencyGraphTransformer
  5362. instanceKlass org/eclipse/aether/util/graph/transformer/ConflictResolver$VersionSelector
  5363. instanceKlass org/eclipse/aether/util/graph/transformer/ConflictResolver$ScopeSelector
  5364. instanceKlass org/eclipse/aether/util/graph/transformer/ConflictResolver$OptionalitySelector
  5365. instanceKlass org/eclipse/aether/util/graph/transformer/ConflictResolver$ScopeDeriver
  5366. instanceKlass javax/xml/transform/Source
  5367. instanceKlass javax/xml/transform/Result
  5368. instanceKlass org/w3c/dom/Node
  5369. instanceKlass org/eclipse/m2e/core/embedder/MavenModelManager
  5370. instanceKlass org/eclipse/m2e/core/project/configurator/ILifecycleMappingConfiguration
  5371. instanceKlass org/eclipse/m2e/core/internal/project/ProjectConfigurationManager
  5372. instanceKlass org/eclipse/m2e/core/project/IProjectConfigurationManager
  5373. instanceKlass org/eclipse/core/runtime/jobs/IJobFunction
  5374. instanceKlass org/eclipse/m2e/core/project/MavenUpdateRequest
  5375. instanceKlass org/apache/maven/execution/MavenExecutionRequest
  5376. instanceKlass org/eclipse/m2e/core/project/IMavenProjectChangedListener
  5377. instanceKlass org/apache/maven/project/ProjectBuildingResult
  5378. instanceKlass org/eclipse/core/runtime/SubMonitor
  5379. instanceKlass org/eclipse/m2e/core/internal/project/registry/DependencyResolutionContext
  5380. instanceKlass org/eclipse/m2e/core/internal/project/registry/MavenProjectFacade
  5381. instanceKlass com/google/common/cache/LocalCache$AbstractReferenceEntry
  5382. instanceKlass java/util/concurrent/atomic/AtomicReferenceArray
  5383. instanceKlass com/google/common/cache/LocalCache$LoadingValueReference
  5384. instanceKlass com/google/common/cache/Weigher
  5385. instanceKlass com/google/common/base/Predicate
  5386. instanceKlass com/google/common/base/Equivalence
  5387. instanceKlass com/google/common/base/MoreObjects
  5388. instanceKlass com/google/common/cache/LocalCache$1
  5389. instanceKlass com/google/common/cache/ReferenceEntry
  5390. instanceKlass com/google/common/cache/LocalCache$ValueReference
  5391. instanceKlass com/google/common/cache/LocalCache$LocalManualCache
  5392. instanceKlass com/google/common/cache/CacheLoader
  5393. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/MavenProjectCache <init> ()V 25 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/project/registry/MavenProjectCache$$Lambda+0x000002032b254200
  5394. instanceKlass org/eclipse/m2e/core/internal/project/registry/MavenProjectCache$CacheLine
  5395. instanceKlass @bci org/eclipse/m2e/core/internal/project/registry/MavenProjectCache <init> ()V 16 <appendix> member <vmtarget> ; # org/eclipse/m2e/core/internal/project/registry/MavenProjectCache$$Lambda+0x000002032b23fc60
  5396. instanceKlass com/google/common/cache/RemovalListener
  5397. instanceKlass com/google/common/cache/CacheBuilder$2
  5398. instanceKlass com/google/common/base/Preconditions
  5399. instanceKlass com/google/common/cache/CacheStats
  5400. instanceKlass com/google/common/base/Suppliers$SupplierOfInstance
  5401. instanceKlass com/google/common/base/Suppliers
  5402. instanceKlass com/google/common/cache/CacheBuilder$1
  5403. instanceKlass com/google/common/cache/AbstractCache$StatsCounter
  5404. instanceKlass com/google/common/base/Ticker
  5405. instanceKlass com/google/common/base/Supplier
  5406. instanceKlass com/google/common/cache/CacheBuilder
  5407. instanceKlass com/google/common/cache/LoadingCache
  5408. instanceKlass com/google/common/base/Function
  5409. instanceKlass com/google/common/cache/Cache
  5410. instanceKlass org/eclipse/m2e/core/internal/preferences/MavenPreferenceConstants
  5411. instanceKlass org/eclipse/m2e/core/internal/embedder/MavenExecutionContext
  5412. instanceKlass org/apache/maven/model/ModelBase
  5413. instanceKlass org/apache/maven/wagon/proxy/ProxyInfo
  5414. instanceKlass org/apache/maven/execution/MavenSession
  5415. instanceKlass org/apache/maven/project/ProjectBuildingRequest
  5416. instanceKlass org/eclipse/m2e/core/embedder/ILocalRepositoryListener
  5417. instanceKlass org/apache/maven/settings/TrackableBase
  5418. instanceKlass org/apache/maven/model/ConfigurationContainer
  5419. instanceKlass org/apache/maven/model/InputLocationTracker
  5420. instanceKlass org/apache/maven/plugin/MojoExecution
  5421. instanceKlass org/apache/maven/model/building/ModelProblemCollectorRequest
  5422. instanceKlass org/eclipse/m2e/core/internal/embedder/MavenImpl$MavenSettings
  5423. instanceKlass org/apache/maven/lifecycle/MavenExecutionPlan
  5424. instanceKlass org/eclipse/m2e/core/embedder/ICallable
  5425. instanceKlass org/apache/maven/artifact/Artifact
  5426. instanceKlass org/eclipse/m2e/core/embedder/ISettingsChangeListener
  5427. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b250400
  5428. instanceKlass @bci org/eclipse/m2e/core/embedder/ArtifactRef hashCode ()I 1 <appendix> argL1 argL1 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b250000
  5429. instanceKlass org/eclipse/sisu/inject/MildKeys
  5430. instanceKlass org/eclipse/sisu/inject/Weak
  5431. instanceKlass java/util/stream/Nodes$ArrayNode
  5432. instanceKlass @bci sun/util/locale/provider/LocaleProviderAdapter toLocaleArray (Ljava/util/Set;)[Ljava/util/Locale; 16 <appendix> argL0 ; # sun/util/locale/provider/LocaleProviderAdapter$$Lambda+0x800000069
  5433. instanceKlass @bci sun/util/locale/provider/LocaleProviderAdapter toLocaleArray (Ljava/util/Set;)[Ljava/util/Locale; 6 <appendix> argL0 ; # sun/util/locale/provider/LocaleProviderAdapter$$Lambda+0x800000068
  5434. instanceKlass @bci sun/util/cldr/CLDRLocaleProviderAdapter getCalendarDataProvider ()Ljava/util/spi/CalendarDataProvider; 8 <appendix> member <vmtarget> ; # sun/util/cldr/CLDRLocaleProviderAdapter$$Lambda+0x800000062
  5435. instanceKlass sun/util/locale/provider/CalendarDataUtility$CalendarWeekParameterGetter
  5436. instanceKlass sun/util/locale/provider/LocaleServiceProviderPool$LocalizedObjectGetter
  5437. instanceKlass sun/util/locale/provider/LocaleServiceProviderPool
  5438. instanceKlass java/util/Calendar$Builder
  5439. instanceKlass @bci sun/util/locale/provider/JRELocaleProviderAdapter getCalendarProvider ()Lsun/util/spi/CalendarProvider; 8 <appendix> member <vmtarget> ; # sun/util/locale/provider/JRELocaleProviderAdapter$$Lambda+0x800000063
  5440. instanceKlass com/google/inject/matcher/AbstractMatcher
  5441. instanceKlass com/google/inject/matcher/Matcher
  5442. instanceKlass com/google/inject/Module
  5443. instanceKlass com/google/inject/spi/TypeConverter
  5444. instanceKlass org/codehaus/plexus/component/configurator/converters/ParameterizedConfigurationConverter
  5445. instanceKlass org/codehaus/plexus/component/configurator/converters/AbstractConfigurationConverter
  5446. instanceKlass org/codehaus/plexus/component/configurator/converters/ConfigurationConverter
  5447. instanceKlass org/codehaus/plexus/component/configurator/converters/lookup/DefaultConverterLookup
  5448. instanceKlass org/eclipse/m2e/core/internal/markers/MavenProblemInfo
  5449. instanceKlass org/eclipse/m2e/core/internal/markers/SourceLocation
  5450. instanceKlass org/apache/maven/project/MavenProject
  5451. instanceKlass org/eclipse/aether/artifact/Artifact
  5452. instanceKlass org/eclipse/m2e/core/internal/markers/MavenMarkerManager
  5453. instanceKlass org/apache/maven/extension/internal/CoreExtensionEntry
  5454. instanceKlass org/eclipse/m2e/core/internal/embedder/MavenProperties
  5455. instanceKlass org/apache/felix/scr/impl/ComponentRegistry$2
  5456. instanceKlass @bci org/eclipse/core/internal/preferences/EclipsePreferences fireNodeEvent (Lorg/eclipse/core/runtime/preferences/IEclipsePreferences$NodeChangeEvent;Z)V 26 <adapter> ; # java/lang/invoke/LambdaForm$MH+0x000002032b246800
  5457. instanceKlass @bci org/eclipse/core/internal/preferences/EclipsePreferences fireNodeEvent (Lorg/eclipse/core/runtime/preferences/IEclipsePreferences$NodeChangeEvent;Z)V 26 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b246400
  5458. instanceKlass @bci org/eclipse/core/internal/preferences/EclipsePreferences fireNodeEvent (Lorg/eclipse/core/runtime/preferences/IEclipsePreferences$NodeChangeEvent;Z)V 26 <appendix> member <vmtarget> ; # org/eclipse/core/internal/preferences/EclipsePreferences$$Lambda+0x000002032b1b1190
  5459. instanceKlass @cpi org/eclipse/core/internal/preferences/EclipsePreferences 1057 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b246000
  5460. instanceKlass org/eclipse/m2e/core/internal/preferences/MavenConfigurationImpl$1
  5461. instanceKlass org/eclipse/core/runtime/preferences/IPreferenceFilter
  5462. instanceKlass org/apache/felix/scr/impl/ComponentRegistry$Entry
  5463. instanceKlass org/eclipse/osgi/internal/log/ExtendedLogEntryImpl
  5464. instanceKlass org/eclipse/equinox/log/ExtendedLogEntry
  5465. instanceKlass org/eclipse/osgi/internal/log/Arguments
  5466. instanceKlass java/lang/StackTraceElement$HashedModules
  5467. instanceKlass org/eclipse/m2e/core/internal/embedder/EclipseLogger
  5468. instanceKlass org/codehaus/plexus/logging/Logger
  5469. instanceKlass org/codehaus/plexus/logging/AbstractLoggerManager
  5470. instanceKlass org/codehaus/plexus/logging/LoggerManager
  5471. instanceKlass org/eclipse/m2e/core/internal/embedder/IMavenPlexusContainer
  5472. instanceKlass org/codehaus/plexus/classworlds/ClassWorldListener
  5473. instanceKlass org/codehaus/plexus/classworlds/ClassWorld
  5474. instanceKlass org/codehaus/plexus/PlexusContainer
  5475. instanceKlass org/apache/maven/plugin/version/PluginVersionRequest
  5476. instanceKlass org/codehaus/plexus/component/configurator/expression/ExpressionEvaluator
  5477. instanceKlass org/codehaus/plexus/configuration/PlexusConfiguration
  5478. instanceKlass org/apache/maven/model/building/ModelBuildingRequest
  5479. instanceKlass org/apache/maven/settings/crypto/SettingsDecryptionRequest
  5480. instanceKlass org/apache/maven/execution/MavenExecutionResult
  5481. instanceKlass org/apache/maven/settings/building/SettingsBuildingRequest
  5482. instanceKlass org/eclipse/aether/RepositorySystemSession
  5483. instanceKlass org/codehaus/plexus/component/configurator/converters/lookup/ConverterLookup
  5484. instanceKlass org/eclipse/m2e/core/internal/embedder/MavenImpl
  5485. instanceKlass org/eclipse/m2e/core/embedder/IMavenConfigurationChangeListener
  5486. instanceKlass org/eclipse/m2e/core/internal/preferences/MavenConfigurationImpl
  5487. instanceKlass org/eclipse/m2e/core/internal/project/registry/MavenProjectCache
  5488. instanceKlass org/eclipse/m2e/core/internal/project/registry/ProjectRegistryReader
  5489. instanceKlass org/eclipse/m2e/core/internal/embedder/PlexusContainerManager
  5490. instanceKlass org/eclipse/m2e/core/internal/markers/IMavenMarkerManager
  5491. instanceKlass org/eclipse/m2e/core/internal/project/registry/BasicProjectRegistry
  5492. instanceKlass org/eclipse/m2e/core/internal/project/registry/AbstractMavenDependencyResolver
  5493. instanceKlass org/eclipse/m2e/core/embedder/IMavenExecutionContext
  5494. instanceKlass org/eclipse/aether/repository/WorkspaceReader
  5495. instanceKlass org/apache/maven/artifact/repository/MavenArtifactRepository
  5496. instanceKlass org/apache/maven/artifact/repository/ArtifactRepository
  5497. instanceKlass org/eclipse/m2e/core/project/IProjectConfiguration
  5498. instanceKlass org/eclipse/m2e/core/internal/project/registry/IProjectRegistry
  5499. instanceKlass org/eclipse/m2e/core/internal/project/registry/Capability
  5500. instanceKlass org/eclipse/m2e/core/project/IMavenProjectFacade
  5501. instanceKlass org/eclipse/m2e/core/embedder/IMavenExecutableLocation
  5502. instanceKlass org/eclipse/m2e/core/embedder/IMaven
  5503. instanceKlass org/eclipse/m2e/core/embedder/IComponentLookup
  5504. instanceKlass org/eclipse/m2e/core/embedder/IMavenConfiguration
  5505. instanceKlass org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager
  5506. instanceKlass ch/qos/logback/classic/util/LoggerNameUtil
  5507. instanceKlass org/slf4j/helpers/Reporter
  5508. instanceKlass ch/qos/logback/core/util/CachingDateFormatter$CacheTuple
  5509. instanceKlass ch/qos/logback/core/util/CachingDateFormatter
  5510. instanceKlass ch/qos/logback/core/util/StatusPrinter2
  5511. instanceKlass ch/qos/logback/core/util/StatusPrinter
  5512. instanceKlass ch/qos/logback/core/status/StatusUtil
  5513. instanceKlass @bci ch/qos/logback/classic/util/ContextInitializer printDuration (JLch/qos/logback/classic/spi/Configurator;Lch/qos/logback/classic/spi/Configurator$ExecutionStatus;)V 31 <adapter> ; # java/lang/invoke/LambdaForm$MH+0x000002032b237400
  5514. instanceKlass @bci ch/qos/logback/classic/util/ContextInitializer printDuration (JLch/qos/logback/classic/spi/Configurator;Lch/qos/logback/classic/spi/Configurator$ExecutionStatus;)V 31 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b237000
  5515. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b236c00
  5516. instanceKlass @bci ch/qos/logback/classic/util/ContextInitializer printDuration (JLch/qos/logback/classic/spi/Configurator;Lch/qos/logback/classic/spi/Configurator$ExecutionStatus;)V 31 <appendix> form names 8 function resolvedHandle form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b236800
  5517. instanceKlass @bci ch/qos/logback/classic/util/ContextInitializer printDuration (JLch/qos/logback/classic/spi/Configurator;Lch/qos/logback/classic/spi/Configurator$ExecutionStatus;)V 31 <appendix> argL3 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b236400
  5518. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b236000
  5519. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b235c00
  5520. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b235800
  5521. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b235400
  5522. instanceKlass @bci ch/qos/logback/classic/util/ContextInitializer printDuration (JLch/qos/logback/classic/spi/Configurator;Lch/qos/logback/classic/spi/Configurator$ExecutionStatus;)V 31 <appendix> form names 12 function resolvedHandle form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b235000
  5523. instanceKlass @bci ch/qos/logback/classic/util/ContextInitializer printDuration (JLch/qos/logback/classic/spi/Configurator;Lch/qos/logback/classic/spi/Configurator$ExecutionStatus;)V 31 <appendix> argL1 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b234c00
  5524. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b234800
  5525. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b234400
  5526. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b234000
  5527. instanceKlass ch/qos/logback/core/Appender
  5528. instanceKlass ch/qos/logback/core/spi/FilterAttachable
  5529. instanceKlass ch/qos/logback/core/spi/ContextAwareBase
  5530. instanceKlass ch/qos/logback/core/status/StatusListener
  5531. instanceKlass ch/qos/logback/core/util/StatusListenerConfigHelper
  5532. instanceKlass ch/qos/logback/core/status/StatusBase
  5533. instanceKlass ch/qos/logback/core/util/EnvUtil
  5534. instanceKlass ch/qos/logback/classic/util/ClassicEnvUtil
  5535. instanceKlass ch/qos/logback/core/util/OptionHelper
  5536. instanceKlass ch/qos/logback/core/util/Loader
  5537. instanceKlass ch/qos/logback/classic/spi/Configurator
  5538. instanceKlass ch/qos/logback/core/spi/ContextAwareImpl
  5539. instanceKlass ch/qos/logback/classic/util/ContextInitializer$1
  5540. instanceKlass ch/qos/logback/core/spi/ContextAware
  5541. instanceKlass ch/qos/logback/classic/util/ContextInitializer
  5542. instanceKlass org/slf4j/MDC
  5543. instanceKlass ch/qos/logback/classic/util/LogbackMDCAdapter
  5544. instanceKlass ch/qos/logback/classic/Level
  5545. instanceKlass ch/qos/logback/classic/spi/ILoggingEvent
  5546. instanceKlass ch/qos/logback/core/spi/DeferredProcessingAware
  5547. instanceKlass org/slf4j/spi/LoggingEventBuilder
  5548. instanceKlass ch/qos/logback/classic/Logger
  5549. instanceKlass ch/qos/logback/core/spi/AppenderAttachable
  5550. instanceKlass org/slf4j/spi/LoggingEventAware
  5551. instanceKlass org/slf4j/spi/LocationAwareLogger
  5552. instanceKlass ch/qos/logback/classic/spi/LoggerContextVO
  5553. instanceKlass ch/qos/logback/core/spi/LogbackLock
  5554. instanceKlass ch/qos/logback/core/helpers/CyclicBuffer
  5555. instanceKlass ch/qos/logback/core/BasicStatusManager
  5556. instanceKlass ch/qos/logback/core/status/Status
  5557. instanceKlass ch/qos/logback/core/status/StatusManager
  5558. instanceKlass ch/qos/logback/core/ContextBase
  5559. instanceKlass ch/qos/logback/core/spi/LifeCycle
  5560. instanceKlass ch/qos/logback/core/Context
  5561. instanceKlass ch/qos/logback/core/spi/PropertyContainer
  5562. instanceKlass @cpi org/eclipse/m2e/core/internal/lifecyclemapping/LifecycleMappingFactory 1769 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b228000
  5563. instanceKlass org/apache/aries/spifly/Util$7
  5564. instanceKlass org/apache/aries/spifly/Util$5
  5565. instanceKlass org/apache/felix/resolver/ResolverImpl$DumbExecutor
  5566. instanceKlass org/slf4j/helpers/Util
  5567. instanceKlass org/slf4j/helpers/NOPMDCAdapter
  5568. instanceKlass org/slf4j/helpers/NOPLoggerFactory
  5569. instanceKlass org/slf4j/helpers/NOP_FallbackServiceProvider
  5570. instanceKlass org/slf4j/helpers/ThreadLocalMapOfStacks
  5571. instanceKlass org/objectweb/asm/tree/ParameterNode
  5572. instanceKlass org/slf4j/helpers/BasicMDCAdapter
  5573. instanceKlass org/slf4j/Marker
  5574. instanceKlass org/slf4j/helpers/BasicMarkerFactory
  5575. instanceKlass org/slf4j/Logger
  5576. instanceKlass org/slf4j/helpers/SubstituteLoggerFactory
  5577. instanceKlass org/slf4j/ILoggerFactory
  5578. instanceKlass org/slf4j/spi/MDCAdapter
  5579. instanceKlass org/slf4j/IMarkerFactory
  5580. instanceKlass org/slf4j/helpers/SubstituteServiceProvider
  5581. instanceKlass org/slf4j/event/LoggingEvent
  5582. instanceKlass org/slf4j/LoggerFactory
  5583. instanceKlass @bci org/eclipse/osgi/container/ModuleWiring lambda$1 (Lorg/eclipse/osgi/internal/container/NamespaceList$Builder;)V 26 <appendix> argL0 ; # org/eclipse/osgi/container/ModuleWiring$$Lambda+0x000002032b16fc58
  5584. instanceKlass java/util/function/UnaryOperator
  5585. instanceKlass @bci org/eclipse/osgi/container/ModuleWiring addDynamicImports (Lorg/eclipse/osgi/container/ModuleRevisionBuilder;)V 39 <appendix> member <vmtarget> ; # org/eclipse/osgi/container/ModuleWiring$$Lambda+0x000002032b16fa40
  5586. instanceKlass @bci org/eclipse/osgi/container/ModuleWiring addDynamicImports (Lorg/eclipse/osgi/container/ModuleRevisionBuilder;)V 7 <appendix> member <vmtarget> ; # org/eclipse/osgi/container/ModuleWiring$$Lambda+0x000002032b16f808
  5587. instanceKlass @bci sun/net/www/protocol/jrt/JavaRuntimeURLConnection <clinit> ()V 0 <appendix> argL0 ; # sun/net/www/protocol/jrt/JavaRuntimeURLConnection$$Lambda+0x000002032b1c9490
  5588. instanceKlass org/objectweb/asm/Handler
  5589. instanceKlass org/objectweb/asm/tree/TryCatchBlockNode
  5590. instanceKlass org/objectweb/asm/Handle
  5591. instanceKlass org/objectweb/asm/Edge
  5592. instanceKlass org/objectweb/asm/tree/LocalVariableNode
  5593. instanceKlass java/util/BitSet
  5594. instanceKlass org/objectweb/asm/tree/InsnList
  5595. instanceKlass org/objectweb/asm/tree/Util
  5596. instanceKlass org/objectweb/asm/tree/AbstractInsnNode
  5597. instanceKlass org/objectweb/asm/commons/Method
  5598. instanceKlass org/objectweb/asm/Label
  5599. instanceKlass org/objectweb/asm/Frame
  5600. instanceKlass org/objectweb/asm/Context
  5601. instanceKlass org/objectweb/asm/Attribute
  5602. instanceKlass org/objectweb/asm/Type
  5603. instanceKlass org/objectweb/asm/ByteVector
  5604. instanceKlass org/objectweb/asm/Symbol
  5605. instanceKlass org/objectweb/asm/SymbolTable
  5606. instanceKlass org/objectweb/asm/FieldVisitor
  5607. instanceKlass org/objectweb/asm/MethodVisitor
  5608. instanceKlass org/objectweb/asm/AnnotationVisitor
  5609. instanceKlass org/objectweb/asm/ModuleVisitor
  5610. instanceKlass org/objectweb/asm/RecordComponentVisitor
  5611. instanceKlass org/objectweb/asm/ClassReader
  5612. instanceKlass org/eclipse/m2e/core/internal/URLConnectionCaches
  5613. instanceKlass @bci org/eclipse/m2e/core/internal/MavenPluginActivator start (Lorg/osgi/framework/BundleContext;)V 31 <adapter> ; # java/lang/invoke/LambdaForm$MH+0x000002032b216800
  5614. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b216400
  5615. instanceKlass @bci org/eclipse/m2e/core/internal/MavenPluginActivator start (Lorg/osgi/framework/BundleContext;)V 31 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b216000
  5616. instanceKlass @bci org/eclipse/m2e/core/internal/MavenPluginActivator start (Lorg/osgi/framework/BundleContext;)V 31 <appendix> form names 5 function resolvedHandle form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b215c00
  5617. instanceKlass @bci org/eclipse/m2e/core/internal/MavenPluginActivator start (Lorg/osgi/framework/BundleContext;)V 31 <appendix> argL3 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b215800
  5618. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b215400
  5619. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b215000
  5620. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b214c00
  5621. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b214800
  5622. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b214400
  5623. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b214000
  5624. instanceKlass @bci org/eclipse/m2e/core/internal/MavenPluginActivator start (Lorg/osgi/framework/BundleContext;)V 31 <appendix> form names 9 function resolvedHandle form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b213c00
  5625. instanceKlass @bci org/eclipse/m2e/core/internal/MavenPluginActivator start (Lorg/osgi/framework/BundleContext;)V 31 <appendix> argL1 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b213800
  5626. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b213400
  5627. instanceKlass @bci org/eclipse/m2e/core/internal/MavenPluginActivator start (Lorg/osgi/framework/BundleContext;)V 31 <appendix> argL1 argL0 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b213000
  5628. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b212c00
  5629. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b212800
  5630. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b212400
  5631. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b212000
  5632. instanceKlass @bci org/eclipse/m2e/core/internal/MavenPluginActivator <init> ()V 16 <appendix> argL0 ; # org/eclipse/m2e/core/internal/MavenPluginActivator$$Lambda+0x000002032b211c18
  5633. instanceKlass org/eclipse/m2e/core/internal/jobs/IBackgroundProcessingQueue
  5634. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b210c00
  5635. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b210800
  5636. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b210400
  5637. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b210000
  5638. instanceKlass @cpi org/eclipse/m2e/jdt/internal/DefaultClasspathManagerDelegate 407 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b20b400
  5639. instanceKlass org/eclipse/core/resources/IResourceChangeEvent
  5640. instanceKlass java/util/concurrent/atomic/Striped64$1
  5641. instanceKlass @bci org/apache/felix/scr/impl/manager/ComponentContextImpl createNewFieldHandlerMap ()Ljava/util/Map; 4 <appendix> argL0 ; # org/apache/felix/scr/impl/manager/ComponentContextImpl$$Lambda+0x000002032b17f0b8
  5642. instanceKlass java/util/concurrent/ConcurrentSkipListMap$Node
  5643. instanceKlass java/util/concurrent/ConcurrentSkipListMap$Index
  5644. instanceKlass java/util/concurrent/ConcurrentNavigableMap
  5645. instanceKlass @bci org/eclipse/core/internal/runtime/InternalPlatform getLog (Lorg/osgi/framework/Bundle;)Lorg/eclipse/core/runtime/ILog; 13 <appendix> member <vmtarget> ; # org/eclipse/core/internal/runtime/InternalPlatform$$Lambda+0x000002032b1a6498
  5646. instanceKlass org/eclipse/core/internal/runtime/Log
  5647. instanceKlass org/eclipse/core/internal/preferences/BundleStateScope
  5648. instanceKlass org/apache/felix/scr/impl/inject/field/FieldHandler$Resolved
  5649. instanceKlass org/apache/felix/scr/impl/inject/field/FieldUtils$FieldSearchResult
  5650. instanceKlass org/apache/felix/scr/impl/inject/field/FieldUtils$1
  5651. instanceKlass org/apache/felix/scr/impl/inject/field/FieldUtils
  5652. instanceKlass org/apache/felix/scr/impl/inject/field/FieldHandler$1
  5653. instanceKlass org/apache/felix/scr/impl/inject/field/FieldHandler$ReferenceMethodImpl
  5654. instanceKlass org/apache/felix/scr/impl/inject/field/FieldHandler$NotResolved
  5655. instanceKlass org/apache/felix/scr/impl/inject/field/FieldHandler$State
  5656. instanceKlass org/apache/felix/scr/impl/inject/InitReferenceMethod
  5657. instanceKlass org/apache/felix/scr/impl/inject/field/FieldHandler
  5658. instanceKlass org/apache/felix/scr/impl/inject/field/FieldMethods
  5659. instanceKlass org/eclipse/core/internal/resources/CheckMissingNaturesListener
  5660. instanceKlass org/eclipse/core/internal/resources/ResourceChangeListenerRegistrar
  5661. instanceKlass org/eclipse/core/internal/resources/Rules
  5662. instanceKlass @bci org/eclipse/core/internal/jobs/JobManager startJob (Lorg/eclipse/core/internal/jobs/Worker;)Lorg/eclipse/core/runtime/jobs/Job; 45 <appendix> member <vmtarget> ; # org/eclipse/core/internal/jobs/JobManager$$Lambda+0x000002032b1b9370
  5663. instanceKlass @cpi org/eclipse/core/internal/jobs/JobManager 1512 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b20b000
  5664. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/TypeSystem$HashedParameterizedTypes$PTBKey <init> (Lorg/eclipse/jdt/internal/compiler/lookup/TypeSystem$HashedParameterizedTypes;Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding;[Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding;Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding;Lorg/eclipse/jdt/internal/compiler/lookup/LookupEnvironment;)V 118 <adapter> ; # java/lang/invoke/LambdaForm$MH+0x000002032b20ac00
  5665. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b20a800
  5666. instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/TypeSystem$HashedParameterizedTypes$PTBKey <init> (Lorg/eclipse/jdt/internal/compiler/lookup/TypeSystem$HashedParameterizedTypes;Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding;[Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding;Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding;Lorg/eclipse/jdt/internal/compiler/lookup/LookupEnvironment;)V 118 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b20a400
  5667. instanceKlass @bci org/eclipse/core/internal/jobs/JobManager endJob (Lorg/eclipse/core/internal/jobs/InternalJob;Lorg/eclipse/core/runtime/IStatus;ZZ)V 14 <appendix> member <vmtarget> ; # org/eclipse/core/internal/jobs/JobManager$$Lambda+0x000002032b1b9138
  5668. instanceKlass @cpi org/eclipse/core/internal/jobs/JobManager 1468 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b20a000
  5669. instanceKlass @bci org/eclipse/core/internal/resources/AliasManager$LocationMap <init> (Lorg/eclipse/core/internal/resources/AliasManager;)V 14 <appendix> argL0 ; # org/eclipse/core/internal/resources/AliasManager$LocationMap$$Lambda+0x000002032b20e358
  5670. instanceKlass org/eclipse/core/filesystem/IFileStore
  5671. instanceKlass org/eclipse/core/internal/resources/AliasManager$LocationMap
  5672. instanceKlass org/eclipse/core/internal/resources/AliasManager
  5673. instanceKlass org/eclipse/core/resources/refresh/IRefreshMonitor
  5674. instanceKlass org/eclipse/core/internal/refresh/MonitorManager
  5675. instanceKlass org/eclipse/core/resources/IResourceDeltaVisitor
  5676. instanceKlass org/eclipse/core/resources/IPathVariableChangeListener
  5677. instanceKlass org/eclipse/core/internal/refresh/RefreshManager
  5678. instanceKlass org/eclipse/core/resources/refresh/IRefreshResult
  5679. instanceKlass @bci org/eclipse/core/internal/resources/ContentDescriptionManager getCurrentPlatformState ()Ljava/lang/String; 39 <appendix> argL0 ; # org/eclipse/core/internal/resources/ContentDescriptionManager$$Lambda+0x000002032b20c830
  5680. instanceKlass org/eclipse/core/internal/resources/ProjectContentTypes
  5681. instanceKlass org/eclipse/core/internal/utils/Cache
  5682. instanceKlass org/eclipse/core/internal/resources/ContentDescriptionManager
  5683. instanceKlass @bci org/eclipse/core/internal/resources/CharsetManager initPreferenceChangeListener ()V 2 <appendix> member <vmtarget> ; # org/eclipse/core/internal/resources/CharsetManager$$Lambda+0x000002032b2058d0
  5684. instanceKlass @bci org/eclipse/jdt/internal/compiler/ast/ReferenceExpression resolveType (Lorg/eclipse/jdt/internal/compiler/lookup/BlockScope;)Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding; 650 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b209400
  5685. instanceKlass @bci org/eclipse/jdt/internal/compiler/ast/ReferenceExpression resolveType (Lorg/eclipse/jdt/internal/compiler/lookup/BlockScope;)Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding; 650 <appendix> argL3 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b209000
  5686. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b208c00
  5687. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b208800
  5688. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b208400
  5689. instanceKlass @bci org/eclipse/core/internal/jobs/JobManager now ()J 5 <appendix> member <vmtarget> ; # org/eclipse/core/internal/jobs/JobManager$$Lambda+0x000002032b1b8f00
  5690. instanceKlass java/util/function/LongUnaryOperator
  5691. instanceKlass org/eclipse/core/internal/jobs/JobChangeEvent
  5692. instanceKlass @bci org/eclipse/core/internal/jobs/JobManager schedule (Lorg/eclipse/core/internal/jobs/InternalJob;J)V 5 <adapter> ; # java/lang/invoke/LambdaForm$MH+0x000002032b208000
  5693. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b204c00
  5694. instanceKlass @bci org/eclipse/core/internal/jobs/JobManager schedule (Lorg/eclipse/core/internal/jobs/InternalJob;J)V 5 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b204800
  5695. instanceKlass @bci org/eclipse/core/internal/jobs/JobManager schedule (Lorg/eclipse/core/internal/jobs/InternalJob;J)V 5 <appendix> member <vmtarget> ; # org/eclipse/core/internal/jobs/JobManager$$Lambda+0x000002032b1b8a70
  5696. instanceKlass @cpi org/eclipse/core/internal/jobs/JobManager 1485 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b204400
  5697. instanceKlass org/eclipse/core/internal/resources/CharsetDeltaJob$ICharsetListenerFilter
  5698. instanceKlass @bci org/osgi/framework/FrameworkUtil lambda$4 (Ljava/lang/Class;)Lorg/osgi/framework/Bundle; 29 <appendix> argL0 ; # org/osgi/framework/FrameworkUtil$$Lambda+0x000002032b16f5d8
  5699. instanceKlass @bci org/osgi/framework/FrameworkUtil lambda$4 (Ljava/lang/Class;)Lorg/osgi/framework/Bundle; 19 <appendix> argL0 ; # org/osgi/framework/FrameworkUtil$$Lambda+0x000002032b16f398
  5700. instanceKlass @bci org/osgi/framework/FrameworkUtil lambda$4 (Ljava/lang/Class;)Lorg/osgi/framework/Bundle; 9 <appendix> member <vmtarget> ; # org/osgi/framework/FrameworkUtil$$Lambda+0x000002032b16f160
  5701. instanceKlass org/eclipse/core/runtime/PerformanceStats
  5702. instanceKlass org/eclipse/core/internal/events/ResourceStats
  5703. instanceKlass org/eclipse/core/internal/events/ResourceChangeListenerList$ListenerEntry
  5704. instanceKlass org/eclipse/core/internal/resources/CharsetManager$ResourceChangeListener
  5705. instanceKlass org/eclipse/core/resources/IResourceChangeListener
  5706. instanceKlass org/eclipse/core/internal/resources/CharsetManager
  5707. instanceKlass org/eclipse/core/internal/localstore/Bucket$Entry
  5708. instanceKlass org/eclipse/core/internal/localstore/BucketTree
  5709. instanceKlass org/eclipse/core/internal/localstore/Bucket$Visitor
  5710. instanceKlass org/eclipse/core/internal/localstore/Bucket
  5711. instanceKlass org/eclipse/core/internal/properties/PropertyManager2
  5712. instanceKlass org/eclipse/core/resources/IFileState
  5713. instanceKlass org/eclipse/core/internal/watson/ElementTree$ChildIDsCache
  5714. instanceKlass @bci org/eclipse/core/internal/resources/SaveManager initSnap (Lorg/eclipse/core/runtime/IProgressMonitor;)V 67 <appendix> argL0 ; # org/eclipse/core/internal/resources/SaveManager$$Lambda+0x000002032b2022a0
  5715. instanceKlass java/io/FilenameFilter
  5716. instanceKlass @bci org/eclipse/jdt/ls/core/internal/commands/ProjectCommand getClasspathsFromJavaProject (Lorg/eclipse/jdt/core/IJavaProject;Lorg/eclipse/jdt/ls/core/internal/commands/ProjectCommand$ClasspathOptions;)Lorg/eclipse/jdt/ls/core/internal/commands/ProjectCommand$ClasspathResult; 141 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b204000
  5717. instanceKlass @bci org/eclipse/core/internal/jobs/JobManager cancel (Lorg/eclipse/core/internal/jobs/InternalJob;)Z 15 <appendix> member <vmtarget> ; # org/eclipse/core/internal/jobs/JobManager$$Lambda+0x000002032b1b8838
  5718. instanceKlass org/eclipse/core/resources/ISaveContext
  5719. instanceKlass org/eclipse/core/resources/ISavedState
  5720. instanceKlass org/eclipse/core/internal/resources/SaveManager
  5721. instanceKlass org/eclipse/core/internal/watson/IElementInfoFlattener
  5722. instanceKlass org/eclipse/core/internal/resources/SyncInfoWriter
  5723. instanceKlass org/eclipse/core/internal/resources/Synchronizer
  5724. instanceKlass org/eclipse/core/internal/resources/MarkerWriter
  5725. instanceKlass org/eclipse/core/internal/resources/MarkerDeltaManager
  5726. instanceKlass org/eclipse/core/internal/resources/MarkerTypeDefinitionCache$MarkerTypeDefinition
  5727. instanceKlass org/eclipse/core/internal/resources/MarkerTypeDefinitionCache
  5728. instanceKlass org/eclipse/core/internal/resources/MarkerInfo
  5729. instanceKlass org/eclipse/core/internal/resources/IMarkerSetElement
  5730. instanceKlass org/eclipse/core/internal/resources/MarkerManager
  5731. instanceKlass @bci org/eclipse/core/internal/events/NotificationManager$NotifyJob <init> (Lorg/eclipse/core/internal/events/NotificationManager;)V 13 <appendix> argL0 ; # org/eclipse/core/internal/events/NotificationManager$NotifyJob$$Lambda+0x000002032b1be900
  5732. instanceKlass org/eclipse/core/internal/events/ResourceChangeListenerList
  5733. instanceKlass org/eclipse/core/internal/events/NotificationManager
  5734. instanceKlass java/util/stream/SortedOps
  5735. instanceKlass @bci org/eclipse/core/internal/runtime/InternalPlatform getBundles0 (Ljava/lang/String;Ljava/lang/String;)Ljava/util/stream/Stream; 90 <appendix> argL0 ; # org/eclipse/core/internal/runtime/InternalPlatform$$Lambda+0x000002032b1a5cf8
  5736. instanceKlass @bci org/eclipse/core/internal/runtime/InternalPlatform getBundles0 (Ljava/lang/String;Ljava/lang/String;)Ljava/util/stream/Stream; 80 <appendix> argL0 ; # org/eclipse/core/internal/runtime/InternalPlatform$$Lambda+0x000002032b1a5ac8
  5737. instanceKlass org/eclipse/core/internal/events/BuildManager$DeltaCache
  5738. instanceKlass org/eclipse/core/resources/ICommand
  5739. instanceKlass org/eclipse/core/resources/IResourceDelta
  5740. instanceKlass org/eclipse/core/internal/events/InternalBuilder
  5741. instanceKlass org/eclipse/core/resources/IBuildContext
  5742. instanceKlass org/eclipse/core/internal/events/BuildManager
  5743. instanceKlass org/eclipse/core/internal/resources/FilterTypeManager$1
  5744. instanceKlass org/eclipse/core/internal/resources/FilterDescriptor
  5745. instanceKlass org/eclipse/core/resources/IFilterMatcherDescriptor
  5746. instanceKlass org/eclipse/core/internal/resources/FilterTypeManager
  5747. instanceKlass org/eclipse/core/resources/IProjectNatureDescriptor
  5748. instanceKlass org/eclipse/core/internal/resources/NatureManager
  5749. instanceKlass org/eclipse/core/internal/events/ILifecycleListener
  5750. instanceKlass org/eclipse/core/internal/resources/PathVariableManager
  5751. instanceKlass @bci org/eclipse/core/internal/resources/WorkspaceRoot getProject (Ljava/lang/String;)Lorg/eclipse/core/resources/IProject; 95 <appendix> member <vmtarget> ; # org/eclipse/core/internal/resources/WorkspaceRoot$$Lambda+0x000002032b1b6eb8
  5752. instanceKlass java/text/AttributedCharacterIterator$Attribute
  5753. instanceKlass java/text/FieldPosition$Delegate
  5754. instanceKlass java/text/Format$FieldDelegate
  5755. instanceKlass java/text/DigitList
  5756. instanceKlass @bci sun/util/locale/provider/JRELocaleProviderAdapter getNumberFormatProvider ()Ljava/text/spi/NumberFormatProvider; 8 <appendix> member <vmtarget> ; # sun/util/locale/provider/JRELocaleProviderAdapter$$Lambda+0x800000067
  5757. instanceKlass java/text/FieldPosition
  5758. instanceKlass java/text/Format
  5759. instanceKlass @bci org/eclipse/core/internal/localstore/FileSystemResourceManager <init> (Lorg/eclipse/core/internal/resources/Workspace;)V 6 <appendix> member <vmtarget> ; # org/eclipse/core/internal/localstore/FileSystemResourceManager$$Lambda+0x000002032b1b5ae8
  5760. instanceKlass org/eclipse/core/internal/localstore/RefreshLocalVisitor
  5761. instanceKlass org/eclipse/core/internal/localstore/ILocalStoreConstants
  5762. instanceKlass org/eclipse/core/internal/localstore/IHistoryStore
  5763. instanceKlass org/eclipse/core/internal/localstore/IUnifiedTreeVisitor
  5764. instanceKlass org/eclipse/core/internal/localstore/FileSystemResourceManager
  5765. instanceKlass org/eclipse/core/runtime/jobs/MultiRule
  5766. instanceKlass org/eclipse/core/internal/jobs/OrderedLock
  5767. instanceKlass org/eclipse/core/internal/resources/WorkManager$NotifyRule
  5768. instanceKlass org/eclipse/core/internal/resources/WorkManager
  5769. instanceKlass org/eclipse/core/runtime/NullProgressMonitor
  5770. instanceKlass org/eclipse/core/runtime/preferences/IExportedPreferences
  5771. instanceKlass org/eclipse/core/runtime/Preferences$1
  5772. instanceKlass @bci org/eclipse/core/internal/preferences/EclipsePreferences firePreferenceEvent (Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)V 41 <appendix> member <vmtarget> ; # org/eclipse/core/internal/preferences/EclipsePreferences$$Lambda+0x000002032b1b0000
  5773. instanceKlass sun/management/Util
  5774. instanceKlass @bci java/util/stream/Collectors toList ()Ljava/util/stream/Collector; 14 <appendix> argL0 ; # java/util/stream/Collectors$$Lambda+0x000002032b1c5418
  5775. instanceKlass @bci java/util/stream/Collectors toList ()Ljava/util/stream/Collector; 9 <appendix> argL0 ; # java/util/stream/Collectors$$Lambda+0x000002032b1c51f8
  5776. instanceKlass @bci java/util/stream/Collectors toList ()Ljava/util/stream/Collector; 4 <appendix> argL0 ; # java/util/stream/Collectors$$Lambda+0x000002032b1c4fe8
  5777. instanceKlass @bci sun/management/spi/PlatformMBeanProvider$PlatformComponent getMBeans (Ljava/lang/Class;)Ljava/util/List; 63 <appendix> member <vmtarget> ; # sun/management/spi/PlatformMBeanProvider$PlatformComponent$$Lambda+0x000002032b1c4db0
  5778. instanceKlass @bci sun/management/spi/PlatformMBeanProvider$PlatformComponent getMBeans (Ljava/lang/Class;)Ljava/util/List; 47 <appendix> member <vmtarget> ; # sun/management/spi/PlatformMBeanProvider$PlatformComponent$$Lambda+0x000002032b1c4b68
  5779. instanceKlass java/util/Collections$2
  5780. instanceKlass sun/management/RuntimeImpl
  5781. instanceKlass @bci java/lang/management/ManagementFactory$PlatformMBeanFinder findSingleton (Ljava/lang/Class;)Lsun/management/spi/PlatformMBeanProvider$PlatformComponent; 30 <appendix> member <vmtarget> ; # java/lang/management/ManagementFactory$PlatformMBeanFinder$$Lambda+0x000002032b1c4350
  5782. instanceKlass @bci java/lang/management/ManagementFactory$PlatformMBeanFinder findSingleton (Ljava/lang/Class;)Lsun/management/spi/PlatformMBeanProvider$PlatformComponent; 19 <appendix> member <vmtarget> ; # java/lang/management/ManagementFactory$PlatformMBeanFinder$$Lambda+0x000002032b1c4108
  5783. instanceKlass jdk/management/jfr/internal/FlightRecorderMXBeanProvider$SingleMBeanComponent
  5784. instanceKlass jdk/management/jfr/FlightRecorderMXBean
  5785. instanceKlass java/lang/management/DefaultPlatformMBeanProvider$11
  5786. instanceKlass java/lang/management/DefaultPlatformMBeanProvider$10
  5787. instanceKlass java/lang/management/DefaultPlatformMBeanProvider$9
  5788. instanceKlass sun/management/ManagementFactoryHelper$LoggingMXBeanAccess$1
  5789. instanceKlass sun/management/ManagementFactoryHelper$LoggingMXBeanAccess
  5790. instanceKlass java/lang/management/DefaultPlatformMBeanProvider$8
  5791. instanceKlass java/lang/management/DefaultPlatformMBeanProvider$7
  5792. instanceKlass java/lang/management/DefaultPlatformMBeanProvider$6
  5793. instanceKlass java/lang/management/DefaultPlatformMBeanProvider$5
  5794. instanceKlass java/lang/management/DefaultPlatformMBeanProvider$4
  5795. instanceKlass java/lang/management/DefaultPlatformMBeanProvider$3
  5796. instanceKlass java/lang/management/DefaultPlatformMBeanProvider$2
  5797. instanceKlass java/lang/management/DefaultPlatformMBeanProvider$1
  5798. instanceKlass com/sun/management/internal/PlatformMBeanProviderImpl$5
  5799. instanceKlass sun/management/VMManagementImpl
  5800. instanceKlass sun/management/VMManagement
  5801. instanceKlass sun/management/ManagementFactoryHelper
  5802. instanceKlass sun/management/NotificationEmitterSupport
  5803. instanceKlass javax/management/NotificationEmitter
  5804. instanceKlass javax/management/NotificationBroadcaster
  5805. instanceKlass com/sun/management/DiagnosticCommandMBean
  5806. instanceKlass javax/management/DynamicMBean
  5807. instanceKlass com/sun/management/internal/PlatformMBeanProviderImpl$4
  5808. instanceKlass com/sun/management/internal/PlatformMBeanProviderImpl$3
  5809. instanceKlass com/sun/management/internal/PlatformMBeanProviderImpl$2
  5810. instanceKlass com/sun/management/internal/PlatformMBeanProviderImpl$1
  5811. instanceKlass sun/management/spi/PlatformMBeanProvider$PlatformComponent
  5812. instanceKlass @bci com/sun/management/internal/PlatformMBeanProviderImpl <clinit> ()V 8 <appendix> argL0 ; # com/sun/management/internal/PlatformMBeanProviderImpl$$Lambda+0x000002032b0ff120
  5813. instanceKlass sun/management/spi/PlatformMBeanProvider
  5814. instanceKlass java/lang/management/ManagementFactory$PlatformMBeanFinder$1
  5815. instanceKlass java/lang/management/ManagementFactory$PlatformMBeanFinder
  5816. instanceKlass java/lang/management/RuntimeMXBean
  5817. instanceKlass java/lang/management/PlatformManagedObject
  5818. instanceKlass @bci java/lang/management/ManagementFactory loadNativeLib ()V 0 <appendix> argL0 ; # java/lang/management/ManagementFactory$$Lambda+0x000002032b0fe310
  5819. instanceKlass java/lang/management/ManagementFactory
  5820. instanceKlass org/eclipse/core/internal/preferences/PreferencesService$1
  5821. instanceKlass @bci org/eclipse/core/internal/preferences/PreferencesService getLookupOrder (Ljava/lang/String;Ljava/lang/String;)[Ljava/lang/String; 29 <appendix> argL0 ; # org/eclipse/core/internal/preferences/PreferencesService$$Lambda+0x000002032b175948
  5822. instanceKlass @bci org/eclipse/core/internal/resources/WorkspacePreferences <init> ()V 189 <appendix> member <vmtarget> ; # org/eclipse/core/internal/resources/WorkspacePreferences$$Lambda+0x000002032b19fd98
  5823. instanceKlass org/eclipse/core/runtime/Preferences$IPropertyChangeListener
  5824. instanceKlass org/eclipse/core/runtime/preferences/IEclipsePreferences$INodeChangeListener
  5825. instanceKlass org/eclipse/core/runtime/preferences/IEclipsePreferences$IPreferenceChangeListener
  5826. instanceKlass @bci org/eclipse/core/runtime/Plugin getPluginPreferences ()Lorg/eclipse/core/runtime/Preferences; 65 <appendix> member <vmtarget> ; # org/eclipse/core/runtime/Plugin$$Lambda+0x000002032b1a4f00
  5827. instanceKlass org/eclipse/core/runtime/Preferences
  5828. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b1af800
  5829. instanceKlass lombok/eclipse/agent/PatchFixesShadowLoaded
  5830. instanceKlass lombok/core/LombokNode
  5831. instanceKlass lombok/core/DiagnosticsReceiver
  5832. instanceKlass lombok/launch/PatchFixesHider$Util
  5833. instanceKlass lombok/launch/PatchFixesHider$LombokDeps
  5834. instanceKlass lombok/launch/ClassFileMetaData
  5835. instanceKlass @bci jdk/internal/reflect/MethodHandleObjectFieldAccessorImpl set (Ljava/lang/Object;Ljava/lang/Object;)V 41 <adapter> ; # java/lang/invoke/LambdaForm$MH+0x000002032b1ae400
  5836. instanceKlass lombok/launch/PackageShader
  5837. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b1ae000
  5838. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b1adc00
  5839. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b1ad800
  5840. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b1ad400
  5841. instanceKlass @bci org/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector resolveArtifactDescriptorAsync (Lorg/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector$Args;Lorg/eclipse/aether/internal/impl/collect/bf/DependencyProcessingContext;Lorg/eclipse/aether/internal/impl/collect/DependencyCollectorDelegate$Results;)V 21 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b1ad000
  5842. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b1ab400
  5843. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b1ab000
  5844. instanceKlass @cpi org/apache/maven/model/building/DefaultModelBuilder 1552 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b1aac00
  5845. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b1aa400
  5846. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b1aa000
  5847. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b1a9c00
  5848. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b1a9800
  5849. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b1a9400
  5850. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b1a9000
  5851. instanceKlass jdk/internal/vm/annotation/ForceInline
  5852. instanceKlass java/lang/constant/ClassDesc
  5853. instanceKlass java/io/ObjectOutput
  5854. instanceKlass java/io/ObjectStreamConstants
  5855. instanceKlass java/io/ObjectInput
  5856. instanceKlass java/lang/foreign/ValueLayout
  5857. instanceKlass java/lang/foreign/MemoryLayout
  5858. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b1a8c00
  5859. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b1a8800
  5860. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b1a8400
  5861. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b1a8000
  5862. instanceKlass org/eclipse/core/internal/runtime/Product
  5863. instanceKlass org/eclipse/core/runtime/IProduct
  5864. instanceKlass lombok/patcher/scripts/WrapReturnValuesScript$1
  5865. instanceKlass org/eclipse/equinox/internal/app/ProductExtensionBranding
  5866. instanceKlass org/eclipse/core/internal/runtime/FindSupport
  5867. instanceKlass org/eclipse/core/runtime/FileLocator
  5868. instanceKlass @bci org/eclipse/osgi/internal/framework/legacy/PackageAdminImpl getBundles (Ljava/lang/String;Ljava/lang/String;)[Lorg/osgi/framework/Bundle; 281 <appendix> argL0 ; # org/eclipse/osgi/internal/framework/legacy/PackageAdminImpl$$Lambda+0x000002032b16ef30
  5869. instanceKlass org/eclipse/core/runtime/SafeRunner
  5870. instanceKlass @bci org/eclipse/core/internal/preferences/PreferenceServiceRegistryHelper runInitializer (Lorg/eclipse/core/runtime/IConfigurationElement;)V 18 <appendix> member <vmtarget> ; # org/eclipse/core/internal/preferences/PreferenceServiceRegistryHelper$$Lambda+0x000002032b175138
  5871. instanceKlass org/eclipse/core/runtime/IExecutableExtensionFactory
  5872. instanceKlass org/eclipse/core/runtime/IExecutableExtension
  5873. instanceKlass org/eclipse/core/runtime/preferences/AbstractPreferenceInitializer
  5874. instanceKlass org/eclipse/core/internal/dtree/AbstractDataTree
  5875. instanceKlass org/eclipse/core/internal/dtree/AbstractDataTreeNode
  5876. instanceKlass org/eclipse/core/internal/watson/ElementTree
  5877. instanceKlass org/eclipse/core/internal/runtime/DataArea
  5878. instanceKlass org/eclipse/core/internal/runtime/MetaDataKeeper
  5879. instanceKlass org/eclipse/core/internal/resources/LocalMetaArea
  5880. instanceKlass org/eclipse/core/internal/resources/LocationValidator
  5881. instanceKlass org/eclipse/core/runtime/Platform$OS
  5882. instanceKlass org/eclipse/core/internal/utils/FileUtil
  5883. instanceKlass org/eclipse/core/internal/watson/IElementContentVisitor
  5884. instanceKlass org/eclipse/core/resources/IResourceFilterDescription
  5885. instanceKlass org/eclipse/core/resources/team/IResourceTree
  5886. instanceKlass org/eclipse/core/resources/IMarker
  5887. instanceKlass org/eclipse/core/resources/IResourceProxy
  5888. instanceKlass org/eclipse/core/runtime/Platform
  5889. instanceKlass org/eclipse/core/resources/team/FileModificationValidationContext
  5890. instanceKlass org/eclipse/core/internal/resources/InternalTeamHook
  5891. instanceKlass org/eclipse/core/internal/watson/IElementComparator
  5892. instanceKlass org/eclipse/core/internal/dtree/IComparator
  5893. instanceKlass org/eclipse/core/resources/IBuildConfiguration
  5894. instanceKlass org/eclipse/core/resources/ISynchronizer
  5895. instanceKlass org/eclipse/core/resources/IResourceRuleFactory
  5896. instanceKlass org/eclipse/core/internal/resources/ModelObject
  5897. instanceKlass org/eclipse/core/resources/IProject
  5898. instanceKlass org/eclipse/core/resources/team/IMoveDeleteHook
  5899. instanceKlass org/eclipse/core/resources/IPathVariableManager
  5900. instanceKlass org/eclipse/core/resources/IProjectDescription
  5901. instanceKlass org/eclipse/core/resources/IWorkspaceDescription
  5902. instanceKlass org/eclipse/core/internal/properties/IPropertyManager
  5903. instanceKlass org/eclipse/core/internal/resources/IManager
  5904. instanceKlass org/eclipse/core/resources/IFile
  5905. instanceKlass org/eclipse/core/resources/IEncodedStorage
  5906. instanceKlass org/eclipse/core/resources/IStorage
  5907. instanceKlass org/eclipse/core/resources/IFolder
  5908. instanceKlass org/eclipse/core/internal/watson/IPathRequestor
  5909. instanceKlass org/eclipse/core/internal/resources/ResourceInfo
  5910. instanceKlass org/eclipse/core/internal/utils/IStringPoolParticipant
  5911. instanceKlass org/eclipse/core/runtime/ICoreRunnable
  5912. instanceKlass org/eclipse/core/internal/watson/IElementTreeData
  5913. instanceKlass org/eclipse/core/internal/jobs/WorkerPool
  5914. instanceKlass org/eclipse/core/internal/jobs/JobQueue
  5915. instanceKlass org/eclipse/core/internal/jobs/DeadlockDetector
  5916. instanceKlass org/eclipse/core/internal/jobs/LockManager
  5917. instanceKlass org/eclipse/core/runtime/jobs/JobChangeAdapter
  5918. instanceKlass @bci org/eclipse/core/internal/jobs/JobManager <init> ()V 52 <appendix> member <vmtarget> ; # org/eclipse/core/internal/jobs/JobManager$$Lambda+0x000002032b192210
  5919. instanceKlass @bci org/eclipse/core/internal/jobs/JobListeners <init> ()V 50 <appendix> argL0 ; # org/eclipse/core/internal/jobs/JobListeners$$Lambda+0x000002032b192000
  5920. instanceKlass @bci org/eclipse/core/internal/jobs/JobListeners <init> ()V 41 <appendix> argL0 ; # org/eclipse/core/internal/jobs/JobListeners$$Lambda+0x000002032b190c78
  5921. instanceKlass @bci org/eclipse/core/internal/jobs/JobListeners <init> ()V 32 <appendix> argL0 ; # org/eclipse/core/internal/jobs/JobListeners$$Lambda+0x000002032b190a68
  5922. instanceKlass @bci org/eclipse/core/internal/jobs/JobListeners <init> ()V 23 <appendix> argL0 ; # org/eclipse/core/internal/jobs/JobListeners$$Lambda+0x000002032b190858
  5923. instanceKlass @bci org/eclipse/core/internal/jobs/JobListeners <init> ()V 14 <appendix> argL0 ; # org/eclipse/core/internal/jobs/JobListeners$$Lambda+0x000002032b190648
  5924. instanceKlass @bci org/eclipse/core/internal/jobs/JobListeners <init> ()V 5 <appendix> argL0 ; # org/eclipse/core/internal/jobs/JobListeners$$Lambda+0x000002032b190438
  5925. instanceKlass @cpi org/eclipse/core/internal/jobs/JobListeners 385 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b191000
  5926. instanceKlass org/eclipse/core/internal/jobs/JobListeners$IListenerDoit
  5927. instanceKlass org/eclipse/core/runtime/jobs/IJobChangeEvent
  5928. instanceKlass org/eclipse/core/internal/jobs/JobListeners
  5929. instanceKlass org/eclipse/core/internal/jobs/ImplicitJobs
  5930. instanceKlass org/eclipse/core/internal/jobs/JobManager$1
  5931. instanceKlass org/eclipse/core/runtime/ProgressMonitorWrapper
  5932. instanceKlass org/eclipse/core/runtime/IProgressMonitorWithBlocking
  5933. instanceKlass org/eclipse/core/internal/jobs/InternalJobGroup
  5934. instanceKlass org/eclipse/core/runtime/jobs/ILock
  5935. instanceKlass org/eclipse/core/runtime/jobs/IJobChangeListener
  5936. instanceKlass org/eclipse/core/internal/jobs/JobManager
  5937. instanceKlass org/eclipse/core/runtime/jobs/IJobManager
  5938. instanceKlass org/eclipse/core/internal/jobs/JobOSGiUtils
  5939. instanceKlass org/eclipse/core/internal/jobs/JobActivator
  5940. instanceKlass org/eclipse/core/resources/IWorkspaceRoot
  5941. instanceKlass org/eclipse/core/resources/IContainer
  5942. instanceKlass org/eclipse/core/resources/IResource
  5943. instanceKlass org/eclipse/core/runtime/jobs/ISchedulingRule
  5944. instanceKlass org/eclipse/core/runtime/PlatformObject
  5945. instanceKlass org/eclipse/core/internal/resources/ICoreConstants
  5946. instanceKlass @bci java/time/format/DateTimeFormatter <clinit> ()V 1075 <appendix> argL0 ; # java/time/format/DateTimeFormatter$$Lambda+0x80000000e
  5947. instanceKlass @bci java/time/format/DateTimeFormatter <clinit> ()V 1067 <appendix> argL0 ; # java/time/format/DateTimeFormatter$$Lambda+0x80000000d
  5948. instanceKlass java/time/Period
  5949. instanceKlass java/time/chrono/ChronoPeriod
  5950. instanceKlass java/time/format/DateTimeFormatterBuilder$TextPrinterParser
  5951. instanceKlass java/time/format/DateTimeTextProvider$1
  5952. instanceKlass java/time/format/DateTimeTextProvider
  5953. instanceKlass java/time/format/DateTimeTextProvider$LocaleStore
  5954. instanceKlass java/time/format/DateTimeFormatterBuilder$InstantPrinterParser
  5955. instanceKlass java/time/format/DateTimeFormatterBuilder$StringLiteralPrinterParser
  5956. instanceKlass java/time/format/DateTimeFormatterBuilder$ZoneIdPrinterParser
  5957. instanceKlass java/time/format/DateTimeFormatterBuilder$OffsetIdPrinterParser
  5958. instanceKlass java/time/format/DecimalStyle
  5959. instanceKlass java/time/format/DateTimeFormatterBuilder$CompositePrinterParser
  5960. instanceKlass java/time/format/DateTimeFormatterBuilder$CharLiteralPrinterParser
  5961. instanceKlass java/time/format/DateTimeFormatterBuilder$NumberPrinterParser
  5962. instanceKlass java/time/format/DateTimeFormatterBuilder$DateTimePrinterParser
  5963. instanceKlass java/time/temporal/JulianFields
  5964. instanceKlass java/time/temporal/IsoFields
  5965. instanceKlass @bci java/time/format/DateTimeFormatterBuilder <clinit> ()V 0 <appendix> argL0 ; # java/time/format/DateTimeFormatterBuilder$$Lambda+0x80000000f
  5966. instanceKlass java/time/temporal/TemporalQuery
  5967. instanceKlass java/time/format/DateTimeFormatterBuilder
  5968. instanceKlass java/time/format/DateTimeFormatter
  5969. instanceKlass org/eclipse/osgi/internal/debug/EclipseDebugTrace
  5970. instanceKlass org/eclipse/core/internal/utils/Policy$1
  5971. instanceKlass org/eclipse/core/runtime/IProgressMonitor
  5972. instanceKlass org/eclipse/core/internal/utils/Policy
  5973. instanceKlass org/eclipse/core/resources/ResourcesPlugin$WorkspaceInitCustomizer
  5974. instanceKlass org/eclipse/core/resources/IWorkspace
  5975. instanceKlass org/eclipse/core/runtime/IAdaptable
  5976. instanceKlass org/eclipse/jdt/ls/core/internal/managers/ProjectsManager
  5977. instanceKlass org/eclipse/jdt/ls/core/internal/managers/IProjectsManager
  5978. instanceKlass org/eclipse/core/resources/ISaveParticipant
  5979. instanceKlass org/eclipse/core/internal/runtime/LogServiceFactory
  5980. instanceKlass org/eclipse/equinox/internal/app/AppCommands
  5981. instanceKlass @bci org/eclipse/jdt/ls/core/internal/handlers/BundleUtils startBundle (Ljava/lang/String;)V 60 <adapter> ; # java/lang/invoke/LambdaForm$MH+0x000002032b189400
  5982. instanceKlass @bci org/eclipse/jdt/ls/core/internal/handlers/BundleUtils startBundle (Ljava/lang/String;)V 60 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b189000
  5983. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b188c00
  5984. instanceKlass @bci org/eclipse/jdt/ls/core/internal/handlers/BundleUtils startBundle (Ljava/lang/String;)V 60 <appendix> form names 6 function resolvedHandle form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b188800
  5985. instanceKlass @bci org/eclipse/jdt/ls/core/internal/handlers/BundleUtils startBundle (Ljava/lang/String;)V 60 <appendix> argL3 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b188400
  5986. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b188000
  5987. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b187c00
  5988. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b187800
  5989. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b187400
  5990. instanceKlass @bci org/eclipse/jdt/ls/core/internal/handlers/BundleUtils startBundle (Ljava/lang/String;)V 60 <appendix> form names 10 function resolvedHandle form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b187000
  5991. instanceKlass @bci org/eclipse/jdt/ls/core/internal/handlers/BundleUtils startBundle (Ljava/lang/String;)V 60 <appendix> argL1 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b186c00
  5992. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b186800
  5993. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b186400
  5994. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b186000
  5995. instanceKlass org/eclipse/equinox/internal/app/EclipseAppContainer$RegisterService
  5996. instanceKlass org/eclipse/equinox/app/IApplicationContext
  5997. instanceKlass org/osgi/service/application/ApplicationHandle
  5998. instanceKlass org/osgi/service/application/ApplicationDescriptor
  5999. instanceKlass org/eclipse/osgi/service/runnable/ApplicationLauncher
  6000. instanceKlass org/eclipse/equinox/internal/app/IBranding
  6001. instanceKlass org/eclipse/osgi/service/runnable/ApplicationRunnable
  6002. instanceKlass org/eclipse/osgi/service/runnable/ParameterizedRunnable
  6003. instanceKlass org/eclipse/equinox/internal/app/EclipseAppContainer
  6004. instanceKlass org/osgi/service/application/ScheduledApplication
  6005. instanceKlass org/eclipse/equinox/internal/app/AppPersistence
  6006. instanceKlass org/eclipse/equinox/internal/app/Activator
  6007. instanceKlass org/eclipse/equinox/internal/app/CommandLineArgs
  6008. instanceKlass org/eclipse/core/internal/preferences/legacy/InitLegacyPreferences
  6009. instanceKlass org/eclipse/core/internal/preferences/legacy/ProductPreferencesService
  6010. instanceKlass org/eclipse/core/internal/preferences/exchange/IProductPreferencesService
  6011. instanceKlass org/eclipse/core/internal/runtime/AuthorizationHandler
  6012. instanceKlass org/eclipse/core/runtime/IBundleGroupProvider
  6013. instanceKlass @bci org/eclipse/core/internal/runtime/InternalPlatform <clinit> ()V 98 <appendix> argL0 ; # org/eclipse/core/internal/runtime/InternalPlatform$$Lambda+0x000002032b182648
  6014. instanceKlass org/eclipse/core/runtime/ILog
  6015. instanceKlass org/eclipse/core/internal/runtime/InternalPlatform
  6016. instanceKlass org/eclipse/core/runtime/Plugin
  6017. instanceKlass org/eclipse/equinox/internal/frameworkadmin/equinox/Log
  6018. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b181000
  6019. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b180c00
  6020. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b180800
  6021. instanceKlass org/eclipse/equinox/internal/provisional/configuratormanipulator/ConfiguratorManipulator
  6022. instanceKlass java/lang/Process
  6023. instanceKlass org/eclipse/equinox/internal/provisional/frameworkadmin/Manipulator
  6024. instanceKlass org/eclipse/equinox/internal/frameworkadmin/equinox/EquinoxFwAdminImpl
  6025. instanceKlass org/eclipse/equinox/internal/provisional/frameworkadmin/FrameworkAdmin
  6026. instanceKlass org/osgi/util/promise/DeferredPromiseImpl$ResolveWith
  6027. instanceKlass @bci org/osgi/util/promise/PromiseFactory$All run ()V 81 <appendix> member <vmtarget> ; # org/osgi/util/promise/PromiseFactory$All$$Lambda+0x000002032b17a448
  6028. instanceKlass @cpi org/eclipse/jdt/ls/core/internal/commands/ProjectCommand 1172 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b17b000
  6029. instanceKlass org/osgi/util/promise/PromiseImpl$Result
  6030. instanceKlass org/osgi/util/promise/PromiseFactory$All
  6031. instanceKlass org/osgi/util/promise/PromiseImpl$InlineCallback
  6032. instanceKlass org/eclipse/core/runtime/QualifiedName
  6033. instanceKlass org/apache/felix/scr/impl/inject/methods/ActivateMethod$1
  6034. instanceKlass org/apache/felix/scr/impl/inject/MethodResult
  6035. instanceKlass org/eclipse/core/internal/content/ContentTypeManager$ContentTypeRegistryChangeListener
  6036. instanceKlass org/apache/felix/scr/impl/manager/DependencyManager$OpenStatusImpl
  6037. instanceKlass org/apache/felix/scr/impl/manager/SingleComponentManager$1
  6038. instanceKlass org/apache/felix/scr/impl/inject/ReferenceMethod$1
  6039. instanceKlass org/apache/felix/scr/impl/inject/methods/BaseMethod$Resolved
  6040. instanceKlass org/apache/felix/scr/impl/inject/methods/BaseMethod$MethodInfo
  6041. instanceKlass org/apache/felix/scr/impl/inject/methods/BaseMethod$1
  6042. instanceKlass @bci java/util/stream/Collectors joining (Ljava/lang/CharSequence;Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Ljava/util/stream/Collector; 22 <appendix> argL0 ; # java/util/stream/Collectors$$Lambda+0x800000043
  6043. instanceKlass @bci java/util/stream/Collectors joining (Ljava/lang/CharSequence;Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Ljava/util/stream/Collector; 17 <appendix> argL0 ; # java/util/stream/Collectors$$Lambda+0x800000041
  6044. instanceKlass @bci java/util/stream/Collectors joining (Ljava/lang/CharSequence;Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Ljava/util/stream/Collector; 12 <appendix> argL0 ; # java/util/stream/Collectors$$Lambda+0x80000003e
  6045. instanceKlass @bci java/util/stream/Collectors joining (Ljava/lang/CharSequence;Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Ljava/util/stream/Collector; 7 <appendix> member <vmtarget> ; # java/util/stream/Collectors$$Lambda+0x800000046
  6046. instanceKlass @bci java/lang/Class methodToString (Ljava/lang/String;[Ljava/lang/Class;)Ljava/lang/String; 42 <appendix> argL0 ; # java/lang/Class$$Lambda+0x000002032b0fa8c8
  6047. instanceKlass org/eclipse/core/internal/content/BasicDescription
  6048. instanceKlass org/eclipse/core/runtime/content/IContentTypeManager$ISelectionPolicy
  6049. instanceKlass org/eclipse/core/runtime/content/IContentTypeManager$IContentTypeChangeListener
  6050. instanceKlass org/eclipse/core/internal/preferences/BundleStateScopeServiceFactory
  6051. instanceKlass org/eclipse/core/internal/preferences/Activator$1
  6052. instanceKlass @bci org/eclipse/jdt/internal/compiler/ClassFile addProblemMethod (Lorg/eclipse/jdt/internal/compiler/ast/AbstractMethodDeclaration;Lorg/eclipse/jdt/internal/compiler/lookup/MethodBinding;[Lorg/eclipse/jdt/core/compiler/CategorizedProblem;)V 158 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b178c00
  6053. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b178800
  6054. instanceKlass @bci org/eclipse/jdt/internal/compiler/ClassFile addProblemMethod (Lorg/eclipse/jdt/internal/compiler/ast/AbstractMethodDeclaration;Lorg/eclipse/jdt/internal/compiler/lookup/MethodBinding;[Lorg/eclipse/jdt/core/compiler/CategorizedProblem;)V 158 <appendix> argL3 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b178400
  6055. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b178000
  6056. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b177c00
  6057. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b177800
  6058. instanceKlass org/eclipse/core/internal/registry/ExtensionRegistry$ListenerInfo
  6059. instanceKlass org/eclipse/core/internal/preferences/PreferenceServiceRegistryHelper
  6060. instanceKlass @bci org/eclipse/debug/core/model/RuntimeProcess getPidInfo (Ljava/lang/Process;Lorg/eclipse/debug/core/ILaunch;)Ljava/lang/String; 41 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b177400
  6061. instanceKlass @bci org/eclipse/debug/core/model/RuntimeProcess getPidInfo (Ljava/lang/Process;Lorg/eclipse/debug/core/ILaunch;)Ljava/lang/String; 41 <appendix> argL3 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b177000
  6062. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b176c00
  6063. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b176800
  6064. instanceKlass @bci org/eclipse/jdt/ls/core/internal/handlers/BundleUtils startBundle (Ljava/lang/String;)V 60 <appendix> argL1 argL1 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b176400
  6065. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b176000
  6066. instanceKlass org/eclipse/core/runtime/ListenerList$ListenerListIterator
  6067. instanceKlass org/eclipse/core/internal/preferences/OSGiPreferencesServiceManager
  6068. instanceKlass org/osgi/service/prefs/PreferencesService
  6069. instanceKlass org/eclipse/core/internal/preferences/AbstractScope
  6070. instanceKlass org/eclipse/core/runtime/preferences/IScopeContext
  6071. instanceKlass org/eclipse/core/runtime/Path
  6072. instanceKlass org/eclipse/core/runtime/Path$Constants
  6073. instanceKlass org/eclipse/core/runtime/IPath
  6074. instanceKlass org/eclipse/core/internal/preferences/ImmutableMap
  6075. instanceKlass org/eclipse/core/internal/preferences/EclipsePreferences
  6076. instanceKlass org/eclipse/core/runtime/preferences/IScope
  6077. instanceKlass org/eclipse/core/internal/preferences/PreferencesService
  6078. instanceKlass org/eclipse/core/runtime/preferences/IPreferencesService
  6079. instanceKlass org/eclipse/core/internal/preferences/exchange/ILegacyPreferences
  6080. instanceKlass org/eclipse/core/internal/preferences/PreferencesOSGiUtils
  6081. instanceKlass org/eclipse/core/internal/preferences/Activator
  6082. instanceKlass org/eclipse/core/runtime/preferences/IEclipsePreferences
  6083. instanceKlass org/eclipse/core/internal/content/ContentTypeBuilder
  6084. instanceKlass org/eclipse/core/internal/content/ContentTypeCatalog
  6085. instanceKlass org/apache/felix/scr/impl/inject/ValueUtils
  6086. instanceKlass org/eclipse/core/internal/content/ILazySource
  6087. instanceKlass org/eclipse/core/internal/adapter/AdapterManagerListener
  6088. instanceKlass org/eclipse/core/internal/runtime/IAdapterManagerProvider
  6089. instanceKlass org/eclipse/core/runtime/IRegistryEventListener
  6090. instanceKlass org/eclipse/core/internal/registry/osgi/RegistryCommandProvider
  6091. instanceKlass org/eclipse/osgi/framework/console/CommandProvider
  6092. instanceKlass org/eclipse/core/internal/registry/RegistryProviderFactory
  6093. instanceKlass org/eclipse/core/internal/registry/osgi/RegistryProviderOSGI
  6094. instanceKlass org/eclipse/core/internal/registry/TemporaryObjectManager
  6095. instanceKlass org/eclipse/core/internal/registry/RegistryIndexChildren
  6096. instanceKlass org/eclipse/core/internal/registry/RegistryIndexElement
  6097. instanceKlass org/eclipse/core/internal/registry/CombinedEventDelta
  6098. instanceKlass org/eclipse/core/internal/registry/Contribution
  6099. instanceKlass org/eclipse/core/runtime/Assert
  6100. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b16cc00
  6101. instanceKlass java/lang/invoke/DirectMethodHandle$1
  6102. instanceKlass org/eclipse/core/internal/runtime/LocalizationUtils
  6103. instanceKlass org/eclipse/core/runtime/Status
  6104. instanceKlass @bci jdk/internal/reflect/MethodHandleObjectFieldAccessorImpl set (Ljava/lang/Object;Ljava/lang/Object;)V 29 <adapter> ; # java/lang/invoke/LambdaForm$MH+0x000002032b16c800
  6105. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b16c400
  6106. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b16c000
  6107. instanceKlass @bci org/eclipse/osgi/util/NLS <clinit> ()V 7 <appendix> argL0 ; # org/eclipse/osgi/util/NLS$$Lambda+0x000002032b133928
  6108. instanceKlass org/eclipse/osgi/util/NLS
  6109. instanceKlass org/eclipse/core/internal/runtime/ResourceTranslator
  6110. instanceKlass org/eclipse/core/runtime/spi/RegistryContributor
  6111. instanceKlass org/eclipse/core/runtime/IContributor
  6112. instanceKlass org/eclipse/core/runtime/ContributorFactoryOSGi
  6113. instanceKlass org/eclipse/core/internal/registry/osgi/EclipseBundleListener
  6114. instanceKlass org/eclipse/core/internal/registry/HashtableOfStringAndInt
  6115. instanceKlass org/eclipse/core/internal/registry/KeyedHashSet
  6116. instanceKlass org/eclipse/core/runtime/IConfigurationElement
  6117. instanceKlass org/eclipse/core/internal/registry/Handle
  6118. instanceKlass org/eclipse/core/internal/registry/RegistryObjectManager
  6119. instanceKlass org/eclipse/core/internal/registry/IObjectManager
  6120. instanceKlass @bci org/eclipse/core/internal/registry/RegistryProperties getContextProperty (Ljava/lang/String;)Ljava/lang/String; 18 <appendix> member <vmtarget> ; # org/eclipse/core/internal/registry/RegistryProperties$$Lambda+0x000002032b164a80
  6121. instanceKlass org/eclipse/core/internal/registry/RegistryTimestamp
  6122. instanceKlass org/eclipse/core/internal/registry/TableReader
  6123. instanceKlass org/eclipse/core/runtime/ListenerList
  6124. instanceKlass org/eclipse/core/internal/registry/ReadWriteMonitor
  6125. instanceKlass org/eclipse/core/internal/registry/RegistryObjectFactory
  6126. instanceKlass org/eclipse/core/runtime/IExtensionDelta
  6127. instanceKlass org/eclipse/core/runtime/IExtensionPoint
  6128. instanceKlass org/eclipse/core/runtime/ISafeRunnable
  6129. instanceKlass org/eclipse/core/runtime/IExtension
  6130. instanceKlass org/eclipse/core/internal/registry/RegistryObject
  6131. instanceKlass org/eclipse/core/internal/registry/KeyedElement
  6132. instanceKlass org/eclipse/core/internal/registry/ExtensionRegistry
  6133. instanceKlass org/eclipse/core/runtime/spi/IDynamicExtensionRegistry
  6134. instanceKlass org/eclipse/core/runtime/IExtensionRegistry
  6135. instanceKlass org/eclipse/core/runtime/RegistryFactory
  6136. instanceKlass org/eclipse/core/internal/registry/ReferenceMap$IEntry
  6137. instanceKlass org/eclipse/core/internal/registry/ReferenceMap
  6138. instanceKlass org/eclipse/core/internal/registry/osgi/OSGIUtils
  6139. instanceKlass org/eclipse/core/internal/registry/osgi/EquinoxUtils
  6140. instanceKlass org/eclipse/core/internal/registry/RegistryProperties
  6141. instanceKlass org/eclipse/core/runtime/spi/IRegistryProvider
  6142. instanceKlass org/eclipse/core/runtime/spi/RegistryStrategy
  6143. instanceKlass org/eclipse/core/internal/registry/osgi/Activator
  6144. instanceKlass org/eclipse/core/runtime/IRegistryChangeListener
  6145. instanceKlass org/eclipse/core/internal/content/IContentTypeInfo
  6146. instanceKlass org/eclipse/core/runtime/content/IContentDescription
  6147. instanceKlass org/eclipse/core/runtime/content/IContentType
  6148. instanceKlass org/eclipse/core/runtime/content/IContentTypeSettings
  6149. instanceKlass org/osgi/service/prefs/Preferences
  6150. instanceKlass org/apache/felix/scr/impl/inject/internal/ComponentConstructorImpl
  6151. instanceKlass org/apache/felix/scr/impl/inject/ReferenceMethods$1
  6152. instanceKlass org/apache/felix/scr/impl/inject/ReferenceMethod
  6153. instanceKlass org/apache/felix/scr/impl/inject/methods/BindMethods
  6154. instanceKlass org/apache/felix/scr/impl/inject/ReferenceMethods
  6155. instanceKlass org/apache/felix/scr/impl/inject/methods/BaseMethod$NotApplicable
  6156. instanceKlass org/apache/felix/scr/impl/inject/methods/BaseMethod$NotResolved
  6157. instanceKlass org/apache/felix/scr/impl/inject/methods/BaseMethod$State
  6158. instanceKlass org/apache/felix/scr/impl/inject/BaseParameter
  6159. instanceKlass org/apache/felix/scr/impl/inject/methods/BaseMethod
  6160. instanceKlass org/eclipse/core/internal/content/ContentTypeMatcher
  6161. instanceKlass org/eclipse/core/runtime/content/IContentTypeManager
  6162. instanceKlass org/eclipse/core/runtime/content/IContentTypeMatcher
  6163. instanceKlass org/apache/felix/scr/impl/helper/ComponentServiceObjectsHelper
  6164. instanceKlass org/apache/felix/scr/impl/manager/EdgeInfo
  6165. instanceKlass org/apache/felix/scr/impl/manager/ComponentContextImpl$ComponentInstanceImpl
  6166. instanceKlass org/osgi/service/component/ComponentInstance
  6167. instanceKlass org/apache/felix/scr/impl/manager/ComponentContextImpl
  6168. instanceKlass org/apache/felix/scr/impl/manager/RegistrationManager$RegStateWrapper
  6169. instanceKlass org/apache/felix/scr/impl/BundleComponentActivator$ListenerInfo
  6170. instanceKlass org/apache/felix/scr/impl/manager/ServiceTracker$AbstractTracked
  6171. instanceKlass org/apache/felix/scr/impl/manager/ExtendedServiceListener
  6172. instanceKlass org/apache/felix/scr/impl/manager/ServiceTracker
  6173. instanceKlass org/apache/felix/scr/impl/helper/Coercions
  6174. instanceKlass org/apache/felix/scr/impl/manager/DependencyManager$AbstractCustomizer
  6175. instanceKlass org/apache/felix/scr/impl/inject/RefPair
  6176. instanceKlass org/apache/felix/scr/impl/manager/DependencyManager$Customizer
  6177. instanceKlass org/apache/felix/scr/impl/manager/ServiceTrackerCustomizer
  6178. instanceKlass org/apache/felix/scr/impl/inject/OpenStatus
  6179. instanceKlass org/apache/felix/scr/impl/manager/DependencyManager
  6180. instanceKlass org/apache/felix/scr/impl/manager/ReferenceManager
  6181. instanceKlass org/osgi/util/promise/Deferred
  6182. instanceKlass org/apache/felix/scr/impl/inject/ScrComponentContext
  6183. instanceKlass org/apache/felix/scr/component/ExtComponentContext
  6184. instanceKlass org/apache/felix/scr/impl/manager/SingleComponentManager$SetImplementationObject
  6185. instanceKlass org/apache/felix/scr/impl/manager/RegistrationManager
  6186. instanceKlass org/apache/felix/scr/impl/helper/ConfigAdminTracker$1
  6187. instanceKlass org/apache/felix/scr/impl/helper/ConfigAdminTracker
  6188. instanceKlass java/util/Timer$ThreadReaper
  6189. instanceKlass java/util/TaskQueue
  6190. instanceKlass java/util/Timer
  6191. instanceKlass org/apache/felix/scr/impl/inject/ComponentConstructor
  6192. instanceKlass org/apache/felix/scr/impl/inject/LifecycleMethod
  6193. instanceKlass org/apache/felix/scr/impl/inject/internal/ComponentMethodsImpl
  6194. instanceKlass org/apache/felix/scr/impl/metadata/TargetedPID
  6195. instanceKlass java/util/concurrent/CompletionStage
  6196. instanceKlass org/osgi/util/promise/PromiseImpl
  6197. instanceKlass org/osgi/util/promise/Promise
  6198. instanceKlass org/osgi/util/promise/PromiseFactory
  6199. instanceKlass org/osgi/util/promise/Promises
  6200. instanceKlass org/apache/felix/scr/impl/inject/ComponentMethods
  6201. instanceKlass org/osgi/service/component/ComponentFactory
  6202. instanceKlass org/apache/felix/scr/impl/manager/AbstractComponentManager
  6203. instanceKlass org/apache/felix/scr/impl/manager/ComponentManager
  6204. instanceKlass org/apache/felix/scr/impl/manager/ConfigurableComponentHolder
  6205. instanceKlass org/apache/felix/scr/impl/manager/ComponentContainer
  6206. instanceKlass org/apache/felix/scr/impl/ComponentRegistryKey
  6207. instanceKlass org/apache/felix/scr/impl/metadata/PropertyMetadata
  6208. instanceKlass org/apache/felix/scr/impl/metadata/ReferenceMetadata
  6209. instanceKlass org/apache/felix/scr/impl/metadata/ServiceMetadata
  6210. instanceKlass org/apache/felix/scr/impl/metadata/ComponentMetadata
  6211. instanceKlass org/apache/felix/scr/impl/xml/XmlConstants
  6212. instanceKlass com/sun/org/apache/xerces/internal/impl/Constants$ArrayEnumeration
  6213. instanceKlass com/sun/org/apache/xerces/internal/impl/Constants
  6214. instanceKlass com/sun/org/apache/xerces/internal/parsers/AbstractSAXParser$LocatorProxy
  6215. instanceKlass org/xml/sax/ext/Locator2
  6216. instanceKlass org/xml/sax/Locator
  6217. instanceKlass com/sun/org/apache/xerces/internal/util/XMLSymbols
  6218. instanceKlass com/sun/org/apache/xerces/internal/util/XMLChar
  6219. instanceKlass com/sun/xml/internal/stream/Entity
  6220. instanceKlass com/sun/xml/internal/stream/util/BufferAllocator
  6221. instanceKlass com/sun/xml/internal/stream/util/ThreadLocalBufferAllocator
  6222. instanceKlass com/sun/org/apache/xerces/internal/impl/XMLEntityManager$EncodingInfo
  6223. instanceKlass com/sun/org/apache/xerces/internal/utils/XMLLimitAnalyzer
  6224. instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLInputSource
  6225. instanceKlass com/sun/org/apache/xerces/internal/util/ErrorHandlerWrapper
  6226. instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLErrorHandler
  6227. instanceKlass com/sun/org/apache/xerces/internal/impl/ExternalSubsetResolver
  6228. instanceKlass com/sun/org/apache/xerces/internal/util/EntityResolverWrapper
  6229. instanceKlass org/xml/sax/ext/EntityResolver2
  6230. instanceKlass org/xml/sax/InputSource
  6231. instanceKlass com/sun/org/apache/xerces/internal/parsers/AbstractSAXParser$AttributesProxy
  6232. instanceKlass org/xml/sax/ext/Attributes2
  6233. instanceKlass org/xml/sax/Attributes
  6234. instanceKlass org/xml/sax/AttributeList
  6235. instanceKlass com/sun/org/apache/xerces/internal/util/FeatureState
  6236. instanceKlass com/sun/org/apache/xerces/internal/util/PropertyState
  6237. instanceKlass com/sun/org/apache/xerces/internal/impl/msg/XMLMessageFormatter
  6238. instanceKlass com/sun/org/apache/xerces/internal/util/MessageFormatter
  6239. instanceKlass com/sun/org/apache/xerces/internal/impl/XMLVersionDetector
  6240. instanceKlass com/sun/org/apache/xerces/internal/impl/validation/ValidationManager
  6241. instanceKlass com/sun/org/apache/xerces/internal/impl/dv/dtd/NMTOKENDatatypeValidator
  6242. instanceKlass com/sun/org/apache/xerces/internal/impl/dv/dtd/NOTATIONDatatypeValidator
  6243. instanceKlass com/sun/org/apache/xerces/internal/impl/dv/dtd/ENTITYDatatypeValidator
  6244. instanceKlass com/sun/org/apache/xerces/internal/impl/dv/dtd/ListDatatypeValidator
  6245. instanceKlass com/sun/org/apache/xerces/internal/impl/dv/dtd/IDREFDatatypeValidator
  6246. instanceKlass com/sun/org/apache/xerces/internal/impl/dv/dtd/IDDatatypeValidator
  6247. instanceKlass com/sun/org/apache/xerces/internal/impl/dv/dtd/StringDatatypeValidator
  6248. instanceKlass com/sun/org/apache/xerces/internal/impl/dv/DatatypeValidator
  6249. instanceKlass com/sun/org/apache/xerces/internal/impl/dv/DTDDVFactory
  6250. instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/DTDGrammarBucket
  6251. instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/XMLAttributeDecl
  6252. instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/XMLSimpleType
  6253. instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/XMLElementDecl
  6254. instanceKlass com/sun/org/apache/xerces/internal/impl/validation/ValidationState
  6255. instanceKlass com/sun/org/apache/xerces/internal/impl/dv/ValidationContext
  6256. instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/XMLDTDValidator
  6257. instanceKlass com/sun/org/apache/xerces/internal/impl/RevalidationHandler
  6258. instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/XMLDTDValidatorFilter
  6259. instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDocumentFilter
  6260. instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/XMLEntityDecl
  6261. instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/XMLDTDProcessor
  6262. instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDTDContentModelFilter
  6263. instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDTDFilter
  6264. instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDTDScanner
  6265. instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDTDContentModelSource
  6266. instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDTDSource
  6267. instanceKlass com/sun/org/apache/xerces/internal/xni/grammars/XMLDTDDescription
  6268. instanceKlass com/sun/org/apache/xerces/internal/xni/grammars/XMLGrammarDescription
  6269. instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentScannerImpl$TrailingMiscDriver
  6270. instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentScannerImpl$PrologDriver
  6271. instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentScannerImpl$XMLDeclDriver
  6272. instanceKlass com/sun/org/apache/xerces/internal/util/NamespaceSupport
  6273. instanceKlass com/sun/org/apache/xerces/internal/xni/NamespaceContext
  6274. instanceKlass com/sun/org/apache/xerces/internal/util/XMLAttributesImpl$Attribute
  6275. instanceKlass com/sun/org/apache/xerces/internal/util/XMLAttributesImpl
  6276. instanceKlass com/sun/org/apache/xerces/internal/xni/XMLAttributes
  6277. instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentFragmentScannerImpl$FragmentContentDriver
  6278. instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentFragmentScannerImpl$Driver
  6279. instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentFragmentScannerImpl$ElementStack2
  6280. instanceKlass com/sun/org/apache/xerces/internal/xni/QName
  6281. instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentFragmentScannerImpl$ElementStack
  6282. instanceKlass com/sun/org/apache/xerces/internal/xni/XMLString
  6283. instanceKlass com/sun/org/apache/xerces/internal/impl/XMLScanner
  6284. instanceKlass com/sun/xml/internal/stream/XMLBufferListener
  6285. instanceKlass com/sun/org/apache/xerces/internal/impl/XMLEntityHandler
  6286. instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDocumentScanner
  6287. instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDocumentSource
  6288. instanceKlass com/sun/org/apache/xerces/internal/impl/XMLErrorReporter
  6289. instanceKlass com/sun/org/apache/xerces/internal/impl/XMLEntityScanner
  6290. instanceKlass com/sun/org/apache/xerces/internal/xni/XMLLocator
  6291. instanceKlass com/sun/xml/internal/stream/XMLEntityStorage
  6292. instanceKlass com/sun/org/apache/xerces/internal/util/AugmentationsImpl$AugmentationsItemsContainer
  6293. instanceKlass com/sun/org/apache/xerces/internal/util/AugmentationsImpl
  6294. instanceKlass com/sun/org/apache/xerces/internal/xni/Augmentations
  6295. instanceKlass com/sun/org/apache/xerces/internal/util/XMLResourceIdentifierImpl
  6296. instanceKlass com/sun/org/apache/xerces/internal/xni/XMLResourceIdentifier
  6297. instanceKlass com/sun/org/apache/xerces/internal/impl/XMLEntityManager
  6298. instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLEntityResolver
  6299. instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLComponent
  6300. instanceKlass com/sun/org/apache/xerces/internal/util/SymbolTable$Entry
  6301. instanceKlass com/sun/org/apache/xerces/internal/util/SymbolTable
  6302. instanceKlass jdk/xml/internal/JdkConstants
  6303. instanceKlass jdk/xml/internal/JdkXmlUtils
  6304. instanceKlass com/sun/org/apache/xerces/internal/util/ParserConfigurationSettings
  6305. instanceKlass com/sun/org/apache/xerces/internal/parsers/XML11Configurable
  6306. instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLPullParserConfiguration
  6307. instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLParserConfiguration
  6308. instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLComponentManager
  6309. instanceKlass com/sun/org/apache/xerces/internal/parsers/XMLParser
  6310. instanceKlass com/sun/org/apache/xerces/internal/xni/XMLDTDContentModelHandler
  6311. instanceKlass com/sun/org/apache/xerces/internal/xni/XMLDTDHandler
  6312. instanceKlass com/sun/org/apache/xerces/internal/xni/XMLDocumentHandler
  6313. instanceKlass org/xml/sax/XMLReader
  6314. instanceKlass org/xml/sax/Parser
  6315. instanceKlass com/sun/org/apache/xerces/internal/utils/XMLSecurityPropertyManager
  6316. instanceKlass com/sun/org/apache/xerces/internal/utils/XMLSecurityManager
  6317. instanceKlass javax/xml/parsers/SAXParser
  6318. instanceKlass com/sun/org/apache/xerces/internal/xs/PSVIProvider
  6319. instanceKlass com/sun/org/apache/xerces/internal/jaxp/JAXPConstants
  6320. instanceKlass @bci javax/xml/parsers/FactoryFinder newInstance (Ljava/lang/Class;Ljava/lang/String;Ljava/lang/ClassLoader;ZZ)Ljava/lang/Object; 104 <appendix> member <vmtarget> ; # javax/xml/parsers/FactoryFinder$$Lambda+0x000002032b0dfb10
  6321. instanceKlass @bci jdk/xml/internal/SecuritySupport getContextClassLoader ()Ljava/lang/ClassLoader; 0 <appendix> argL0 ; # jdk/xml/internal/SecuritySupport$$Lambda+0x000002032b0df6a8
  6322. instanceKlass @bci javax/xml/parsers/FactoryFinder find (Ljava/lang/Class;Ljava/lang/String;)Ljava/lang/Object; 104 <appendix> member <vmtarget> ; # javax/xml/parsers/FactoryFinder$$Lambda+0x000002032b0df490
  6323. instanceKlass javax/xml/parsers/FactoryFinder$1
  6324. instanceKlass @bci jdk/xml/internal/SecuritySupport getFileInputStream (Ljava/io/File;)Ljava/io/FileInputStream; 1 <appendix> member <vmtarget> ; # jdk/xml/internal/SecuritySupport$$Lambda+0x000002032b0df058
  6325. instanceKlass @bci jdk/xml/internal/SecuritySupport doesFileExist (Ljava/io/File;)Z 1 <appendix> member <vmtarget> ; # jdk/xml/internal/SecuritySupport$$Lambda+0x000002032b0dee40
  6326. instanceKlass @bci javax/xml/parsers/FactoryFinder find (Ljava/lang/Class;Ljava/lang/String;)Ljava/lang/Object; 6 <appendix> member <vmtarget> ; # javax/xml/parsers/FactoryFinder$$Lambda+0x000002032b0dec28
  6327. instanceKlass @bci jdk/xml/internal/SecuritySupport getSystemProperty (Ljava/lang/String;)Ljava/lang/String; 1 <appendix> member <vmtarget> ; # jdk/xml/internal/SecuritySupport$$Lambda+0x000002032b0dea10
  6328. instanceKlass jdk/xml/internal/SecuritySupport
  6329. instanceKlass javax/xml/parsers/FactoryFinder
  6330. instanceKlass javax/xml/parsers/SAXParserFactory
  6331. instanceKlass org/xml/sax/helpers/DefaultHandler
  6332. instanceKlass org/xml/sax/ErrorHandler
  6333. instanceKlass org/xml/sax/ContentHandler
  6334. instanceKlass org/xml/sax/DTDHandler
  6335. instanceKlass org/xml/sax/EntityResolver
  6336. instanceKlass org/apache/felix/scr/impl/BundleComponentActivator
  6337. instanceKlass org/apache/felix/scr/impl/manager/ComponentActivator
  6338. instanceKlass org/apache/felix/scr/impl/manager/ExtendedServiceListenerContext
  6339. instanceKlass org/eclipse/core/internal/runtime/IAdapterFactoryExt
  6340. instanceKlass org/eclipse/core/internal/runtime/AdapterFactoryBridge$LazyAdapterFactory
  6341. instanceKlass org/eclipse/core/internal/runtime/AdapterFactoryBridge
  6342. instanceKlass org/eclipse/core/runtime/IAdapterFactory
  6343. instanceKlass org/eclipse/core/internal/runtime/TracingOptions$1
  6344. instanceKlass org/eclipse/core/internal/runtime/TracingOptions
  6345. instanceKlass java/util/AbstractMap$1$1
  6346. instanceKlass org/osgi/service/url/URLStreamHandlerService
  6347. instanceKlass @bci org/eclipse/core/runtime/ServiceCaller current ()Ljava/util/Optional; 4 <appendix> argL0 ; # org/eclipse/core/runtime/ServiceCaller$$Lambda+0x000002032b149018
  6348. instanceKlass @bci org/eclipse/jdt/internal/compiler/ClassFile addProblemMethod (Lorg/eclipse/jdt/internal/compiler/ast/AbstractMethodDeclaration;Lorg/eclipse/jdt/internal/compiler/lookup/MethodBinding;[Lorg/eclipse/jdt/core/compiler/CategorizedProblem;)V 158 <appendix> argL2 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b14a000
  6349. instanceKlass @bci org/eclipse/core/runtime/ServiceCaller trackCurrent ()Ljava/util/Optional; 19 <appendix> member <vmtarget> ; # org/eclipse/core/runtime/ServiceCaller$$Lambda+0x000002032b148de0
  6350. instanceKlass @bci org/eclipse/core/runtime/ServiceCaller getCurrent ()Ljava/util/Optional; 12 <appendix> member <vmtarget> ; # org/eclipse/core/runtime/ServiceCaller$$Lambda+0x000002032b148ba8
  6351. instanceKlass org/eclipse/core/runtime/ServiceCaller$ReferenceAndService
  6352. instanceKlass org/eclipse/core/internal/runtime/AdapterManager
  6353. instanceKlass org/eclipse/core/runtime/IAdapterManager
  6354. instanceKlass org/eclipse/core/internal/runtime/PlatformURLConverter
  6355. instanceKlass org/eclipse/core/internal/runtime/RuntimeLog
  6356. instanceKlass org/eclipse/core/runtime/IStatus
  6357. instanceKlass org/eclipse/core/internal/runtime/PlatformLogWriter
  6358. instanceKlass org/eclipse/osgi/internal/log/ExtendedLogReaderServiceImpl
  6359. instanceKlass @bci org/eclipse/core/runtime/ServiceCaller <init> (Ljava/lang/Class;Ljava/lang/Class;Ljava/lang/String;)V 39 <appendix> argL0 ; # org/eclipse/core/runtime/ServiceCaller$$Lambda+0x000002032b145000
  6360. instanceKlass @bci org/osgi/framework/FrameworkUtil getBundle (Ljava/lang/Class;)Lorg/osgi/framework/Bundle; 26 <appendix> member <vmtarget> ; # org/osgi/framework/FrameworkUtil$$Lambda+0x000002032b132a30
  6361. instanceKlass @bci org/osgi/framework/FrameworkUtil getBundle (Ljava/lang/Class;)Lorg/osgi/framework/Bundle; 17 <appendix> argL0 ; # org/osgi/framework/FrameworkUtil$$Lambda+0x000002032b132800
  6362. instanceKlass @bci org/osgi/framework/FrameworkUtil getBundle (Ljava/lang/Class;)Lorg/osgi/framework/Bundle; 1 <appendix> member <vmtarget> ; # org/osgi/framework/FrameworkUtil$$Lambda+0x000002032b1325e8
  6363. instanceKlass @bci org/eclipse/core/runtime/ServiceCaller <init> (Ljava/lang/Class;Ljava/lang/Class;Ljava/lang/String;)V 31 <appendix> argL0 ; # org/eclipse/core/runtime/ServiceCaller$$Lambda+0x000002032b144c88
  6364. instanceKlass org/eclipse/core/runtime/ServiceCaller
  6365. instanceKlass org/eclipse/core/internal/runtime/Activator
  6366. instanceKlass org/apache/felix/scr/impl/config/ScrMetaTypeProviderServiceFactory
  6367. instanceKlass org/apache/felix/scr/impl/config/ScrManagedServiceServiceFactory
  6368. instanceKlass org/apache/felix/scr/impl/ComponentCommands$2
  6369. instanceKlass org/apache/felix/scr/impl/ComponentCommands$1
  6370. instanceKlass org/apache/felix/scr/impl/ComponentCommands
  6371. instanceKlass org/apache/felix/scr/impl/Activator$ScrExtension
  6372. instanceKlass org/apache/felix/scr/impl/ComponentActorThread$1
  6373. instanceKlass org/apache/felix/scr/impl/ComponentActorThread
  6374. instanceKlass org/apache/felix/scr/impl/runtime/ServiceComponentRuntimeImpl
  6375. instanceKlass org/apache/felix/scr/impl/manager/RegionConfigurationSupport
  6376. instanceKlass org/apache/felix/scr/impl/manager/ComponentHolder
  6377. instanceKlass java/util/TimerTask
  6378. instanceKlass org/apache/felix/scr/impl/ComponentRegistry
  6379. instanceKlass org/apache/felix/scr/impl/logger/ScrLogManager$1
  6380. instanceKlass org/apache/felix/scr/impl/logger/LogManager$LogDomain
  6381. instanceKlass org/apache/felix/scr/impl/logger/LogManager$Lock
  6382. instanceKlass org/apache/felix/scr/impl/logger/LogManager$LoggerFacade
  6383. instanceKlass org/apache/felix/scr/impl/logger/BundleLogger
  6384. instanceKlass org/apache/felix/scr/impl/logger/ComponentLogger
  6385. instanceKlass org/apache/felix/scr/impl/logger/ScrLogger
  6386. instanceKlass org/apache/felix/scr/impl/logger/InternalLogger
  6387. instanceKlass org/apache/felix/scr/impl/logger/ScrLoggerFactory
  6388. instanceKlass org/osgi/service/component/ComponentContext
  6389. instanceKlass org/osgi/service/component/ComponentServiceObjects
  6390. instanceKlass org/apache/felix/scr/impl/inject/internal/ClassUtils
  6391. instanceKlass org/apache/felix/scr/impl/config/ScrConfigurationImpl
  6392. instanceKlass org/osgi/service/component/runtime/ServiceComponentRuntime
  6393. instanceKlass org/apache/felix/scr/impl/manager/ScrConfiguration
  6394. instanceKlass org/apache/felix/scr/impl/logger/LogConfiguration
  6395. instanceKlass org/apache/felix/scr/impl/AbstractExtender
  6396. instanceKlass org/eclipse/osgi/internal/loader/buddy/PolicyHandler
  6397. instanceKlass sun/nio/fs/WindowsFileCopy
  6398. instanceKlass org/apache/aries/spifly/WeavingData
  6399. instanceKlass org/apache/aries/spifly/ConsumerRestriction
  6400. instanceKlass org/apache/aries/spifly/MethodRestriction
  6401. instanceKlass org/apache/aries/spifly/ArgRestrictions
  6402. instanceKlass org/apache/aries/spifly/BundleDescriptor
  6403. instanceKlass @bci org/apache/aries/spifly/BaseActivator addConsumerWeavingData (Lorg/osgi/framework/Bundle;Ljava/lang/String;)V 177 <appendix> member <vmtarget> ; # org/apache/aries/spifly/BaseActivator$$Lambda+0x000002032b13cd10
  6404. instanceKlass @bci org/apache/aries/spifly/BaseActivator addConsumerWeavingData (Lorg/osgi/framework/Bundle;Ljava/lang/String;)V 161 <appendix> member <vmtarget> ; # org/apache/aries/spifly/BaseActivator$$Lambda+0x000002032b13cac8
  6405. instanceKlass @bci org/apache/aries/spifly/BaseActivator addConsumerWeavingData (Lorg/osgi/framework/Bundle;Ljava/lang/String;)V 149 <appendix> argL0 ; # org/apache/aries/spifly/BaseActivator$$Lambda+0x000002032b13c8b8
  6406. instanceKlass @bci org/apache/aries/spifly/BaseActivator addConsumerWeavingData (Lorg/osgi/framework/Bundle;Ljava/lang/String;)V 141 <appendix> argL0 ; # org/apache/aries/spifly/BaseActivator$$Lambda+0x000002032b13c688
  6407. instanceKlass org/apache/aries/spifly/ConsumerBundleTrackerCustomizer
  6408. instanceKlass java/util/Formattable
  6409. instanceKlass java/time/LocalTime$1
  6410. instanceKlass sun/util/locale/provider/LocaleResources
  6411. instanceKlass @bci sun/util/locale/provider/JRELocaleProviderAdapter getDecimalFormatSymbolsProvider ()Ljava/text/spi/DecimalFormatSymbolsProvider; 8 <appendix> member <vmtarget> ; # sun/util/locale/provider/JRELocaleProviderAdapter$$Lambda+0x800000066
  6412. instanceKlass java/text/DecimalFormatSymbols
  6413. instanceKlass sun/util/resources/Bundles$2
  6414. instanceKlass sun/util/resources/Bundles$CacheKeyReference
  6415. instanceKlass @bci sun/util/cldr/CLDRLocaleProviderAdapter applyAliases (Ljava/util/Locale;)Ljava/util/Locale; 4 <appendix> argL0 ; # sun/util/cldr/CLDRLocaleProviderAdapter$$Lambda+0x80000005f
  6416. instanceKlass sun/util/resources/LocaleData$LocaleDataResourceBundleProvider
  6417. instanceKlass java/util/spi/ResourceBundleProvider
  6418. instanceKlass sun/util/resources/Bundles$CacheKey
  6419. instanceKlass sun/util/resources/Bundles
  6420. instanceKlass sun/util/resources/LocaleData$LocaleDataStrategy
  6421. instanceKlass sun/util/resources/Bundles$Strategy
  6422. instanceKlass sun/util/resources/LocaleData$1
  6423. instanceKlass sun/util/resources/LocaleData
  6424. instanceKlass java/util/Locale$Builder
  6425. instanceKlass sun/util/locale/provider/CalendarDataUtility
  6426. instanceKlass sun/util/locale/provider/AvailableLanguageTags
  6427. instanceKlass @bci sun/util/locale/provider/JRELocaleProviderAdapter getDateFormatSymbolsProvider ()Ljava/text/spi/DateFormatSymbolsProvider; 8 <appendix> member <vmtarget> ; # sun/util/locale/provider/JRELocaleProviderAdapter$$Lambda+0x800000065
  6428. instanceKlass sun/util/resources/cldr/provider/CLDRLocaleDataMetaInfo
  6429. instanceKlass jdk/internal/module/ModulePatcher$PatchedModuleReader
  6430. instanceKlass @bci sun/util/cldr/CLDRLocaleProviderAdapter <init> ()V 4 <appendix> argL0 ; # sun/util/cldr/CLDRLocaleProviderAdapter$$Lambda+0x800000061
  6431. instanceKlass sun/util/locale/InternalLocaleBuilder$CaseInsensitiveChar
  6432. instanceKlass sun/util/locale/InternalLocaleBuilder
  6433. instanceKlass sun/util/locale/StringTokenIterator
  6434. instanceKlass sun/util/locale/ParseStatus
  6435. instanceKlass sun/util/locale/LanguageTag
  6436. instanceKlass sun/util/cldr/CLDRBaseLocaleDataMetaInfo
  6437. instanceKlass sun/util/locale/provider/LocaleDataMetaInfo
  6438. instanceKlass sun/util/locale/provider/ResourceBundleBasedAdapter
  6439. instanceKlass sun/util/locale/provider/LocaleProviderAdapter
  6440. instanceKlass java/util/spi/LocaleServiceProvider
  6441. instanceKlass java/text/DateFormatSymbols
  6442. instanceKlass java/time/LocalDate$1
  6443. instanceKlass java/time/ZonedDateTime$1
  6444. instanceKlass java/util/Calendar
  6445. instanceKlass java/util/Formatter$FixedString
  6446. instanceKlass java/util/Formatter$DateTime
  6447. instanceKlass java/util/Formatter$Flags
  6448. instanceKlass java/util/Formatter$FormatSpecifier
  6449. instanceKlass java/util/Formatter$FormatString
  6450. instanceKlass java/util/Formatter$Conversion
  6451. instanceKlass @bci java/util/regex/Pattern Range (II)Ljava/util/regex/Pattern$CharPredicate; 23 <appendix> member <vmtarget> ; # java/util/regex/Pattern$$Lambda+0x80000002a
  6452. instanceKlass java/util/Formatter
  6453. instanceKlass @bci java/util/ResourceBundle$ResourceBundleProviderHelper loadPropertyResourceBundle (Ljava/lang/Module;Ljava/lang/Module;Ljava/lang/String;Ljava/util/Locale;)Ljava/util/ResourceBundle; 14 <appendix> member <vmtarget> ; # java/util/ResourceBundle$ResourceBundleProviderHelper$$Lambda+0x000002032b0db010
  6454. instanceKlass @bci java/util/ResourceBundle$ResourceBundleProviderHelper newResourceBundle (Ljava/lang/Class;)Ljava/util/ResourceBundle; 22 <appendix> member <vmtarget> ; # java/util/ResourceBundle$ResourceBundleProviderHelper$$Lambda+0x800000010
  6455. instanceKlass @bci java/util/ResourceBundle$ResourceBundleProviderHelper loadResourceBundle (Ljava/lang/Module;Ljava/lang/Module;Ljava/lang/String;Ljava/util/Locale;)Ljava/util/ResourceBundle; 13 <appendix> member <vmtarget> ; # java/util/ResourceBundle$ResourceBundleProviderHelper$$Lambda+0x000002032b0da950
  6456. instanceKlass java/util/ResourceBundle$ResourceBundleProviderHelper
  6457. instanceKlass java/util/ResourceBundle$3
  6458. instanceKlass @bci java/util/ResourceBundle getLoader (Ljava/lang/Module;)Ljava/lang/ClassLoader; 6 <appendix> member <vmtarget> ; # java/util/ResourceBundle$$Lambda+0x000002032b0da510
  6459. instanceKlass sun/util/locale/BaseLocale$Key
  6460. instanceKlass java/util/ResourceBundle$CacheKeyReference
  6461. instanceKlass java/util/ResourceBundle$CacheKey
  6462. instanceKlass sun/util/locale/LocaleObjectCache
  6463. instanceKlass java/util/ResourceBundle$Control
  6464. instanceKlass java/util/logging/Level$RbAccess
  6465. instanceKlass @bci java/util/logging/LogRecord inferCaller ()V 18 <appendix> member <vmtarget> ; # java/util/logging/LogRecord$$Lambda+0x000002032b0d9aa0
  6466. instanceKlass java/lang/StackStreamFactory$FrameBuffer
  6467. instanceKlass java/lang/StackStreamFactory
  6468. instanceKlass @bci java/util/logging/LogRecord$CallerFinder get ()Ljava/util/Optional; 4 <appendix> member <vmtarget> ; # java/util/logging/LogRecord$CallerFinder$$Lambda+0x000002032b0d8350
  6469. instanceKlass @bci java/util/logging/LogRecord$CallerFinder <clinit> ()V 0 <appendix> argL0 ; # java/util/logging/LogRecord$CallerFinder$$Lambda+0x000002032b0d8140
  6470. instanceKlass java/util/logging/LogRecord$CallerFinder
  6471. instanceKlass java/time/chrono/AbstractChronology
  6472. instanceKlass java/time/chrono/Chronology
  6473. instanceKlass java/time/zone/Ser
  6474. instanceKlass java/io/Externalizable
  6475. instanceKlass java/time/zone/ZoneRulesProvider$1
  6476. instanceKlass java/time/zone/ZoneRulesProvider
  6477. instanceKlass sun/util/calendar/ZoneInfoFile$ZoneOffsetTransitionRule
  6478. instanceKlass jdk/internal/util/ByteArray
  6479. instanceKlass sun/util/calendar/ZoneInfoFile$1
  6480. instanceKlass sun/util/calendar/ZoneInfoFile
  6481. instanceKlass java/util/TimeZone
  6482. instanceKlass java/util/logging/LogManager$CloseOnReset
  6483. instanceKlass java/util/logging/StreamHandler$1
  6484. instanceKlass java/util/logging/Handler$1
  6485. instanceKlass java/util/logging/ErrorManager
  6486. instanceKlass jdk/internal/logger/SimpleConsoleLogger$Formatting
  6487. instanceKlass @bci java/util/logging/SimpleFormatter <init> ()V 5 <appendix> argL0 ; # java/util/logging/SimpleFormatter$$Lambda+0x000002032b0d5e10
  6488. instanceKlass java/util/logging/Formatter
  6489. instanceKlass java/time/Clock
  6490. instanceKlass java/time/InstantSource
  6491. instanceKlass java/util/logging/LogRecord
  6492. instanceKlass org/apache/aries/spifly/ProviderServiceFactory
  6493. instanceKlass ch/qos/logback/classic/spi/LogbackServiceProvider
  6494. instanceKlass org/slf4j/spi/SLF4JServiceProvider
  6495. instanceKlass org/eclipse/osgi/internal/framework/EquinoxBundle$1
  6496. instanceKlass org/apache/aries/spifly/ProviderBundleTrackerCustomizer$ServiceDetails
  6497. instanceKlass org/eclipse/osgi/storage/bundlefile/ZipBundleFile$1
  6498. instanceKlass @bci org/eclipse/osgi/storage/bundlefile/ZipBundleFile getPaths ()Ljava/lang/Iterable; 1 <appendix> member <vmtarget> ; # org/eclipse/osgi/storage/bundlefile/ZipBundleFile$$Lambda+0x000002032b131940
  6499. instanceKlass @bci org/eclipse/jdt/internal/compiler/ProcessTaskManager <init> (Lorg/eclipse/jdt/internal/compiler/Compiler;I)V 37 <bsm> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b139000
  6500. instanceKlass @bci org/apache/aries/spifly/BaseActivator registerProviderBundle (Ljava/lang/String;Lorg/osgi/framework/Bundle;Ljava/util/Map;)V 33 <appendix> member <vmtarget> ; # org/apache/aries/spifly/BaseActivator$$Lambda+0x000002032b137d48
  6501. instanceKlass org/apache/aries/spifly/Pair
  6502. instanceKlass @bci org/apache/aries/spifly/BaseActivator registerProviderBundle (Ljava/lang/String;Lorg/osgi/framework/Bundle;Ljava/util/Map;)V 5 <appendix> argL0 ; # org/apache/aries/spifly/BaseActivator$$Lambda+0x000002032b137908
  6503. instanceKlass @bci org/osgi/framework/FrameworkUtil <clinit> ()V 27 <appendix> member <vmtarget> ; # org/osgi/framework/FrameworkUtil$$Lambda+0x000002032b131718
  6504. instanceKlass org/osgi/framework/connect/FrameworkUtilHelper
  6505. instanceKlass @bci org/osgi/framework/FrameworkUtil <clinit> ()V 8 <appendix> argL0 ; # org/osgi/framework/FrameworkUtil$$Lambda+0x000002032b131318
  6506. instanceKlass org/osgi/framework/FrameworkUtil
  6507. instanceKlass @bci org/eclipse/jdt/internal/compiler/ast/FakedTrackingVariable markNullStatus (Lorg/eclipse/jdt/internal/compiler/flow/FlowInfo;Lorg/eclipse/jdt/internal/compiler/flow/FlowContext;I)V 4 <adapter> ; # java/lang/invoke/LambdaForm$MH+0x000002032b138c00
  6508. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b138800
  6509. instanceKlass @bci org/eclipse/jdt/internal/compiler/ast/FakedTrackingVariable markNullStatus (Lorg/eclipse/jdt/internal/compiler/flow/FlowInfo;Lorg/eclipse/jdt/internal/compiler/flow/FlowContext;I)V 4 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b138400
  6510. instanceKlass @bci aQute/bnd/header/Attrs mergeWith (LaQute/bnd/header/Attrs;Z)V 4 <appendix> member <vmtarget> ; # aQute/bnd/header/Attrs$$Lambda+0x000002032b1376e0
  6511. instanceKlass @cpi aQute/bnd/header/Attrs 639 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b138000
  6512. instanceKlass @bci org/apache/aries/spifly/ProviderBundleTrackerCustomizer getFromAutoProviderProperty (Lorg/osgi/framework/Bundle;Ljava/util/Map;)Ljava/util/Map$Entry; 58 <appendix> argL0 ; # org/apache/aries/spifly/ProviderBundleTrackerCustomizer$$Lambda+0x000002032b1374d0
  6513. instanceKlass @bci org/apache/aries/spifly/ProviderBundleTrackerCustomizer getFromAutoProviderProperty (Lorg/osgi/framework/Bundle;Ljava/util/Map;)Ljava/util/Map$Entry; 50 <appendix> member <vmtarget> ; # org/apache/aries/spifly/ProviderBundleTrackerCustomizer$$Lambda+0x000002032b137298
  6514. instanceKlass @bci aQute/bnd/stream/EntryPipeline values ()Ljava/util/stream/Stream; 4 <appendix> argL0 ; # aQute/bnd/stream/EntryPipeline$$Lambda+0x000002032b137068
  6515. instanceKlass @bci aQute/bnd/stream/EntryPipeline filterKey (Ljava/util/function/Predicate;)LaQute/bnd/stream/MapStream; 14 <appendix> member <vmtarget> ; # aQute/bnd/stream/EntryPipeline$$Lambda+0x000002032b136e20
  6516. instanceKlass @bci org/apache/aries/spifly/ProviderBundleTrackerCustomizer getFromAutoProviderProperty (Lorg/osgi/framework/Bundle;Ljava/util/Map;)Ljava/util/Map$Entry; 27 <appendix> member <vmtarget> ; # org/apache/aries/spifly/ProviderBundleTrackerCustomizer$$Lambda+0x000002032b136bd8
  6517. instanceKlass sun/invoke/util/VerifyAccess$1
  6518. instanceKlass aQute/bnd/stream/EntryPipeline
  6519. instanceKlass @bci org/apache/aries/spifly/ProviderBundleTrackerCustomizer getFromAutoProviderProperty (Lorg/osgi/framework/Bundle;Ljava/util/Map;)Ljava/util/Map$Entry; 15 <appendix> argL0 ; # org/apache/aries/spifly/ProviderBundleTrackerCustomizer$$Lambda+0x000002032b136598
  6520. instanceKlass @bci org/apache/aries/spifly/ProviderBundleTrackerCustomizer getFromAutoProviderProperty (Lorg/osgi/framework/Bundle;Ljava/util/Map;)Ljava/util/Map$Entry; 7 <appendix> argL0 ; # org/apache/aries/spifly/ProviderBundleTrackerCustomizer$$Lambda+0x000002032b136368
  6521. instanceKlass aQute/bnd/stream/MapStream
  6522. instanceKlass org/apache/aries/spifly/SpiFlyConstants
  6523. instanceKlass org/apache/aries/spifly/ConsumerHeaderProcessor
  6524. instanceKlass @bci aQute/bnd/header/OSGiHeader parseHeader (Ljava/lang/String;LaQute/service/reporter/Reporter;LaQute/bnd/header/Parameters;)LaQute/bnd/header/Parameters; 437 <appendix> member <vmtarget> ; # aQute/bnd/header/OSGiHeader$$Lambda+0x000002032b135b68
  6525. instanceKlass @bci aQute/bnd/header/Attrs <clinit> ()V 72 <appendix> argL0 ; # aQute/bnd/header/Attrs$$Lambda+0x000002032b135958
  6526. instanceKlass @bci aQute/bnd/header/Attrs <clinit> ()V 64 <appendix> argL0 ; # aQute/bnd/header/Attrs$$Lambda+0x000002032b135748
  6527. instanceKlass @bci aQute/bnd/header/Attrs <clinit> ()V 56 <appendix> argL0 ; # aQute/bnd/header/Attrs$$Lambda+0x000002032b135538
  6528. instanceKlass @bci aQute/bnd/header/Attrs <clinit> ()V 48 <appendix> argL0 ; # aQute/bnd/header/Attrs$$Lambda+0x000002032b135328
  6529. instanceKlass @bci aQute/bnd/header/Attrs <clinit> ()V 40 <appendix> argL0 ; # aQute/bnd/header/Attrs$$Lambda+0x000002032b135118
  6530. instanceKlass @bci aQute/bnd/header/Attrs <clinit> ()V 32 <appendix> argL0 ; # aQute/bnd/header/Attrs$$Lambda+0x000002032b134f08
  6531. instanceKlass @bci aQute/bnd/header/Attrs <clinit> ()V 24 <appendix> argL0 ; # aQute/bnd/header/Attrs$$Lambda+0x000002032b134cf8
  6532. instanceKlass @bci aQute/bnd/header/Attrs <clinit> ()V 16 <appendix> argL0 ; # aQute/bnd/header/Attrs$$Lambda+0x000002032b134ae8
  6533. instanceKlass aQute/bnd/header/Attrs$DataType
  6534. instanceKlass aQute/bnd/header/Attrs
  6535. instanceKlass aQute/libg/qtokens/QuotedTokenizer
  6536. instanceKlass @bci java/util/regex/Pattern union (Ljava/util/regex/Pattern$CharPredicate;Ljava/util/regex/Pattern$CharPredicate;Z)Ljava/util/regex/Pattern$CharPredicate; 6 <appendix> member <vmtarget> ; # java/util/regex/Pattern$$Lambda+0x800000032
  6537. instanceKlass @bci java/util/regex/CharPredicates ASCII_WORD ()Ljava/util/regex/Pattern$BmpCharPredicate; 0 <appendix> argL0 ; # java/util/regex/CharPredicates$$Lambda+0x000002032b0d3fa0
  6538. instanceKlass aQute/bnd/header/OSGiHeader
  6539. instanceKlass org/eclipse/osgi/framework/util/CaseInsensitiveDictionaryMap$CaseInsentiveEntry
  6540. instanceKlass org/eclipse/osgi/framework/util/CaseInsensitiveDictionaryMap$EntryIterator
  6541. instanceKlass org/eclipse/osgi/framework/util/CaseInsensitiveDictionaryMap$KeyIterator
  6542. instanceKlass java/util/ResourceBundle$1
  6543. instanceKlass jdk/internal/access/JavaUtilResourceBundleAccess
  6544. instanceKlass java/util/ResourceBundle
  6545. instanceKlass @bci org/eclipse/osgi/storage/Storage lambda$7 (Ljava/util/List;Ljava/lang/String;)Ljava/util/stream/Stream; 7 <appendix> member <vmtarget> ; # org/eclipse/osgi/storage/Storage$$Lambda+0x000002032b12f590
  6546. instanceKlass org/eclipse/osgi/internal/container/InternalUtils$1
  6547. instanceKlass @bci org/eclipse/osgi/storage/Storage findEntries (Ljava/util/List;Ljava/lang/String;Ljava/lang/String;I)Ljava/util/Enumeration; 101 <appendix> argL0 ; # org/eclipse/osgi/storage/Storage$$Lambda+0x000002032b12f110
  6548. instanceKlass @bci org/eclipse/osgi/storage/Storage findEntries (Ljava/util/List;Ljava/lang/String;Ljava/lang/String;I)Ljava/util/Enumeration; 91 <appendix> member <vmtarget> ; # org/eclipse/osgi/storage/Storage$$Lambda+0x000002032b12eed8
  6549. instanceKlass org/apache/aries/spifly/ProviderBundleTrackerCustomizer
  6550. instanceKlass org/osgi/util/tracker/BundleTracker
  6551. instanceKlass @bci org/apache/aries/spifly/BaseActivator start (Lorg/osgi/framework/BundleContext;Ljava/lang/String;)V 46 <appendix> argL0 ; # org/apache/aries/spifly/BaseActivator$$Lambda+0x000002032b12aad8
  6552. instanceKlass @bci org/apache/aries/spifly/BaseActivator start (Lorg/osgi/framework/BundleContext;Ljava/lang/String;)V 20 <appendix> argL0 ; # org/apache/aries/spifly/BaseActivator$$Lambda+0x000002032b12a8a8
  6553. instanceKlass aQute/bnd/header/Parameters
  6554. instanceKlass @bci org/eclipse/osgi/internal/weaving/WovenClassImpl notifyWovenClassListeners ()V 1 <appendix> member <vmtarget> ; # org/eclipse/osgi/internal/weaving/WovenClassImpl$$Lambda+0x000002032b12e788
  6555. instanceKlass @bci org/eclipse/osgi/internal/serviceregistry/ServiceRegistrationImpl$FrameworkHookRegistration getSafeService (Lorg/eclipse/osgi/internal/framework/BundleContextImpl;Lorg/eclipse/osgi/internal/serviceregistry/ServiceConsumer;)Ljava/lang/Object; 17 <appendix> member <vmtarget> ; # org/eclipse/osgi/internal/serviceregistry/ServiceRegistrationImpl$FrameworkHookRegistration$$Lambda+0x000002032b12e540
  6556. instanceKlass org/apache/aries/spifly/Util
  6557. instanceKlass org/objectweb/asm/Opcodes
  6558. instanceKlass org/objectweb/asm/ClassVisitor
  6559. instanceKlass org/apache/aries/spifly/dynamic/ClientWeavingHook
  6560. instanceKlass java/util/logging/Logger$SystemLoggerHelper$1
  6561. instanceKlass java/util/logging/Logger$SystemLoggerHelper
  6562. instanceKlass java/util/logging/LogManager$4
  6563. instanceKlass jdk/internal/logger/BootstrapLogger$BootstrapExecutors
  6564. instanceKlass jdk/internal/logger/LoggerFinderLoader
  6565. instanceKlass @bci java/lang/System$LoggerFinder accessProvider ()Ljava/lang/System$LoggerFinder; 8 <appendix> argL0 ; # java/lang/System$LoggerFinder$$Lambda+0x000002032b0d2bb0
  6566. instanceKlass @bci java/util/logging/Level$KnownLevel findByName (Ljava/lang/String;Ljava/util/function/Function;)Ljava/util/Optional; 29 <appendix> argL0 ; # java/util/logging/Level$KnownLevel$$Lambda+0x800000023
  6567. instanceKlass @bci java/util/logging/Level findLevel (Ljava/lang/String;)Ljava/util/logging/Level; 13 <appendix> argL0 ; # java/util/logging/Level$$Lambda+0x800000011
  6568. instanceKlass java/util/logging/LogManager$LoggerContext$1
  6569. instanceKlass java/util/logging/LogManager$VisitedLoggers
  6570. instanceKlass java/util/logging/LogManager$2
  6571. instanceKlass java/util/logging/LogManager$LoggingProviderAccess
  6572. instanceKlass java/util/logging/LogManager$LogNode
  6573. instanceKlass java/util/logging/LogManager$LoggerContext
  6574. instanceKlass java/util/logging/LogManager$1
  6575. instanceKlass java/util/logging/LogManager
  6576. instanceKlass java/util/logging/Logger$ConfigurationData
  6577. instanceKlass java/util/logging/Logger$LoggerBundle
  6578. instanceKlass @bci java/util/logging/Level$KnownLevel add (Ljava/util/logging/Level;)V 49 <appendix> argL0 ; # java/util/logging/Level$KnownLevel$$Lambda+0x800000022
  6579. instanceKlass @bci java/util/logging/Level$KnownLevel add (Ljava/util/logging/Level;)V 19 <appendix> argL0 ; # java/util/logging/Level$KnownLevel$$Lambda+0x800000021
  6580. instanceKlass java/util/logging/Level
  6581. instanceKlass java/util/logging/Handler
  6582. instanceKlass java/util/logging/Logger
  6583. instanceKlass org/osgi/util/tracker/BundleTrackerCustomizer
  6584. instanceKlass org/eclipse/osgi/internal/loader/ModuleClassLoader$DefineClassResult
  6585. instanceKlass org/apache/aries/spifly/BaseActivator
  6586. instanceKlass org/eclipse/osgi/internal/weaving/WeavingHookConfigurator$WovenClassContext
  6587. instanceKlass org/eclipse/osgi/internal/weaving/WovenClassImpl
  6588. instanceKlass org/osgi/framework/hooks/weaving/WovenClass
  6589. instanceKlass org/eclipse/osgi/internal/loader/classpath/ClasspathManager$DefineContext
  6590. instanceKlass org/eclipse/osgi/internal/loader/BundleLoader$3
  6591. instanceKlass org/eclipse/osgi/container/ModuleContainer$ContainerStartLevel$2
  6592. instanceKlass java/util/concurrent/CountDownLatch
  6593. instanceKlass org/eclipse/osgi/internal/framework/EquinoxContainerAdaptor$1$1
  6594. instanceKlass org/eclipse/osgi/internal/resolver/StateImpl
  6595. instanceKlass org/eclipse/osgi/service/resolver/NativeCodeSpecification
  6596. instanceKlass org/eclipse/osgi/service/resolver/ImportPackageSpecification
  6597. instanceKlass org/eclipse/osgi/service/resolver/ExportPackageDescription
  6598. instanceKlass org/eclipse/osgi/service/resolver/NativeCodeDescription
  6599. instanceKlass org/eclipse/osgi/service/resolver/BundleDescription
  6600. instanceKlass org/eclipse/osgi/service/resolver/BundleSpecification
  6601. instanceKlass org/eclipse/osgi/service/resolver/HostSpecification
  6602. instanceKlass org/eclipse/osgi/service/resolver/GenericDescription
  6603. instanceKlass org/eclipse/osgi/service/resolver/BaseDescription
  6604. instanceKlass org/eclipse/osgi/service/resolver/GenericSpecification
  6605. instanceKlass org/eclipse/osgi/service/resolver/VersionConstraint
  6606. instanceKlass org/eclipse/osgi/internal/resolver/StateObjectFactoryImpl
  6607. instanceKlass org/eclipse/osgi/service/resolver/Resolver
  6608. instanceKlass org/eclipse/osgi/service/resolver/State
  6609. instanceKlass org/eclipse/osgi/service/resolver/StateObjectFactory
  6610. instanceKlass org/eclipse/osgi/compatibility/state/PlatformAdminImpl
  6611. instanceKlass org/eclipse/osgi/service/resolver/PlatformAdmin
  6612. instanceKlass org/eclipse/osgi/compatibility/state/Activator
  6613. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b128800
  6614. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b128400
  6615. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b128000
  6616. instanceKlass org/eclipse/osgi/internal/container/NamespaceList$Builder$3
  6617. instanceKlass org/eclipse/osgi/internal/container/NamespaceList$Builder$7
  6618. instanceKlass @bci org/eclipse/osgi/container/ModuleResolver removeSubstitutedCapabilities (Lorg/eclipse/osgi/internal/container/NamespaceList$Builder;Lorg/eclipse/osgi/internal/container/NamespaceList;)Ljava/util/Collection; 60 <appendix> member <vmtarget> ; # org/eclipse/osgi/container/ModuleResolver$$Lambda+0x000002032b124870
  6619. instanceKlass org/apache/felix/resolver/util/ArrayMap$1$1
  6620. instanceKlass org/apache/felix/resolver/ResolverImpl$UsedBlames
  6621. instanceKlass java/util/AbstractList$Itr
  6622. instanceKlass org/apache/felix/resolver/util/CopyOnWriteSet$1
  6623. instanceKlass org/apache/felix/resolver/WrappedCapability
  6624. instanceKlass org/eclipse/osgi/container/ModuleResolutionReport$EntryImpl
  6625. instanceKlass org/eclipse/osgi/report/resolution/ResolutionReport$Entry
  6626. instanceKlass @bci org/eclipse/osgi/container/ModuleResolver addPayloadContent (Ljava/util/List;Lorg/eclipse/osgi/internal/container/NamespaceList$Builder;Lorg/eclipse/osgi/internal/container/NamespaceList$Builder;)V 74 <appendix> argL0 ; # org/eclipse/osgi/container/ModuleResolver$$Lambda+0x000002032b122698
  6627. instanceKlass java/util/function/BiPredicate
  6628. instanceKlass @bci org/eclipse/osgi/container/ModuleResolver addPayloadContent (Ljava/util/List;Lorg/eclipse/osgi/internal/container/NamespaceList$Builder;Lorg/eclipse/osgi/internal/container/NamespaceList$Builder;)V 69 <appendix> argL0 ; # org/eclipse/osgi/container/ModuleResolver$$Lambda+0x000002032b122458
  6629. instanceKlass @bci org/eclipse/osgi/container/ModuleResolver addPayloadContent (Ljava/util/List;Lorg/eclipse/osgi/internal/container/NamespaceList$Builder;Lorg/eclipse/osgi/internal/container/NamespaceList$Builder;)V 64 <appendix> argL0 ; # org/eclipse/osgi/container/ModuleResolver$$Lambda+0x000002032b122218
  6630. instanceKlass @bci org/eclipse/osgi/container/ModuleResolver addPayloadContent (Ljava/util/List;Lorg/eclipse/osgi/internal/container/NamespaceList$Builder;Lorg/eclipse/osgi/internal/container/NamespaceList$Builder;)V 44 <appendix> argL0 ; # org/eclipse/osgi/container/ModuleResolver$$Lambda+0x000002032b121fd8
  6631. instanceKlass @bci org/eclipse/osgi/container/ModuleResolver addPayloadContent (Ljava/util/List;Lorg/eclipse/osgi/internal/container/NamespaceList$Builder;Lorg/eclipse/osgi/internal/container/NamespaceList$Builder;)V 39 <appendix> argL0 ; # org/eclipse/osgi/container/ModuleResolver$$Lambda+0x000002032b121d98
  6632. instanceKlass @bci org/eclipse/osgi/container/ModuleResolver removePayloadContent (Lorg/eclipse/osgi/internal/container/NamespaceList$Builder;Lorg/eclipse/osgi/internal/container/NamespaceList$Builder;)V 10 <appendix> argL0 ; # org/eclipse/osgi/container/ModuleResolver$$Lambda+0x000002032b121b58
  6633. instanceKlass org/eclipse/osgi/internal/container/NamespaceList$Builder$5
  6634. instanceKlass @bci org/eclipse/osgi/container/ModuleResolver removePayloadContent (Lorg/eclipse/osgi/internal/container/NamespaceList$Builder;Lorg/eclipse/osgi/internal/container/NamespaceList$Builder;)V 1 <appendix> argL0 ; # org/eclipse/osgi/container/ModuleResolver$$Lambda+0x000002032b1216c0
  6635. instanceKlass org/eclipse/osgi/container/ModuleResolver$ResolveProcess$DynamicFragments
  6636. instanceKlass java/util/Collections$ReverseComparator2
  6637. instanceKlass java/util/Collections$ReverseComparator
  6638. instanceKlass @bci org/eclipse/osgi/container/ModuleResolver$ResolveProcess resolveNonPayLoadFragments ()Ljava/util/Map; 84 <appendix> argL0 ; # org/eclipse/osgi/container/ModuleResolver$ResolveProcess$$Lambda+0x000002032b121280
  6639. instanceKlass @bci org/eclipse/osgi/internal/framework/OSGiFrameworkHooks$CoreResolverHookFactory getHookReferences (Lorg/eclipse/osgi/internal/serviceregistry/ServiceRegistry;Lorg/eclipse/osgi/internal/framework/BundleContextImpl;)[Lorg/eclipse/osgi/internal/serviceregistry/ServiceReferenceImpl; 2 <appendix> member <vmtarget> ; # org/eclipse/osgi/internal/framework/OSGiFrameworkHooks$CoreResolverHookFactory$$Lambda+0x000002032b121068
  6640. instanceKlass org/eclipse/osgi/container/ModuleDatabase$2
  6641. instanceKlass org/eclipse/osgi/internal/container/ComputeNodeOrder$Digraph$Vertex
  6642. instanceKlass org/eclipse/osgi/internal/container/ComputeNodeOrder$Digraph
  6643. instanceKlass org/eclipse/osgi/internal/container/ComputeNodeOrder
  6644. instanceKlass org/eclipse/osgi/container/ModuleContainer$ContainerWiring$1
  6645. instanceKlass org/osgi/dto/DTO
  6646. instanceKlass org/eclipse/osgi/container/builders/OSGiManifestBuilderFactory$NativeClause
  6647. instanceKlass org/eclipse/osgi/storage/ManifestLocalization$BundleResourceBundle
  6648. instanceKlass org/eclipse/osgi/storage/ManifestLocalization
  6649. instanceKlass org/eclipse/osgi/framework/eventmgr/EventManager$EventThread$Queued
  6650. instanceKlass @bci org/eclipse/osgi/framework/eventmgr/EventManager getEventThread ()Lorg/eclipse/osgi/framework/eventmgr/EventManager$EventThread; 24 <appendix> member <vmtarget> ; # org/eclipse/osgi/framework/eventmgr/EventManager$$Lambda+0x000002032b11d3e8
  6651. instanceKlass @bci org/eclipse/osgi/internal/framework/EquinoxEventPublisher notifyEventHooksPrivileged (Lorg/osgi/framework/BundleEvent;Ljava/util/Collection;)V 98 <appendix> member <vmtarget> ; # org/eclipse/osgi/internal/framework/EquinoxEventPublisher$$Lambda+0x000002032b11cea0
  6652. instanceKlass org/osgi/framework/VersionRange
  6653. instanceKlass @bci org/eclipse/osgi/internal/framework/BundleContextImpl notifyFindHooksPriviledged (Lorg/eclipse/osgi/internal/framework/BundleContextImpl;Ljava/util/Collection;)V 73 <appendix> member <vmtarget> ; # org/eclipse/osgi/internal/framework/BundleContextImpl$$Lambda+0x000002032b11ca30
  6654. instanceKlass org/eclipse/osgi/framework/util/FilePath
  6655. instanceKlass org/eclipse/core/runtime/internal/adaptor/ConsoleManager
  6656. instanceKlass org/eclipse/core/runtime/internal/adaptor/DefaultStartupMonitor
  6657. instanceKlass org/eclipse/osgi/service/runnable/StartupMonitor
  6658. instanceKlass java/lang/Thread$Builder$OfVirtual
  6659. instanceKlass java/lang/Thread$Builder$OfPlatform
  6660. instanceKlass java/lang/Thread$Builder
  6661. instanceKlass org/eclipse/osgi/internal/serviceregistry/ServiceFactoryUse$1
  6662. instanceKlass org/eclipse/osgi/internal/serviceregistry/ServiceConsumer$2
  6663. instanceKlass org/eclipse/osgi/internal/serviceregistry/ServiceConsumer$1
  6664. instanceKlass org/eclipse/osgi/internal/serviceregistry/ServiceConsumer
  6665. instanceKlass org/eclipse/osgi/service/security/TrustEngine
  6666. instanceKlass org/eclipse/osgi/internal/signedcontent/SignedContentConstants
  6667. instanceKlass org/eclipse/osgi/internal/signedcontent/SignedBundleHook$1
  6668. instanceKlass org/eclipse/osgi/internal/framework/XMLParsingServiceFactory
  6669. instanceKlass org/eclipse/osgi/storage/BundleLocalizationImpl
  6670. instanceKlass org/eclipse/osgi/service/localization/BundleLocalization
  6671. instanceKlass org/eclipse/osgi/storage/url/BundleURLConverter
  6672. instanceKlass org/eclipse/osgi/service/urlconversion/URLConverter
  6673. instanceKlass org/eclipse/osgi/internal/framework/legacy/StartLevelImpl
  6674. instanceKlass org/eclipse/osgi/internal/framework/legacy/PackageAdminImpl
  6675. instanceKlass org/osgi/service/condition/ConditionImpl
  6676. instanceKlass org/osgi/service/condition/Condition
  6677. instanceKlass @bci org/eclipse/equinox/plurl/impl/PlurlImpl add (Ljava/net/ContentHandlerFactory;)V 13 <appendix> argL0 ; # org/eclipse/equinox/plurl/impl/PlurlImpl$$Lambda+0x000002032b118d70
  6678. instanceKlass @bci org/eclipse/equinox/plurl/impl/PlurlImpl$5 getContent ()Ljava/util/function/Consumer; 115 <appendix> member <vmtarget> ; # org/eclipse/equinox/plurl/impl/PlurlImpl$5$$Lambda+0x000002032b1188f8
  6679. instanceKlass @bci org/eclipse/equinox/plurl/impl/PlurlImpl add (Ljava/net/URLStreamHandlerFactory;)V 13 <appendix> argL0 ; # org/eclipse/equinox/plurl/impl/PlurlImpl$$Lambda+0x000002032b1186b8
  6680. instanceKlass org/eclipse/equinox/plurl/impl/PlurlImpl$PlurlFactoryHolder
  6681. instanceKlass @bci org/eclipse/equinox/plurl/impl/PlurlImpl$5 getContent ()Ljava/util/function/Consumer; 101 <appendix> member <vmtarget> ; # org/eclipse/equinox/plurl/impl/PlurlImpl$5$$Lambda+0x000002032b118000
  6682. instanceKlass org/eclipse/osgi/internal/url/ContentHandlerFactoryImpl
  6683. instanceKlass org/eclipse/osgi/internal/url/URLStreamHandlerFactoryImpl
  6684. instanceKlass org/eclipse/equinox/plurl/impl/PlurlImpl$PlurlContentHandlerFactory
  6685. instanceKlass org/eclipse/equinox/plurl/impl/PlurlImpl$LegacyFactory
  6686. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b111800
  6687. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b111400
  6688. instanceKlass org/eclipse/equinox/plurl/impl/StackWalkerCallStack
  6689. instanceKlass org/eclipse/equinox/plurl/impl/URLToHandler
  6690. instanceKlass java/net/UrlDeserializedState
  6691. instanceKlass java/net/InetAddress
  6692. instanceKlass org/eclipse/equinox/plurl/PlurlStreamHandler$PlurlSetter
  6693. instanceKlass java/net/ContentHandler
  6694. instanceKlass org/eclipse/equinox/plurl/impl/CallStack
  6695. instanceKlass org/eclipse/equinox/plurl/impl/PlurlImpl
  6696. instanceKlass org/eclipse/osgi/internal/log/ConfigAdminListener
  6697. instanceKlass @bci org/eclipse/osgi/internal/serviceregistry/ServiceRegistry notifyFindHooksPrivileged (Lorg/eclipse/osgi/internal/framework/BundleContextImpl;Ljava/lang/String;Ljava/lang/String;ZLjava/util/Collection;)V 101 <adapter> ; # java/lang/invoke/LambdaForm$MH+0x000002032b111000
  6698. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b110c00
  6699. instanceKlass @bci org/eclipse/osgi/internal/serviceregistry/ServiceRegistry notifyFindHooksPrivileged (Lorg/eclipse/osgi/internal/framework/BundleContextImpl;Ljava/lang/String;Ljava/lang/String;ZLjava/util/Collection;)V 101 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b110800
  6700. instanceKlass @bci org/eclipse/osgi/internal/serviceregistry/ServiceRegistry notifyFindHooksPrivileged (Lorg/eclipse/osgi/internal/framework/BundleContextImpl;Ljava/lang/String;Ljava/lang/String;ZLjava/util/Collection;)V 101 <appendix> member <vmtarget> ; # org/eclipse/osgi/internal/serviceregistry/ServiceRegistry$$Lambda+0x000002032b1174f0
  6701. instanceKlass @cpi org/eclipse/osgi/internal/serviceregistry/ServiceRegistry 1105 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b110400
  6702. instanceKlass org/eclipse/osgi/internal/serviceregistry/ShrinkableCollection
  6703. instanceKlass org/osgi/util/tracker/AbstractTracked
  6704. instanceKlass org/osgi/util/tracker/ServiceTracker
  6705. instanceKlass org/eclipse/osgi/internal/log/EventAdminAdapter
  6706. instanceKlass org/eclipse/osgi/internal/serviceregistry/ServiceRegistry$2
  6707. instanceKlass org/eclipse/osgi/framework/eventmgr/CopyOnWriteIdentityMap$Snapshot$SnapshotIterator
  6708. instanceKlass org/eclipse/osgi/framework/eventmgr/ListenerQueue
  6709. instanceKlass @bci org/eclipse/osgi/internal/serviceregistry/ServiceRegistry notifyEventListenerHooksPrivileged (Lorg/osgi/framework/ServiceEvent;Ljava/util/Map;)V 77 <appendix> member <vmtarget> ; # org/eclipse/osgi/internal/serviceregistry/ServiceRegistry$$Lambda+0x000002032b1159a8
  6710. instanceKlass @bci org/eclipse/osgi/internal/serviceregistry/ServiceRegistry notifyEventHooksPrivileged (Lorg/osgi/framework/ServiceEvent;Ljava/util/Collection;)V 77 <appendix> member <vmtarget> ; # org/eclipse/osgi/internal/serviceregistry/ServiceRegistry$$Lambda+0x000002032b1153e0
  6711. instanceKlass org/eclipse/osgi/framework/eventmgr/CopyOnWriteIdentityMap$Snapshot
  6712. instanceKlass org/osgi/framework/PrototypeServiceFactory
  6713. instanceKlass org/eclipse/osgi/internal/serviceregistry/ServiceReferenceImpl
  6714. instanceKlass org/eclipse/osgi/internal/serviceregistry/ServiceUse
  6715. instanceKlass @bci org/eclipse/core/internal/resources/Workspace countResources (Lorg/eclipse/core/runtime/IPath;IZ)I 61 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b110000
  6716. instanceKlass @bci org/eclipse/osgi/internal/serviceregistry/ServiceRegistry notifyListenerHooksPrivileged (Ljava/util/Collection;Z)V 106 <appendix> member <vmtarget> ; # org/eclipse/osgi/internal/serviceregistry/ServiceRegistry$$Lambda+0x000002032b10d3e0
  6717. instanceKlass @cpi org/eclipse/osgi/internal/serviceregistry/ServiceRegistry 1128 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b10cc00
  6718. instanceKlass org/eclipse/osgi/internal/serviceregistry/HookContext
  6719. instanceKlass org/osgi/framework/UnfilteredServiceListener
  6720. instanceKlass org/eclipse/osgi/internal/serviceregistry/FilteredServiceListener
  6721. instanceKlass org/osgi/framework/hooks/service/ListenerHook$ListenerInfo
  6722. instanceKlass org/eclipse/osgi/framework/eventmgr/CopyOnWriteIdentityMap$Entry
  6723. instanceKlass org/eclipse/osgi/framework/eventmgr/CopyOnWriteIdentityMap
  6724. instanceKlass org/eclipse/osgi/internal/log/OrderedExecutor
  6725. instanceKlass org/eclipse/osgi/internal/framework/BundleContextImpl$2
  6726. instanceKlass org/osgi/service/startlevel/StartLevel
  6727. instanceKlass org/osgi/service/packageadmin/PackageAdmin
  6728. instanceKlass org/eclipse/equinox/plurl/PlurlContentHandlerFactory
  6729. instanceKlass java/net/ContentHandlerFactory
  6730. instanceKlass org/eclipse/equinox/plurl/PlurlStreamHandlerFactory
  6731. instanceKlass org/eclipse/equinox/plurl/PlurlFactory
  6732. instanceKlass org/eclipse/equinox/plurl/Plurl
  6733. instanceKlass org/eclipse/osgi/internal/framework/SystemBundleActivator
  6734. instanceKlass org/eclipse/osgi/internal/loader/classpath/TitleVersionVendor
  6735. instanceKlass org/eclipse/osgi/internal/loader/classpath/ManifestPackageAttributes
  6736. instanceKlass org/eclipse/osgi/internal/loader/classpath/ClasspathEntry$PDEData
  6737. instanceKlass org/eclipse/osgi/internal/loader/classpath/ClasspathEntry
  6738. instanceKlass org/eclipse/osgi/internal/loader/classpath/FragmentClasspath
  6739. instanceKlass org/eclipse/osgi/internal/loader/classpath/ClasspathManager
  6740. instanceKlass org/eclipse/osgi/internal/loader/ModuleClassLoader$ClassNameLock$1
  6741. instanceKlass org/eclipse/osgi/internal/loader/ModuleClassLoader$ClassNameLock
  6742. instanceKlass org/eclipse/osgi/internal/container/KeyBasedLockStore
  6743. instanceKlass org/eclipse/osgi/internal/loader/BundleLoaderSources
  6744. instanceKlass org/eclipse/osgi/internal/loader/BundleLoader$1
  6745. instanceKlass org/eclipse/osgi/internal/loader/sources/PackageSource
  6746. instanceKlass java/util/concurrent/ForkJoinPool$2
  6747. instanceKlass jdk/internal/access/JavaUtilConcurrentFJPAccess
  6748. instanceKlass java/util/concurrent/ForkJoinPool$DefaultForkJoinWorkerThreadFactory
  6749. instanceKlass java/util/concurrent/ForkJoinPool$WorkQueue
  6750. instanceKlass java/lang/ApplicationShutdownHooks$1
  6751. instanceKlass java/lang/ApplicationShutdownHooks
  6752. instanceKlass java/util/concurrent/ForkJoinPool$ForkJoinWorkerThreadFactory
  6753. instanceKlass org/eclipse/osgi/internal/framework/StorageSaver$StorageSaverTask
  6754. instanceKlass org/eclipse/osgi/internal/framework/StorageSaver
  6755. instanceKlass java/util/concurrent/RunnableScheduledFuture
  6756. instanceKlass java/util/concurrent/ScheduledFuture
  6757. instanceKlass java/util/concurrent/Delayed
  6758. instanceKlass java/util/concurrent/ScheduledExecutorService
  6759. instanceKlass java/util/HashMap$HashMapSpliterator
  6760. instanceKlass @bci java/lang/SecurityManager nonExportedPkgs (Ljava/lang/module/ModuleDescriptor;)Ljava/util/Set; 92 <appendix> member <vmtarget> ; # java/lang/SecurityManager$$Lambda+0x000002032b0cc968
  6761. instanceKlass @bci java/lang/SecurityManager nonExportedPkgs (Ljava/lang/module/ModuleDescriptor;)Ljava/util/Set; 76 <appendix> argL0 ; # java/lang/SecurityManager$$Lambda+0x000002032b0cc738
  6762. instanceKlass @bci java/lang/SecurityManager nonExportedPkgs (Ljava/lang/module/ModuleDescriptor;)Ljava/util/Set; 66 <appendix> argL0 ; # java/lang/SecurityManager$$Lambda+0x000002032b0cc4f8
  6763. instanceKlass @bci java/lang/SecurityManager nonExportedPkgs (Ljava/lang/module/ModuleDescriptor;)Ljava/util/Set; 47 <appendix> member <vmtarget> ; # java/lang/SecurityManager$$Lambda+0x000002032b0cc2d0
  6764. instanceKlass @bci java/lang/SecurityManager nonExportedPkgs (Ljava/lang/module/ModuleDescriptor;)Ljava/util/Set; 31 <appendix> argL0 ; # java/lang/SecurityManager$$Lambda+0x000002032b0cc0a0
  6765. instanceKlass @bci java/lang/SecurityManager nonExportedPkgs (Ljava/lang/module/ModuleDescriptor;)Ljava/util/Set; 21 <appendix> argL0 ; # java/lang/SecurityManager$$Lambda+0x000002032b0cbe60
  6766. instanceKlass @cpi com/google/inject/internal/KotlinSupport$KotlinUnsupported 78 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b10c800
  6767. instanceKlass @bci java/lang/SecurityManager addNonExportedPackages (Ljava/lang/ModuleLayer;)V 59 <appendix> argL0 ; # java/lang/SecurityManager$$Lambda+0x000002032b0cbc40
  6768. instanceKlass @cpi org/eclipse/core/internal/net/Policy 113 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b10c400
  6769. instanceKlass @bci java/lang/SecurityManager addNonExportedPackages (Ljava/lang/ModuleLayer;)V 49 <appendix> argL0 ; # java/lang/SecurityManager$$Lambda+0x000002032b0cba10
  6770. instanceKlass @bci java/lang/SecurityManager addNonExportedPackages (Ljava/lang/ModuleLayer;)V 39 <appendix> argL0 ; # java/lang/SecurityManager$$Lambda+0x000002032b0cb7e0
  6771. instanceKlass @bci java/lang/SecurityManager addNonExportedPackages (Ljava/lang/ModuleLayer;)V 29 <appendix> member <vmtarget> ; # java/lang/SecurityManager$$Lambda+0x000002032b0cb598
  6772. instanceKlass @cpi java/lang/SecurityManager 518 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b10c000
  6773. instanceKlass @bci java/lang/SecurityManager addNonExportedPackages (Ljava/lang/ModuleLayer;)V 17 <appendix> argL0 ; # java/lang/SecurityManager$$Lambda+0x000002032b0cb368
  6774. instanceKlass org/eclipse/osgi/internal/framework/ContextFinder$1
  6775. instanceKlass org/osgi/framework/ServiceObjects
  6776. instanceKlass org/eclipse/osgi/internal/framework/BundleContextImpl
  6777. instanceKlass org/osgi/framework/hooks/weaving/WovenClassListener
  6778. instanceKlass org/osgi/framework/hooks/weaving/WeavingHook
  6779. instanceKlass org/osgi/framework/hooks/service/FindHook
  6780. instanceKlass org/osgi/framework/hooks/service/EventListenerHook
  6781. instanceKlass org/osgi/framework/hooks/service/EventHook
  6782. instanceKlass org/osgi/framework/hooks/bundle/FindHook
  6783. instanceKlass org/osgi/framework/hooks/bundle/EventHook
  6784. instanceKlass org/osgi/framework/hooks/bundle/CollisionHook
  6785. instanceKlass org/eclipse/osgi/internal/serviceregistry/ServiceRegistry$FrameworkHookHolder
  6786. instanceKlass org/osgi/framework/hooks/service/ListenerHook
  6787. instanceKlass org/eclipse/osgi/internal/serviceregistry/ServiceRegistrationImpl
  6788. instanceKlass org/osgi/framework/ServiceRegistration
  6789. instanceKlass org/eclipse/osgi/internal/serviceregistry/ServiceRegistry
  6790. instanceKlass org/eclipse/osgi/framework/eventmgr/EventManager
  6791. instanceKlass org/eclipse/osgi/internal/framework/EquinoxEventPublisher
  6792. instanceKlass org/eclipse/osgi/container/ModuleResolutionReport
  6793. instanceKlass org/eclipse/osgi/container/ModuleWiring$LoaderInitializer
  6794. instanceKlass org/eclipse/osgi/container/ModuleWiring
  6795. instanceKlass org/eclipse/osgi/internal/container/NamespaceList$Builder$1
  6796. instanceKlass @bci org/eclipse/osgi/container/ModuleResolver removeNonEffectiveRequirements (Lorg/eclipse/osgi/internal/container/NamespaceList$Builder;Lorg/eclipse/osgi/internal/container/NamespaceList;)V 57 <appendix> member <vmtarget> ; # org/eclipse/osgi/container/ModuleResolver$$Lambda+0x000002032b104490
  6797. instanceKlass org/eclipse/osgi/internal/container/NamespaceList$Builder$6
  6798. instanceKlass org/eclipse/osgi/container/ModuleWire
  6799. instanceKlass org/osgi/framework/wiring/BundleWire
  6800. instanceKlass org/apache/felix/resolver/WrappedRequirement
  6801. instanceKlass org/apache/felix/resolver/WireImpl
  6802. instanceKlass org/apache/felix/resolver/ResolverImpl$6
  6803. instanceKlass org/apache/felix/resolver/ResolverImpl$5
  6804. instanceKlass org/apache/felix/resolver/ResolverImpl$4
  6805. instanceKlass org/apache/felix/resolver/ResolverImpl$Blame
  6806. instanceKlass org/apache/felix/resolver/ResolverImpl$3
  6807. instanceKlass org/apache/felix/resolver/ResolverImpl$Packages
  6808. instanceKlass jdk/internal/util/random/RandomSupport
  6809. instanceKlass org/apache/felix/resolver/ResolverImpl$WireCandidate
  6810. instanceKlass jdk/internal/vm/ThreadContainers
  6811. instanceKlass jdk/internal/vm/StackableScope
  6812. instanceKlass java/util/concurrent/ThreadPoolExecutor$AbortPolicy
  6813. instanceKlass java/util/concurrent/AbstractExecutorService
  6814. instanceKlass java/util/concurrent/ExecutorService
  6815. instanceKlass java/util/concurrent/ThreadPoolExecutor$CallerRunsPolicy
  6816. instanceKlass org/eclipse/osgi/internal/framework/EquinoxContainerAdaptor$1$2
  6817. instanceKlass java/util/concurrent/Executors$RunnableAdapter
  6818. instanceKlass java/util/concurrent/Executors
  6819. instanceKlass org/apache/felix/resolver/ResolverImpl$EnhancedExecutor$1
  6820. instanceKlass java/util/concurrent/FutureTask$WaitNode
  6821. instanceKlass java/util/concurrent/FutureTask
  6822. instanceKlass java/util/concurrent/RunnableFuture
  6823. instanceKlass java/util/concurrent/Future
  6824. instanceKlass org/apache/felix/resolver/ResolverImpl$1Computer
  6825. instanceKlass java/util/concurrent/ConcurrentLinkedQueue$Node
  6826. instanceKlass org/apache/felix/resolver/ResolverImpl$EnhancedExecutor
  6827. instanceKlass org/apache/felix/resolver/WrappedResource
  6828. instanceKlass java/util/ArrayList$SubList$1
  6829. instanceKlass org/apache/felix/resolver/util/OpenHashMap$1
  6830. instanceKlass org/apache/felix/resolver/util/CopyOnWriteSet
  6831. instanceKlass org/apache/felix/resolver/util/CandidateSelector
  6832. instanceKlass org/apache/felix/resolver/util/OpenHashMap$MapEntry
  6833. instanceKlass org/apache/felix/resolver/util/OpenHashMap$MapIterator
  6834. instanceKlass @bci org/eclipse/osgi/container/ModuleResolver$ResolveProcess removeSubstituted (Ljava/util/List;)V 2 <appendix> member <vmtarget> ; # org/eclipse/osgi/container/ModuleResolver$ResolveProcess$$Lambda+0x000002032b0bd638
  6835. instanceKlass @bci org/eclipse/osgi/container/ModuleResolver removeNonEffectiveCapabilities (Ljava/util/Collection;)V 2 <appendix> member <vmtarget> ; # org/eclipse/osgi/container/ModuleResolver$$Lambda+0x000002032b0bd3f0
  6836. instanceKlass @bci org/eclipse/osgi/container/ModuleResolver$ResolveProcess filterDisabled (Ljava/util/List;)V 2 <appendix> member <vmtarget> ; # org/eclipse/osgi/container/ModuleResolver$ResolveProcess$$Lambda+0x000002032b0bd1a8
  6837. instanceKlass @bci org/eclipse/osgi/internal/framework/FilterImpl$Equal compare_Version (Lorg/osgi/framework/Version;)Z 3 <appendix> argL0 ; # org/eclipse/osgi/internal/framework/FilterImpl$Equal$$Lambda+0x000002032b0bcf78
  6838. instanceKlass org/eclipse/osgi/internal/framework/FilterImpl$Parser
  6839. instanceKlass org/eclipse/osgi/internal/framework/FilterImpl
  6840. instanceKlass org/apache/felix/resolver/Candidates$PopulateResult
  6841. instanceKlass org/osgi/service/resolver/HostedCapability
  6842. instanceKlass org/apache/felix/resolver/Candidates
  6843. instanceKlass org/apache/felix/resolver/Util
  6844. instanceKlass org/apache/felix/resolver/ResolverImpl$ResolveSession
  6845. instanceKlass org/apache/felix/resolver/util/OpenHashMap
  6846. instanceKlass org/apache/felix/resolver/ResolutionError
  6847. instanceKlass org/osgi/resource/Wire
  6848. instanceKlass org/apache/felix/resolver/ResolverImpl
  6849. instanceKlass org/osgi/service/resolver/Resolver
  6850. instanceKlass java/util/LinkedList$ListItr
  6851. instanceKlass java/util/LinkedList$Node
  6852. instanceKlass org/eclipse/osgi/internal/framework/OSGiFrameworkHooks$CoreResolverHookFactory$CoreResolverHook
  6853. instanceKlass org/eclipse/osgi/report/resolution/ResolutionReport$Listener
  6854. instanceKlass org/eclipse/osgi/container/ModuleResolutionReport$Builder
  6855. instanceKlass org/apache/felix/resolver/Logger
  6856. instanceKlass org/osgi/service/resolver/ResolveContext
  6857. instanceKlass org/eclipse/osgi/container/ModuleDatabase$1
  6858. instanceKlass org/eclipse/osgi/container/ModuleContainer$ResolutionLock$Permits
  6859. instanceKlass java/util/Collections$UnmodifiableMap$UnmodifiableEntrySet$UnmodifiableEntry
  6860. instanceKlass java/util/Collections$UnmodifiableMap$UnmodifiableEntrySet$1
  6861. instanceKlass org/eclipse/osgi/internal/container/Capabilities$NamespaceSet
  6862. instanceKlass org/eclipse/osgi/container/ModuleRevision$2
  6863. instanceKlass org/eclipse/osgi/internal/container/NamespaceList$Builder$8
  6864. instanceKlass java/util/AbstractMap$SimpleImmutableEntry
  6865. instanceKlass org/eclipse/osgi/container/ModuleCapability
  6866. instanceKlass org/osgi/framework/wiring/BundleCapability
  6867. instanceKlass org/eclipse/osgi/internal/container/NamespaceList$3
  6868. instanceKlass org/eclipse/osgi/internal/container/NamespaceList$2
  6869. instanceKlass org/eclipse/osgi/internal/container/NamespaceList$1
  6870. instanceKlass org/eclipse/osgi/internal/container/NamespaceList
  6871. instanceKlass org/eclipse/osgi/container/ModuleRevision$1
  6872. instanceKlass org/osgi/framework/wiring/BundleWiring
  6873. instanceKlass org/osgi/resource/Wiring
  6874. instanceKlass org/eclipse/osgi/container/ModuleRevision
  6875. instanceKlass org/eclipse/osgi/container/ModuleRevisions
  6876. instanceKlass org/osgi/framework/wiring/BundleRevisions
  6877. instanceKlass org/lombokweb/asm/Opcodes
  6878. instanceKlass org/lombokweb/asm/Handler
  6879. instanceKlass lombok/patcher/MethodLogistics
  6880. instanceKlass org/lombokweb/asm/Label
  6881. instanceKlass org/lombokweb/asm/Type
  6882. instanceKlass org/lombokweb/asm/Frame
  6883. instanceKlass org/lombokweb/asm/Context
  6884. instanceKlass org/lombokweb/asm/Attribute
  6885. instanceKlass lombok/patcher/scripts/ExitFromMethodEarlyScript$1
  6886. instanceKlass org/lombokweb/asm/ByteVector
  6887. instanceKlass org/lombokweb/asm/Symbol
  6888. instanceKlass org/lombokweb/asm/SymbolTable
  6889. instanceKlass org/lombokweb/asm/FieldVisitor
  6890. instanceKlass org/lombokweb/asm/MethodVisitor
  6891. instanceKlass org/lombokweb/asm/AnnotationVisitor
  6892. instanceKlass org/lombokweb/asm/ModuleVisitor
  6893. instanceKlass org/lombokweb/asm/RecordComponentVisitor
  6894. instanceKlass org/lombokweb/asm/ClassReader
  6895. instanceKlass org/eclipse/osgi/internal/framework/EquinoxBundle
  6896. instanceKlass org/osgi/resource/Capability
  6897. instanceKlass org/eclipse/osgi/container/ModuleRequirement
  6898. instanceKlass org/osgi/framework/wiring/BundleRequirement
  6899. instanceKlass org/eclipse/osgi/internal/container/NamespaceList$Builder$2
  6900. instanceKlass org/eclipse/osgi/framework/util/CaseInsensitiveDictionaryMap$CaseInsensitiveKey
  6901. instanceKlass org/eclipse/osgi/storage/bundlefile/BundleEntry
  6902. instanceKlass org/eclipse/osgi/container/ModuleRevisionBuilder$GenericInfo$1
  6903. instanceKlass org/eclipse/osgi/container/ModuleRevisionBuilder$GenericInfo
  6904. instanceKlass org/eclipse/osgi/container/ModuleRevisionBuilder
  6905. instanceKlass org/eclipse/osgi/container/builders/OSGiManifestBuilderFactory
  6906. instanceKlass java/util/ComparableTimSort
  6907. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b0a9000
  6908. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b0a8c00
  6909. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b0a8800
  6910. instanceKlass @bci org/eclipse/m2e/core/embedder/ArtifactRef hashCode ()I 1 <appendix> argL1 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b0a8400
  6911. instanceKlass @cpi org/eclipse/jdt/internal/core/builder/NameEnvironment 988 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b0a8000
  6912. instanceKlass java/lang/reflect/AnnotatedType
  6913. instanceKlass java/lang/reflect/TypeVariable
  6914. instanceKlass org/eclipse/osgi/storage/BundleInfo$Generation
  6915. instanceKlass org/eclipse/osgi/internal/container/LockSet$LockHolder
  6916. instanceKlass org/eclipse/osgi/storage/BundleInfo
  6917. instanceKlass org/eclipse/osgi/container/ModuleContainer$ContainerStartLevel
  6918. instanceKlass org/eclipse/osgi/container/ModuleContainer$ContainerWiring
  6919. instanceKlass org/eclipse/osgi/container/ModuleResolver
  6920. instanceKlass org/eclipse/osgi/container/ModuleContainer$ResolutionLock
  6921. instanceKlass org/eclipse/osgi/internal/container/LockSet
  6922. instanceKlass org/osgi/framework/startlevel/FrameworkStartLevel
  6923. instanceKlass org/osgi/framework/wiring/FrameworkWiring
  6924. instanceKlass org/osgi/resource/Requirement
  6925. instanceKlass org/eclipse/osgi/report/resolution/ResolutionReport
  6926. instanceKlass org/eclipse/osgi/container/ModuleContainer
  6927. instanceKlass org/eclipse/osgi/internal/container/Capabilities
  6928. instanceKlass org/eclipse/osgi/container/Module
  6929. instanceKlass org/osgi/framework/startlevel/BundleStartLevel
  6930. instanceKlass org/eclipse/osgi/container/ModuleDatabase
  6931. instanceKlass java/util/concurrent/LinkedBlockingQueue$Node
  6932. instanceKlass java/util/concurrent/RejectedExecutionHandler
  6933. instanceKlass org/eclipse/osgi/internal/framework/EquinoxContainerAdaptor$1
  6934. instanceKlass java/util/concurrent/LinkedTransferQueue$DualNode
  6935. instanceKlass java/util/concurrent/TransferQueue
  6936. instanceKlass java/util/concurrent/atomic/AtomicReference
  6937. instanceKlass org/eclipse/osgi/internal/container/AtomicLazyInitializer
  6938. instanceKlass org/eclipse/osgi/internal/framework/OSGiFrameworkHooks$BundleCollisionHook
  6939. instanceKlass org/osgi/framework/ServiceReference
  6940. instanceKlass org/osgi/framework/hooks/resolver/ResolverHook
  6941. instanceKlass org/eclipse/osgi/internal/framework/OSGiFrameworkHooks$CoreResolverHookFactory
  6942. instanceKlass org/osgi/framework/hooks/resolver/ResolverHookFactory
  6943. instanceKlass org/eclipse/osgi/container/ModuleCollisionHook
  6944. instanceKlass org/eclipse/osgi/internal/framework/OSGiFrameworkHooks
  6945. instanceKlass org/eclipse/osgi/container/ModuleContainerAdaptor$1
  6946. instanceKlass java/util/concurrent/Callable
  6947. instanceKlass org/eclipse/osgi/container/ModuleLoader
  6948. instanceKlass java/util/concurrent/BlockingQueue
  6949. instanceKlass java/util/concurrent/Executor
  6950. instanceKlass org/eclipse/osgi/internal/permadmin/SecurityRow
  6951. instanceKlass org/eclipse/osgi/internal/permadmin/PermissionAdminTable
  6952. instanceKlass org/osgi/service/permissionadmin/PermissionInfo
  6953. instanceKlass org/osgi/service/condpermadmin/ConditionalPermissionUpdate
  6954. instanceKlass org/osgi/service/condpermadmin/ConditionalPermissionInfo
  6955. instanceKlass org/eclipse/osgi/internal/permadmin/SecurityAdmin
  6956. instanceKlass org/osgi/service/condpermadmin/ConditionalPermissionAdmin
  6957. instanceKlass org/osgi/service/permissionadmin/PermissionAdmin
  6958. instanceKlass org/eclipse/osgi/storage/PermissionData
  6959. instanceKlass java/lang/Shutdown$Lock
  6960. instanceKlass java/lang/Shutdown
  6961. instanceKlass java/io/DeleteOnExitHook$1
  6962. instanceKlass java/io/DeleteOnExitHook
  6963. instanceKlass @bci org/eclipse/osgi/framework/internal/reliablefile/ReliableFile createTempFile (Ljava/lang/String;Ljava/lang/String;Ljava/io/File;)Ljava/io/File; 61 <appendix> argL0 ; # org/eclipse/osgi/framework/internal/reliablefile/ReliableFile$$Lambda+0x000002032b09b760
  6964. instanceKlass org/eclipse/osgi/framework/internal/reliablefile/ReliableFile
  6965. instanceKlass sun/nio/ch/FileKey
  6966. instanceKlass sun/nio/ch/FileLockTable
  6967. instanceKlass org/eclipse/osgi/internal/location/Locker_JavaNio
  6968. instanceKlass org/eclipse/osgi/storagemanager/StorageManager
  6969. instanceKlass org/eclipse/osgi/storage/FrameworkExtensionInstaller
  6970. instanceKlass org/eclipse/osgi/storage/bundlefile/MRUBundleFileList
  6971. instanceKlass org/eclipse/osgi/framework/eventmgr/EventDispatcher
  6972. instanceKlass org/osgi/framework/Filter
  6973. instanceKlass org/eclipse/osgi/storage/ContentProvider
  6974. instanceKlass org/eclipse/osgi/storage/bundlefile/BundleFile
  6975. instanceKlass org/eclipse/osgi/container/ModuleContainerAdaptor
  6976. instanceKlass org/eclipse/osgi/storage/Storage
  6977. instanceKlass @bci org/eclipse/osgi/internal/cds/CDSHookConfigurator addHooks (Lorg/eclipse/osgi/internal/hookregistry/HookRegistry;)V 77 <appendix> argL0 ; # org/eclipse/osgi/internal/cds/CDSHookConfigurator$$Lambda+0x000002032b09d808
  6978. instanceKlass org/eclipse/osgi/signedcontent/SignedContent
  6979. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b098400
  6980. instanceKlass java/lang/invoke/MethodHandle$1
  6981. instanceKlass org/eclipse/osgi/internal/hookregistry/StorageHookFactory$StorageHook
  6982. instanceKlass org/eclipse/osgi/internal/hookregistry/StorageHookFactory
  6983. instanceKlass org/osgi/framework/BundleActivator
  6984. instanceKlass org/eclipse/osgi/internal/cds/CDSHookConfigurator
  6985. instanceKlass org/eclipse/osgi/internal/signedcontent/SignedBundleHook
  6986. instanceKlass org/eclipse/osgi/signedcontent/SignedContentFactory
  6987. instanceKlass org/eclipse/osgi/internal/hookregistry/ActivatorHookFactory
  6988. instanceKlass org/osgi/framework/wiring/BundleRevision
  6989. instanceKlass org/osgi/resource/Resource
  6990. instanceKlass org/eclipse/osgi/internal/connect/ConnectHookConfigurator
  6991. instanceKlass org/eclipse/osgi/internal/hookregistry/HookConfigurator
  6992. instanceKlass java/net/URLClassLoader$3$1
  6993. instanceKlass java/net/URLClassLoader$3
  6994. instanceKlass org/eclipse/osgi/internal/framework/EquinoxContainer$ConnectModules
  6995. instanceKlass @bci org/eclipse/osgi/internal/log/ExtendedLogServiceImpl applyLogLevels (Lorg/eclipse/osgi/internal/log/ExtendedLogServiceFactory$EquinoxLoggerContext;)V 20 <appendix> member <vmtarget> ; # org/eclipse/osgi/internal/log/ExtendedLogServiceImpl$$Lambda+0x000002032b096e30
  6996. instanceKlass @bci org/eclipse/osgi/internal/log/ExtendedLogServiceImpl applyLogLevels (Lorg/eclipse/osgi/internal/log/ExtendedLogServiceFactory$EquinoxLoggerContext;)V 5 <appendix> member <vmtarget> ; # org/eclipse/osgi/internal/log/ExtendedLogServiceImpl$$Lambda+0x000002032b096c08
  6997. instanceKlass @cpi org/eclipse/m2e/apt/internal/utils/AnnotationServiceLocator 221 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b098000
  6998. instanceKlass org/eclipse/osgi/internal/log/ExtendedLogServiceFactory$EquinoxLoggerContext
  6999. instanceKlass org/eclipse/osgi/internal/log/EquinoxLogFactory$1
  7000. instanceKlass org/eclipse/osgi/framework/log/FrameworkLog
  7001. instanceKlass org/eclipse/osgi/internal/log/EquinoxLogFactory
  7002. instanceKlass org/osgi/service/log/FormatterLogger
  7003. instanceKlass org/eclipse/osgi/internal/log/LoggerImpl
  7004. instanceKlass org/eclipse/osgi/internal/log/ExtendedLogServiceImpl
  7005. instanceKlass org/eclipse/osgi/internal/log/ExtendedLogServiceFactory$EquinoxLoggerAdmin
  7006. instanceKlass org/osgi/service/log/admin/LoggerContext
  7007. instanceKlass org/eclipse/osgi/internal/log/LoggerContextTargetMap
  7008. instanceKlass org/eclipse/osgi/internal/log/LogServiceManager$MockSystemBundle
  7009. instanceKlass org/osgi/service/log/admin/LoggerAdmin
  7010. instanceKlass org/eclipse/osgi/internal/log/ExtendedLogServiceFactory
  7011. instanceKlass org/eclipse/osgi/framework/util/ArrayMap
  7012. instanceKlass java/util/concurrent/locks/ReentrantReadWriteLock$WriteLock
  7013. instanceKlass java/util/concurrent/locks/ReentrantReadWriteLock$ReadLock
  7014. instanceKlass java/util/concurrent/locks/ReentrantReadWriteLock
  7015. instanceKlass java/util/concurrent/locks/ReadWriteLock
  7016. instanceKlass org/eclipse/osgi/internal/log/ExtendedLogReaderServiceFactory$1
  7017. instanceKlass org/osgi/service/log/LogEntry
  7018. instanceKlass org/eclipse/osgi/internal/log/ExtendedLogReaderServiceFactory
  7019. instanceKlass org/osgi/framework/ServiceFactory
  7020. instanceKlass org/eclipse/equinox/log/ExtendedLogReaderService
  7021. instanceKlass org/osgi/service/log/LogReaderService
  7022. instanceKlass org/eclipse/equinox/log/ExtendedLogService
  7023. instanceKlass org/eclipse/equinox/log/Logger
  7024. instanceKlass org/osgi/service/log/Logger
  7025. instanceKlass org/osgi/service/log/LogService
  7026. instanceKlass org/osgi/service/log/LoggerFactory
  7027. instanceKlass org/eclipse/osgi/internal/log/LogServiceManager
  7028. instanceKlass org/osgi/framework/AllServiceListener
  7029. instanceKlass org/osgi/framework/ServiceListener
  7030. instanceKlass org/eclipse/osgi/internal/log/EquinoxLogWriter
  7031. instanceKlass org/eclipse/equinox/log/LogFilter
  7032. instanceKlass org/eclipse/equinox/log/SynchronousLogListener
  7033. instanceKlass org/osgi/service/log/LogListener
  7034. instanceKlass org/eclipse/osgi/internal/log/EquinoxLogServices
  7035. instanceKlass org/eclipse/osgi/util/ManifestElement
  7036. instanceKlass org/eclipse/osgi/internal/debug/Debug
  7037. instanceKlass org/eclipse/osgi/service/debug/DebugOptionsListener
  7038. instanceKlass org/eclipse/osgi/service/debug/DebugTrace
  7039. instanceKlass org/eclipse/osgi/internal/debug/FrameworkDebugOptions
  7040. instanceKlass org/osgi/util/tracker/ServiceTrackerCustomizer
  7041. instanceKlass java/nio/file/FileVisitor
  7042. instanceKlass org/eclipse/osgi/storage/StorageUtil
  7043. instanceKlass org/eclipse/osgi/internal/location/BasicLocation
  7044. instanceKlass org/eclipse/osgi/internal/location/EquinoxLocations
  7045. instanceKlass java/util/concurrent/atomic/AtomicBoolean
  7046. instanceKlass java/util/UUID
  7047. instanceKlass java/util/Random
  7048. instanceKlass java/util/random/RandomGenerator
  7049. instanceKlass org/eclipse/osgi/internal/container/InternalUtils
  7050. instanceKlass org/osgi/framework/Version
  7051. instanceKlass org/eclipse/osgi/internal/location/Locker
  7052. instanceKlass org/eclipse/osgi/internal/location/LocationHelper
  7053. instanceKlass org/eclipse/osgi/internal/framework/EquinoxConfiguration$ConfigValues
  7054. instanceKlass org/eclipse/osgi/internal/util/Tokenizer
  7055. instanceKlass sun/util/logging/PlatformLogger
  7056. instanceKlass sun/util/logging/PlatformLogger$ConfigurableBridge$LoggerConfiguration
  7057. instanceKlass jdk/internal/logger/BootstrapLogger$RedirectedLoggers
  7058. instanceKlass jdk/internal/logger/LazyLoggers$LazyLoggerAccessor
  7059. instanceKlass jdk/internal/logger/LazyLoggers$LoggerAccessor
  7060. instanceKlass jdk/internal/logger/AbstractLoggerWrapper
  7061. instanceKlass java/util/ServiceLoader$ProviderImpl
  7062. instanceKlass java/util/ServiceLoader$Provider
  7063. instanceKlass java/util/ServiceLoader$1
  7064. instanceKlass sun/util/logging/internal/LoggingProviderImpl$LogManagerAccess
  7065. instanceKlass java/util/concurrent/CopyOnWriteArrayList$COWIterator
  7066. instanceKlass jdk/internal/logger/BootstrapLogger$DetectBackend$1
  7067. instanceKlass jdk/internal/logger/BootstrapLogger$DetectBackend
  7068. instanceKlass jdk/internal/logger/BootstrapLogger
  7069. instanceKlass sun/util/logging/PlatformLogger$ConfigurableBridge
  7070. instanceKlass sun/util/logging/PlatformLogger$Bridge
  7071. instanceKlass jdk/internal/logger/DefaultLoggerFinder$1
  7072. instanceKlass java/lang/System$LoggerFinder
  7073. instanceKlass jdk/internal/logger/LazyLoggers$LazyLoggerFactories
  7074. instanceKlass jdk/internal/logger/LazyLoggers$1
  7075. instanceKlass jdk/internal/logger/LazyLoggers
  7076. instanceKlass jdk/internal/event/EventHelper$ThreadTrackHolder
  7077. instanceKlass java/net/URLClassLoader$2
  7078. instanceKlass org/eclipse/osgi/internal/framework/AliasMapper
  7079. instanceKlass org/eclipse/osgi/framework/util/KeyedElement
  7080. instanceKlass org/eclipse/osgi/internal/hookregistry/ClassLoaderHook
  7081. instanceKlass org/eclipse/osgi/internal/hookregistry/HookRegistry
  7082. instanceKlass org/eclipse/osgi/service/datalocation/Location
  7083. instanceKlass org/eclipse/osgi/service/debug/DebugOptions
  7084. instanceKlass org/eclipse/osgi/internal/framework/EquinoxConfiguration
  7085. instanceKlass org/eclipse/osgi/service/environment/EnvironmentInfo
  7086. # instanceKlass org/eclipse/osgi/internal/framework/EquinoxContainer$$InjectedInvoker+0x000002032b08c400
  7087. instanceKlass java/lang/invoke/MethodHandleImpl$BindCaller$InjectedInvokerHolder
  7088. instanceKlass java/lang/invoke/MethodHandleImpl$BindCaller
  7089. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b08c000
  7090. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b08ac00
  7091. instanceKlass java/lang/annotation/Target
  7092. instanceKlass java/lang/reflect/Proxy$ProxyBuilder$1
  7093. instanceKlass jdk/internal/org/objectweb/asm/Edge
  7094. instanceKlass @bci java/lang/reflect/ProxyGenerator addProxyMethod (Ljava/lang/reflect/Method;Ljava/lang/Class;)V 23 <appendix> argL0 ; # java/lang/reflect/ProxyGenerator$$Lambda+0x000002032b039260
  7095. instanceKlass @bci java/lang/reflect/ProxyGenerator addProxyMethod (Ljava/lang/reflect/ProxyGenerator$ProxyMethod;)V 10 <appendix> argL0 ; # java/lang/reflect/ProxyGenerator$$Lambda+0x000002032b039030
  7096. instanceKlass java/lang/reflect/ProxyGenerator$ProxyMethod
  7097. instanceKlass @bci java/lang/reflect/Proxy getLoader (Ljava/lang/Module;)Ljava/lang/ClassLoader; 6 <appendix> member <vmtarget> ; # java/lang/reflect/Proxy$$Lambda+0x000002032b038908
  7098. instanceKlass @bci java/lang/module/ModuleDescriptor$Builder packages (Ljava/util/Set;)Ljava/lang/module/ModuleDescriptor$Builder; 17 <appendix> argL0 ; # java/lang/module/ModuleDescriptor$Builder$$Lambda+0x800000002
  7099. instanceKlass java/lang/module/ModuleDescriptor$Builder
  7100. instanceKlass @bci java/lang/reflect/Proxy$ProxyBuilder getDynamicModule (Ljava/lang/ClassLoader;)Ljava/lang/Module; 4 <appendix> argL0 ; # java/lang/reflect/Proxy$ProxyBuilder$$Lambda+0x000002032b0384e8
  7101. instanceKlass java/lang/PublicMethods
  7102. instanceKlass java/lang/reflect/Proxy$ProxyBuilder
  7103. instanceKlass @bci java/lang/reflect/Proxy getProxyConstructor (Ljava/lang/Class;Ljava/lang/ClassLoader;[Ljava/lang/Class;)Ljava/lang/reflect/Constructor; 35 <appendix> argL0 ; # java/lang/reflect/Proxy$$Lambda+0x000002032b037c90
  7104. instanceKlass java/lang/reflect/Proxy
  7105. instanceKlass sun/reflect/annotation/AnnotationInvocationHandler
  7106. instanceKlass java/lang/reflect/InvocationHandler
  7107. instanceKlass sun/reflect/annotation/AnnotationParser$1
  7108. instanceKlass sun/reflect/annotation/ExceptionProxy
  7109. instanceKlass java/lang/annotation/Inherited
  7110. instanceKlass java/lang/annotation/Retention
  7111. instanceKlass sun/reflect/annotation/AnnotationType$1
  7112. instanceKlass sun/reflect/annotation/AnnotationType
  7113. instanceKlass java/lang/reflect/GenericArrayType
  7114. instanceKlass sun/reflect/generics/visitor/Reifier
  7115. instanceKlass sun/reflect/generics/visitor/TypeTreeVisitor
  7116. instanceKlass sun/reflect/generics/factory/CoreReflectionFactory
  7117. instanceKlass sun/reflect/generics/factory/GenericsFactory
  7118. instanceKlass sun/reflect/generics/scope/AbstractScope
  7119. instanceKlass sun/reflect/generics/scope/Scope
  7120. instanceKlass sun/reflect/generics/tree/ClassTypeSignature
  7121. instanceKlass sun/reflect/generics/tree/SimpleClassTypeSignature
  7122. instanceKlass sun/reflect/generics/tree/FieldTypeSignature
  7123. instanceKlass sun/reflect/generics/tree/BaseType
  7124. instanceKlass sun/reflect/generics/tree/TypeSignature
  7125. instanceKlass sun/reflect/generics/tree/ReturnType
  7126. instanceKlass sun/reflect/generics/tree/TypeArgument
  7127. instanceKlass sun/reflect/generics/tree/TypeTree
  7128. instanceKlass sun/reflect/generics/tree/Tree
  7129. instanceKlass sun/reflect/generics/parser/SignatureParser
  7130. instanceKlass org/eclipse/osgi/framework/util/SecureAction$1
  7131. instanceKlass org/eclipse/osgi/framework/util/SecureAction
  7132. instanceKlass org/eclipse/osgi/internal/framework/EquinoxContainer
  7133. instanceKlass org/eclipse/osgi/launch/Equinox
  7134. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b08a800
  7135. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b08a400
  7136. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b08a000
  7137. instanceKlass org/eclipse/core/runtime/adaptor/EclipseStarter$InitialBundle
  7138. instanceKlass org/eclipse/core/runtime/adaptor/EclipseStarter$StartupEventListener
  7139. instanceKlass org/osgi/framework/FrameworkListener
  7140. instanceKlass org/osgi/framework/SynchronousBundleListener
  7141. instanceKlass java/util/concurrent/Semaphore
  7142. instanceKlass java/util/EventObject
  7143. instanceKlass org/osgi/framework/BundleContext
  7144. instanceKlass org/osgi/framework/BundleReference
  7145. instanceKlass org/osgi/framework/BundleListener
  7146. instanceKlass java/util/EventListener
  7147. instanceKlass org/osgi/framework/launch/Framework
  7148. instanceKlass org/osgi/framework/Bundle
  7149. instanceKlass org/eclipse/equinox/plurl/PlurlStreamHandler
  7150. instanceKlass org/eclipse/core/runtime/adaptor/EclipseStarter
  7151. instanceKlass @bci java/io/FilePermissionCollection add (Ljava/security/Permission;)V 68 <appendix> argL0 ; # java/io/FilePermissionCollection$$Lambda+0x000002032b031f58
  7152. instanceKlass sun/security/util/SecurityProperties
  7153. instanceKlass sun/security/util/FilePermCompat
  7154. instanceKlass java/io/FilePermission$1
  7155. instanceKlass jdk/internal/access/JavaIOFilePermissionAccess
  7156. instanceKlass java/net/URLClassLoader$1
  7157. instanceKlass @bci org/eclipse/equinox/launcher/Main basicRun ([Ljava/lang/String;)V 162 <appendix> argL0 ; # org/eclipse/equinox/launcher/Main$$Lambda+0x000002032b086240
  7158. instanceKlass java/nio/file/FileStore
  7159. instanceKlass sun/nio/fs/WindowsSecurity
  7160. instanceKlass sun/nio/fs/AbstractAclFileAttributeView
  7161. instanceKlass java/nio/file/attribute/AclFileAttributeView
  7162. instanceKlass java/nio/file/attribute/FileOwnerAttributeView
  7163. instanceKlass sun/nio/fs/WindowsLinkSupport
  7164. instanceKlass sun/nio/fs/WindowsFileSystemProvider$1
  7165. instanceKlass org/eclipse/equinox/launcher/JNIBridge
  7166. instanceKlass sun/nio/ch/Util$BufferCache
  7167. instanceKlass java/nio/channels/NetworkChannel
  7168. instanceKlass sun/nio/ch/SelChImpl
  7169. instanceKlass sun/nio/ch/Streams
  7170. instanceKlass java/nio/channels/Channels
  7171. instanceKlass sun/nio/fs/WindowsPath$1
  7172. instanceKlass java/nio/file/Path$1
  7173. instanceKlass @bci org/eclipse/equinox/launcher/Main getLibraryFromFragment (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; 96 <appendix> argL0 ; # org/eclipse/equinox/launcher/Main$$Lambda+0x000002032b01fc20
  7174. instanceKlass @bci org/eclipse/equinox/launcher/Main getLibraryFromFragment (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; 86 <appendix> argL0 ; # org/eclipse/equinox/launcher/Main$$Lambda+0x000002032b01f9f0
  7175. instanceKlass @bci java/util/zip/ZipFile stream ()Ljava/util/stream/Stream; 25 <appendix> member <vmtarget> ; # java/util/zip/ZipFile$$Lambda+0x000002032b02cf20
  7176. instanceKlass java/util/Spliterators$AbstractSpliterator
  7177. instanceKlass @bci java/util/stream/StreamSpliterators$WrappingSpliterator initPartialTraversalState ()V 37 <appendix> member <vmtarget> ; # java/util/stream/StreamSpliterators$WrappingSpliterator$$Lambda+0x000002032b02cd08
  7178. instanceKlass java/util/function/BooleanSupplier
  7179. instanceKlass java/util/stream/Sink$ChainedInt
  7180. instanceKlass java/util/stream/Sink$OfInt
  7181. instanceKlass java/util/function/IntConsumer
  7182. instanceKlass @bci java/util/stream/StreamSpliterators$WrappingSpliterator initPartialTraversalState ()V 24 <appendix> member <vmtarget> ; # java/util/stream/StreamSpliterators$WrappingSpliterator$$Lambda+0x000002032b02bd88
  7183. instanceKlass java/util/stream/StreamSpliterators
  7184. instanceKlass @bci org/eclipse/equinox/launcher/Main getLibraryPath (Ljava/lang/String;Ljava/util/List;)Ljava/lang/String; 190 <appendix> argL0 ; # org/eclipse/equinox/launcher/Main$$Lambda+0x000002032b01f7b0
  7185. instanceKlass @bci org/eclipse/equinox/launcher/Main getLibraryPath (Ljava/lang/String;Ljava/util/List;)Ljava/lang/String; 180 <appendix> member <vmtarget> ; # org/eclipse/equinox/launcher/Main$$Lambda+0x000002032b01f578
  7186. instanceKlass java/util/stream/Stream$Builder
  7187. instanceKlass java/util/stream/Streams$AbstractStreamBuilderImpl
  7188. instanceKlass java/util/stream/Streams$2
  7189. instanceKlass java/util/stream/Streams
  7190. instanceKlass java/util/stream/StreamSpliterators$AbstractWrappingSpliterator
  7191. instanceKlass @bci java/util/stream/AbstractPipeline spliterator ()Ljava/util/Spliterator; 103 <appendix> member <vmtarget> ; # java/util/stream/AbstractPipeline$$Lambda+0x000002032b02b248
  7192. instanceKlass java/util/stream/Streams$ConcatSpliterator
  7193. instanceKlass @bci org/eclipse/equinox/launcher/Main getLibraryPath (Ljava/lang/String;Ljava/util/List;)Ljava/lang/String; 143 <appendix> argL0 ; # org/eclipse/equinox/launcher/Main$$Lambda+0x000002032b01f348
  7194. instanceKlass @bci org/eclipse/equinox/launcher/Main getLibraryPath (Ljava/lang/String;Ljava/util/List;)Ljava/lang/String; 133 <appendix> member <vmtarget> ; # org/eclipse/equinox/launcher/Main$$Lambda+0x000002032b01f130
  7195. instanceKlass @cpi org/eclipse/equinox/launcher/Main 2098 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b084c00
  7196. instanceKlass @bci org/eclipse/equinox/launcher/Main getLibraryPath (Ljava/lang/String;Ljava/util/List;)Ljava/lang/String; 117 <appendix> member <vmtarget> ; # org/eclipse/equinox/launcher/Main$$Lambda+0x000002032b01eef8
  7197. instanceKlass java/util/function/IntUnaryOperator
  7198. instanceKlass java/util/stream/Streams$RangeIntSpliterator
  7199. instanceKlass java/util/stream/IntStream
  7200. instanceKlass @bci org/eclipse/jdt/internal/core/index/DiskIndex readChunk ([Ljava/lang/String;Ljava/io/InputStream;II)V 180 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b084800
  7201. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b084400
  7202. instanceKlass @bci org/eclipse/jdt/internal/core/index/DiskIndex readChunk ([Ljava/lang/String;Ljava/io/InputStream;II)V 180 <appendix> argL3 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b084000
  7203. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b083c00
  7204. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b083800
  7205. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b083400
  7206. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b083000
  7207. instanceKlass @bci org/eclipse/jdt/internal/core/index/DiskIndex readChunk ([Ljava/lang/String;Ljava/io/InputStream;II)V 180 <appendix> argL1 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b082c00
  7208. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b082800
  7209. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b082400
  7210. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b082000
  7211. instanceKlass java/io/RandomAccessFile$1
  7212. instanceKlass @bci org/eclipse/jdt/internal/core/builder/BuildNotifier subTask (Ljava/lang/String;)V 18 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b081c00
  7213. instanceKlass java/lang/invoke/LambdaFormEditor$1
  7214. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b081800
  7215. instanceKlass @bci org/eclipse/jdt/internal/core/builder/BuildNotifier subTask (Ljava/lang/String;)V 18 <appendix> argL3 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b081400
  7216. instanceKlass @bci org/eclipse/m2e/core/project/configurator/MojoExecutionKey getKeyString ()Ljava/lang/String; 24 <appendix> argL4 argL2 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b081000
  7217. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b080c00
  7218. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b080800
  7219. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b080400
  7220. instanceKlass @bci org/eclipse/jdt/internal/core/builder/BuildNotifier subTask (Ljava/lang/String;)V 18 <appendix> argL1 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b080000
  7221. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b01dc00
  7222. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b01d800
  7223. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b01d400
  7224. instanceKlass @bci org/eclipse/equinox/launcher/Main searchFor (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; 95 <appendix> member <vmtarget> ; # org/eclipse/equinox/launcher/Main$$Lambda+0x000002032b01ecc0
  7225. instanceKlass @bci org/eclipse/equinox/launcher/Main findMax (Ljava/lang/String;Ljava/util/List;)Ljava/util/Optional; 34 <appendix> argL0 ; # org/eclipse/equinox/launcher/Main$$Lambda+0x000002032b01ea90
  7226. instanceKlass java/util/stream/ReduceOps$2ReducingSink
  7227. instanceKlass @bci java/util/function/BinaryOperator maxBy (Ljava/util/Comparator;)Ljava/util/function/BinaryOperator; 6 <appendix> member <vmtarget> ; # java/util/function/BinaryOperator$$Lambda+0x000002032b0285c0
  7228. instanceKlass @bci java/util/Comparator comparing (Ljava/util/function/Function;Ljava/util/Comparator;)Ljava/util/Comparator; 12 <appendix> member <vmtarget> ; # java/util/Comparator$$Lambda+0x000002032b028330
  7229. instanceKlass @cpi java/util/Comparator 256 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b01d000
  7230. instanceKlass @bci java/util/Comparator comparing (Ljava/util/function/Function;)Ljava/util/Comparator; 6 <appendix> member <vmtarget> ; # java/util/Comparator$$Lambda+0x000002032b0280a0
  7231. instanceKlass @bci org/eclipse/equinox/launcher/Main$Identifier <clinit> ()V 34 <appendix> argL0 ; # org/eclipse/equinox/launcher/Main$Identifier$$Lambda+0x000002032b01e860
  7232. instanceKlass @bci org/eclipse/equinox/launcher/Main$Identifier <clinit> ()V 18 <appendix> argL0 ; # org/eclipse/equinox/launcher/Main$Identifier$$Lambda+0x000002032b01e650
  7233. instanceKlass @bci java/util/Comparator thenComparing (Ljava/util/Comparator;)Ljava/util/Comparator; 7 <appendix> member <vmtarget> ; # java/util/Comparator$$Lambda+0x000002032b027e10
  7234. instanceKlass @cpi java/util/Comparator 251 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b01cc00
  7235. instanceKlass @bci org/eclipse/equinox/launcher/Main$Identifier <clinit> ()V 8 <appendix> argL0 ; # org/eclipse/equinox/launcher/Main$Identifier$$Lambda+0x000002032b01e440
  7236. instanceKlass @bci java/util/Comparator comparingInt (Ljava/util/function/ToIntFunction;)Ljava/util/Comparator; 6 <appendix> member <vmtarget> ; # java/util/Comparator$$Lambda+0x000002032b027b80
  7237. instanceKlass @bci java/lang/invoke/BootstrapMethodInvoker invoke (Ljava/lang/Class;Ljava/lang/invoke/MethodHandle;Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Class;)Ljava/lang/Object; 462 <adapter> ; # java/lang/invoke/LambdaForm$MH+0x000002032b01c800
  7238. instanceKlass @cpi org/eclipse/jdt/internal/core/JavaModelManager$TouchJob 156 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b01c400
  7239. instanceKlass @bci org/eclipse/equinox/launcher/Main$Identifier <clinit> ()V 0 <appendix> argL0 ; # org/eclipse/equinox/launcher/Main$Identifier$$Lambda+0x000002032b01e230
  7240. instanceKlass java/util/function/ToIntFunction
  7241. instanceKlass @bci org/eclipse/equinox/launcher/Main findMax (Ljava/lang/String;Ljava/util/List;)Ljava/util/Optional; 18 <appendix> argL0 ; # org/eclipse/equinox/launcher/Main$$Lambda+0x000002032b01e000
  7242. instanceKlass @cpi org/eclipse/jdt/ls/core/internal/handlers/WorkspaceDiagnosticsHandler 880 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b01c000
  7243. instanceKlass @bci org/eclipse/equinox/launcher/Main findMax (Ljava/lang/String;Ljava/util/List;)Ljava/util/Optional; 8 <appendix> member <vmtarget> ; # org/eclipse/equinox/launcher/Main$$Lambda+0x000002032b01ba40
  7244. instanceKlass java/util/ArrayList$ArrayListSpliterator
  7245. instanceKlass @bci org/eclipse/jdt/internal/core/builder/NameEnvironment findClass (Ljava/lang/String;[CLorg/eclipse/jdt/internal/compiler/env/IModuleAwareNameEnvironment$LookupStrategy;Ljava/lang/String;)Lorg/eclipse/jdt/internal/compiler/env/NameEnvironmentAnswer; 179 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b01b400
  7246. instanceKlass java/util/stream/AbstractSpinedBuffer
  7247. instanceKlass java/util/stream/Node$Builder
  7248. instanceKlass java/util/stream/Node$OfDouble
  7249. instanceKlass java/util/stream/Node$OfLong
  7250. instanceKlass java/util/stream/Node$OfInt
  7251. instanceKlass java/util/stream/Node$OfPrimitive
  7252. instanceKlass java/util/stream/Nodes$EmptyNode
  7253. instanceKlass java/util/stream/Node
  7254. instanceKlass java/util/stream/Nodes
  7255. instanceKlass @bci java/util/stream/ReferencePipeline toArray ()[Ljava/lang/Object; 1 <appendix> argL0 ; # java/util/stream/ReferencePipeline$$Lambda+0x000002032b026d50
  7256. instanceKlass java/util/ImmutableCollections$Access$1
  7257. instanceKlass jdk/internal/access/JavaUtilCollectionAccess
  7258. instanceKlass java/util/ImmutableCollections$Access
  7259. instanceKlass @bci org/eclipse/equinox/launcher/Main getArrayFromList (Ljava/lang/String;)Ljava/util/List; 32 <appendix> argL0 ; # org/eclipse/equinox/launcher/Main$$Lambda+0x000002032b01b800
  7260. instanceKlass @bci org/eclipse/equinox/launcher/Main getArrayFromList (Ljava/lang/String;)Ljava/util/List; 22 <appendix> argL0 ; # org/eclipse/equinox/launcher/Main$$Lambda+0x000002032b013cb0
  7261. instanceKlass java/util/regex/Pattern$1MatcherIterator
  7262. instanceKlass sun/net/www/MimeEntry
  7263. instanceKlass java/util/Hashtable$Enumerator
  7264. instanceKlass java/util/Collections$SynchronizedCollection
  7265. instanceKlass java/util/Properties$EntrySet
  7266. instanceKlass sun/net/www/MimeTable$DefaultInstanceHolder$1
  7267. instanceKlass sun/net/www/MimeTable$DefaultInstanceHolder
  7268. instanceKlass sun/net/www/MimeTable$2
  7269. instanceKlass sun/net/www/MimeTable$1
  7270. instanceKlass sun/net/www/MimeTable
  7271. instanceKlass java/net/URLConnection$1
  7272. instanceKlass java/net/FileNameMap
  7273. instanceKlass @bci org/eclipse/equinox/launcher/Main getInstallLocation ()Ljava/net/URL; 287 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b01b000
  7274. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b01ac00
  7275. instanceKlass @bci org/eclipse/equinox/launcher/Main getInstallLocation ()Ljava/net/URL; 287 <appendix> argL3 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b01a800
  7276. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b01a400
  7277. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b01a000
  7278. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b019c00
  7279. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b019800
  7280. instanceKlass @bci org/eclipse/equinox/launcher/Main getInstallLocation ()Ljava/net/URL; 287 <appendix> argL1 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b019400
  7281. instanceKlass @bci org/eclipse/jdt/internal/core/builder/BuildNotifier subTask (Ljava/lang/String;)V 18 <appendix> argL1 argL0 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b019000
  7282. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b018c00
  7283. instanceKlass @bci org/eclipse/jdt/internal/compiler/ast/ReferenceExpression resolveType (Lorg/eclipse/jdt/internal/compiler/lookup/BlockScope;)Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding; 650 <appendix> argL1 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b018800
  7284. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b018400
  7285. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b018000
  7286. instanceKlass java/lang/Long$LongCache
  7287. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b012c00
  7288. instanceKlass java/util/Collections$3
  7289. instanceKlass jdk/internal/loader/URLClassPath$1
  7290. instanceKlass java/lang/CompoundEnumeration
  7291. instanceKlass jdk/internal/loader/BuiltinClassLoader$1
  7292. instanceKlass java/util/Collections$EmptyEnumeration
  7293. instanceKlass java/util/ServiceLoader$3
  7294. instanceKlass java/util/ServiceLoader$2
  7295. instanceKlass java/util/ServiceLoader$LazyClassPathLookupIterator
  7296. instanceKlass java/util/Spliterators$1Adapter
  7297. instanceKlass java/util/Spliterators$ArraySpliterator
  7298. instanceKlass java/util/ServiceLoader$ModuleServicesLookupIterator
  7299. instanceKlass java/util/ServiceLoader
  7300. instanceKlass java/net/spi/URLStreamHandlerProvider
  7301. instanceKlass java/net/URL$1
  7302. instanceKlass java/net/URL$2
  7303. instanceKlass java/net/URL$ThreadTrackHolder
  7304. instanceKlass @bci org/eclipse/equinox/launcher/Main basicRun ([Ljava/lang/String;)V 29 <appendix> argL0 ; # org/eclipse/equinox/launcher/Main$$Lambda+0x000002032b013aa0
  7305. instanceKlass java/util/function/IntFunction
  7306. instanceKlass @bci org/eclipse/equinox/launcher/Main processCommandLine (Ljava/util/List;)Ljava/util/List; 832 <appendix> argL0 ; # org/eclipse/equinox/launcher/Main$$Lambda+0x000002032b013880
  7307. instanceKlass @cpi sun/nio/ch/NioSocketImpl 908 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b012800
  7308. instanceKlass @bci java/util/ArrayDeque copyElements (Ljava/util/Collection;)V 2 <appendix> member <vmtarget> ; # java/util/ArrayDeque$$Lambda+0x000002032b0246a8
  7309. instanceKlass java/lang/Thread$ThreadNumbering
  7310. instanceKlass java/nio/file/attribute/PosixFilePermissions
  7311. instanceKlass java/security/Policy
  7312. instanceKlass jdk/internal/misc/PreviewFeatures
  7313. instanceKlass jdk/internal/misc/MainMethodFinder
  7314. instanceKlass org/eclipse/equinox/launcher/Main
  7315. instanceKlass sun/security/util/ManifestEntryVerifier$SunProviderHolder
  7316. instanceKlass java/util/Base64$Encoder
  7317. instanceKlass java/util/Base64$Decoder
  7318. instanceKlass java/util/Base64
  7319. instanceKlass javax/crypto/SecretKey
  7320. instanceKlass sun/security/util/Length
  7321. instanceKlass sun/security/util/KeyUtil
  7322. instanceKlass java/security/interfaces/XECKey
  7323. instanceKlass java/security/interfaces/ECKey
  7324. instanceKlass sun/security/util/JarConstraintsParameters
  7325. instanceKlass sun/security/util/ConstraintsParameters
  7326. instanceKlass java/security/CodeSigner
  7327. instanceKlass java/security/Timestamp
  7328. instanceKlass sun/security/timestamp/TimestampToken
  7329. instanceKlass java/security/cert/CertPath
  7330. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b012400
  7331. instanceKlass java/math/MutableBigInteger
  7332. instanceKlass sun/security/rsa/RSAPadding
  7333. instanceKlass sun/security/rsa/RSACore
  7334. instanceKlass java/security/interfaces/RSAPrivateCrtKey
  7335. instanceKlass sun/security/pkcs/PKCS8Key
  7336. instanceKlass sun/security/util/InternalPrivateKey
  7337. instanceKlass java/security/interfaces/RSAPrivateKey
  7338. instanceKlass java/security/PrivateKey
  7339. instanceKlass javax/security/auth/Destroyable
  7340. instanceKlass jdk/internal/icu/util/CodePointTrie$Data
  7341. instanceKlass jdk/internal/icu/util/CodePointMap
  7342. instanceKlass jdk/internal/icu/util/VersionInfo
  7343. instanceKlass @bci jdk/internal/module/SystemModuleFinders$SystemModuleReader open (Ljava/lang/String;)Ljava/util/Optional; 6 <appendix> member <vmtarget> ; # jdk/internal/module/SystemModuleFinders$SystemModuleReader$$Lambda+0x000002032b07c9f8
  7344. instanceKlass jdk/internal/jimage/decompressor/ZipDecompressor
  7345. instanceKlass jdk/internal/jimage/decompressor/ResourceDecompressor
  7346. instanceKlass jdk/internal/jimage/decompressor/ResourceDecompressorFactory
  7347. instanceKlass jdk/internal/jimage/decompressor/ResourceDecompressorRepository
  7348. instanceKlass jdk/internal/jimage/decompressor/CompressedResourceHeader
  7349. instanceKlass @bci jdk/internal/jimage/BasicImageReader getResourceBuffer (Ljdk/internal/jimage/ImageLocation;)Ljava/nio/ByteBuffer; 168 <appendix> member <vmtarget> ; # jdk/internal/jimage/BasicImageReader$$Lambda+0x000002032b07b9b8
  7350. instanceKlass jdk/internal/jimage/decompressor/ResourceDecompressor$StringsProvider
  7351. instanceKlass java/util/TimSort
  7352. instanceKlass java/util/Arrays$LegacyMergeSort
  7353. instanceKlass java/util/AbstractMap$SimpleEntry
  7354. instanceKlass jdk/internal/jimage/ImageBufferCache$2
  7355. instanceKlass jdk/internal/jimage/ImageBufferCache
  7356. instanceKlass jdk/internal/module/Checks
  7357. instanceKlass jdk/internal/icu/impl/ICUBinary$1
  7358. instanceKlass jdk/internal/icu/impl/ICUBinary
  7359. instanceKlass jdk/internal/icu/impl/NormalizerImpl$IsAcceptable
  7360. instanceKlass jdk/internal/icu/impl/ICUBinary$Authenticate
  7361. instanceKlass jdk/internal/icu/impl/NormalizerImpl
  7362. instanceKlass jdk/internal/icu/impl/Norm2AllModes$Norm2AllModesSingleton
  7363. instanceKlass jdk/internal/icu/impl/Norm2AllModes$NFKCSingleton
  7364. instanceKlass jdk/internal/icu/impl/Norm2AllModes
  7365. instanceKlass jdk/internal/icu/text/Normalizer2
  7366. instanceKlass jdk/internal/icu/text/NormalizerBase$ModeImpl
  7367. instanceKlass jdk/internal/icu/text/NormalizerBase$NFKDModeImpl
  7368. instanceKlass jdk/internal/icu/text/NormalizerBase$1
  7369. instanceKlass jdk/internal/icu/text/NormalizerBase$Mode
  7370. instanceKlass jdk/internal/icu/text/NormalizerBase
  7371. instanceKlass java/text/Normalizer
  7372. instanceKlass sun/security/x509/AVAKeyword
  7373. instanceKlass java/util/StringJoiner
  7374. instanceKlass sun/security/jca/ServiceId
  7375. instanceKlass java/security/Signature$1
  7376. instanceKlass jdk/internal/access/JavaSecuritySignatureAccess
  7377. instanceKlass java/security/SignatureSpi
  7378. instanceKlass sun/security/util/SignatureUtil
  7379. instanceKlass java/lang/invoke/VarHandle$AccessDescriptor
  7380. instanceKlass sun/security/provider/ByteArrayAccess$BE
  7381. instanceKlass sun/security/provider/ByteArrayAccess
  7382. instanceKlass sun/security/util/MessageDigestSpi2
  7383. instanceKlass java/security/MessageDigestSpi
  7384. instanceKlass sun/security/pkcs/SigningCertificateInfo$ESSCertId
  7385. instanceKlass sun/security/pkcs/SigningCertificateInfo
  7386. instanceKlass sun/security/pkcs/PKCS9Attribute
  7387. instanceKlass sun/security/pkcs/PKCS9Attributes
  7388. instanceKlass java/time/Instant
  7389. instanceKlass java/time/zone/ZoneOffsetTransition
  7390. instanceKlass java/time/LocalTime
  7391. instanceKlass java/time/temporal/ValueRange
  7392. instanceKlass java/time/Duration
  7393. instanceKlass java/time/temporal/TemporalAmount
  7394. instanceKlass java/time/temporal/TemporalUnit
  7395. instanceKlass java/time/temporal/TemporalField
  7396. instanceKlass java/time/LocalDate
  7397. instanceKlass java/time/chrono/ChronoLocalDate
  7398. instanceKlass java/time/ZonedDateTime
  7399. instanceKlass java/time/chrono/ChronoZonedDateTime
  7400. instanceKlass java/time/LocalDateTime
  7401. instanceKlass java/time/chrono/ChronoLocalDateTime
  7402. instanceKlass java/time/temporal/Temporal
  7403. instanceKlass java/time/zone/ZoneOffsetTransitionRule
  7404. instanceKlass java/time/zone/ZoneRules
  7405. instanceKlass @bci java/time/ZoneOffset ofTotalSeconds (I)Ljava/time/ZoneOffset; 37 <appendix> argL0 ; # java/time/ZoneOffset$$Lambda+0x80000000c
  7406. instanceKlass java/time/temporal/TemporalAdjuster
  7407. instanceKlass java/time/temporal/TemporalAccessor
  7408. instanceKlass java/time/ZoneId
  7409. instanceKlass @bci java/util/regex/CharPredicates ASCII_DIGIT ()Ljava/util/regex/Pattern$BmpCharPredicate; 0 <appendix> argL0 ; # java/util/regex/CharPredicates$$Lambda+0x800000025
  7410. instanceKlass @bci java/util/regex/CharPredicates ASCII_SPACE ()Ljava/util/regex/Pattern$BmpCharPredicate; 0 <appendix> argL0 ; # java/util/regex/CharPredicates$$Lambda+0x800000026
  7411. instanceKlass java/util/regex/CharPredicates
  7412. instanceKlass sun/security/util/DisabledAlgorithmConstraints$Constraints$Holder
  7413. instanceKlass sun/security/util/DisabledAlgorithmConstraints$Constraint
  7414. instanceKlass java/util/StringTokenizer
  7415. instanceKlass java/security/spec/ECFieldF2m
  7416. instanceKlass java/security/spec/ECParameterSpec
  7417. instanceKlass java/security/spec/ECPoint
  7418. instanceKlass java/security/spec/EllipticCurve
  7419. instanceKlass java/security/spec/ECFieldFp
  7420. instanceKlass java/security/spec/ECField
  7421. instanceKlass sun/security/util/CurveDB
  7422. instanceKlass sun/security/util/DisabledAlgorithmConstraints$Constraints
  7423. instanceKlass java/util/TreeMap$PrivateEntryIterator
  7424. instanceKlass java/util/NavigableSet
  7425. instanceKlass java/util/SortedSet
  7426. instanceKlass sun/security/util/AbstractAlgorithmConstraints$1
  7427. instanceKlass sun/security/util/AlgorithmDecomposer
  7428. instanceKlass sun/security/util/DisabledAlgorithmConstraints$JarHolder
  7429. instanceKlass @bci java/util/regex/Pattern DOT ()Ljava/util/regex/Pattern$CharPredicate; 0 <appendix> argL0 ; # java/util/regex/Pattern$$Lambda+0x000002032b06e6c0
  7430. instanceKlass java/util/regex/ASCII
  7431. instanceKlass sun/security/util/AbstractAlgorithmConstraints
  7432. instanceKlass java/security/AlgorithmConstraints
  7433. instanceKlass sun/security/pkcs/SignerInfo
  7434. instanceKlass java/security/cert/PolicyQualifierInfo
  7435. instanceKlass sun/security/x509/CertificatePolicyId
  7436. instanceKlass sun/security/x509/PolicyInformation
  7437. instanceKlass sun/security/x509/DistributionPoint
  7438. instanceKlass sun/security/x509/DNSName
  7439. instanceKlass sun/security/x509/URIName
  7440. instanceKlass sun/security/x509/GeneralName
  7441. instanceKlass sun/security/x509/AccessDescription
  7442. instanceKlass sun/security/x509/GeneralNames
  7443. instanceKlass java/lang/invoke/VarForm
  7444. instanceKlass java/lang/invoke/VarHandleGuards
  7445. instanceKlass java/lang/invoke/VarHandles
  7446. instanceKlass java/lang/System$Logger
  7447. instanceKlass jdk/internal/event/EventHelper
  7448. instanceKlass sun/security/jca/JCAUtil
  7449. instanceKlass sun/security/util/MemoryCache$CacheEntry
  7450. instanceKlass sun/security/x509/KeyIdentifier
  7451. instanceKlass java/util/TreeMap$Entry
  7452. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b012000
  7453. instanceKlass sun/security/x509/OIDMap$OIDInfo
  7454. instanceKlass sun/security/x509/PKIXExtensions
  7455. instanceKlass sun/security/x509/OIDMap
  7456. instanceKlass sun/security/x509/Extension
  7457. instanceKlass java/security/cert/Extension
  7458. instanceKlass java/util/Collections$SynchronizedMap
  7459. instanceKlass java/util/NavigableMap
  7460. instanceKlass java/util/SortedMap
  7461. instanceKlass sun/security/x509/CertificateExtensions
  7462. instanceKlass sun/security/rsa/RSAUtil
  7463. instanceKlass java/security/interfaces/RSAPublicKey
  7464. instanceKlass java/security/interfaces/RSAKey
  7465. instanceKlass java/security/spec/PSSParameterSpec
  7466. instanceKlass java/security/spec/AlgorithmParameterSpec
  7467. instanceKlass java/security/spec/RSAPrivateKeySpec
  7468. instanceKlass java/security/spec/RSAPublicKeySpec
  7469. instanceKlass java/security/KeyFactorySpi
  7470. instanceKlass sun/security/rsa/SunRsaSignEntries
  7471. instanceKlass sun/security/jca/ProviderList$ServiceList$1
  7472. instanceKlass java/security/KeyFactory
  7473. instanceKlass @bci java/security/spec/EncodedKeySpec <clinit> ()V 0 <appendix> argL0 ; # java/security/spec/EncodedKeySpec$$Lambda+0x000002032b0650b0
  7474. instanceKlass jdk/internal/access/JavaSecuritySpecAccess
  7475. instanceKlass java/security/spec/EncodedKeySpec
  7476. instanceKlass java/security/spec/KeySpec
  7477. instanceKlass sun/security/util/BitArray
  7478. instanceKlass sun/security/x509/X509Key
  7479. instanceKlass java/security/PublicKey
  7480. instanceKlass java/security/Key
  7481. instanceKlass sun/security/x509/CertificateX509Key
  7482. instanceKlass java/util/Date
  7483. instanceKlass sun/util/calendar/CalendarUtils
  7484. instanceKlass sun/util/calendar/CalendarDate
  7485. instanceKlass sun/util/calendar/CalendarSystem$GregorianHolder
  7486. instanceKlass sun/util/calendar/CalendarSystem
  7487. instanceKlass sun/security/x509/CertificateValidity
  7488. instanceKlass sun/security/x509/AVA
  7489. instanceKlass sun/security/x509/RDN
  7490. instanceKlass javax/security/auth/x500/X500Principal
  7491. instanceKlass @bci sun/security/x509/X500Name <clinit> ()V 153 <appendix> argL0 ; # sun/security/x509/X500Name$$Lambda+0x000002032b062cb8
  7492. instanceKlass sun/security/x509/X500Name
  7493. instanceKlass sun/security/x509/GeneralNameInterface
  7494. instanceKlass sun/security/x509/CertificateAlgorithmId
  7495. instanceKlass sun/security/x509/SerialNumber
  7496. instanceKlass sun/security/x509/CertificateSerialNumber
  7497. instanceKlass sun/security/x509/CertificateVersion
  7498. instanceKlass sun/security/x509/X509CertInfo
  7499. instanceKlass sun/security/util/Cache$EqualByteArray
  7500. instanceKlass java/security/cert/X509Extension
  7501. instanceKlass java/lang/Byte$ByteCache
  7502. instanceKlass @bci sun/security/util/DerInputStream seeOptionalContextSpecific (I)Z 2 <appendix> member <vmtarget> ; # sun/security/util/DerInputStream$$Lambda+0x000002032b0606e8
  7503. instanceKlass @cpi org/eclipse/jdt/internal/compiler/ClassFile 3316 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b011c00
  7504. instanceKlass sun/security/jca/GetInstance$Instance
  7505. instanceKlass sun/security/util/Cache
  7506. instanceKlass jdk/internal/event/Event
  7507. instanceKlass sun/security/jca/GetInstance
  7508. instanceKlass java/security/cert/CertificateFactorySpi
  7509. instanceKlass java/security/cert/CertificateFactory
  7510. instanceKlass sun/security/x509/AlgorithmId
  7511. instanceKlass sun/security/util/ByteArrayTagOrder
  7512. instanceKlass sun/security/util/ByteArrayLexOrder
  7513. instanceKlass sun/security/util/DerValue
  7514. instanceKlass sun/security/util/ObjectIdentifier
  7515. instanceKlass sun/security/pkcs/ContentInfo
  7516. instanceKlass sun/security/util/DerEncoder
  7517. instanceKlass sun/security/util/DerInputStream
  7518. instanceKlass sun/security/pkcs/PKCS7
  7519. instanceKlass java/util/Collections$EmptyIterator
  7520. instanceKlass java/util/LinkedHashMap$LinkedHashIterator
  7521. instanceKlass sun/security/util/SecurityProviderConstants
  7522. instanceKlass java/security/Provider$UString
  7523. instanceKlass java/security/Provider$Service
  7524. instanceKlass sun/security/provider/NativePRNG$NonBlocking
  7525. instanceKlass sun/security/provider/NativePRNG$Blocking
  7526. instanceKlass sun/security/provider/NativePRNG
  7527. instanceKlass sun/security/provider/SunEntries$1
  7528. instanceKlass sun/security/provider/SunEntries
  7529. instanceKlass sun/security/util/SecurityConstants
  7530. instanceKlass java/security/Security$1
  7531. instanceKlass jdk/internal/access/JavaSecurityPropertiesAccess
  7532. instanceKlass java/util/concurrent/ConcurrentHashMap$MapEntry
  7533. instanceKlass java/io/FileInputStream$1
  7534. instanceKlass java/util/Properties$LineReader
  7535. instanceKlass @bci java/security/Security <clinit> ()V 9 <appendix> argL0 ; # java/security/Security$$Lambda+0x80000000b
  7536. instanceKlass java/security/Security
  7537. instanceKlass sun/security/jca/ProviderList$2
  7538. instanceKlass jdk/internal/math/FloatingDecimal$ASCIIToBinaryBuffer
  7539. instanceKlass jdk/internal/math/FloatingDecimal$PreparedASCIIToBinaryBuffer
  7540. instanceKlass jdk/internal/math/FloatingDecimal$ASCIIToBinaryConverter
  7541. instanceKlass jdk/internal/math/FloatingDecimal$BinaryToASCIIBuffer
  7542. instanceKlass jdk/internal/math/FloatingDecimal$ExceptionalBinaryToASCIIBuffer
  7543. instanceKlass jdk/internal/math/FloatingDecimal$BinaryToASCIIConverter
  7544. instanceKlass jdk/internal/math/FloatingDecimal
  7545. instanceKlass javax/security/auth/login/Configuration$Parameters
  7546. instanceKlass java/security/Policy$Parameters
  7547. instanceKlass java/security/cert/CertStoreParameters
  7548. instanceKlass java/security/SecureRandomParameters
  7549. instanceKlass java/security/Provider$EngineDescription
  7550. instanceKlass java/security/Provider$ServiceKey
  7551. instanceKlass sun/security/jca/ProviderConfig
  7552. instanceKlass sun/security/jca/ProviderList
  7553. instanceKlass sun/security/jca/Providers
  7554. instanceKlass @bci sun/security/util/ManifestDigester <init> ([B)V 350 <appendix> argL0 ; # sun/security/util/ManifestDigester$$Lambda+0x000002032b054830
  7555. instanceKlass sun/security/util/ManifestDigester$Section
  7556. instanceKlass sun/security/util/ManifestDigester$Entry
  7557. instanceKlass sun/security/util/ManifestDigester$Position
  7558. instanceKlass sun/security/util/ManifestDigester
  7559. instanceKlass sun/security/util/ManifestEntryVerifier
  7560. instanceKlass jdk/internal/misc/ThreadTracker
  7561. instanceKlass java/util/jar/JarFile$ThreadTrackHolder
  7562. instanceKlass java/util/jar/JarVerifier
  7563. instanceKlass sun/launcher/LauncherHelper
  7564. instanceKlass lombok/patcher/scripts/ScriptBuilder$SetSymbolDuringMethodCallBuilder
  7565. instanceKlass lombok/patcher/scripts/ScriptBuilder$ReplaceMethodCallBuilder
  7566. instanceKlass lombok/eclipse/agent/EclipsePatcher$4
  7567. instanceKlass lombok/eclipse/agent/EclipsePatcher$3
  7568. instanceKlass lombok/patcher/scripts/ScriptBuilder$WrapMethodCallBuilder
  7569. instanceKlass lombok/patcher/ScriptManager$WitnessAction
  7570. instanceKlass lombok/patcher/scripts/ScriptBuilder$WrapReturnValueBuilder
  7571. instanceKlass lombok/patcher/ClassRootFinder
  7572. instanceKlass lombok/patcher/scripts/ScriptBuilder$AddFieldBuilder
  7573. instanceKlass java/util/Collections$1
  7574. instanceKlass lombok/patcher/PatchScript$MethodPatcherFactory
  7575. instanceKlass org/lombokweb/asm/ClassVisitor
  7576. instanceKlass lombok/patcher/Hook
  7577. instanceKlass @bci java/util/regex/Pattern negate (Ljava/util/regex/Pattern$CharPredicate;)Ljava/util/regex/Pattern$CharPredicate; 1 <appendix> member <vmtarget> ; # java/util/regex/Pattern$$Lambda+0x800000031
  7578. instanceKlass java/util/regex/Pattern$BitClass
  7579. instanceKlass lombok/patcher/MethodTarget
  7580. instanceKlass lombok/patcher/scripts/ScriptBuilder$ExitEarlyBuilder
  7581. instanceKlass lombok/patcher/scripts/ScriptBuilder
  7582. instanceKlass lombok/eclipse/agent/EclipseLoaderPatcher
  7583. instanceKlass lombok/eclipse/agent/EclipsePatcher$2
  7584. instanceKlass lombok/eclipse/agent/EclipsePatcher$1
  7585. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b011800
  7586. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b011400
  7587. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b011000
  7588. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b010c00
  7589. # instanceKlass java/lang/invoke/LambdaForm$BMH+0x000002032b010800
  7590. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b010400
  7591. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b010000
  7592. instanceKlass java/lang/instrument/ClassDefinition
  7593. instanceKlass lombok/patcher/ScriptManager$OurClassFileTransformer
  7594. instanceKlass lombok/patcher/Filter$1
  7595. instanceKlass lombok/patcher/TransplantMapper$1
  7596. instanceKlass java/lang/instrument/ClassFileTransformer
  7597. instanceKlass lombok/patcher/ScriptManager
  7598. instanceKlass lombok/patcher/TransplantMapper
  7599. instanceKlass lombok/patcher/Filter
  7600. instanceKlass lombok/patcher/PatchScript
  7601. instanceKlass lombok/patcher/TargetMatcher
  7602. instanceKlass lombok/eclipse/agent/EclipsePatcher
  7603. instanceKlass lombok/core/AgentLauncher$AgentLaunchable
  7604. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b00c400
  7605. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b00c000
  7606. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b00bc00
  7607. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b00b800
  7608. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b00b400
  7609. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b00b000
  7610. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b00ac00
  7611. # instanceKlass java/lang/invoke/LambdaForm$BMH+0x000002032b00a800
  7612. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b00a400
  7613. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b00a000
  7614. instanceKlass jdk/internal/foreign/MemorySessionImpl
  7615. instanceKlass java/lang/foreign/MemorySegment$Scope
  7616. instanceKlass lombok/core/AgentLauncher$AgentInfo
  7617. instanceKlass lombok/core/AgentLauncher
  7618. instanceKlass java/util/IdentityHashMap$IdentityHashMapIterator
  7619. instanceKlass lombok/launch/ClassFileMetaData
  7620. instanceKlass sun/net/www/MessageHeader
  7621. instanceKlass sun/net/www/protocol/jar/JarFileFactory
  7622. instanceKlass sun/net/www/protocol/jar/URLJarFile$URLJarFileCloseController
  7623. instanceKlass java/net/URLConnection
  7624. instanceKlass java/util/zip/ZipFile$ZipEntryIterator
  7625. instanceKlass java/util/WeakHashMap$HashIterator
  7626. instanceKlass java/net/URLDecoder
  7627. instanceKlass java/util/regex/IntHashSet
  7628. instanceKlass java/util/regex/Matcher
  7629. instanceKlass java/util/regex/MatchResult
  7630. instanceKlass java/util/regex/Pattern$TreeInfo
  7631. instanceKlass @bci java/util/regex/Pattern Single (I)Ljava/util/regex/Pattern$BmpCharPredicate; 1 <appendix> member <vmtarget> ; # java/util/regex/Pattern$$Lambda+0x800000029
  7632. instanceKlass java/util/regex/Pattern$BmpCharPredicate
  7633. instanceKlass java/util/regex/Pattern$CharPredicate
  7634. instanceKlass java/util/regex/Pattern$Node
  7635. instanceKlass java/util/regex/Pattern
  7636. instanceKlass jdk/internal/jimage/ImageLocation
  7637. instanceKlass jdk/internal/jimage/decompressor/Decompressor
  7638. instanceKlass jdk/internal/jimage/ImageStringsReader
  7639. instanceKlass jdk/internal/jimage/ImageStrings
  7640. instanceKlass jdk/internal/jimage/ImageHeader
  7641. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b009400
  7642. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b009000
  7643. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b008c00
  7644. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b008800
  7645. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b008400
  7646. instanceKlass java/lang/ClassValue$Version
  7647. instanceKlass java/lang/ClassValue$Identity
  7648. instanceKlass java/lang/ClassValue
  7649. instanceKlass java/lang/invoke/MethodHandleImpl$ArrayAccessor
  7650. instanceKlass java/lang/invoke/MethodHandleImpl$LoopClauses
  7651. instanceKlass java/lang/invoke/MethodHandleImpl$CasesHolder
  7652. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b008000
  7653. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b007c00
  7654. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b007800
  7655. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b007400
  7656. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b007000
  7657. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b006c00
  7658. instanceKlass @cpi org/eclipse/jdt/internal/compiler/lookup/InferenceContext18 1681 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b006800
  7659. # instanceKlass java/lang/invoke/LambdaForm$BMH+0x000002032b006400
  7660. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b006000
  7661. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b005c00
  7662. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b005800
  7663. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b005400
  7664. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b005000
  7665. instanceKlass java/lang/invoke/ClassSpecializer$Factory$1Var
  7666. instanceKlass java/lang/invoke/MethodHandles$1
  7667. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b004c00
  7668. instanceKlass sun/invoke/util/ValueConversions$1
  7669. instanceKlass sun/invoke/util/ValueConversions$WrapperCache
  7670. # instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002032b004800
  7671. instanceKlass sun/nio/ch/Util$4
  7672. instanceKlass sun/nio/ch/Util
  7673. instanceKlass sun/nio/ch/FileChannelImpl$Unmapper
  7674. instanceKlass jdk/internal/access/foreign/UnmapperProxy
  7675. instanceKlass @bci jdk/internal/misc/ExtendedMapMode <clinit> ()V 0 <appendix> argL0 ; # jdk/internal/misc/ExtendedMapMode$$Lambda+0x000002032b04cc20
  7676. instanceKlass jdk/internal/misc/ExtendedMapMode
  7677. instanceKlass sun/nio/ch/IOStatus
  7678. instanceKlass sun/nio/ch/NativeThread
  7679. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b004400
  7680. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b004000
  7681. instanceKlass @cpi org/eclipse/ltk/internal/core/refactoring/history/RefactoringHistoryService 915 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b003c00
  7682. instanceKlass @cpi javax/crypto/spec/SecretKeySpec 165 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b003800
  7683. instanceKlass java/lang/foreign/MemorySegment
  7684. instanceKlass java/lang/foreign/Arena
  7685. instanceKlass java/lang/foreign/SegmentAllocator
  7686. instanceKlass java/nio/channels/FileChannel$MapMode
  7687. instanceKlass java/nio/channels/FileLock
  7688. instanceKlass jdk/internal/jimage/BasicImageReader$2
  7689. instanceKlass sun/nio/ch/FileChannelImpl$Closer
  7690. instanceKlass sun/nio/ch/NativeThreadSet
  7691. instanceKlass sun/nio/ch/IOUtil
  7692. instanceKlass sun/nio/ch/NativeDispatcher
  7693. instanceKlass sun/nio/fs/WindowsChannelFactory$2
  7694. instanceKlass sun/nio/fs/WindowsChannelFactory$Flags
  7695. instanceKlass sun/nio/fs/WindowsChannelFactory$1
  7696. instanceKlass sun/nio/fs/WindowsChannelFactory
  7697. instanceKlass sun/nio/fs/WindowsSecurityDescriptor
  7698. instanceKlass java/nio/file/attribute/FileAttribute
  7699. instanceKlass java/nio/channels/spi/AbstractInterruptibleChannel
  7700. instanceKlass java/nio/channels/InterruptibleChannel
  7701. instanceKlass java/nio/channels/ScatteringByteChannel
  7702. instanceKlass java/nio/channels/GatheringByteChannel
  7703. instanceKlass java/nio/channels/SeekableByteChannel
  7704. instanceKlass java/nio/channels/ByteChannel
  7705. instanceKlass java/nio/channels/WritableByteChannel
  7706. instanceKlass java/nio/channels/ReadableByteChannel
  7707. instanceKlass java/nio/channels/Channel
  7708. instanceKlass jdk/internal/jimage/NativeImageBuffer$1
  7709. instanceKlass jdk/internal/jimage/NativeImageBuffer
  7710. instanceKlass jdk/internal/jimage/BasicImageReader$1
  7711. instanceKlass jdk/internal/jimage/BasicImageReader
  7712. instanceKlass jdk/internal/jimage/ImageReader
  7713. instanceKlass jdk/internal/jimage/ImageReaderFactory$1
  7714. instanceKlass java/net/URI$Parser
  7715. instanceKlass java/nio/file/FileSystems$DefaultFileSystemHolder$1
  7716. instanceKlass java/nio/file/FileSystems$DefaultFileSystemHolder
  7717. instanceKlass java/nio/file/FileSystems
  7718. instanceKlass java/nio/file/Paths
  7719. instanceKlass jdk/internal/jimage/ImageReaderFactory
  7720. instanceKlass jdk/internal/module/SystemModuleFinders$SystemImage
  7721. instanceKlass jdk/internal/module/SystemModuleFinders$SystemModuleReader
  7722. instanceKlass java/lang/module/ModuleReader
  7723. instanceKlass jdk/internal/loader/BuiltinClassLoader$5
  7724. instanceKlass jdk/internal/loader/BuiltinClassLoader$2
  7725. instanceKlass jdk/internal/module/Resources
  7726. instanceKlass java/util/Arrays$ArrayItr
  7727. instanceKlass lombok/launch/PackageShader
  7728. instanceKlass java/io/Reader
  7729. instanceKlass lombok/launch/Main
  7730. instanceKlass @bci jdk/internal/reflect/DirectMethodHandleAccessor invokeImpl (Ljava/lang/Object;[Ljava/lang/Object;Ljava/lang/Class;)Ljava/lang/Object; 136 <adapter> ; # java/lang/invoke/LambdaForm$MH+0x000002032b002c00
  7731. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b002800
  7732. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b002400
  7733. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b002000
  7734. instanceKlass @bci org/eclipse/jdt/internal/compiler/classfmt/ClassFileReader toUri (Ljava/lang/String;)Ljava/net/URI; 21 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b001c00
  7735. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b001800
  7736. instanceKlass sun/instrument/InstrumentationImpl$1
  7737. instanceKlass lombok/launch/Agent
  7738. instanceKlass java/security/SecureClassLoader$DebugHolder
  7739. instanceKlass java/security/Permission
  7740. instanceKlass java/security/Guard
  7741. instanceKlass java/security/PermissionCollection
  7742. instanceKlass java/security/SecureClassLoader$1
  7743. instanceKlass java/util/zip/Checksum$1
  7744. instanceKlass java/util/zip/CRC32
  7745. instanceKlass java/util/zip/Checksum
  7746. instanceKlass sun/nio/ByteBuffered
  7747. instanceKlass java/lang/Package$VersionInfo
  7748. instanceKlass java/lang/NamedPackage
  7749. instanceKlass java/util/jar/Attributes$Name
  7750. instanceKlass java/util/jar/Attributes
  7751. instanceKlass jdk/internal/loader/Resource
  7752. instanceKlass sun/security/action/GetIntegerAction
  7753. instanceKlass sun/security/util/Debug
  7754. instanceKlass sun/security/util/SignatureFileVerifier
  7755. instanceKlass java/util/zip/ZipFile$InflaterCleanupAction
  7756. instanceKlass java/util/zip/Inflater$InflaterZStreamRef
  7757. instanceKlass java/util/zip/Inflater
  7758. instanceKlass java/util/zip/ZipEntry
  7759. instanceKlass java/util/zip/ZipFile$2
  7760. instanceKlass java/nio/Bits$1
  7761. instanceKlass jdk/internal/misc/VM$BufferPool
  7762. instanceKlass java/nio/Bits
  7763. instanceKlass sun/nio/ch/DirectBuffer
  7764. instanceKlass jdk/internal/perf/PerfCounter$CoreCounters
  7765. instanceKlass jdk/internal/perf/Perf
  7766. instanceKlass jdk/internal/perf/Perf$GetPerfAction
  7767. instanceKlass jdk/internal/perf/PerfCounter
  7768. instanceKlass sun/util/locale/LocaleUtils
  7769. instanceKlass sun/util/locale/BaseLocale
  7770. instanceKlass java/util/Locale
  7771. instanceKlass java/nio/file/attribute/FileTime
  7772. instanceKlass java/util/zip/ZipUtils
  7773. instanceKlass java/util/zip/ZipFile$Source$End
  7774. instanceKlass java/io/RandomAccessFile$2
  7775. instanceKlass jdk/internal/access/JavaIORandomAccessFileAccess
  7776. instanceKlass java/io/RandomAccessFile
  7777. instanceKlass java/io/DataInput
  7778. instanceKlass java/io/DataOutput
  7779. instanceKlass sun/nio/fs/WindowsNativeDispatcher$CompletionStatus
  7780. instanceKlass sun/nio/fs/WindowsNativeDispatcher$AclInformation
  7781. instanceKlass sun/nio/fs/WindowsNativeDispatcher$Account
  7782. instanceKlass sun/nio/fs/WindowsNativeDispatcher$DiskFreeSpace
  7783. instanceKlass sun/nio/fs/WindowsNativeDispatcher$VolumeInformation
  7784. instanceKlass sun/nio/fs/WindowsNativeDispatcher$FirstStream
  7785. instanceKlass sun/nio/fs/WindowsNativeDispatcher$FirstFile
  7786. instanceKlass java/util/Enumeration
  7787. instanceKlass java/util/concurrent/ConcurrentHashMap$Traverser
  7788. instanceKlass sun/nio/fs/WindowsNativeDispatcher
  7789. instanceKlass sun/nio/fs/NativeBuffer$Deallocator
  7790. instanceKlass sun/nio/fs/NativeBuffer
  7791. instanceKlass java/lang/ThreadLocal$ThreadLocalMap
  7792. instanceKlass java/lang/ThreadLocal
  7793. instanceKlass sun/nio/fs/NativeBuffers
  7794. instanceKlass sun/nio/fs/WindowsFileAttributes
  7795. instanceKlass java/nio/file/attribute/DosFileAttributes
  7796. instanceKlass sun/nio/fs/AbstractBasicFileAttributeView
  7797. instanceKlass sun/nio/fs/DynamicFileAttributeView
  7798. instanceKlass sun/nio/fs/WindowsFileAttributeViews
  7799. instanceKlass sun/nio/fs/Util
  7800. instanceKlass java/nio/file/attribute/BasicFileAttributeView
  7801. instanceKlass java/nio/file/attribute/FileAttributeView
  7802. instanceKlass java/nio/file/attribute/AttributeView
  7803. instanceKlass java/nio/file/Files
  7804. instanceKlass java/nio/file/CopyOption
  7805. instanceKlass java/nio/file/attribute/BasicFileAttributes
  7806. instanceKlass sun/nio/fs/WindowsPath
  7807. instanceKlass java/util/zip/ZipFile$Source$Key
  7808. instanceKlass sun/nio/fs/WindowsPathParser$Result
  7809. instanceKlass sun/nio/fs/WindowsPathParser
  7810. instanceKlass java/nio/file/FileSystem
  7811. instanceKlass java/nio/file/OpenOption
  7812. instanceKlass java/nio/file/spi/FileSystemProvider
  7813. instanceKlass sun/nio/fs/DefaultFileSystemProvider
  7814. instanceKlass java/util/zip/ZipFile$Source
  7815. instanceKlass java/util/zip/ZipCoder
  7816. instanceKlass java/util/zip/ZipFile$CleanableResource
  7817. instanceKlass java/lang/Runtime$Version
  7818. instanceKlass java/util/jar/JavaUtilJarAccessImpl
  7819. instanceKlass jdk/internal/access/JavaUtilJarAccess
  7820. instanceKlass jdk/internal/loader/FileURLMapper
  7821. instanceKlass jdk/internal/loader/URLClassPath$JarLoader$1
  7822. instanceKlass java/util/zip/ZipFile$1
  7823. instanceKlass jdk/internal/access/JavaUtilZipFileAccess
  7824. instanceKlass java/util/zip/ZipFile
  7825. instanceKlass java/util/zip/ZipConstants
  7826. instanceKlass jdk/internal/loader/URLClassPath$Loader
  7827. instanceKlass jdk/internal/loader/URLClassPath$3
  7828. instanceKlass java/security/PrivilegedExceptionAction
  7829. instanceKlass sun/net/util/URLUtil
  7830. instanceKlass sun/instrument/TransformerManager$TransformerInfo
  7831. instanceKlass sun/instrument/TransformerManager
  7832. instanceKlass jdk/internal/loader/NativeLibraries$3
  7833. instanceKlass sun/nio/cs/StringUTF16
  7834. instanceKlass jdk/internal/loader/NativeLibrary
  7835. instanceKlass java/util/ArrayDeque$DeqIterator
  7836. instanceKlass jdk/internal/loader/NativeLibraries$NativeLibraryContext$1
  7837. instanceKlass jdk/internal/loader/NativeLibraries$NativeLibraryContext
  7838. instanceKlass jdk/internal/loader/NativeLibraries$2
  7839. instanceKlass jdk/internal/loader/NativeLibraries$1
  7840. instanceKlass jdk/internal/loader/NativeLibraries$LibraryPaths
  7841. instanceKlass @bci sun/instrument/InstrumentationImpl <clinit> ()V 16 <appendix> argL0 ; # sun/instrument/InstrumentationImpl$$Lambda+0x000002032b044090
  7842. instanceKlass sun/instrument/InstrumentationImpl
  7843. instanceKlass java/lang/instrument/Instrumentation
  7844. instanceKlass java/lang/invoke/StringConcatFactory
  7845. instanceKlass jdk/internal/module/ModuleBootstrap$SafeModuleFinder
  7846. instanceKlass @bci java/lang/WeakPairMap computeIfAbsent (Ljava/lang/Object;Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object; 18 <appendix> member <vmtarget> ; # java/lang/WeakPairMap$$Lambda+0x000002032b043948
  7847. instanceKlass @bci java/lang/Module implAddExportsOrOpens (Ljava/lang/String;Ljava/lang/Module;ZZ)V 145 <appendix> argL0 ; # java/lang/Module$$Lambda+0x000002032b043030
  7848. instanceKlass @bci jdk/internal/module/ModuleBootstrap decode (Ljava/lang/String;Ljava/lang/String;Z)Ljava/util/Map; 193 <appendix> argL0 ; # jdk/internal/module/ModuleBootstrap$$Lambda+0x000002032b042e00
  7849. instanceKlass java/lang/ModuleLayer$Controller
  7850. instanceKlass java/util/concurrent/CopyOnWriteArrayList
  7851. instanceKlass jdk/internal/module/ServicesCatalog$ServiceProvider
  7852. instanceKlass jdk/internal/loader/AbstractClassLoaderValue$Memoizer
  7853. instanceKlass jdk/internal/module/ModuleLoaderMap$Modules
  7854. instanceKlass jdk/internal/module/ModuleLoaderMap$Mapper
  7855. instanceKlass jdk/internal/module/ModuleLoaderMap
  7856. instanceKlass java/lang/module/ResolvedModule
  7857. instanceKlass java/util/Collections$UnmodifiableCollection$1
  7858. instanceKlass java/util/SequencedMap
  7859. instanceKlass java/util/SequencedSet
  7860. instanceKlass java/lang/ModuleLayer
  7861. instanceKlass java/util/ImmutableCollections$ListItr
  7862. instanceKlass java/util/ListIterator
  7863. instanceKlass java/lang/module/ModuleFinder$1
  7864. instanceKlass java/nio/file/Path
  7865. instanceKlass java/nio/file/Watchable
  7866. instanceKlass java/lang/module/Resolver
  7867. instanceKlass java/lang/module/Configuration
  7868. instanceKlass java/util/stream/ForEachOps$ForEachOp
  7869. instanceKlass java/util/stream/ForEachOps
  7870. instanceKlass @bci jdk/internal/module/ModuleBootstrap boot2 ()Ljava/lang/ModuleLayer; 791 <appendix> member <vmtarget> ; # jdk/internal/module/ModuleBootstrap$$Lambda+0x000002032b042420
  7871. instanceKlass @cpi org/eclipse/jdt/internal/core/index/MetaIndex 213 form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$DMH+0x000002032b000c00
  7872. instanceKlass @bci jdk/internal/module/ModuleBootstrap boot2 ()Ljava/lang/ModuleLayer; 779 <appendix> member <vmtarget> ; # jdk/internal/module/ModuleBootstrap$$Lambda+0x000002032b0421d8
  7873. instanceKlass @bci jdk/internal/module/ModuleBootstrap boot2 ()Ljava/lang/ModuleLayer; 767 <appendix> argL0 ; # jdk/internal/module/ModuleBootstrap$$Lambda+0x000002032b041fa8
  7874. instanceKlass @bci jdk/internal/module/ModuleBootstrap boot2 ()Ljava/lang/ModuleLayer; 757 <appendix> argL0 ; # jdk/internal/module/ModuleBootstrap$$Lambda+0x000002032b041d78
  7875. instanceKlass @bci java/util/stream/FindOps$FindSink$OfRef <clinit> ()V 43 <appendix> argL0 ; # java/util/stream/FindOps$FindSink$OfRef$$Lambda+0x800000048
  7876. instanceKlass @bci java/util/stream/FindOps$FindSink$OfRef <clinit> ()V 38 <appendix> argL0 ; # java/util/stream/FindOps$FindSink$OfRef$$Lambda+0x80000004a
  7877. instanceKlass @bci java/util/stream/FindOps$FindSink$OfRef <clinit> ()V 16 <appendix> argL0 ; # java/util/stream/FindOps$FindSink$OfRef$$Lambda+0x800000049
  7878. instanceKlass @bci java/util/stream/FindOps$FindSink$OfRef <clinit> ()V 11 <appendix> argL0 ; # java/util/stream/FindOps$FindSink$OfRef$$Lambda+0x80000004b
  7879. instanceKlass java/util/stream/FindOps$FindOp
  7880. instanceKlass java/util/stream/FindOps$FindSink
  7881. instanceKlass java/util/stream/FindOps
  7882. instanceKlass @bci jdk/internal/module/DefaultRoots exportsAPI (Ljava/lang/module/ModuleDescriptor;)Z 9 <appendix> argL0 ; # jdk/internal/module/DefaultRoots$$Lambda+0x800000051
  7883. instanceKlass java/util/stream/Sink$ChainedReference
  7884. instanceKlass java/util/stream/ReduceOps$AccumulatingSink
  7885. instanceKlass java/util/stream/TerminalSink
  7886. instanceKlass java/util/stream/Sink
  7887. instanceKlass java/util/function/Consumer
  7888. instanceKlass java/util/stream/ReduceOps$Box
  7889. instanceKlass java/util/stream/ReduceOps$ReduceOp
  7890. instanceKlass java/util/stream/TerminalOp
  7891. instanceKlass java/util/stream/ReduceOps
  7892. instanceKlass @bci java/util/stream/Collectors castingIdentity ()Ljava/util/function/Function; 0 <appendix> argL0 ; # java/util/stream/Collectors$$Lambda+0x800000042
  7893. instanceKlass @bci java/util/stream/Collectors toSet ()Ljava/util/stream/Collector; 14 <appendix> argL0 ; # java/util/stream/Collectors$$Lambda+0x800000040
  7894. instanceKlass java/util/function/BinaryOperator
  7895. instanceKlass @bci java/util/stream/Collectors toSet ()Ljava/util/stream/Collector; 9 <appendix> argL0 ; # java/util/stream/Collectors$$Lambda+0x800000039
  7896. instanceKlass java/util/function/BiConsumer
  7897. instanceKlass @bci java/util/stream/Collectors toSet ()Ljava/util/stream/Collector; 4 <appendix> argL0 ; # java/util/stream/Collectors$$Lambda+0x800000045
  7898. instanceKlass java/util/stream/Collector
  7899. instanceKlass java/util/Collections$UnmodifiableCollection
  7900. instanceKlass java/util/stream/Collectors
  7901. instanceKlass @bci jdk/internal/module/DefaultRoots compute (Ljava/lang/module/ModuleFinder;Ljava/lang/module/ModuleFinder;)Ljava/util/Set; 42 <appendix> argL0 ; # jdk/internal/module/DefaultRoots$$Lambda+0x80000004e
  7902. instanceKlass @bci jdk/internal/module/DefaultRoots compute (Ljava/lang/module/ModuleFinder;Ljava/lang/module/ModuleFinder;)Ljava/util/Set; 32 <appendix> member <vmtarget> ; # jdk/internal/module/DefaultRoots$$Lambda+0x800000052
  7903. instanceKlass @bci jdk/internal/module/DefaultRoots compute (Ljava/lang/module/ModuleFinder;Ljava/lang/module/ModuleFinder;)Ljava/util/Set; 21 <appendix> argL0 ; # jdk/internal/module/DefaultRoots$$Lambda+0x80000004f
  7904. instanceKlass java/util/concurrent/ForkJoinPool$ManagedBlocker
  7905. instanceKlass java/util/concurrent/locks/AbstractQueuedSynchronizer$Node
  7906. instanceKlass java/lang/ref/Cleaner$Cleanable
  7907. instanceKlass jdk/internal/ref/CleanerImpl
  7908. instanceKlass java/lang/ref/Cleaner$1
  7909. instanceKlass java/lang/ref/Cleaner
  7910. instanceKlass jdk/internal/ref/CleanerFactory$1
  7911. instanceKlass java/util/concurrent/ThreadFactory
  7912. instanceKlass jdk/internal/ref/CleanerFactory
  7913. instanceKlass @bci org/eclipse/jdt/internal/compiler/ProcessTaskManager <clinit> ()V 10 <appendix> form vmentry <vmtarget> ; # java/lang/invoke/LambdaForm$MH+0x000002032b000800
  7914. instanceKlass @bci jdk/internal/module/DefaultRoots compute (Ljava/lang/module/ModuleFinder;Ljava/lang/module/ModuleFinder;)Ljava/util/Set; 11 <appendix> argL0 ; # jdk/internal/module/DefaultRoots$$Lambda+0x800000050
  7915. instanceKlass java/lang/invoke/LambdaProxyClassArchive
  7916. instanceKlass java/lang/invoke/InfoFromMemberName
  7917. instanceKlass java/lang/invoke/MethodHandleInfo
  7918. instanceKlass jdk/internal/org/objectweb/asm/ConstantDynamic
  7919. instanceKlass jdk/internal/org/objectweb/asm/Handle
  7920. instanceKlass sun/security/action/GetBooleanAction
  7921. instanceKlass java/lang/invoke/AbstractValidatingLambdaMetafactory
  7922. instanceKlass java/lang/invoke/BootstrapMethodInvoker
  7923. instanceKlass java/util/function/Predicate
  7924. instanceKlass java/lang/WeakPairMap$Pair$Lookup
  7925. instanceKlass java/lang/WeakPairMap$Pair
  7926. instanceKlass java/lang/WeakPairMap
  7927. instanceKlass java/lang/Module$ReflectionData
  7928. instanceKlass java/lang/invoke/LambdaMetafactory
  7929. # instanceKlass java/lang/invoke/LambdaForm$MH+0x000002032b000400
  7930. instanceKlass java/lang/invoke/MethodHandles$Lookup$ClassDefiner
  7931. instanceKlass java/lang/invoke/MethodHandles$Lookup$ClassFile
  7932. instanceKlass jdk/internal/org/objectweb/asm/Handler
  7933. instanceKlass jdk/internal/org/objectweb/asm/Attribute
  7934. instanceKlass jdk/internal/org/objectweb/asm/FieldVisitor
  7935. instanceKlass java/util/ArrayList$Itr
  7936. instanceKlass sun/invoke/empty/Empty
  7937. instanceKlass sun/invoke/util/VerifyType
  7938. instanceKlass java/lang/invoke/InvokerBytecodeGenerator$ClassData
  7939. instanceKlass jdk/internal/org/objectweb/asm/AnnotationVisitor
  7940. instanceKlass jdk/internal/org/objectweb/asm/Frame
  7941. instanceKlass jdk/internal/org/objectweb/asm/Label
  7942. instanceKlass jdk/internal/org/objectweb/asm/Type
  7943. instanceKlass jdk/internal/org/objectweb/asm/MethodVisitor
  7944. instanceKlass sun/invoke/util/BytecodeDescriptor
  7945. instanceKlass jdk/internal/org/objectweb/asm/ByteVector
  7946. instanceKlass jdk/internal/org/objectweb/asm/Symbol
  7947. instanceKlass jdk/internal/org/objectweb/asm/SymbolTable
  7948. instanceKlass jdk/internal/org/objectweb/asm/ClassVisitor
  7949. instanceKlass java/lang/invoke/LambdaFormBuffer
  7950. instanceKlass java/lang/invoke/LambdaFormEditor$TransformKey
  7951. instanceKlass java/lang/invoke/LambdaFormEditor
  7952. instanceKlass java/lang/invoke/Invokers$Holder
  7953. instanceKlass java/lang/invoke/DelegatingMethodHandle$Holder
  7954. instanceKlass java/lang/invoke/DirectMethodHandle$2
  7955. instanceKlass java/lang/invoke/ClassSpecializer$Factory
  7956. instanceKlass java/lang/invoke/ClassSpecializer$SpeciesData
  7957. instanceKlass java/lang/invoke/ClassSpecializer$1
  7958. instanceKlass java/lang/invoke/ClassSpecializer
  7959. instanceKlass java/lang/invoke/InvokerBytecodeGenerator$1
  7960. instanceKlass java/lang/invoke/InvokerBytecodeGenerator
  7961. instanceKlass java/lang/invoke/LambdaForm$Holder
  7962. instanceKlass java/lang/invoke/LambdaForm$Name
  7963. instanceKlass java/lang/reflect/Array
  7964. instanceKlass java/lang/invoke/Invokers
  7965. instanceKlass sun/invoke/util/ValueConversions
  7966. instanceKlass java/lang/invoke/DirectMethodHandle$Holder
  7967. instanceKlass java/lang/Void
  7968. instanceKlass sun/invoke/util/Wrapper$Format
  7969. instanceKlass java/lang/invoke/MethodHandleImpl$1
  7970. instanceKlass jdk/internal/access/JavaLangInvokeAccess
  7971. instanceKlass java/lang/invoke/LambdaForm$NamedFunction
  7972. instanceKlass java/lang/invoke/MethodHandleImpl
  7973. instanceKlass jdk/internal/reflect/MethodHandleAccessorFactory$LazyStaticHolder
  7974. instanceKlass java/lang/invoke/MethodTypeForm
  7975. instanceKlass jdk/internal/util/StrongReferenceKey
  7976. instanceKlass jdk/internal/util/ReferenceKey
  7977. instanceKlass jdk/internal/util/ReferencedKeyMap
  7978. instanceKlass java/lang/invoke/MethodType$1
  7979. instanceKlass sun/reflect/annotation/AnnotationParser
  7980. instanceKlass java/lang/Class$3
  7981. instanceKlass java/lang/PublicMethods$Key
  7982. instanceKlass java/lang/PublicMethods$MethodList
  7983. instanceKlass java/util/EnumMap$1
  7984. instanceKlass java/util/stream/StreamOpFlag$MaskBuilder
  7985. instanceKlass java/util/stream/Stream
  7986. instanceKlass java/util/stream/BaseStream
  7987. instanceKlass java/util/stream/PipelineHelper
  7988. instanceKlass java/util/stream/StreamSupport
  7989. instanceKlass java/util/Spliterators$IteratorSpliterator
  7990. instanceKlass java/util/Spliterator$OfDouble
  7991. instanceKlass java/util/Spliterator$OfLong
  7992. instanceKlass java/util/Spliterator$OfInt
  7993. instanceKlass java/util/Spliterator$OfPrimitive
  7994. instanceKlass java/util/Spliterator
  7995. instanceKlass java/util/Spliterators$EmptySpliterator
  7996. instanceKlass java/util/Spliterators
  7997. instanceKlass jdk/internal/module/DefaultRoots
  7998. instanceKlass jdk/internal/loader/BuiltinClassLoader$LoadedModule
  7999. instanceKlass jdk/internal/loader/AbstractClassLoaderValue
  8000. instanceKlass jdk/internal/module/ServicesCatalog
  8001. instanceKlass java/util/Deque
  8002. instanceKlass java/util/Queue
  8003. instanceKlass sun/net/util/IPAddressUtil$MASKS
  8004. instanceKlass sun/net/util/IPAddressUtil
  8005. instanceKlass java/net/URLStreamHandler
  8006. instanceKlass sun/net/www/ParseUtil
  8007. instanceKlass java/net/URL$3
  8008. instanceKlass jdk/internal/access/JavaNetURLAccess
  8009. instanceKlass java/net/URL$DefaultFactory
  8010. instanceKlass java/net/URLStreamHandlerFactory
  8011. instanceKlass jdk/internal/loader/URLClassPath
  8012. instanceKlass java/security/Principal
  8013. instanceKlass java/security/ProtectionDomain$Key
  8014. instanceKlass java/security/ProtectionDomain$JavaSecurityAccessImpl
  8015. instanceKlass jdk/internal/access/JavaSecurityAccess
  8016. instanceKlass java/lang/ClassLoader$ParallelLoaders
  8017. instanceKlass java/security/cert/Certificate
  8018. instanceKlass jdk/internal/loader/ArchivedClassLoaders
  8019. instanceKlass java/util/concurrent/ConcurrentHashMap$CollectionView
  8020. instanceKlass jdk/internal/loader/ClassLoaderHelper
  8021. instanceKlass jdk/internal/loader/NativeLibraries
  8022. instanceKlass java/lang/Module$EnableNativeAccess
  8023. instanceKlass jdk/internal/loader/BootLoader
  8024. instanceKlass java/util/Optional
  8025. instanceKlass jdk/internal/module/SystemModuleFinders$SystemModuleFinder
  8026. instanceKlass java/lang/module/ModuleFinder
  8027. instanceKlass jdk/internal/module/SystemModuleFinders$3
  8028. instanceKlass jdk/internal/module/ModuleHashes$HashSupplier
  8029. instanceKlass jdk/internal/module/SystemModuleFinders$2
  8030. instanceKlass java/util/function/Supplier
  8031. instanceKlass java/lang/module/ModuleReference
  8032. instanceKlass jdk/internal/module/ModuleResolution
  8033. instanceKlass java/util/Collections$UnmodifiableMap
  8034. instanceKlass jdk/internal/module/ModuleHashes$Builder
  8035. instanceKlass jdk/internal/module/ModuleHashes
  8036. instanceKlass jdk/internal/module/ModuleTarget
  8037. instanceKlass java/util/ImmutableCollections$Set12$1
  8038. instanceKlass java/lang/reflect/AccessFlag$18
  8039. instanceKlass java/lang/reflect/AccessFlag$17
  8040. instanceKlass java/lang/reflect/AccessFlag$16
  8041. instanceKlass java/lang/reflect/AccessFlag$15
  8042. instanceKlass java/lang/reflect/AccessFlag$14
  8043. instanceKlass java/lang/reflect/AccessFlag$13
  8044. instanceKlass java/lang/reflect/AccessFlag$12
  8045. instanceKlass java/lang/reflect/AccessFlag$11
  8046. instanceKlass java/lang/reflect/AccessFlag$10
  8047. instanceKlass java/lang/reflect/AccessFlag$9
  8048. instanceKlass java/lang/reflect/AccessFlag$8
  8049. instanceKlass java/lang/reflect/AccessFlag$7
  8050. instanceKlass java/lang/reflect/AccessFlag$6
  8051. instanceKlass java/lang/reflect/AccessFlag$5
  8052. instanceKlass java/lang/reflect/AccessFlag$4
  8053. instanceKlass java/lang/reflect/AccessFlag$3
  8054. instanceKlass java/lang/reflect/AccessFlag$2
  8055. instanceKlass java/lang/reflect/AccessFlag$1
  8056. instanceKlass java/lang/module/ModuleDescriptor$Version
  8057. instanceKlass java/lang/module/ModuleDescriptor$Provides
  8058. instanceKlass java/lang/module/ModuleDescriptor$Opens
  8059. instanceKlass java/util/ImmutableCollections$SetN$SetNIterator
  8060. instanceKlass java/lang/module/ModuleDescriptor$Exports
  8061. instanceKlass java/lang/module/ModuleDescriptor$Requires
  8062. instanceKlass jdk/internal/module/Builder
  8063. instanceKlass jdk/internal/module/SystemModules$all
  8064. instanceKlass jdk/internal/module/SystemModules
  8065. instanceKlass jdk/internal/module/SystemModulesMap
  8066. instanceKlass java/net/URI$1
  8067. instanceKlass jdk/internal/access/JavaNetUriAccess
  8068. instanceKlass java/net/URI
  8069. instanceKlass jdk/internal/module/SystemModuleFinders
  8070. instanceKlass jdk/internal/module/ArchivedModuleGraph
  8071. instanceKlass jdk/internal/module/ArchivedBootLayer
  8072. instanceKlass jdk/internal/module/ModuleBootstrap$Counters
  8073. instanceKlass jdk/internal/module/ModulePatcher
  8074. instanceKlass java/io/FileSystem
  8075. instanceKlass java/io/DefaultFileSystem
  8076. instanceKlass java/io/File
  8077. instanceKlass java/lang/module/ModuleDescriptor$1
  8078. instanceKlass jdk/internal/access/JavaLangModuleAccess
  8079. instanceKlass sun/invoke/util/VerifyAccess
  8080. instanceKlass java/util/KeyValueHolder
  8081. instanceKlass java/util/ImmutableCollections$MapN$MapNIterator
  8082. instanceKlass java/lang/StrictMath
  8083. instanceKlass java/lang/invoke/MethodHandles$Lookup
  8084. instanceKlass java/lang/invoke/MemberName$Factory
  8085. instanceKlass java/lang/invoke/MethodHandles
  8086. instanceKlass java/lang/module/ModuleDescriptor
  8087. instanceKlass jdk/internal/module/ModuleBootstrap
  8088. instanceKlass java/lang/Character$CharacterCache
  8089. instanceKlass java/util/HexFormat
  8090. instanceKlass jdk/internal/util/ClassFileDumper
  8091. instanceKlass sun/security/action/GetPropertyAction
  8092. instanceKlass java/lang/invoke/MethodHandleStatics
  8093. instanceKlass jdk/internal/misc/Blocker
  8094. instanceKlass java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject
  8095. instanceKlass java/util/concurrent/locks/Condition
  8096. instanceKlass java/util/Collections
  8097. instanceKlass java/lang/Thread$ThreadIdentifiers
  8098. instanceKlass sun/io/Win32ErrorMode
  8099. instanceKlass jdk/internal/misc/OSEnvironment
  8100. instanceKlass java/lang/Integer$IntegerCache
  8101. instanceKlass jdk/internal/misc/Signal$NativeHandler
  8102. instanceKlass java/util/Hashtable$Entry
  8103. instanceKlass jdk/internal/misc/Signal
  8104. instanceKlass java/lang/Terminator$1
  8105. instanceKlass jdk/internal/misc/Signal$Handler
  8106. instanceKlass java/lang/Terminator
  8107. instanceKlass java/nio/charset/CoderResult
  8108. instanceKlass java/lang/Readable
  8109. instanceKlass java/nio/ByteOrder
  8110. instanceKlass java/nio/Buffer$2
  8111. instanceKlass jdk/internal/access/JavaNioAccess
  8112. instanceKlass java/nio/Buffer$1
  8113. instanceKlass jdk/internal/misc/ScopedMemoryAccess
  8114. instanceKlass sun/nio/cs/GBK$EncodeHolder
  8115. instanceKlass java/nio/charset/CharsetEncoder
  8116. instanceKlass sun/nio/cs/ArrayEncoder
  8117. instanceKlass java/io/Writer
  8118. instanceKlass java/io/PrintStream$1
  8119. instanceKlass jdk/internal/access/JavaIOPrintStreamAccess
  8120. instanceKlass jdk/internal/misc/InternalLock
  8121. instanceKlass java/io/OutputStream
  8122. instanceKlass java/io/Flushable
  8123. instanceKlass java/io/FileDescriptor$1
  8124. instanceKlass jdk/internal/access/JavaIOFileDescriptorAccess
  8125. instanceKlass java/io/FileDescriptor
  8126. instanceKlass jdk/internal/util/StaticProperty
  8127. instanceKlass java/util/HashMap$HashIterator
  8128. instanceKlass java/util/concurrent/locks/LockSupport
  8129. instanceKlass java/util/concurrent/ConcurrentHashMap$Node
  8130. instanceKlass java/util/concurrent/ConcurrentHashMap$CounterCell
  8131. instanceKlass java/util/concurrent/locks/ReentrantLock
  8132. instanceKlass java/util/concurrent/locks/Lock
  8133. instanceKlass java/lang/CharacterData
  8134. instanceKlass java/lang/Runtime
  8135. instanceKlass java/lang/VersionProps
  8136. instanceKlass java/lang/StringConcatHelper
  8137. instanceKlass java/util/HashMap$Node
  8138. instanceKlass java/util/Map$Entry
  8139. instanceKlass java/lang/StringCoding
  8140. instanceKlass java/nio/charset/CodingErrorAction
  8141. instanceKlass java/lang/StringUTF16
  8142. instanceKlass sun/nio/cs/DoubleByte
  8143. instanceKlass sun/nio/cs/GBK$DecodeHolder
  8144. instanceKlass java/nio/charset/CharsetDecoder
  8145. instanceKlass sun/nio/cs/ArrayDecoder
  8146. instanceKlass sun/nio/cs/DelegatableDecoder
  8147. instanceKlass jdk/internal/reflect/MethodHandleAccessorFactory
  8148. instanceKlass java/lang/reflect/Modifier
  8149. instanceKlass java/lang/Class$1
  8150. instanceKlass java/lang/Class$Atomic
  8151. instanceKlass java/lang/Class$ReflectionData
  8152. instanceKlass java/nio/charset/StandardCharsets
  8153. instanceKlass sun/nio/cs/HistoricallyNamedCharset
  8154. instanceKlass jdk/internal/util/ArraysSupport
  8155. instanceKlass java/util/Arrays
  8156. instanceKlass jdk/internal/util/Preconditions$3
  8157. instanceKlass jdk/internal/util/Preconditions$2
  8158. instanceKlass jdk/internal/util/Preconditions$4
  8159. instanceKlass java/util/function/BiFunction
  8160. instanceKlass jdk/internal/util/Preconditions$1
  8161. instanceKlass java/util/function/Function
  8162. instanceKlass jdk/internal/util/Preconditions
  8163. instanceKlass java/nio/charset/spi/CharsetProvider
  8164. instanceKlass java/nio/charset/Charset
  8165. instanceKlass jdk/internal/util/SystemProps$Raw
  8166. instanceKlass jdk/internal/util/SystemProps
  8167. instanceKlass java/lang/System$2
  8168. instanceKlass jdk/internal/access/JavaLangAccess
  8169. instanceKlass java/lang/ref/NativeReferenceQueue$Lock
  8170. instanceKlass java/lang/ref/ReferenceQueue
  8171. instanceKlass java/lang/ref/Reference$1
  8172. instanceKlass jdk/internal/access/JavaLangRefAccess
  8173. instanceKlass jdk/internal/reflect/ReflectionFactory
  8174. instanceKlass java/lang/Math
  8175. instanceKlass java/lang/StringLatin1
  8176. instanceKlass jdk/internal/reflect/Reflection
  8177. instanceKlass jdk/internal/reflect/ReflectionFactory$GetReflectionFactoryAction
  8178. instanceKlass java/security/PrivilegedAction
  8179. instanceKlass jdk/internal/access/SharedSecrets
  8180. instanceKlass java/lang/reflect/ReflectAccess
  8181. instanceKlass jdk/internal/access/JavaLangReflectAccess
  8182. instanceKlass java/util/ImmutableCollections
  8183. instanceKlass java/util/Objects
  8184. instanceKlass java/util/Set
  8185. instanceKlass jdk/internal/misc/CDS
  8186. instanceKlass java/lang/Module$ArchivedData
  8187. instanceKlass jdk/internal/misc/VM
  8188. instanceKlass java/lang/String$CaseInsensitiveComparator
  8189. instanceKlass java/util/Comparator
  8190. instanceKlass java/io/ObjectStreamField
  8191. instanceKlass jdk/internal/vm/FillerObject
  8192. instanceKlass jdk/internal/vm/vector/VectorSupport$VectorPayload
  8193. instanceKlass jdk/internal/vm/vector/VectorSupport
  8194. instanceKlass java/lang/reflect/RecordComponent
  8195. instanceKlass java/util/Iterator
  8196. instanceKlass java/lang/Number
  8197. instanceKlass java/lang/Character
  8198. instanceKlass java/lang/Boolean
  8199. instanceKlass java/util/concurrent/locks/AbstractOwnableSynchronizer
  8200. instanceKlass java/lang/LiveStackFrame
  8201. instanceKlass java/lang/StackFrameInfo
  8202. instanceKlass java/lang/StackWalker$StackFrame
  8203. instanceKlass java/lang/StackStreamFactory$AbstractStackWalker
  8204. instanceKlass java/lang/StackWalker
  8205. instanceKlass java/nio/Buffer
  8206. instanceKlass java/lang/StackTraceElement
  8207. instanceKlass java/util/RandomAccess
  8208. instanceKlass java/util/List
  8209. instanceKlass java/util/SequencedCollection
  8210. instanceKlass java/util/AbstractCollection
  8211. instanceKlass java/util/Collection
  8212. instanceKlass java/lang/Iterable
  8213. instanceKlass java/util/concurrent/ConcurrentMap
  8214. instanceKlass java/util/AbstractMap
  8215. instanceKlass java/security/CodeSource
  8216. instanceKlass jdk/internal/loader/ClassLoaders
  8217. instanceKlass java/util/jar/Manifest
  8218. instanceKlass java/lang/Enum
  8219. instanceKlass java/net/URL
  8220. instanceKlass java/io/InputStream
  8221. instanceKlass java/io/Closeable
  8222. instanceKlass java/lang/AutoCloseable
  8223. instanceKlass jdk/internal/module/Modules
  8224. instanceKlass jdk/internal/misc/Unsafe
  8225. instanceKlass jdk/internal/misc/UnsafeConstants
  8226. instanceKlass java/lang/AbstractStringBuilder
  8227. instanceKlass java/lang/Appendable
  8228. instanceKlass java/lang/AssertionStatusDirectives
  8229. instanceKlass java/lang/invoke/MethodHandleNatives$CallSiteContext
  8230. instanceKlass jdk/internal/foreign/abi/ABIDescriptor
  8231. instanceKlass jdk/internal/foreign/abi/NativeEntryPoint
  8232. instanceKlass java/lang/invoke/CallSite
  8233. instanceKlass java/lang/invoke/MethodType
  8234. instanceKlass java/lang/invoke/TypeDescriptor$OfMethod
  8235. instanceKlass java/lang/invoke/LambdaForm
  8236. instanceKlass java/lang/invoke/MethodHandleNatives
  8237. instanceKlass java/lang/invoke/ResolvedMethodName
  8238. instanceKlass java/lang/invoke/MemberName
  8239. instanceKlass java/lang/invoke/VarHandle
  8240. instanceKlass java/lang/invoke/MethodHandle
  8241. instanceKlass jdk/internal/reflect/CallerSensitive
  8242. instanceKlass java/lang/annotation/Annotation
  8243. instanceKlass jdk/internal/reflect/FieldAccessor
  8244. instanceKlass jdk/internal/reflect/ConstantPool
  8245. instanceKlass jdk/internal/reflect/ConstructorAccessor
  8246. instanceKlass jdk/internal/reflect/MethodAccessor
  8247. instanceKlass jdk/internal/reflect/MagicAccessorImpl
  8248. instanceKlass jdk/internal/vm/StackChunk
  8249. instanceKlass jdk/internal/vm/Continuation
  8250. instanceKlass jdk/internal/vm/ContinuationScope
  8251. instanceKlass java/lang/reflect/Parameter
  8252. instanceKlass java/lang/reflect/Member
  8253. instanceKlass java/lang/reflect/AccessibleObject
  8254. instanceKlass java/lang/Module
  8255. instanceKlass java/util/Map
  8256. instanceKlass java/util/Dictionary
  8257. instanceKlass java/lang/ThreadGroup
  8258. instanceKlass java/lang/Thread$UncaughtExceptionHandler
  8259. instanceKlass java/lang/Thread$Constants
  8260. instanceKlass java/lang/Thread$FieldHolder
  8261. instanceKlass java/lang/Thread
  8262. instanceKlass java/lang/Runnable
  8263. instanceKlass java/lang/ref/Reference
  8264. instanceKlass java/lang/Record
  8265. instanceKlass java/security/AccessController
  8266. instanceKlass java/security/AccessControlContext
  8267. instanceKlass java/security/ProtectionDomain
  8268. instanceKlass java/lang/SecurityManager
  8269. instanceKlass java/lang/Throwable
  8270. instanceKlass java/lang/System
  8271. instanceKlass java/lang/ClassLoader
  8272. instanceKlass java/lang/Cloneable
  8273. instanceKlass java/lang/Class
  8274. instanceKlass java/lang/invoke/TypeDescriptor$OfField
  8275. instanceKlass java/lang/invoke/TypeDescriptor
  8276. instanceKlass java/lang/reflect/Type
  8277. instanceKlass java/lang/reflect/GenericDeclaration
  8278. instanceKlass java/lang/reflect/AnnotatedElement
  8279. instanceKlass java/lang/String
  8280. instanceKlass java/lang/constant/ConstantDesc
  8281. instanceKlass java/lang/constant/Constable
  8282. instanceKlass java/lang/CharSequence
  8283. instanceKlass java/lang/Comparable
  8284. instanceKlass java/io/Serializable
  8285. ciInstanceKlass java/lang/Object 1 1 124 7 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 8 1 10 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 7 1 10 7 12 1 1 1 10 12 1 1 10 12 1 100 1 8 1 10 12 1 3 8 1 7 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 3 1 1
  8286. ciInstanceKlass java/io/Serializable 1 0 7 100 1 100 1 1 1
  8287. ciInstanceKlass java/lang/System 1 1 834 10 7 12 1 1 1 9 7 12 1 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 9 12 1 1 10 7 12 1 1 1 11 100 12 1 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 100 1 8 1 10 12 1 10 7 12 1 1 1 10 7 12 1 1 1 18 12 1 1 10 7 12 1 1 1 7 1 10 12 1 1 10 7 12 1 1 1 10 12 1 10 7 12 1 1 1 9 100 12 1 1 1 10 7 12 1 1 1 11 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 7 1 10 10 12 1 1 8 1 10 12 1 8 1 10 12 1 9 12 1 1 8 1 10 7 12 1 1 1 10 12 1 1 100 1 8 1 10 9 12 1 1 8 1 10 12 1 1 10 100 12 1 1 1 8 1 10 12 1 7 1 10 12 1 8 1 10 12 1 10 12 1 1 100 1 10 12 10 12 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 100 1 100 1 8 1 10 12 1 10 12 1 1 7 1 10 12 1 100 1 8 1 10 10 12 1 100 1 8 1 10 8 1 10 7 12 1 1 8 1 10 12 100 1 8 1 10 10 12 1 1 10 7 12 1 1 1 100 1 18 12 1 100 1 9 100 12 1 1 1 10 12 1 100 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 7 1 10 12 1 9 7 12 1 1 1 10 7 12 1 1 1 10 12 1 10 12 1 10 7 12 1 1 1 7 1 8 1 10 9 12 1 9 12 1 10 12 1 10 7 12 1 1 10 12 1 10 12 1 1 8 1 10 12 1 1 8 1 11 12 1 10 12 11 12 1 1 11 7 12 1 1 1 11 7 12 1 1 11 12 1 1 7 1 11 12 1 10 12 1 8 1 10 12 1 1 8 1 8 1 8 1 8 1 11 12 1 10 12 1 10 12 1 10 12 1 8 1 10 12 1 1 8 1 9 12 1 8 1 10 7 12 1 1 8 1 7 1 9 7 12 1 1 1 10 12 1 7 1 9 12 10 9 12 7 1 10 12 9 12 1 1 8 1 10 12 1 1 8 1 10 7 12 1 1 10 12 1 10 12 1 1 11 7 12 1 1 10 12 10 7 12 1 1 1 9 12 1 1 7 1 8 1 10 12 1 1 10 7 12 1 1 1 7 1 10 12 1 1 10 12 1 8 1 8 1 10 8 1 8 1 8 1 8 1 10 10 7 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 100 12 1 1 1 10 7 1 8 1 10 10 10 12 1 1 10 12 1 1 8 1 10 12 1 8 1 8 1 10 12 1 10 7 12 1 1 1 10 12 1 1 7 1 10 10 12 1 10 12 1 9 12 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 100 1 1 1 1 1 1 1 1 1 1 1 100 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 16 15 10 12 1 1 16 15 10 12 16 1 15 10 100 12 1 1 1 1 1 1 1 1 1 100 1 100 1 1
  8288. staticfield java/lang/System in Ljava/io/InputStream; java/io/ByteArrayInputStream
  8289. staticfield java/lang/System out Ljava/io/PrintStream; java/io/PrintStream
  8290. staticfield java/lang/System err Ljava/io/PrintStream; java/io/PrintStream
  8291. instanceKlass com/sun/jna/Native$6
  8292. instanceKlass org/eclipse/osgi/internal/permadmin/EquinoxSecurityManager
  8293. instanceKlass org/eclipse/osgi/internal/loader/BundleLoader$ClassContext
  8294. instanceKlass org/eclipse/osgi/internal/framework/ContextFinder$Finder
  8295. ciInstanceKlass java/lang/SecurityManager 1 1 576 10 7 12 1 1 1 9 7 12 1 1 1 10 7 12 1 1 1 100 1 8 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 7 1 10 100 1 10 9 100 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 100 1 8 1 10 9 12 1 1 9 12 1 8 1 9 12 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 1 100 1 10 10 12 1 1 100 1 8 1 10 12 1 8 1 8 1 8 1 8 1 8 1 8 1 10 12 1 8 1 8 1 8 1 8 1 8 1 10 7 12 1 1 1 10 12 1 1 8 1 100 1 8 1 10 8 1 8 1 8 1 8 1 8 1 10 100 12 1 1 8 1 100 1 8 1 8 1 10 8 1 10 12 1 100 1 8 1 10 10 12 1 1 10 12 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 10 7 12 1 1 11 7 12 1 1 1 18 12 1 1 11 7 12 1 1 1 18 12 1 1 11 12 1 1 18 18 11 12 1 18 12 1 11 12 1 1 9 12 1 1 9 12 1 9 12 1 9 12 1 7 1 10 7 12 1 1 10 12 1 10 12 1 18 12 1 18 10 7 12 1 1 1 18 12 1 10 12 1 18 18 8 1 10 12 1 9 12 1 1 11 7 12 1 1 1 8 1 100 1 10 12 1 10 12 1 1 10 12 1 1 9 12 1 1 10 12 1 10 12 1 1 8 1 100 1 10 9 12 1 8 1 10 12 1 8 1 100 1 10 10 7 12 1 1 10 7 1 9 7 12 1 1 1 11 12 1 1 10 12 1 11 12 1 10 12 1 7 1 10 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 10 7 12 1 1 1 16 1 16 15 10 12 16 1 15 10 12 16 15 11 7 1 16 1 16 1 15 10 12 16 15 10 12 16 15 10 12 1 16 1 15 11 12 1 15 10 12 16 15 10 16 1 15 10 7 12 1 1 1 1 1 1 100 1 100 1 1
  8296. staticfield java/lang/SecurityManager packageAccessLock Ljava/lang/Object; java/lang/Object
  8297. staticfield java/lang/SecurityManager packageDefinitionLock Ljava/lang/Object; java/lang/Object
  8298. staticfield java/lang/SecurityManager nonExportedPkgs Ljava/util/Map; java/util/concurrent/ConcurrentHashMap
  8299. ciInstanceKlass java/security/AccessController 1 1 295 10 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 100 1 8 1 10 12 1 10 12 1 10 12 1 1 10 12 1 7 1 7 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 9 100 12 1 1 1 10 7 12 1 1 1 10 12 1 10 12 1 9 100 12 1 1 1 10 12 1 10 12 1 1 9 12 1 1 10 100 1 10 11 7 12 1 1 1 10 7 12 1 1 11 7 1 100 1 10 12 1 10 12 1 10 12 1 8 1 10 12 1 1 8 1 10 100 12 1 1 1 8 1 7 1 10 10 12 1 1 10 12 1 10 7 12 1 1 1 10 12 1 8 1 10 7 12 1 1 8 1 8 1 10 12 1 8 1 10 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 1 1 1 1 1 1 1 3 1 1 1
  8300. staticfield java/security/AccessController $assertionsDisabled Z 1
  8301. instanceKlass org/eclipse/osgi/internal/loader/ModuleClassLoader$GenerationProtectionDomain
  8302. ciInstanceKlass java/security/ProtectionDomain 1 1 348 10 7 12 1 1 1 9 7 12 1 1 1 7 1 10 9 12 1 1 9 12 1 1 9 12 1 1 10 7 12 1 1 7 1 9 12 1 9 12 1 1 7 1 9 12 1 1 9 12 1 10 100 12 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 9 12 1 9 100 12 1 1 10 12 1 1 10 100 1 10 12 1 1 8 1 7 1 8 1 10 12 1 10 11 10 7 12 1 1 1 10 12 1 1 8 1 11 8 1 10 12 1 8 1 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 8 1 10 12 1 8 1 8 1 10 7 12 1 1 1 9 100 12 1 1 1 10 12 1 1 9 100 12 1 1 1 10 7 12 1 1 1 100 1 18 12 1 1 10 7 12 1 1 1 10 7 1 10 12 1 10 12 1 1 11 100 12 1 1 11 12 1 100 1 11 7 12 1 1 1 10 12 1 10 11 12 1 1 11 12 1 1 10 12 1 10 7 12 1 1 10 100 12 1 1 11 12 1 10 12 10 12 1 8 1 8 1 10 7 12 1 1 1 7 1 10 10 7 12 1 1 1 1 1 1 1 1 1 1 7 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 100 1 1 16 15 10 12 16 15 10 100 12 1 1 1 1 1 1 1 100 1 100 1 1
  8303. staticfield java/security/ProtectionDomain filePermCompatInPD Z 0
  8304. ciInstanceKlass java/security/CodeSource 1 1 398 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 9 12 1 1 10 7 12 1 1 10 7 10 7 12 1 1 1 10 100 12 1 1 1 10 12 1 1 7 1 10 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 7 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 10 10 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 8 1 10 12 1 10 12 1 10 12 1 1 10 12 1 8 1 10 12 1 1 10 7 1 10 10 12 1 1 8 1 10 12 1 10 12 1 10 12 1 8 1 8 1 9 12 1 1 100 1 8 1 10 12 1 10 12 1 1 8 1 10 12 1 8 1 8 1 8 1 10 100 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 100 1 100 1 10 12 1 10 12 10 12 1 1 10 100 12 1 1 10 12 1 7 1 10 12 10 100 12 1 1 1 10 8 1 10 12 1 10 12 1 10 12 1 1 100 1 10 12 1 1 100 1 7 1 8 1 8 1 10 10 12 1 1 10 100 12 1 1 1 7 1 10 12 10 12 1 1 11 7 12 1 1 10 10 12 1 11 10 12 1 8 1 100 1 10 12 1 10 12 1 1 10 12 1 11 12 1 1 7 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1
  8305. ciInstanceKlass java/lang/Boolean 1 1 152 10 7 12 1 1 1 9 7 12 1 1 1 10 12 1 1 10 12 1 8 1 10 7 12 1 1 9 12 1 1 9 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 100 1 100 1 10 12 1 1 9 100 12 1 1 9 12 10 100 12 1 1 1 10 12 1 1 8 1 10 7 12 1 1 1 9 12 1 1 7 1 7 1 7 1 1 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1
  8306. staticfield java/lang/Boolean TRUE Ljava/lang/Boolean; java/lang/Boolean
  8307. staticfield java/lang/Boolean FALSE Ljava/lang/Boolean; java/lang/Boolean
  8308. staticfield java/lang/Boolean TYPE Ljava/lang/Class; java/lang/Class
  8309. ciInstanceKlass java/lang/Comparable 1 0 12 100 1 100 1 1 1 1 1 1 1 1
  8310. ciInstanceKlass java/lang/constant/Constable 1 0 11 100 1 100 1 1 1 1 1 1 1
  8311. ciInstanceKlass java/util/Map 1 1 263 11 7 12 1 1 1 11 12 1 1 10 7 12 1 1 11 12 1 1 11 7 12 1 1 1 11 7 12 1 1 1 11 12 1 1 7 1 11 12 1 11 12 1 100 1 100 1 10 12 1 1 11 7 12 1 1 1 11 100 12 1 1 1 11 12 1 11 12 1 10 12 1 1 11 12 1 11 7 12 1 9 7 12 1 1 1 7 1 10 12 7 1 7 1 10 12 1 7 1 10 7 1 11 12 1 11 12 1 1 11 12 1 1 7 1 11 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  8312. ciInstanceKlass java/lang/Class 1 1 1698 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 10 12 1 1 8 1 10 12 1 8 1 8 1 10 12 1 1 10 7 12 1 1 1 10 12 1 7 1 10 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 10 12 1 10 12 1 10 12 1 8 1 10 12 1 8 1 10 12 1 8 1 8 1 10 12 1 1 10 7 12 1 1 1 18 12 1 1 11 7 12 1 1 1 8 1 8 1 8 1 10 7 12 1 1 1 11 12 1 1 8 1 10 12 1 10 11 100 12 1 1 1 11 7 12 1 1 1 11 8 1 18 8 1 10 12 1 10 7 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 9 7 12 1 1 1 10 7 12 1 1 1 10 12 1 10 7 12 1 1 1 10 12 1 1 18 12 1 1 10 7 12 1 1 1 10 7 12 1 10 12 1 1 10 7 1 7 1 10 12 1 1 9 12 1 1 7 1 8 1 10 12 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 7 1 10 12 1 7 1 7 1 10 10 12 1 1 10 12 1 1 100 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 9 12 1 1 10 12 1 10 12 1 1 9 12 1 1 9 12 1 1 10 12 1 1 10 7 1 10 12 1 10 12 1 10 12 1 1 10 9 12 1 10 12 1 8 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 9 7 12 1 1 1 10 7 12 1 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 9 100 12 1 1 1 9 12 1 10 12 1 10 100 12 1 1 1 10 12 1 1 10 100 12 1 1 10 12 1 10 12 1 1 10 100 12 1 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 7 1 10 10 10 12 1 1 10 12 1 1 10 12 10 10 12 1 1 7 1 8 1 10 10 12 1 1 10 12 1 100 1 11 12 1 10 100 12 1 1 10 12 1 10 12 1 10 100 12 1 1 10 10 12 1 1 8 1 10 12 1 10 12 1 1 8 1 10 12 1 9 12 1 10 12 1 10 12 1 10 12 1 10 12 7 1 9 12 1 10 12 1 9 12 1 10 12 1 10 12 1 10 12 1 10 10 12 1 10 12 1 10 7 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 100 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 7 1 10 10 12 1 1 10 12 1 1 10 12 1 1 10 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 7 1 10 10 12 11 7 12 1 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 1 10 10 12 1 1 7 1 10 10 12 1 1 10 7 12 1 1 1 100 1 7 1 10 12 1 1 10 12 1 10 10 12 1 1 10 12 1 10 12 1 10 12 1 10 100 12 1 1 1 11 7 12 1 1 10 12 1 10 12 1 9 12 1 10 12 1 1 10 12 1 9 12 1 1 7 1 10 9 12 1 1 10 12 7 1 10 12 1 9 12 1 10 100 12 1 1 1 10 12 1 10 12 1 10 100 12 1 1 1 10 12 1 10 12 10 12 1 1 100 1 10 8 1 10 12 1 11 11 12 1 1 11 7 12 1 1 11 12 1 8 1 10 12 1 10 12 1 1 9 12 1 9 12 1 1 10 7 12 1 1 9 12 1 10 12 1 1 10 10 12 1 10 7 12 1 1 1 10 7 12 1 1 10 7 12 1 1 9 12 1 1 10 12 1 9 12 1 10 12 1 10 12 1 1 9 12 1 1 9 12 1 10 12 1 10 12 1 1 9 12 1 100 1 10 10 12 1 1 7 1 10 12 1 1 100 11 7 1 9 12 1 1 9 12 1 7 1 10 12 1 9 12 1 1 9 12 1 10 12 1 10 12 1 1 9 12 1 7 1 10 10 12 1 1 10 10 12 1 10 12 10 10 12 1 9 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 8 10 7 8 1 18 8 1 8 1 10 12 1 9 12 1 9 12 1 1 10 12 1 7 1 7 1 10 12 1 9 12 1 1 7 1 10 10 12 1 10 7 1 9 12 1 8 1 10 12 1 7 1 10 12 1 10 12 1 1 100 1 7 1 9 12 1 100 1 8 1 10 10 7 12 1 1 1 10 12 11 7 12 1 1 1 10 12 1 10 12 1 1 10 8 1 8 1 10 12 1 1 9 7 12 1 1 11 12 7 1 11 7 12 1 1 9 12 1 10 100 12 1 1 1 10 7 12 1 1 10 12 1 1 9 12 1 9 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 11 12 1 7 1 11 12 1 10 7 12 1 1 1 10 12 1 11 12 1 10 7 12 1 1 1 10 12 1 10 7 12 1 1 1 11 12 1 11 12 1 1 10 12 1 10 12 1 1 9 12 1 1 9 7 12 1 1 10 12 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 8 1 10 12 1 10 12 1 10 12 1 100 1 10 12 10 100 12 1 1 1 11 100 12 1 1 1 10 12 1 1 10 12 1 18 12 1 1 11 12 1 1 18 11 12 1 18 12 1 11 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 1 8 1 10 12 1 7 1 9 12 1 1 7 1 7 1 7 1 7 1 1 1 3 1 3 1 3 1 1 1 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 100 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 10 12 16 15 11 12 16 1 16 15 16 15 10 12 16 16 15 10 12 16 15 16 1 15 10 12 16 15 10 7 12 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 100 1 100 1 1 100 1 100 1 1 100 1 100 1 1
  8313. staticfield java/lang/Class EMPTY_CLASS_ARRAY [Ljava/lang/Class; 0 [Ljava/lang/Class;
  8314. staticfield java/lang/Class serialPersistentFields [Ljava/io/ObjectStreamField; 0 [Ljava/io/ObjectStreamField;
  8315. ciInstanceKlass java/lang/reflect/AnnotatedElement 1 1 164 11 7 12 1 1 1 11 12 1 1 7 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 100 12 1 1 1 11 12 1 1 11 7 12 1 1 10 7 12 1 1 1 10 12 1 10 100 12 1 1 1 18 12 1 1 11 100 12 1 1 18 12 1 18 12 1 1 10 100 12 1 1 1 11 100 12 1 1 1 7 1 10 100 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 16 15 16 1 16 1 15 11 12 16 16 1 15 10 100 12 1 1 1 16 1 15 10 100 12 1 1 1 1 100 1 100 1 1
  8316. ciInstanceKlass java/lang/invoke/TypeDescriptor 1 0 17 100 1 100 1 1 1 1 1 1 100 1 100 1 1 1 1
  8317. ciInstanceKlass java/lang/reflect/GenericDeclaration 1 0 30 7 1 7 1 7 1 1 1 1 1 1 1 1 100 1 8 1 1 12 10 1 1 1 8 1 1 1 8 1
  8318. ciInstanceKlass java/lang/reflect/Type 1 1 17 11 100 12 1 1 1 100 1 1 1 1 1 1 1 1 1
  8319. ciInstanceKlass java/lang/invoke/TypeDescriptor$OfField 1 0 21 100 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  8320. ciInstanceKlass java/lang/StringBuilder 1 1 422 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 10 12 1 1 10 12 1 10 12 1 10 12 1 10 100 12 1 1 1 9 12 1 1 10 12 1 10 12 1 1 10 12 1 1 9 12 1 1 10 100 12 1 1 1 10 100 1 10 12 1 1 10 100 12 1 1 10 12 1 10 12 1 1 100 1 100 1 8 1 10 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 10 12 10 12 1 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 10 12 1 10 12 1 7 1 7 1 7 1 7 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1
  8321. instanceKlass java/lang/StringBuilder
  8322. instanceKlass java/lang/StringBuffer
  8323. ciInstanceKlass java/lang/AbstractStringBuilder 1 1 605 7 1 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 10 12 1 1 7 1 3 3 10 12 1 10 12 1 1 11 7 1 100 1 7 1 10 8 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 9 12 1 10 12 1 9 12 1 1 10 12 1 1 10 7 12 1 1 1 10 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 7 1 8 1 10 10 12 1 1 100 1 10 12 10 12 1 1 10 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 10 7 12 1 1 1 10 12 1 100 1 10 10 7 12 1 1 1 9 12 1 1 9 12 1 10 12 1 1 10 10 12 1 1 10 12 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 8 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 7 12 1 1 10 12 1 10 12 1 10 7 12 1 1 1 100 1 100 1 10 12 1 10 100 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 10 12 1 1 18 12 1 1 100 1 10 100 12 1 1 1 18 10 12 1 1 10 12 1 10 12 1 1 11 12 1 1 10 12 1 10 12 10 12 1 10 10 10 12 1 10 5 0 10 10 12 1 1 100 1 8 1 10 10 12 1 1 10 100 12 1 1 1 10 12 1 10 12 1 1 100 1 10 12 100 1 10 100 1 10 7 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 7 1 1 16 1 15 10 12 16 15 10 12 15 10 100 12 1 1 1 1 1 1 1 100 1 100 1 1
  8324. staticfield java/lang/AbstractStringBuilder EMPTYVALUE [B 0
  8325. ciInstanceKlass java/lang/Appendable 1 0 14 100 1 100 1 1 1 1 100 1 1 1 1 1
  8326. ciInstanceKlass java/lang/CharSequence 1 1 131 11 7 12 1 1 1 18 12 1 1 100 1 10 100 12 1 1 1 18 10 100 12 1 1 1 11 12 1 1 11 7 1 11 12 1 1 10 100 12 1 1 1 11 12 1 1 100 1 10 12 1 1 10 100 12 1 1 1 100 1 10 10 12 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 1 15 11 12 16 15 11 12 15 10 100 12 1 1 1 1 1 100 1 100 1 1 100 1 1 100 1 100 1 1
  8327. ciInstanceKlass java/lang/AutoCloseable 1 0 12 100 1 100 1 1 1 1 100 1 1 1
  8328. ciInstanceKlass java/io/Closeable 1 0 14 100 1 100 1 100 1 1 1 1 100 1 1 1
  8329. instanceKlass org/eclipse/jface/text/BadPartitioningException
  8330. instanceKlass org/eclipse/jface/text/BadPositionCategoryException
  8331. instanceKlass org/eclipse/jdt/internal/compiler/lookup/InferenceFailureException
  8332. instanceKlass lombok/eclipse/agent/PatchDelegate$CantMakeDelegates
  8333. instanceKlass org/eclipse/core/commands/common/CommandException
  8334. instanceKlass org/apache/maven/artifact/DependencyResolutionRequiredException
  8335. instanceKlass org/codehaus/plexus/util/introspection/MethodMap$AmbiguousException
  8336. instanceKlass org/sonatype/plexus/components/sec/dispatcher/SecDispatcherException
  8337. instanceKlass org/sonatype/plexus/components/cipher/PlexusCipherException
  8338. instanceKlass org/apache/maven/shared/filtering/MavenFilteringException
  8339. instanceKlass org/codehaus/plexus/util/cli/CommandLineException
  8340. instanceKlass org/codehaus/plexus/compiler/manager/NoSuchCompilerException
  8341. instanceKlass org/codehaus/plexus/compiler/CompilerException
  8342. instanceKlass org/codehaus/plexus/compiler/util/scan/InclusionScanException
  8343. instanceKlass org/codehaus/plexus/interpolation/reflection/MethodMap$AmbiguousException
  8344. instanceKlass org/apache/commons/codec/EncoderException
  8345. instanceKlass org/apache/commons/codec/DecoderException
  8346. instanceKlass org/apache/maven/cli/MavenCli$ExitException
  8347. instanceKlass org/apache/maven/model/resolution/InvalidRepositoryException
  8348. instanceKlass org/apache/maven/model/resolution/UnresolvableModelException
  8349. instanceKlass org/apache/maven/toolchain/building/ToolchainsBuildingException
  8350. instanceKlass org/apache/maven/repository/legacy/resolver/conflict/ConflictResolverNotFoundException
  8351. instanceKlass org/codehaus/plexus/configuration/PlexusConfigurationException
  8352. instanceKlass org/codehaus/plexus/component/composition/CycleDetectedInComponentGraphException
  8353. instanceKlass org/apache/maven/plugin/version/PluginVersionNotFoundException
  8354. instanceKlass org/apache/maven/plugin/InvalidPluginException
  8355. instanceKlass org/apache/maven/repository/metadata/MetadataResolutionException
  8356. instanceKlass org/codehaus/plexus/component/repository/exception/ComponentLifecycleException
  8357. instanceKlass org/apache/maven/BuildFailureException
  8358. instanceKlass org/apache/maven/MavenExecutionException
  8359. instanceKlass org/apache/http/HttpException
  8360. instanceKlass org/apache/maven/model/building/ModelBuildingException
  8361. instanceKlass org/apache/maven/artifact/installer/ArtifactInstallationException
  8362. instanceKlass org/apache/maven/repository/metadata/MetadataGraphTransformationException
  8363. instanceKlass org/apache/maven/repository/metadata/GraphConflictResolutionException
  8364. instanceKlass org/apache/maven/toolchain/MisconfiguredToolchainException
  8365. instanceKlass org/apache/maven/repository/ArtifactDoesNotExistException
  8366. instanceKlass org/apache/maven/repository/ArtifactTransferFailedException
  8367. instanceKlass org/apache/maven/project/DependencyResolutionException
  8368. instanceKlass org/sonatype/plexus/components/sec/dispatcher/SecDispatcherException
  8369. instanceKlass org/sonatype/plexus/components/cipher/PlexusCipherException
  8370. instanceKlass org/apache/maven/artifact/deployer/ArtifactDeploymentException
  8371. instanceKlass org/apache/maven/lifecycle/internal/builder/BuilderNotFoundException
  8372. instanceKlass org/apache/maven/lifecycle/NoGoalSpecifiedException
  8373. instanceKlass org/apache/maven/lifecycle/MissingProjectException
  8374. instanceKlass org/codehaus/plexus/personality/plexus/lifecycle/phase/InitializationException
  8375. instanceKlass org/apache/maven/project/interpolation/ModelInterpolationException
  8376. instanceKlass org/codehaus/plexus/interpolation/InterpolationException
  8377. instanceKlass org/apache/maven/lifecycle/LifecycleExecutionException
  8378. instanceKlass org/apache/maven/lifecycle/LifecycleNotFoundException
  8379. instanceKlass org/apache/maven/plugin/prefix/NoPluginFoundForPrefixException
  8380. instanceKlass org/apache/maven/lifecycle/LifecyclePhaseNotFoundException
  8381. instanceKlass org/apache/maven/artifact/repository/metadata/RepositoryMetadataReadException
  8382. instanceKlass org/apache/maven/artifact/repository/metadata/RepositoryMetadataStoreException
  8383. instanceKlass org/apache/maven/wagon/WagonException
  8384. instanceKlass org/apache/maven/configuration/BeanConfigurationException
  8385. instanceKlass org/apache/maven/artifact/repository/metadata/RepositoryMetadataResolutionException
  8386. instanceKlass org/apache/maven/artifact/versioning/InvalidVersionSpecificationException
  8387. instanceKlass org/apache/maven/repository/legacy/metadata/ArtifactMetadataRetrievalException
  8388. instanceKlass org/apache/maven/plugin/AbstractMojoExecutionException
  8389. instanceKlass com/google/common/collect/RegularImmutableMap$BucketOverflowException
  8390. instanceKlass com/google/inject/internal/ErrorsException
  8391. instanceKlass com/google/inject/internal/InternalProvisionException
  8392. instanceKlass sun/security/ec/ECOperations$IntermediateValueException
  8393. instanceKlass org/codehaus/plexus/context/ContextException
  8394. instanceKlass org/codehaus/plexus/util/xml/pull/XmlPullParserException
  8395. instanceKlass sun/security/pkcs11/wrapper/PKCS11Exception
  8396. instanceKlass org/apache/commons/cli/ParseException
  8397. instanceKlass org/eclipse/equinox/security/storage/StorageException
  8398. instanceKlass javax/xml/transform/TransformerException
  8399. instanceKlass org/eclipse/jface/text/templates/TemplateException
  8400. instanceKlass lombok/eclipse/agent/PatchDelegate$CantMakeDelegates
  8401. instanceKlass org/eclipse/jface/text/BadLocationException
  8402. instanceKlass org/eclipse/jdt/internal/compiler/lookup/ReferenceBinding$InvalidBindingException
  8403. instanceKlass org/eclipse/jdt/core/compiler/InvalidInputException
  8404. instanceKlass org/eclipse/jdt/internal/compiler/classfmt/ClassFormatException
  8405. instanceKlass java/text/ParseException
  8406. instanceKlass org/codehaus/plexus/component/configurator/expression/ExpressionEvaluationException
  8407. instanceKlass org/codehaus/plexus/PlexusContainerException
  8408. instanceKlass org/apache/maven/cli/internal/ExtensionResolutionException
  8409. instanceKlass org/codehaus/plexus/classworlds/ClassWorldException
  8410. instanceKlass org/apache/maven/plugin/version/PluginVersionResolutionException
  8411. instanceKlass org/codehaus/plexus/component/configurator/ComponentConfigurationException
  8412. instanceKlass org/apache/maven/plugin/InvalidPluginDescriptorException
  8413. instanceKlass org/apache/maven/plugin/MojoNotFoundException
  8414. instanceKlass org/apache/maven/plugin/PluginDescriptorParsingException
  8415. instanceKlass org/apache/maven/artifact/resolver/AbstractArtifactResolutionException
  8416. instanceKlass org/apache/maven/plugin/PluginResolutionException
  8417. instanceKlass org/apache/maven/plugin/PluginConfigurationException
  8418. instanceKlass org/apache/maven/plugin/PluginManagerException
  8419. instanceKlass org/apache/maven/artifact/InvalidRepositoryException
  8420. instanceKlass org/apache/maven/settings/building/SettingsBuildingException
  8421. instanceKlass org/eclipse/aether/RepositoryException
  8422. instanceKlass org/apache/maven/execution/MavenExecutionRequestPopulationException
  8423. instanceKlass org/apache/maven/project/ProjectBuildingException
  8424. instanceKlass org/codehaus/plexus/component/repository/exception/ComponentLookupException
  8425. instanceKlass org/apache/maven/project/DuplicateProjectException
  8426. instanceKlass org/codehaus/plexus/util/dag/CycleDetectedException
  8427. instanceKlass ch/qos/logback/core/util/DynamicClassLoadingException
  8428. instanceKlass ch/qos/logback/core/util/IncompatibleClassException
  8429. instanceKlass ch/qos/logback/core/joran/spi/JoranException
  8430. instanceKlass java/util/concurrent/TimeoutException
  8431. instanceKlass org/osgi/service/application/ApplicationException
  8432. instanceKlass org/eclipse/core/runtime/CoreException
  8433. instanceKlass org/osgi/service/prefs/BackingStoreException
  8434. instanceKlass org/apache/felix/scr/impl/inject/methods/SuitableMethodNotAccessibleException
  8435. instanceKlass org/xml/sax/SAXException
  8436. instanceKlass javax/xml/parsers/ParserConfigurationException
  8437. instanceKlass java/util/concurrent/ExecutionException
  8438. instanceKlass java/lang/CloneNotSupportedException
  8439. instanceKlass org/osgi/service/resolver/ResolutionException
  8440. instanceKlass java/security/GeneralSecurityException
  8441. instanceKlass org/eclipse/osgi/container/ModuleContainer$ResolutionLockException
  8442. instanceKlass java/security/PrivilegedActionException
  8443. instanceKlass java/lang/InterruptedException
  8444. instanceKlass org/osgi/framework/InvalidSyntaxException
  8445. instanceKlass org/osgi/framework/BundleException
  8446. instanceKlass sun/nio/fs/WindowsException
  8447. instanceKlass java/net/URISyntaxException
  8448. instanceKlass java/lang/instrument/UnmodifiableClassException
  8449. instanceKlass java/io/IOException
  8450. instanceKlass java/lang/ReflectiveOperationException
  8451. instanceKlass java/lang/RuntimeException
  8452. ciInstanceKlass java/lang/Exception 1 1 40 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  8453. instanceKlass lombok/eclipse/agent/PatchDelegate$DelegateRecursion
  8454. instanceKlass org/apache/maven/artifact/repository/metadata/RepositoryMetadataDeploymentException
  8455. instanceKlass org/apache/maven/artifact/repository/metadata/RepositoryMetadataInstallationException
  8456. instanceKlass lombok/eclipse/agent/PatchDelegate$DelegateRecursion
  8457. instanceKlass java/lang/Exception
  8458. instanceKlass java/lang/Error
  8459. ciInstanceKlass java/lang/Throwable 1 1 404 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 10 12 1 1 9 12 1 1 10 12 1 1 10 12 1 100 1 7 1 10 8 1 10 12 1 1 8 1 10 100 12 1 1 10 10 12 1 100 1 8 1 10 10 12 1 1 10 7 12 1 1 10 12 1 8 1 9 7 12 1 1 1 10 12 1 1 100 1 10 12 10 12 1 10 100 12 1 1 1 100 1 10 12 10 12 1 10 12 1 100 1 10 10 7 12 1 1 1 11 100 12 1 1 1 10 12 1 1 10 12 1 1 8 1 10 12 1 10 12 1 1 8 1 8 1 10 12 1 1 10 12 1 8 1 8 1 9 12 1 1 10 12 1 1 100 1 10 11 12 1 8 1 8 1 10 7 12 1 1 8 1 10 12 1 8 1 100 1 10 12 1 9 12 1 1 10 12 1 10 7 12 1 9 12 1 1 10 12 1 1 100 1 8 1 10 12 1 10 100 12 1 1 10 12 1 1 7 1 10 100 12 1 1 1 10 12 1 11 7 12 1 1 1 11 7 12 1 1 11 12 1 8 1 10 12 1 1 8 1 10 10 9 100 12 1 1 1 8 1 10 12 1 1 11 10 100 1 8 1 10 11 12 1 1 8 1 9 12 1 10 100 12 1 1 11 9 12 1 1 11 12 1 1 100 10 12 1 10 12 1 1 7 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  8460. staticfield java/lang/Throwable UNASSIGNED_STACK [Ljava/lang/StackTraceElement; 0 [Ljava/lang/StackTraceElement;
  8461. staticfield java/lang/Throwable SUPPRESSED_SENTINEL Ljava/util/List; java/util/Collections$EmptyList
  8462. staticfield java/lang/Throwable EMPTY_THROWABLE_ARRAY [Ljava/lang/Throwable; 0 [Ljava/lang/Throwable;
  8463. staticfield java/lang/Throwable $assertionsDisabled Z 1
  8464. instanceKlass org/eclipse/jdt/internal/compiler/util/Messages$MessagesProperties
  8465. instanceKlass org/eclipse/core/internal/resources/SaveManager$MasterTable
  8466. instanceKlass org/eclipse/core/internal/preferences/SortedProperties
  8467. instanceKlass org/eclipse/osgi/util/NLS$MessagesProperties
  8468. instanceKlass java/security/Provider
  8469. ciInstanceKlass java/util/Properties 1 1 690 10 7 12 1 1 1 100 1 10 7 12 1 1 7 1 10 12 1 9 12 1 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 10 12 1 1 8 1 10 7 12 1 1 1 7 1 10 12 1 10 12 1 1 8 1 10 12 1 7 1 10 12 10 12 1 1 9 12 1 1 10 12 1 1 7 1 10 12 1 10 12 1 10 12 1 1 100 1 8 1 10 12 1 10 12 1 10 12 1 1 10 12 1 7 1 3 10 10 7 12 1 1 1 10 12 1 10 12 1 1 8 1 10 12 1 10 12 1 1 8 1 10 7 12 1 1 10 12 1 1 10 12 1 10 12 1 1 100 1 10 12 1 10 12 1 1 7 1 9 7 12 1 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 7 1 9 12 1 1 7 1 7 1 10 12 1 7 1 11 7 12 1 1 1 11 12 1 1 11 7 12 1 1 1 11 7 12 1 1 1 11 12 1 1 11 12 1 11 12 1 10 12 1 1 8 1 10 12 1 10 7 12 1 1 10 12 1 7 1 10 10 12 1 10 12 1 100 1 10 10 12 1 1 10 7 12 1 1 9 100 12 1 1 10 12 1 1 10 100 12 1 1 1 100 1 100 1 100 1 10 8 1 8 1 10 12 1 10 12 1 10 12 1 1 10 10 12 1 1 10 12 1 1 7 1 10 10 12 1 11 7 12 1 1 10 7 12 1 1 1 8 1 10 100 12 1 1 11 11 7 1 8 1 10 100 1 11 10 12 1 10 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 10 12 1 10 12 1 10 12 1 10 10 12 1 1 10 12 1 1 10 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 10 11 12 1 4 11 10 12 1 1 10 100 12 1 1 11 12 1 10 12 1 1 10 100 12 1 1 10 12 1 100 1 8 1 10 12 1 10 10 100 12 1 1 1 100 1 6 0 10 12 1 1 11 100 12 1 1 1 10 12 1 10 12 1 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 7 1 7 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 100 1 1
  8470. staticfield java/util/Properties UNSAFE Ljdk/internal/misc/Unsafe; jdk/internal/misc/Unsafe
  8471. instanceKlass org/apache/felix/scr/impl/helper/ReadOnlyDictionary
  8472. instanceKlass org/osgi/framework/FrameworkUtil$MapAsDictionary
  8473. instanceKlass org/eclipse/osgi/internal/framework/EquinoxBundle$SystemBundle$SystemBundleHeaders
  8474. instanceKlass org/eclipse/osgi/framework/util/CaseInsensitiveDictionaryMap$UnmodifiableDictionary
  8475. instanceKlass org/eclipse/osgi/framework/util/CaseInsensitiveDictionaryMap
  8476. instanceKlass org/eclipse/osgi/storage/BundleInfo$CachedManifest
  8477. instanceKlass java/util/Hashtable
  8478. ciInstanceKlass java/util/Dictionary 1 1 36 10 7 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  8479. instanceKlass java/util/Properties
  8480. ciInstanceKlass java/util/Hashtable 1 1 516 7 1 10 7 12 1 1 1 9 7 12 1 1 1 100 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 7 12 1 1 1 8 1 10 12 1 9 12 1 1 7 1 9 12 1 1 4 10 7 12 1 1 1 9 12 1 4 10 12 1 11 7 12 1 1 1 10 12 1 1 10 12 1 1 9 12 1 10 12 1 1 100 1 10 9 12 1 1 10 7 12 1 1 1 9 12 1 1 10 12 1 10 12 1 3 9 12 1 9 12 1 3 10 12 1 10 12 1 10 12 1 1 11 12 1 1 11 7 12 1 1 1 11 7 12 1 1 1 11 12 1 7 1 11 12 1 11 12 1 10 12 1 1 10 12 1 1 10 12 1 9 12 1 1 9 12 9 12 1 1 10 100 1 7 1 10 12 1 10 8 1 10 10 12 1 8 1 10 8 1 10 7 12 1 1 1 7 1 10 12 1 10 12 1 7 1 10 12 1 10 12 1 1 7 1 10 7 1 10 10 12 1 1 11 12 1 1 11 12 1 7 1 10 10 10 100 12 1 1 11 100 12 1 1 1 100 1 10 11 100 12 1 1 11 100 12 1 10 12 1 10 12 1 1 10 100 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 100 12 1 1 1 8 10 100 12 1 1 100 1 8 1 10 4 4 10 12 1 1 10 12 1 8 1 4 10 12 10 100 12 1 1 1 100 1 11 100 12 1 1 1 10 100 12 1 1 1 10 12 1 10 12 1 1 10 7 1 7 1 1 1 1 1 1 5 0 1 1 1 1 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 7 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  8481. ciInstanceKlass java/lang/String 1 1 1443 10 7 12 1 1 1 8 1 9 7 12 1 1 1 9 12 1 1 9 12 1 1 9 12 1 1 10 12 1 10 12 1 1 10 12 1 1 9 12 1 10 7 12 1 1 1 10 7 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 7 12 1 1 1 7 1 9 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 9 7 12 1 1 10 12 9 7 12 1 1 10 12 1 1 3 10 12 1 1 7 1 11 12 1 1 11 12 1 11 12 1 1 10 7 12 1 1 1 10 12 1 1 9 7 12 1 1 1 10 12 1 1 10 12 1 11 12 1 1 10 12 1 1 10 12 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 7 1 7 1 10 12 1 10 12 1 10 12 1 1 100 1 10 12 1 1 100 1 10 12 1 1 10 12 1 1 10 12 1 10 10 12 1 100 1 100 1 7 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 7 12 1 1 7 1 11 10 7 12 1 1 11 12 1 11 12 1 10 12 1 1 10 12 1 10 12 10 12 1 1 10 10 7 12 1 1 1 10 7 12 1 1 10 12 1 1 10 7 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 100 1 10 12 1 1 10 12 10 12 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 3 3 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 7 1 10 8 1 10 12 1 1 10 12 1 8 1 10 12 1 1 10 12 10 12 1 8 1 10 10 12 1 1 10 12 1 1 10 12 1 1 10 7 1 10 10 12 1 10 12 1 10 12 1 10 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 10 12 1 1 10 10 12 1 100 1 10 10 12 1 1 10 12 1 1 10 7 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 10 12 1 1 10 12 1 11 7 1 11 12 10 12 1 10 12 1 1 10 12 1 1 10 10 12 1 10 12 1 9 12 1 1 11 7 12 1 1 1 10 12 10 10 12 1 10 12 1 1 10 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 10 12 1 1 10 12 1 10 10 12 1 10 12 10 10 12 10 10 12 1 10 12 1 10 10 12 10 7 12 1 1 1 10 12 10 10 12 10 12 1 10 12 10 12 10 10 12 1 10 12 1 1 10 12 1 1 10 10 12 1 10 7 12 1 1 1 10 12 1 1 10 10 7 12 1 1 1 11 10 12 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 100 1 7 1 8 1 10 10 10 12 1 10 12 1 1 8 1 10 12 1 3 3 10 12 1 10 12 1 1 10 12 7 1 10 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 11 7 12 1 1 1 7 1 10 12 1 10 12 1 1 8 1 10 12 1 1 10 12 1 11 7 12 1 1 1 11 7 12 1 1 11 12 1 10 12 1 10 12 1 1 10 10 7 12 1 1 1 10 12 1 10 12 1 10 10 12 10 12 1 1 10 10 12 1 10 10 12 1 10 10 12 1 10 10 12 1 10 12 1 1 10 10 12 1 8 1 10 12 1 1 18 12 1 1 11 100 12 1 1 1 7 1 3 18 12 1 18 12 1 8 1 10 100 12 1 1 1 11 12 1 1 10 12 10 10 12 1 10 11 12 1 1 10 12 1 1 11 12 1 18 3 11 10 12 1 11 11 10 12 1 10 12 1 1 8 1 10 12 1 10 12 1 10 12 1 1 10 10 12 1 11 100 12 1 100 1 100 1 10 12 100 1 10 10 100 12 1 1 1 100 1 10 7 1 10 10 12 1 10 10 12 1 8 1 10 10 12 1 8 1 8 1 10 12 1 10 12 1 10 10 12 10 7 12 1 1 10 7 12 1 1 10 7 12 1 1 8 1 10 12 1 10 12 1 10 9 12 1 10 12 9 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 8 1 10 100 12 1 1 1 10 12 10 12 1 1 10 12 10 10 12 10 12 7 1 9 12 1 1 7 1 10 7 1 7 1 7 1 7 1 1 1 1 1 1 5 0 1 1 1 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 10 12 16 15 10 12 15 10 12 15 10 12 15 10 100 12 1 1 1 1 1 1 1 100 1 100 1 1 1
  8482. staticfield java/lang/String COMPACT_STRINGS Z 1
  8483. staticfield java/lang/String serialPersistentFields [Ljava/io/ObjectStreamField; 0 [Ljava/io/ObjectStreamField;
  8484. staticfield java/lang/String CASE_INSENSITIVE_ORDER Ljava/util/Comparator; java/lang/String$CaseInsensitiveComparator
  8485. ciInstanceKlass java/lang/constant/ConstantDesc 1 0 37 100 1 100 1 1 1 1 100 1 1 1 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 1 100 1 100 1 1
  8486. ciInstanceKlass java/lang/InternalError 1 1 34 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1
  8487. instanceKlass org/apache/maven/BuildAbort
  8488. instanceKlass javax/xml/parsers/FactoryConfigurationError
  8489. instanceKlass com/google/common/util/concurrent/ExecutionError
  8490. instanceKlass java/util/ServiceConfigurationError
  8491. instanceKlass java/lang/ThreadDeath
  8492. instanceKlass java/lang/AssertionError
  8493. instanceKlass java/lang/VirtualMachineError
  8494. instanceKlass java/lang/LinkageError
  8495. ciInstanceKlass java/lang/Error 1 1 40 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  8496. instanceKlass java/lang/StackOverflowError
  8497. instanceKlass java/lang/OutOfMemoryError
  8498. instanceKlass java/lang/InternalError
  8499. ciInstanceKlass java/lang/VirtualMachineError 1 1 34 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1
  8500. ciInstanceKlass java/util/Set 1 1 144 100 1 10 7 12 1 1 1 9 7 12 1 1 1 7 1 10 12 1 1 10 12 1 7 1 7 1 10 12 1 7 1 7 1 11 7 12 1 1 1 11 12 1 1 7 1 10 12 1 10 12 1 1 11 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  8501. ciInstanceKlass java/util/Iterator 1 1 53 100 1 8 1 10 12 1 1 10 7 12 1 1 1 11 7 12 1 1 1 11 12 1 1 11 7 12 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  8502. ciInstanceKlass java/util/Map$Entry 1 1 178 18 12 1 1 7 1 7 1 18 10 100 12 1 1 1 18 12 1 18 100 1 11 7 12 1 1 1 11 12 1 11 7 12 1 1 1 10 100 12 1 1 1 10 7 12 1 1 1 8 1 10 12 1 1 8 1 8 1 8 1 10 12 1 10 12 1 8 10 7 1 10 12 1 8 10 12 1 8 1 10 12 1 8 10 12 1 8 1 10 12 1 1 8 1 100 1 8 1 10 12 1 1 11 12 7 1 11 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 11 12 16 3 3 15 11 12 15 11 12 15 11 12 15 10 7 12 1 1 1 1 1 100 1 100 1 1
  8503. instanceKlass java/io/SequenceInputStream
  8504. instanceKlass org/eclipse/core/internal/content/LazyInputStream
  8505. instanceKlass java/io/ObjectInputStream$PeekInputStream
  8506. instanceKlass java/io/ObjectInputStream$BlockDataInputStream
  8507. instanceKlass sun/nio/ch/NioSocketImpl$1
  8508. instanceKlass java/net/Socket$SocketInputStream
  8509. instanceKlass sun/security/ssl/SSLSocketImpl$AppInputStream
  8510. instanceKlass sun/nio/ch/ChannelInputStream
  8511. instanceKlass org/eclipse/jdt/ls/core/internal/ConnectionStreamFactory$NamedPipeInputStream
  8512. instanceKlass org/eclipse/core/internal/resources/ContentDescriptionManager$LazyFileInputStream
  8513. instanceKlass java/io/ObjectInputStream
  8514. instanceKlass org/eclipse/core/internal/localstore/SafeChunkyInputStream
  8515. instanceKlass org/eclipse/core/internal/registry/BufferedRandomInputStream
  8516. instanceKlass com/sun/org/apache/xerces/internal/impl/XMLEntityManager$RewindableInputStream
  8517. instanceKlass org/eclipse/osgi/storage/url/reference/ReferenceInputStream
  8518. instanceKlass java/util/jar/JarVerifier$VerifierStream
  8519. instanceKlass java/util/zip/ZipFile$ZipFileInputStream
  8520. instanceKlass java/io/FilterInputStream
  8521. instanceKlass java/io/FileInputStream
  8522. instanceKlass java/io/ByteArrayInputStream
  8523. ciInstanceKlass java/io/InputStream 1 1 195 7 1 10 7 12 1 1 1 100 1 10 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 100 1 3 10 12 1 1 100 1 8 1 10 12 1 10 7 12 1 1 1 3 7 1 8 1 10 10 7 12 1 1 1 7 1 10 11 7 12 1 1 1 10 12 1 1 11 12 1 1 11 7 12 1 1 1 11 12 1 1 7 1 10 7 12 1 1 1 5 0 10 12 1 10 12 1 1 100 1 10 8 1 10 8 1 8 1 10 12 1 1 10 7 12 1 1 1 7 1 5 0 10 12 1 100 1 7 1 1 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  8524. ciInstanceKlass jdk/internal/misc/Unsafe 1 1 1287 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 100 1 10 10 12 1 1 10 12 1 1 5 0 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 7 1 7 1 10 8 1 10 12 1 1 10 12 1 8 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 5 0 5 0 5 0 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 7 1 8 1 10 100 1 10 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 9 7 12 1 1 9 12 1 100 1 10 10 12 1 1 8 1 10 8 1 8 1 10 12 1 1 9 7 12 1 1 1 9 7 1 9 7 1 9 7 1 9 9 7 1 9 7 1 9 7 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 5 0 5 0 9 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 8 1 3 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 100 1 10 100 1 10 9 12 1 5 0 10 12 1 1 5 0 10 12 1 5 0 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 5 0 5 0 5 0 10 12 1 1 10 12 1 10 12 1 10 12 10 100 12 1 1 8 1 100 1 11 12 1 1 8 1 11 12 1 1 10 100 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 7 1 10 12 1 9 12 1 7 1 9 12 1 7 1 9 12 1 7 1 9 12 1 7 1 9 12 1 7 1 9 12 1 7 1 9 12 1 7 1 9 12 1 7 1 9 12 1 10 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  8525. staticfield jdk/internal/misc/Unsafe theUnsafe Ljdk/internal/misc/Unsafe; jdk/internal/misc/Unsafe
  8526. staticfield jdk/internal/misc/Unsafe ARRAY_BOOLEAN_BASE_OFFSET I 16
  8527. staticfield jdk/internal/misc/Unsafe ARRAY_BYTE_BASE_OFFSET I 16
  8528. staticfield jdk/internal/misc/Unsafe ARRAY_SHORT_BASE_OFFSET I 16
  8529. staticfield jdk/internal/misc/Unsafe ARRAY_CHAR_BASE_OFFSET I 16
  8530. staticfield jdk/internal/misc/Unsafe ARRAY_INT_BASE_OFFSET I 16
  8531. staticfield jdk/internal/misc/Unsafe ARRAY_LONG_BASE_OFFSET I 16
  8532. staticfield jdk/internal/misc/Unsafe ARRAY_FLOAT_BASE_OFFSET I 16
  8533. staticfield jdk/internal/misc/Unsafe ARRAY_DOUBLE_BASE_OFFSET I 16
  8534. staticfield jdk/internal/misc/Unsafe ARRAY_OBJECT_BASE_OFFSET I 16
  8535. staticfield jdk/internal/misc/Unsafe ARRAY_BOOLEAN_INDEX_SCALE I 1
  8536. staticfield jdk/internal/misc/Unsafe ARRAY_BYTE_INDEX_SCALE I 1
  8537. staticfield jdk/internal/misc/Unsafe ARRAY_SHORT_INDEX_SCALE I 2
  8538. staticfield jdk/internal/misc/Unsafe ARRAY_CHAR_INDEX_SCALE I 2
  8539. staticfield jdk/internal/misc/Unsafe ARRAY_INT_INDEX_SCALE I 4
  8540. staticfield jdk/internal/misc/Unsafe ARRAY_LONG_INDEX_SCALE I 8
  8541. staticfield jdk/internal/misc/Unsafe ARRAY_FLOAT_INDEX_SCALE I 4
  8542. staticfield jdk/internal/misc/Unsafe ARRAY_DOUBLE_INDEX_SCALE I 8
  8543. staticfield jdk/internal/misc/Unsafe ARRAY_OBJECT_INDEX_SCALE I 4
  8544. staticfield jdk/internal/misc/Unsafe ADDRESS_SIZE I 8
  8545. instanceKlass org/eclipse/jdt/apt/core/internal/AnnotationProcessorFactoryLoader$1
  8546. instanceKlass lombok/launch/ShadowClassLoader
  8547. instanceKlass org/eclipse/sisu/space/CloningClassSpace$CloningClassLoader
  8548. instanceKlass org/apache/aries/spifly/MultiDelegationClassloader
  8549. instanceKlass org/apache/aries/spifly/Util$WrapperCL
  8550. instanceKlass lombok/launch/ShadowClassLoader
  8551. instanceKlass org/eclipse/osgi/internal/loader/ModuleClassLoader
  8552. instanceKlass org/eclipse/osgi/internal/framework/ContextFinder
  8553. instanceKlass org/eclipse/osgi/internal/framework/EquinoxContainer$1
  8554. instanceKlass lombok/launch/ShadowClassLoader
  8555. instanceKlass jdk/internal/reflect/DelegatingClassLoader
  8556. instanceKlass java/security/SecureClassLoader
  8557. ciInstanceKlass java/lang/ClassLoader 1 1 1108 9 7 12 1 1 1 10 7 12 1 1 1 9 12 1 1 10 7 12 1 1 1 7 1 10 12 1 1 10 12 1 1 9 12 1 1 10 12 1 1 100 1 10 12 1 10 12 1 1 10 7 12 1 1 1 100 1 8 1 10 12 1 10 7 12 1 1 1 10 7 12 1 10 7 1 10 7 1 7 1 7 1 10 12 1 10 12 1 9 12 1 1 10 10 7 12 1 1 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 1 7 1 10 12 1 9 12 1 1 10 12 1 1 10 7 12 1 1 1 9 12 1 9 12 1 1 9 12 1 10 12 1 1 9 12 10 12 1 1 7 1 10 8 1 10 12 1 1 10 12 1 10 7 1 7 1 10 12 1 1 10 7 12 1 1 1 8 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 7 1 10 12 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 10 12 1 10 12 1 10 100 12 1 1 10 12 1 1 10 12 1 1 10 12 1 100 1 10 12 1 7 1 10 12 1 10 7 12 1 1 1 10 10 12 1 1 10 12 1 1 7 1 8 1 10 8 1 10 12 1 10 12 1 100 1 8 1 10 12 1 1 10 12 1 1 10 10 12 1 1 10 12 1 1 10 12 1 1 10 7 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 8 1 9 12 1 10 12 1 1 8 1 8 1 10 7 12 1 1 100 1 10 10 12 10 12 1 10 12 1 10 12 1 10 12 1 1 10 7 12 1 1 10 12 1 10 7 1 7 1 10 12 1 1 10 12 1 10 7 1 10 12 1 100 1 18 12 1 10 100 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 10 12 1 10 12 1 100 1 10 12 1 8 1 10 10 12 1 1 10 12 1 10 12 1 1 7 1 10 12 1 10 12 1 1 10 7 12 1 1 10 12 1 8 1 100 1 10 10 12 1 9 12 1 10 7 12 1 1 10 12 1 7 1 8 1 10 12 1 10 8 1 8 1 10 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 7 1 100 1 10 12 1 1 7 1 7 1 10 7 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 9 100 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 8 1 7 1 18 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 8 1 10 12 1 10 12 1 18 12 1 11 100 12 1 1 1 100 1 10 12 1 1 10 12 1 10 11 12 1 1 10 18 10 12 1 1 11 7 12 1 18 12 1 11 12 1 1 10 12 10 12 1 1 10 12 1 1 100 1 8 1 10 10 12 1 8 1 8 1 10 100 12 1 1 10 12 1 100 1 10 10 12 1 8 1 8 1 8 1 10 12 1 10 12 1 1 10 12 1 10 7 12 1 1 1 11 7 12 1 1 100 1 10 11 10 12 1 10 12 1 10 12 1 1 9 7 12 1 1 9 12 1 1 9 12 9 12 1 9 12 1 9 12 1 8 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 10 12 1 11 12 1 1 10 100 12 1 1 1 100 1 10 12 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 1 15 10 12 16 1 16 15 10 12 16 1 16 1 15 10 12 16 15 10 12 16 15 10 12 16 15 10 100 12 1 1 1 1 1 100 1 100 1 1
  8558. staticfield java/lang/ClassLoader nocerts [Ljava/security/cert/Certificate; 0 [Ljava/security/cert/Certificate;
  8559. staticfield java/lang/ClassLoader $assertionsDisabled Z 1
  8560. ciInstanceKlass java/lang/reflect/Constructor 1 1 439 10 7 12 1 1 1 10 7 12 1 1 9 7 12 1 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 9 12 1 1 10 7 12 1 1 1 9 12 1 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 1 9 12 1 100 1 8 1 10 12 1 10 12 1 9 12 1 1 10 7 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 7 1 100 1 8 1 10 10 12 1 10 12 1 10 12 1 1 10 12 1 1 9 100 12 1 1 1 10 7 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 100 12 1 1 10 12 1 1 10 12 1 10 7 12 1 1 1 8 1 10 10 12 1 100 1 8 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 11 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 8 1 9 12 1 1 10 7 12 1 1 1 10 7 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 9 7 12 1 1 10 12 1 10 12 1 10 12 1 100 1 8 1 10 10 12 1 1 10 12 1 10 10 12 1 1 10 12 1 1 10 100 12 1 1 1 11 100 12 1 1 1 10 12 1 1 9 100 12 1 1 1 10 100 12 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1
  8561. instanceKlass java/lang/reflect/Executable
  8562. instanceKlass java/lang/reflect/Field
  8563. ciInstanceKlass java/lang/reflect/AccessibleObject 1 1 400 10 7 12 1 1 1 9 100 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 9 12 1 1 7 1 10 7 12 1 1 1 11 12 1 7 1 10 12 1 7 1 100 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 7 1 10 7 12 1 1 1 10 12 1 1 11 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 8 1 7 1 7 1 10 10 12 1 1 8 1 10 12 1 10 12 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 7 1 10 12 1 10 12 1 9 12 1 1 10 12 1 1 10 12 1 10 7 1 100 1 8 1 10 8 1 10 12 1 8 1 10 12 1 10 12 1 1 10 100 1 8 1 10 11 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 9 12 1 1 100 1 10 12 1 7 1 10 12 1 10 12 1 1 10 100 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 1 10 12 1 9 12 1 10 7 12 1 1 8 1 10 7 12 1 1 1 8 1 10 7 12 1 1 1 9 12 1 7 1 10 7 1 10 10 7 12 1 1 1 7 1 10 10 7 12 1 1 1 7 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  8564. staticfield java/lang/reflect/AccessibleObject reflectionFactory Ljdk/internal/reflect/ReflectionFactory; jdk/internal/reflect/ReflectionFactory
  8565. instanceKlass java/lang/reflect/Constructor
  8566. instanceKlass java/lang/reflect/Method
  8567. ciInstanceKlass java/lang/reflect/Executable 1 1 581 10 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 11 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 8 1 10 10 12 1 1 10 12 1 1 10 7 12 1 1 1 18 12 1 1 11 7 12 1 1 1 8 1 8 1 8 1 10 7 12 1 1 1 11 12 1 1 7 1 8 1 8 1 10 12 1 7 1 8 1 10 12 1 8 1 11 100 12 1 1 1 7 1 11 7 12 1 1 1 11 12 1 8 1 18 8 1 10 12 1 10 12 1 1 18 8 1 10 12 1 100 1 10 12 1 10 12 1 11 12 1 10 12 1 1 8 1 8 1 10 12 1 1 10 12 1 1 10 10 12 1 9 100 12 1 1 1 10 100 12 1 1 1 10 12 1 10 12 1 1 10 7 12 1 1 10 12 1 10 12 1 10 12 1 10 7 12 1 1 7 1 10 100 12 1 1 1 10 12 1 1 10 7 12 1 1 10 12 1 10 12 1 1 9 7 12 1 1 1 10 7 10 12 1 8 1 10 12 1 10 12 1 3 100 1 8 1 10 12 1 10 12 1 10 10 12 1 10 12 1 1 8 1 8 1 8 1 9 12 1 1 9 12 1 10 12 1 100 1 8 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 10 12 1 7 1 10 12 1 10 12 1 1 100 1 10 7 12 1 1 1 7 1 10 7 12 1 1 1 10 12 1 1 11 7 12 1 1 10 12 1 10 100 12 1 1 1 10 12 1 1 9 12 1 10 12 1 1 10 12 1 10 12 1 1 9 7 12 1 1 1 10 7 12 1 1 1 10 12 1 10 12 1 1 9 12 1 10 10 10 10 100 12 1 1 1 10 12 1 9 12 1 10 12 1 1 9 12 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 16 15 16 1 16 1 15 10 12 16 15 10 7 12 1 1 1 1 1 1 100 1 1 100 1 100 1 1
  8568. ciInstanceKlass java/lang/reflect/Member 1 1 37 100 1 10 12 1 1 100 1 100 1 1 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  8569. instanceKlass org/apache/maven/shared/utils/logging/MessageUtils$1
  8570. instanceKlass org/eclipse/debug/core/model/RuntimeProcess$ProcessMonitorThread
  8571. instanceKlass com/sun/jna/internal/Cleaner$CleanerThread
  8572. instanceKlass org/eclipse/core/internal/jobs/InternalWorker
  8573. instanceKlass org/eclipse/core/internal/jobs/Worker
  8574. instanceKlass java/util/TimerThread
  8575. instanceKlass java/util/logging/LogManager$Cleaner
  8576. instanceKlass org/eclipse/osgi/framework/eventmgr/EventManager$EventThread
  8577. instanceKlass org/eclipse/equinox/launcher/Main$SplashHandler
  8578. instanceKlass java/util/concurrent/ForkJoinWorkerThread
  8579. instanceKlass jdk/internal/misc/InnocuousThread
  8580. instanceKlass java/lang/ref/Finalizer$FinalizerThread
  8581. instanceKlass java/lang/ref/Reference$ReferenceHandler
  8582. instanceKlass java/lang/BaseVirtualThread
  8583. ciInstanceKlass java/lang/Thread 1 1 870 10 7 12 1 1 1 9 12 1 1 10 7 12 1 1 10 12 1 10 100 12 1 1 100 1 8 1 10 12 1 1 9 12 1 9 12 1 1 9 12 1 1 7 1 10 12 1 1 10 12 1 10 7 12 1 1 1 10 12 9 12 1 1 10 12 1 7 1 10 12 1 100 1 8 1 10 9 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 3 8 1 7 1 5 0 10 7 12 1 1 1 9 12 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 9 12 1 1 10 7 1 8 1 10 7 1 10 12 1 9 12 1 1 10 7 12 1 1 1 10 10 12 1 1 9 100 12 1 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 10 12 1 10 12 1 10 7 12 1 1 9 12 1 10 7 12 1 1 1 10 12 1 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 9 12 1 1 10 7 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 10 7 12 1 1 9 12 1 8 1 9 7 12 1 1 9 12 1 1 5 0 100 1 10 100 1 10 100 1 10 7 1 10 8 1 10 12 1 1 10 7 12 1 10 12 1 10 12 1 100 1 8 1 10 10 12 1 10 12 1 1 10 100 12 1 1 1 10 100 12 1 1 1 10 12 1 7 1 9 12 1 1 100 1 10 10 12 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 9 12 1 1 10 10 12 1 1 10 12 1 1 11 7 12 1 1 10 7 12 1 1 9 12 1 9 12 1 1 9 12 1 1 10 100 12 1 1 10 12 1 1 9 7 12 1 1 1 10 7 12 1 1 10 12 1 10 12 1 100 1 10 10 12 9 12 1 1 10 12 1 11 100 12 1 1 10 12 1 10 12 1 10 12 1 9 12 1 10 10 12 1 10 12 1 1 9 12 1 9 12 10 12 1 8 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 9 7 12 1 1 1 8 1 10 9 12 1 10 12 1 7 1 8 1 10 10 12 1 8 1 10 12 1 1 9 12 10 12 8 1 10 10 12 1 10 12 1 8 1 10 12 1 10 8 1 10 100 12 1 1 10 12 1 1 100 1 8 1 10 9 12 1 9 12 1 1 10 12 1 1 10 10 12 1 10 12 1 100 10 7 12 1 1 1 9 12 1 10 12 1 1 10 12 1 1 10 100 12 1 1 1 11 7 12 1 1 1 9 100 12 1 1 1 10 100 12 1 1 1 7 1 10 12 1 100 1 10 12 1 10 12 1 1 10 12 1 1 8 1 9 12 1 10 12 1 10 12 1 1 11 7 12 1 1 1 10 12 1 1 1 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 100 1 100 1 100 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  8584. staticfield java/lang/Thread NEW_THREAD_BINDINGS Ljava/lang/Object; java/lang/Class
  8585. staticfield java/lang/Thread EMPTY_STACK_TRACE [Ljava/lang/StackTraceElement; 0 [Ljava/lang/StackTraceElement;
  8586. ciInstanceKlass java/lang/Runnable 1 0 11 100 1 100 1 1 1 1 1 1 1
  8587. ciInstanceKlass java/net/URL 1 1 771 10 7 12 1 1 1 10 12 1 10 7 12 1 1 9 12 1 1 9 12 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 9 12 1 1 10 7 12 1 1 1 8 1 10 12 1 1 7 1 10 10 12 1 1 8 1 10 12 1 1 9 12 1 7 1 8 1 10 12 1 10 12 1 8 1 9 12 1 10 12 1 1 9 12 1 10 12 1 10 12 1 9 12 1 9 12 1 8 1 9 12 1 10 12 1 1 8 1 9 12 1 1 10 12 1 1 10 7 12 1 1 1 8 1 10 12 1 7 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 8 1 10 12 1 1 10 12 1 8 1 9 12 1 8 1 10 12 1 10 7 12 1 1 1 7 1 10 12 1 10 12 1 1 10 7 12 1 1 1 100 1 8 1 10 10 12 1 8 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 8 1 10 12 1 8 1 10 10 100 1 10 10 12 1 8 1 10 7 12 1 1 1 10 12 1 9 100 12 1 1 1 10 7 12 1 1 1 9 12 1 1 10 12 1 10 100 12 1 1 1 100 1 100 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 10 12 1 10 12 1 10 12 1 1 8 1 9 100 12 1 1 1 10 100 12 1 1 1 10 12 1 1 9 100 12 1 1 1 10 12 1 1 100 1 10 12 1 10 12 1 10 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 1 10 12 1 9 12 1 1 9 12 1 1 7 1 8 1 10 10 12 1 9 12 1 1 10 7 12 1 1 8 1 10 7 12 1 1 8 1 10 12 1 1 10 12 1 8 1 8 1 10 7 12 1 1 1 7 1 10 7 12 1 1 1 10 12 1 10 12 1 7 1 10 9 7 12 1 1 1 10 7 12 1 1 10 12 1 1 10 12 1 8 1 7 1 10 10 7 12 1 1 1 10 12 1 8 9 100 12 1 1 1 10 12 1 1 10 12 1 10 12 1 1 10 7 12 1 1 11 7 12 1 1 10 12 1 10 12 1 9 12 1 10 12 1 1 10 100 12 1 1 10 100 12 1 1 1 8 10 100 12 1 1 100 1 10 8 8 10 12 1 8 8 8 100 1 10 12 1 9 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 10 12 1 1 10 12 1 1 10 10 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 10 12 1 100 1 8 1 10 10 10 12 1 1 10 12 1 10 12 1 1 8 1 7 1 10 10 7 1 10 12 1 9 7 12 1 1 1 9 12 1 1 7 1 10 10 7 12 1 1 1 7 1 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  8588. staticfield java/net/URL defaultFactory Ljava/net/URLStreamHandlerFactory; java/net/URL$DefaultFactory
  8589. staticfield java/net/URL streamHandlerLock Ljava/lang/Object; java/lang/Object
  8590. staticfield java/net/URL serialPersistentFields [Ljava/io/ObjectStreamField; 7 [Ljava/io/ObjectStreamField;
  8591. ciMethod java/lang/System arraycopy (Ljava/lang/Object;ILjava/lang/Object;II)V 256 0 128 0 -1
  8592. ciInstanceKlass java/lang/Module 1 1 1070 10 7 12 1 1 1 9 7 12 1 1 1 10 7 12 1 1 1 9 12 1 9 12 1 1 9 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 7 12 1 1 1 7 1 10 7 12 1 1 1 10 12 1 1 11 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 9 100 12 1 1 1 10 7 12 1 1 1 10 12 1 8 1 10 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 10 12 1 9 12 1 1 10 100 12 1 1 100 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 10 12 1 10 7 12 1 1 8 1 8 1 10 8 1 8 1 9 12 1 1 8 1 10 100 12 1 1 1 10 12 1 9 12 1 1 11 12 1 9 7 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 8 1 10 12 1 1 10 12 1 10 12 1 1 9 7 12 1 1 1 10 12 1 1 10 12 1 1 9 12 1 10 12 1 10 12 1 9 12 1 1 11 7 12 1 1 10 12 1 1 9 12 1 9 12 1 10 12 1 10 12 1 100 1 8 1 10 10 12 1 1 10 12 1 8 1 10 12 1 1 8 1 8 1 10 12 1 1 10 12 1 10 12 1 1 18 12 1 1 10 12 1 1 11 12 1 9 12 1 11 12 10 100 12 1 1 100 1 8 1 10 11 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 1 11 12 1 1 11 7 12 1 1 11 12 1 1 9 12 1 11 12 1 10 12 1 1 10 12 1 1 9 12 1 10 12 10 7 12 1 1 10 7 1 18 12 1 1 11 100 12 1 1 1 18 12 1 11 12 1 1 10 100 12 1 1 1 11 12 1 1 10 7 12 1 1 7 1 11 12 1 7 1 7 1 10 12 1 10 7 12 1 1 1 10 11 7 12 1 8 1 10 10 12 1 1 10 7 12 1 1 10 12 1 10 12 1 7 1 10 12 1 10 11 12 1 1 10 12 10 12 1 1 9 12 1 1 100 1 10 10 12 1 1 11 7 1 10 12 1 1 11 12 1 10 10 12 1 11 10 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 10 12 1 10 12 1 1 10 10 12 1 1 10 12 1 18 12 1 11 12 1 18 12 1 10 12 1 10 12 1 10 12 7 1 10 12 1 10 12 1 10 12 1 9 12 1 7 1 10 10 10 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 9 12 1 18 12 1 1 10 7 12 1 1 1 100 1 8 1 10 12 1 1 10 12 1 1 10 7 12 1 1 7 1 10 12 1 1 7 1 8 1 10 12 1 1 100 1 11 12 1 1 10 100 12 1 1 1 18 12 1 1 11 100 12 1 1 1 100 1 10 12 1 10 12 1 1 7 1 7 1 10 12 8 1 10 12 1 1 10 12 1 1 10 7 12 1 1 10 12 1 1 10 12 1 10 12 10 12 1 1 7 1 10 10 12 1 1 10 7 12 1 1 1 100 1 10 12 1 1 10 7 12 1 1 8 1 18 12 1 1 100 1 100 1 9 12 1 1 9 12 1 9 12 1 11 100 12 1 1 1 100 1 11 12 1 1 100 1 10 12 1 8 1 10 12 1 10 12 10 12 1 8 1 10 10 100 12 1 1 7 1 10 10 12 1 10 7 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 10 12 11 12 1 10 12 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 10 12 16 16 15 10 12 16 16 15 10 16 1 15 10 12 16 1 15 10 12 16 1 16 15 10 12 16 16 1 15 10 12 16 15 10 7 12 1 1 1 15 10 100 12 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 100 1 100 1 1
  8593. staticfield java/lang/Module ALL_UNNAMED_MODULE Ljava/lang/Module; java/lang/Module
  8594. staticfield java/lang/Module ALL_UNNAMED_MODULE_SET Ljava/util/Set; java/util/ImmutableCollections$Set12
  8595. staticfield java/lang/Module EVERYONE_MODULE Ljava/lang/Module; java/lang/Module
  8596. staticfield java/lang/Module EVERYONE_SET Ljava/util/Set; java/util/ImmutableCollections$Set12
  8597. staticfield java/lang/Module $assertionsDisabled Z 1
  8598. ciInstanceKlass java/lang/Character 1 1 604 7 1 7 1 100 1 9 12 1 1 8 1 9 12 1 1 7 1 9 12 1 1 10 7 12 1 1 1 10 100 12 1 1 1 10 100 12 1 1 1 10 7 12 1 1 1 9 7 12 1 1 1 10 12 1 10 12 1 1 10 12 1 1 10 7 12 1 1 10 12 1 1 3 3 3 3 3 10 12 1 1 10 12 1 3 11 7 12 1 1 1 11 12 1 1 10 12 1 1 10 12 1 1 100 1 10 10 12 1 3 10 12 1 1 10 12 1 10 12 1 1 100 1 8 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 100 12 1 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 7 12 1 1 10 10 12 1 10 10 12 1 10 12 1 1 10 12 1 10 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 10 12 10 10 12 1 10 10 12 1 10 10 12 1 10 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 10 12 1 10 10 12 1 10 10 12 1 1 10 10 12 1 10 5 0 10 12 1 10 12 1 10 10 12 1 10 10 12 1 1 10 10 12 1 10 10 12 1 9 12 1 1 100 1 10 10 12 1 10 12 1 1 3 10 100 12 1 1 1 10 12 1 10 100 12 1 1 7 1 10 10 12 1 1 10 12 1 1 10 12 1 1 8 1 10 12 1 9 100 12 1 1 1 10 12 1 10 10 12 1 10 12 1 1 10 12 1 10 10 12 1 1 10 10 12 1 1 7 1 8 1 10 12 1 1 10 7 12 1 1 1 8 1 10 12 1 1 9 12 1 1 7 1 7 1 7 1 1 1 1 3 1 3 1 3 1 3 1 1 1 1 1 3 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 3 1 1 3 1 1 1 1 1 3 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 1 1 1 1
  8599. staticfield java/lang/Character TYPE Ljava/lang/Class; java/lang/Class
  8600. staticfield java/lang/Character $assertionsDisabled Z 1
  8601. ciInstanceKlass java/util/Arrays 1 1 1029 10 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 100 12 1 1 1 100 1 7 1 10 8 1 10 12 1 1 10 12 1 8 1 8 1 10 12 1 1 10 12 1 100 1 10 12 1 9 100 12 1 1 1 10 7 12 1 1 100 1 10 12 1 1 10 7 12 1 1 10 7 12 1 1 1 100 1 10 12 1 10 12 1 1 7 1 9 7 12 1 1 1 10 12 1 1 10 7 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 7 1 11 12 1 1 10 12 1 10 7 12 1 1 1 10 12 10 12 1 10 12 1 10 12 10 12 1 11 7 12 1 1 1 10 7 12 1 1 1 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 10 7 12 1 1 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 7 1 10 7 1 10 7 1 10 7 1 10 7 1 10 100 1 10 100 1 10 100 1 10 12 1 8 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 7 1 10 12 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 9 7 12 1 1 1 10 12 1 9 7 1 10 12 1 9 7 1 10 12 1 9 7 1 10 12 1 9 7 1 10 12 1 9 7 1 10 12 1 9 10 12 1 10 12 1 10 12 1 9 12 1 100 1 10 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 8 1 8 1 10 12 1 10 12 1 8 1 10 12 1 10 12 1 10 12 1 10 7 12 1 1 1 3 10 100 1 10 10 12 1 1 11 100 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 11 12 1 8 1 10 11 12 1 11 7 12 1 1 1 11 100 12 1 1 1 11 12 1 1 18 12 1 1 11 12 1 1 11 100 12 1 1 1 18 12 1 11 100 12 1 1 1 18 12 1 11 100 12 1 1 1 18 12 1 100 1 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 7 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 1 10 12 10 12 10 12 1 10 12 10 12 1 10 12 1 10 12 1 1 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 16 15 10 12 15 10 12 15 10 12 15 10 12 15 10 100 12 1 1 1 1 1 100 1 100 1 1 1 1 100 1 1 1 1 1 1 100 1 1 100 1 1 100 1 1 1 100 1 100 1 1
  8602. staticfield java/util/Arrays $assertionsDisabled Z 1
  8603. ciInstanceKlass java/lang/OutOfMemoryError 1 1 26 10 100 12 1 1 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1
  8604. ciInstanceKlass java/lang/Integer 1 1 453 7 1 7 1 7 1 7 1 10 12 1 1 9 12 1 1 9 12 1 1 10 100 12 1 1 1 10 12 1 1 10 100 12 1 1 1 10 10 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 10 12 1 9 12 1 1 9 12 1 7 1 8 1 10 12 1 7 1 10 12 1 8 1 10 12 1 1 10 12 1 8 1 10 12 1 8 1 10 12 1 1 3 10 12 1 1 3 10 12 1 1 10 12 1 1 10 7 12 1 1 1 11 7 1 10 12 1 1 11 10 12 1 1 8 1 10 12 1 1 8 1 7 1 10 12 1 1 10 12 1 1 5 0 8 1 10 12 1 10 12 1 10 12 1 10 12 1 1 7 1 9 12 1 1 9 12 1 1 10 12 1 10 7 1 9 12 1 10 12 1 10 12 1 10 12 1 1 10 7 12 1 1 1 100 1 100 1 10 12 1 1 10 12 1 1 8 1 8 1 10 12 1 1 8 1 8 1 8 1 8 1 8 1 8 1 10 12 1 10 12 1 5 0 3 3 3 3 10 12 1 10 12 1 3 10 12 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 8 1 10 7 12 1 1 1 9 12 1 1 7 1 7 1 7 1 1 1 1 3 1 1 1 3 1 3 1 1 5 0 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 100 1 100 1 1
  8605. staticfield java/lang/Integer TYPE Ljava/lang/Class; java/lang/Class
  8606. staticfield java/lang/Integer digits [C 36
  8607. staticfield java/lang/Integer DigitTens [B 100
  8608. staticfield java/lang/Integer DigitOnes [B 100
  8609. instanceKlass java/math/BigDecimal
  8610. instanceKlass com/google/gson/internal/LazilyParsedNumber
  8611. instanceKlass com/sun/jna/IntegerType
  8612. instanceKlass java/util/concurrent/atomic/Striped64
  8613. instanceKlass java/math/BigInteger
  8614. instanceKlass java/util/concurrent/atomic/AtomicLong
  8615. instanceKlass java/util/concurrent/atomic/AtomicInteger
  8616. instanceKlass java/lang/Long
  8617. instanceKlass java/lang/Integer
  8618. instanceKlass java/lang/Short
  8619. instanceKlass java/lang/Byte
  8620. instanceKlass java/lang/Double
  8621. instanceKlass java/lang/Float
  8622. ciInstanceKlass java/lang/Number 1 1 37 10 7 12 1 1 1 10 100 12 1 1 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  8623. ciMethod java/lang/Integer intValue ()I 266 0 133 0 -1
  8624. ciInstanceKlass java/lang/Thread$FieldHolder 1 1 48 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 1 1 100 1 1 1
  8625. ciInstanceKlass java/lang/Thread$Constants 0 0 59 7 1 10 7 12 1 1 1 100 1 10 10 7 12 1 1 1 7 1 8 1 10 12 1 9 7 12 1 1 1 7 1 7 1 10 12 1 10 12 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  8626. ciInstanceKlass java/lang/ThreadGroup 1 1 411 10 7 12 1 1 1 9 7 12 1 1 1 8 1 9 12 1 1 7 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 100 12 1 1 1 10 12 1 1 18 12 1 1 11 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 100 12 1 1 1 10 12 1 11 12 1 1 11 7 12 1 1 11 12 1 1 10 12 1 1 10 12 1 10 12 1 11 12 1 11 12 1 1 100 1 10 10 12 1 100 1 10 18 12 1 1 11 7 12 1 1 1 11 12 1 1 9 12 1 1 10 12 1 1 8 1 10 7 12 1 1 1 10 100 12 1 1 1 10 12 1 1 11 12 10 12 1 1 10 12 1 1 11 7 1 9 12 1 7 1 10 8 1 10 12 1 1 10 12 1 1 8 1 10 12 1 10 7 12 1 1 1 10 12 1 1 10 7 1 8 1 10 8 1 10 12 1 10 12 1 8 1 9 12 1 1 9 12 1 10 100 12 1 1 1 100 9 12 1 1 7 1 9 12 1 10 12 10 12 1 1 100 10 12 9 12 1 10 12 1 100 1 10 11 12 1 1 7 1 10 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 10 12 16 16 15 10 12 16 15 10 100 12 1 1 1 1 1 100 1 100 1 1
  8627. staticfield java/lang/ThreadGroup $assertionsDisabled Z 1
  8628. ciInstanceKlass java/lang/Thread$UncaughtExceptionHandler 1 0 16 100 1 100 1 1 1 1 1 1 1 1 100 1 1 1
  8629. ciInstanceKlass java/security/AccessControlContext 1 1 374 9 7 12 1 1 1 9 12 1 1 10 100 12 1 1 1 8 1 10 100 12 1 1 1 10 7 12 1 1 1 9 12 1 9 12 1 1 9 12 1 1 10 7 12 1 1 7 1 10 12 1 11 7 12 1 1 1 11 12 1 11 12 1 11 12 1 1 7 1 11 12 1 1 10 12 1 10 7 12 1 1 1 9 100 12 1 1 1 10 7 12 1 1 1 11 100 12 1 1 1 10 7 1 100 1 8 1 10 12 1 10 12 1 1 7 1 10 7 12 1 1 1 9 12 1 9 12 1 9 12 1 9 12 1 1 9 12 1 1 9 12 1 9 12 1 10 7 12 1 1 1 9 12 1 10 12 1 1 10 12 1 1 8 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 7 1 10 10 12 1 1 10 7 12 1 1 1 10 8 1 10 7 12 1 1 8 1 10 7 12 1 1 8 1 8 1 10 12 1 8 1 10 12 1 8 1 10 12 1 10 12 1 10 12 1 1 8 1 8 1 100 1 10 12 1 10 12 1 1 100 1 10 12 1 8 1 10 12 1 10 12 1 10 8 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 11 10 12 1 10 12 1 1 10 10 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1
  8630. instanceKlass java/lang/ThreadBuilders$BoundVirtualThread
  8631. instanceKlass java/lang/VirtualThread
  8632. ciInstanceKlass java/lang/BaseVirtualThread 0 0 36 10 100 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 100 1 1
  8633. ciInstanceKlass java/lang/VirtualThread 0 0 907 9 7 12 1 1 1 10 7 12 1 1 1 10 100 12 1 1 1 10 7 12 1 1 1 9 12 1 1 9 12 1 1 100 1 10 12 1 9 12 1 1 18 12 1 1 9 12 1 1 10 12 1 1 100 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 7 12 1 10 12 1 10 12 1 10 12 1 10 12 1 11 100 12 1 1 1 100 1 10 12 1 1 10 100 12 1 1 1 10 100 12 1 1 1 10 12 1 100 1 10 10 12 1 10 12 1 1 9 12 1 1 10 12 1 1 9 12 1 1 10 12 1 9 12 1 1 9 12 1 100 1 10 10 12 1 10 100 12 1 1 10 9 10 10 12 1 1 10 12 1 1 10 100 12 1 1 10 100 1 10 9 10 10 12 1 7 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 9 12 1 10 12 1 10 12 1 9 12 1 1 10 12 1 10 12 1 9 12 1 1 10 12 1 10 12 1 10 12 1 11 100 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 9 12 1 10 100 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 9 12 1 1 10 100 12 1 1 10 12 1 10 12 1 1 10 100 12 1 1 10 12 1 100 1 8 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 100 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 7 12 1 1 10 12 1 1 10 12 1 1 100 1 10 10 12 1 7 1 9 12 1 1 10 7 12 1 1 10 9 12 1 1 18 9 100 12 1 1 1 11 100 12 1 1 1 11 100 1 11 12 10 12 1 10 12 1 1 10 12 1 100 1 10 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 9 12 1 1 11 100 12 1 1 10 12 9 100 12 1 1 1 9 12 1 10 12 1 1 9 12 1 9 12 1 9 12 1 7 1 10 10 12 1 1 10 12 1 10 12 7 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 10 10 12 1 8 1 10 10 12 1 10 12 1 10 7 12 1 1 8 1 8 1 10 9 100 12 1 1 1 10 12 1 1 10 12 1 10 10 10 12 9 12 1 10 12 1 1 9 12 1 10 12 1 1 9 12 1 10 12 1 1 18 12 1 1 18 12 1 10 7 12 1 1 1 8 1 10 100 12 1 1 1 10 7 12 1 1 1 18 12 1 10 100 12 1 1 1 100 1 10 12 1 8 1 10 12 1 8 1 10 12 1 1 8 1 8 1 10 100 12 1 1 8 1 10 12 1 8 1 8 1 10 100 12 1 1 1 10 12 1 10 12 1 1 10 12 1 18 12 1 1 18 12 1 1 5 0 9 12 1 10 12 1 18 12 1 100 1 10 12 10 7 12 1 1 10 12 1 1 7 1 8 1 10 10 12 1 10 12 1 1 10 12 1 9 12 1 8 10 12 1 1 8 8 9 12 1 8 10 12 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 16 15 10 12 15 16 15 10 12 16 15 10 12 16 16 15 10 12 16 15 10 12 16 15 10 12 16 15 10 12 16 1 15 10 100 12 1 1 1 1 1 1 1 7 1 1 100 1 100 1 1
  8634. ciInstanceKlass java/lang/ThreadBuilders$BoundVirtualThread 0 0 132 10 7 12 1 1 1 9 7 12 1 1 1 10 7 12 1 1 1 9 12 1 1 10 12 1 1 10 12 1 1 9 12 1 1 10 7 12 1 1 1 10 12 1 1 7 1 8 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 8 1 10 12 1 8 1 10 12 1 1 10 100 12 1 1 9 100 12 1 1 1 10 12 1 1 10 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1
  8635. ciInstanceKlass jdk/internal/vm/ContinuationScope 0 0 50 10 100 12 1 1 1 10 100 12 1 1 1 100 1 9 100 12 1 1 1 10 12 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1
  8636. ciInstanceKlass jdk/internal/vm/StackChunk 0 0 32 10 100 12 1 1 1 9 100 12 1 1 1 9 12 1 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1
  8637. ciInstanceKlass java/lang/Float 1 1 279 7 1 7 1 10 7 12 1 1 1 10 100 12 1 1 1 4 7 1 10 12 1 1 10 12 1 1 8 1 8 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 7 1 4 10 7 12 1 1 9 12 1 1 10 12 1 1 10 12 1 10 10 12 1 1 10 12 1 10 12 1 3 3 100 1 4 4 4 3 10 12 1 1 9 12 1 1 100 1 10 3 3 4 4 10 12 1 3 3 3 10 12 1 1 10 12 1 1 10 12 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 8 1 10 12 1 1 9 12 1 1 7 1 7 1 7 1 1 1 1 4 1 4 1 1 1 4 1 1 3 1 3 1 3 1 3 1 3 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 100 1 100 1 1
  8638. staticfield java/lang/Float TYPE Ljava/lang/Class; java/lang/Class
  8639. staticfield java/lang/Float $assertionsDisabled Z 1
  8640. ciInstanceKlass java/lang/Double 1 1 290 7 1 7 1 10 7 12 1 1 1 10 12 1 1 10 7 1 10 12 1 1 10 7 12 1 1 1 6 0 8 1 10 12 1 1 8 1 10 12 1 1 8 1 6 0 10 12 1 1 100 1 5 0 5 0 8 1 8 1 10 7 12 1 1 1 10 7 12 1 1 1 8 1 10 12 1 1 8 1 8 1 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 7 1 6 0 10 7 12 1 1 9 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 5 0 10 12 1 1 10 12 1 10 12 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 8 1 10 7 12 1 1 1 9 12 1 1 7 1 7 1 7 1 1 1 6 0 1 6 0 1 6 0 1 1 1 6 0 1 1 3 1 3 1 3 1 3 1 3 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 100 1 100 1 1
  8641. staticfield java/lang/Double TYPE Ljava/lang/Class; java/lang/Class
  8642. ciInstanceKlass java/lang/Byte 1 1 213 7 1 100 1 10 7 12 1 1 1 9 12 1 1 8 1 9 12 1 1 7 1 10 12 1 1 10 12 1 1 10 100 12 1 1 1 10 100 12 1 1 1 9 7 12 1 1 1 10 12 1 1 7 1 7 1 10 12 1 1 8 1 10 12 1 1 8 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 8 1 8 1 10 7 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 5 0 10 12 1 1 8 1 10 7 12 1 1 1 9 12 1 1 7 1 7 1 1 1 3 1 3 1 1 1 1 3 1 3 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  8643. staticfield java/lang/Byte TYPE Ljava/lang/Class; java/lang/Class
  8644. ciMethod java/lang/Byte valueOf (B)Ljava/lang/Byte; 224 0 113 0 -1
  8645. ciInstanceKlass java/lang/Short 1 1 222 7 1 7 1 100 1 10 7 12 1 1 1 10 12 1 1 7 1 7 1 10 12 1 1 8 1 10 12 1 1 8 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 9 12 1 1 8 1 9 12 1 1 7 1 10 12 1 1 10 12 1 10 100 12 1 1 1 10 100 12 1 1 1 9 7 12 1 1 1 10 12 1 10 12 1 1 10 8 1 8 1 10 7 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 3 3 5 0 10 12 1 1 8 1 10 7 12 1 1 1 9 12 1 1 7 1 7 1 1 1 3 1 3 1 1 1 1 3 1 3 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  8646. staticfield java/lang/Short TYPE Ljava/lang/Class; java/lang/Class
  8647. ciInstanceKlass java/lang/Integer$IntegerCache 1 1 95 10 7 12 1 1 1 7 1 10 7 12 1 1 1 9 7 12 1 1 1 8 1 10 7 12 1 1 1 10 12 1 1 10 100 12 1 1 1 3 10 12 1 100 1 9 12 1 1 10 7 12 1 1 1 9 12 1 1 10 12 1 9 12 1 100 1 10 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 100 1 1 1 1 1
  8648. staticfield java/lang/Integer$IntegerCache high I 127
  8649. staticfield java/lang/Integer$IntegerCache cache [Ljava/lang/Integer; 256 [Ljava/lang/Integer;
  8650. staticfield java/lang/Integer$IntegerCache $assertionsDisabled Z 1
  8651. ciInstanceKlass java/lang/Long 1 1 524 7 1 7 1 7 1 7 1 10 12 1 1 9 12 1 1 9 7 12 1 1 1 10 100 12 1 1 1 10 12 1 1 10 100 12 1 1 1 10 10 12 10 12 1 10 12 1 10 12 1 5 0 5 0 7 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 100 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 10 12 1 5 0 5 0 9 12 1 1 9 12 1 5 0 7 1 8 1 10 12 1 8 1 10 12 1 8 1 8 1 10 12 1 1 5 0 10 12 1 1 5 0 10 12 1 1 10 12 1 1 10 100 12 1 1 1 11 7 1 10 12 1 1 11 10 12 1 1 8 1 10 12 1 1 8 1 7 1 10 12 1 1 10 12 1 8 1 8 1 11 12 1 1 10 12 1 10 12 1 10 12 1 5 0 5 0 9 7 12 1 1 1 10 12 1 10 12 1 1 8 1 8 1 10 12 1 1 8 1 8 1 8 1 8 1 8 1 8 1 10 12 1 10 7 1 9 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 100 1 100 1 10 12 1 1 10 12 1 1 5 0 10 12 1 10 12 1 5 0 5 0 5 0 10 12 1 1 10 12 1 5 0 5 0 10 12 1 10 12 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 8 1 10 7 12 1 1 1 9 12 1 1 7 1 7 1 7 1 1 1 1 5 0 1 1 1 1 3 1 3 1 5 0 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 100 1 100 1 1
  8652. staticfield java/lang/Long TYPE Ljava/lang/Class; java/lang/Class
  8653. ciInstanceKlass jdk/internal/vm/vector/VectorSupport 0 0 573 100 1 10 100 12 1 1 1 9 12 1 1 10 12 1 1 100 1 10 12 1 11 100 12 1 1 1 11 100 12 1 1 1 11 100 12 1 1 11 100 12 1 1 11 100 12 1 1 1 11 100 12 1 1 11 100 12 1 1 11 100 12 1 1 11 100 12 1 1 11 100 12 1 1 11 100 12 1 1 11 100 12 1 1 1 11 100 12 1 1 11 100 12 1 1 1 11 100 12 1 1 1 11 100 12 1 1 11 100 12 1 1 1 11 100 12 1 1 100 1 10 12 1 1 11 100 12 1 1 11 100 12 1 1 11 100 12 1 1 11 100 12 1 1 11 100 12 1 1 11 100 12 1 1 9 12 1 1 10 100 12 1 1 11 100 12 1 1 10 12 1 1 10 100 12 1 1 1 10 12 1 10 12 1 1 10 12 1 1 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 100 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  8654. instanceKlass jdk/internal/vm/vector/VectorSupport$VectorShuffle
  8655. instanceKlass jdk/internal/vm/vector/VectorSupport$VectorMask
  8656. instanceKlass jdk/internal/vm/vector/VectorSupport$Vector
  8657. ciInstanceKlass jdk/internal/vm/vector/VectorSupport$VectorPayload 0 0 32 10 100 12 1 1 1 9 100 12 1 1 1 10 100 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  8658. ciInstanceKlass jdk/internal/vm/vector/VectorSupport$Vector 0 0 28 10 100 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1
  8659. ciInstanceKlass jdk/internal/vm/vector/VectorSupport$VectorMask 0 0 28 10 100 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1
  8660. ciInstanceKlass jdk/internal/vm/vector/VectorSupport$VectorShuffle 0 0 28 10 100 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1
  8661. ciInstanceKlass jdk/internal/vm/FillerObject 0 0 16 10 100 12 1 1 1 100 1 1 1 1 1 1 1 1
  8662. instanceKlass java/lang/ref/PhantomReference
  8663. instanceKlass java/lang/ref/FinalReference
  8664. instanceKlass java/lang/ref/WeakReference
  8665. instanceKlass java/lang/ref/SoftReference
  8666. ciInstanceKlass java/lang/ref/Reference 1 1 190 9 7 12 1 1 1 9 7 12 1 1 10 12 1 1 10 12 1 1 9 12 1 1 10 12 1 1 9 12 1 1 9 12 1 1 7 1 10 12 1 10 7 12 1 1 10 12 1 10 12 1 1 10 12 1 7 1 8 1 10 12 1 1 7 1 10 12 1 1 10 12 1 1 10 12 1 9 12 1 10 12 1 1 10 12 1 10 12 1 9 12 1 7 1 100 1 10 12 9 12 1 9 12 1 100 1 10 10 12 1 10 10 7 12 1 1 7 1 10 10 7 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 7 1 7 1 1 1
  8667. staticfield java/lang/ref/Reference processPendingLock Ljava/lang/Object; java/lang/Object
  8668. staticfield java/lang/ref/Reference $assertionsDisabled Z 1
  8669. instanceKlass org/eclipse/core/internal/utils/Cache$EntryRef
  8670. instanceKlass java/io/ClassCache$CacheRef
  8671. instanceKlass org/eclipse/sisu/inject/MildElements$Soft
  8672. instanceKlass org/eclipse/sisu/inject/MildKeys$Soft
  8673. instanceKlass org/eclipse/core/internal/registry/ReferenceMap$SoftRef
  8674. instanceKlass sun/util/locale/provider/LocaleResources$ResourceReference
  8675. instanceKlass sun/util/resources/Bundles$BundleReference
  8676. instanceKlass java/util/ResourceBundle$BundleReference
  8677. instanceKlass sun/util/locale/LocaleObjectCache$CacheEntry
  8678. instanceKlass sun/security/util/MemoryCache$SoftCacheEntry
  8679. instanceKlass java/lang/invoke/LambdaFormEditor$Transform
  8680. ciInstanceKlass java/lang/ref/SoftReference 1 1 47 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1
  8681. instanceKlass org/eclipse/jdt/internal/core/util/WeakHashSetOfCharArray$HashableWeakReference
  8682. instanceKlass org/eclipse/jdt/internal/core/util/WeakHashSet$HashableWeakReference
  8683. instanceKlass org/eclipse/sisu/inject/MildElements$Weak
  8684. instanceKlass com/google/common/collect/MapMakerInternalMap$AbstractWeakKeyEntry
  8685. instanceKlass com/google/common/cache/LocalCache$WeakEntry
  8686. instanceKlass javax/crypto/JceSecurity$WeakIdentityWrapper
  8687. instanceKlass com/sun/jna/CallbackReference
  8688. instanceKlass org/eclipse/sisu/inject/MildKeys$Weak
  8689. instanceKlass java/util/ResourceBundle$KeyElementReference
  8690. instanceKlass java/util/logging/LogManager$LoggerWeakRef
  8691. instanceKlass java/util/logging/Level$KnownLevel
  8692. instanceKlass org/eclipse/osgi/internal/container/KeyBasedLockStore$LockWeakRef
  8693. instanceKlass sun/nio/ch/FileLockTable$FileLockReference
  8694. instanceKlass java/lang/ClassValue$Entry
  8695. instanceKlass java/lang/ThreadLocal$ThreadLocalMap$Entry
  8696. instanceKlass java/lang/WeakPairMap$WeakRefPeer
  8697. instanceKlass jdk/internal/util/WeakReferenceKey
  8698. instanceKlass java/util/WeakHashMap$Entry
  8699. ciInstanceKlass java/lang/ref/WeakReference 1 1 31 10 7 12 1 1 1 10 12 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  8700. instanceKlass java/lang/ref/Finalizer
  8701. ciInstanceKlass java/lang/ref/FinalReference 1 1 50 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 7 1 8 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1
  8702. instanceKlass com/sun/jna/internal/Cleaner$CleanerRef
  8703. instanceKlass jdk/internal/ref/PhantomCleanable
  8704. instanceKlass jdk/internal/ref/Cleaner
  8705. ciInstanceKlass java/lang/ref/PhantomReference 1 1 39 10 100 12 1 1 1 10 7 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  8706. ciInstanceKlass java/lang/ref/Finalizer 1 1 155 9 7 12 1 1 1 10 7 12 1 1 1 9 12 1 1 9 12 1 1 9 12 1 9 12 1 9 12 1 1 10 12 1 7 1 8 1 10 12 1 10 12 1 1 9 12 1 100 1 10 12 1 7 1 11 100 12 1 1 10 12 1 7 1 10 12 1 100 1 10 12 1 10 7 12 1 1 1 10 100 12 1 1 1 100 1 10 10 12 1 7 1 10 12 1 7 1 10 12 1 1 10 12 1 1 10 12 1 10 7 12 1 1 1 7 1 10 7 1 10 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  8707. staticfield java/lang/ref/Finalizer lock Ljava/lang/Object; java/lang/Object
  8708. staticfield java/lang/ref/Finalizer ENABLED Z 1
  8709. staticfield java/lang/ref/Finalizer $assertionsDisabled Z 1
  8710. instanceKlass org/eclipse/jdt/internal/compiler/ast/Pattern$PrimitiveConversionRoute
  8711. instanceKlass org/eclipse/jdt/internal/compiler/ast/FakedTrackingVariable$IteratorForReporting$Stage
  8712. instanceKlass org/eclipse/jdt/internal/compiler/codegen/OperandStack$OperandCategory
  8713. instanceKlass org/eclipse/jdt/internal/compiler/ast/ConstructorDeclaration$AnalysisMode
  8714. instanceKlass javax/lang/model/element/ElementKind
  8715. instanceKlass org/eclipse/jdt/internal/compiler/parser/Parser$CaseLabelKind
  8716. instanceKlass javax/lang/model/SourceVersion
  8717. instanceKlass org/eclipse/jdt/internal/core/CompilationGroup
  8718. instanceKlass org/eclipse/lsp4j/DiagnosticSeverity
  8719. instanceKlass org/eclipse/jdt/internal/compiler/ast/NullAnnotationMatching$Severity
  8720. instanceKlass org/eclipse/jdt/internal/compiler/lookup/TypeConstants$DangerousMethod
  8721. instanceKlass org/eclipse/jdt/internal/compiler/ast/MessageSend$AssertUtil
  8722. instanceKlass lombok/core/configuration/LogDeclaration$LogFactoryParameter
  8723. instanceKlass org/eclipse/jdt/internal/compiler/ast/LambdaExpression$CompatibilityResult
  8724. instanceKlass org/eclipse/jdt/internal/compiler/lookup/TypeConstants$BoundCheckStatus
  8725. instanceKlass lombok/eclipse/handlers/HandleConstructor$SkipIfConstructorExists
  8726. instanceKlass lombok/EqualsAndHashCode$CacheStrategy
  8727. instanceKlass lombok/core/handlers/HandlerUtil$JavadocTag
  8728. instanceKlass lombok/eclipse/handlers/EclipseHandlerUtil$CopyJavadoc
  8729. instanceKlass lombok/core/handlers/HandlerUtil$FieldAccess
  8730. instanceKlass lombok/eclipse/handlers/EclipseHandlerUtil$MemberExistsResult
  8731. instanceKlass lombok/AccessLevel
  8732. instanceKlass org/eclipse/jdt/internal/compiler/ast/Annotation$AnnotationTargetAllowed
  8733. instanceKlass lombok/eclipse/agent/PatchDelegate$DelegateReceiver
  8734. instanceKlass org/eclipse/jdt/internal/compiler/lookup/BinaryTypeBinding$ExternalAnnotationStatus
  8735. instanceKlass org/eclipse/jdt/internal/compiler/env/IModuleAwareNameEnvironment$LookupStrategy
  8736. instanceKlass org/eclipse/jdt/internal/compiler/lookup/Scope$MatchPhase
  8737. instanceKlass org/eclipse/jdt/internal/compiler/env/IUpdatableModule$UpdateKind
  8738. instanceKlass org/eclipse/jdt/internal/compiler/lookup/LookupEnvironment$CompleteTypeBindingsSteps
  8739. instanceKlass sun/security/ssl/Alert$Level
  8740. instanceKlass sun/security/ssl/Alert
  8741. instanceKlass lombok/core/AST$Kind
  8742. instanceKlass org/eclipse/jdt/internal/compiler/ast/TypeReference$AnnotationPosition
  8743. instanceKlass org/eclipse/jdt/apt/core/internal/util/FactoryContainer$FactoryType
  8744. instanceKlass lombok/eclipse/TransformationState
  8745. instanceKlass org/eclipse/jdt/internal/compiler/parser/Parser$LocalTypeKind
  8746. instanceKlass org/eclipse/jdt/apt/core/internal/generatedfile/GeneratedFileMap$Flags
  8747. instanceKlass org/eclipse/jdt/internal/compiler/ast/ExpressionContext
  8748. instanceKlass lombok/core/configuration/CapitalizationStrategy
  8749. instanceKlass lombok/core/configuration/NullCheckExceptionType
  8750. instanceKlass lombok/core/configuration/CallSuperType
  8751. instanceKlass lombok/core/configuration/FlagUsageType
  8752. instanceKlass org/eclipse/jdt/internal/compiler/impl/JavaFeature
  8753. instanceKlass org/eclipse/jdt/internal/compiler/parser/Scanner$ScanContext
  8754. instanceKlass org/eclipse/jdt/internal/compiler/parser/TerminalToken
  8755. instanceKlass org/eclipse/osgi/container/Module$StopOptions
  8756. instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$ArchiveValidity
  8757. instanceKlass javax/annotation/meta/When
  8758. instanceKlass org/eclipse/m2e/core/internal/builder/MavenBuilderImpl$DeltaType
  8759. instanceKlass org/eclipse/m2e/apt/preferences/AnnotationProcessingMode
  8760. instanceKlass org/eclipse/m2e/jdt/JreSystemVersion
  8761. instanceKlass com/google/inject/internal/ErrorId
  8762. instanceKlass org/eclipse/sisu/space/GlobberStrategy
  8763. instanceKlass org/eclipse/aether/util/graph/transformer/ConflictResolver$Verbosity
  8764. instanceKlass org/fusesource/jansi/Ansi$Attribute
  8765. instanceKlass org/fusesource/jansi/Ansi$Color
  8766. instanceKlass org/apache/maven/shared/utils/logging/Style
  8767. instanceKlass org/apache/maven/plugin/MojoExecution$Source
  8768. instanceKlass com/google/common/cache/LocalCache$NullEntry
  8769. instanceKlass org/eclipse/buildship/core/internal/launch/SupportedLaunchConfigType
  8770. instanceKlass org/eclipse/aether/RepositoryEvent$EventType
  8771. instanceKlass org/eclipse/aether/named/support/ReadWriteLockNamedLock$Step
  8772. instanceKlass org/apache/maven/project/ProjectBuildingRequest$RepositoryMerging
  8773. instanceKlass org/eclipse/lsp4j/jsonrpc/messages/ResponseErrorCode
  8774. instanceKlass java/nio/file/FileVisitResult
  8775. instanceKlass java/nio/file/FileTreeWalker$EventType
  8776. instanceKlass java/nio/file/FileVisitOption
  8777. instanceKlass org/eclipse/jdt/ls/core/internal/semantictokens/TokenModifier
  8778. instanceKlass org/eclipse/jdt/ls/core/internal/semantictokens/TokenType
  8779. instanceKlass org/eclipse/lsp4j/TextDocumentSyncKind
  8780. instanceKlass com/google/common/io/FileWriteMode
  8781. instanceKlass org/eclipse/lsp4j/WorkDoneProgressKind
  8782. instanceKlass com/google/common/base/CaseFormat
  8783. instanceKlass org/eclipse/lsp4j/MessageType
  8784. instanceKlass org/eclipse/lsp4j/DiagnosticTag
  8785. instanceKlass org/eclipse/lsp4j/PrepareSupportDefaultBehavior
  8786. instanceKlass org/eclipse/lsp4j/CompletionItemKind
  8787. instanceKlass org/eclipse/lsp4j/CompletionItemTag
  8788. instanceKlass org/eclipse/lsp4j/InsertTextMode
  8789. instanceKlass org/eclipse/lsp4j/SymbolTag
  8790. instanceKlass org/eclipse/lsp4j/SymbolKind
  8791. instanceKlass com/google/gson/ReflectionAccessFilter$FilterResult
  8792. instanceKlass com/google/gson/stream/JsonToken
  8793. instanceKlass java/util/stream/MatchOps$MatchKind
  8794. instanceKlass javax/net/ssl/SSLEngineResult$HandshakeStatus
  8795. instanceKlass org/eclipse/sisu/inject/QualifyingStrategy
  8796. instanceKlass sun/security/ssl/Finished$VerifyDataScheme
  8797. instanceKlass sun/security/ssl/SSLTrafficKeyDerivation
  8798. instanceKlass sun/security/ssl/SSLMasterKeyDerivation
  8799. instanceKlass sun/security/util/DomainName$Rule$Type
  8800. instanceKlass sun/security/util/RegisteredDomain$Type
  8801. instanceKlass com/google/inject/internal/InjectorImpl$JitLimitation
  8802. instanceKlass java/time/Month
  8803. instanceKlass sun/security/validator/CADistrustPolicy
  8804. instanceKlass org/eclipse/sisu/bean/DeclaredMembers$View
  8805. instanceKlass sun/security/ssl/X509Authentication
  8806. instanceKlass com/google/inject/internal/Initializer$InjectableReferenceState
  8807. instanceKlass com/google/common/collect/MapMakerInternalMap$Strength
  8808. instanceKlass org/apache/maven/settings/building/SettingsProblem$Severity
  8809. instanceKlass org/eclipse/aether/metadata/Metadata$Nature
  8810. instanceKlass org/apache/maven/model/building/ModelProblem$Version
  8811. instanceKlass org/apache/maven/building/Problem$Severity
  8812. instanceKlass org/apache/maven/plugin/internal/DefaultPluginValidationManager$ValidationReportLevel
  8813. instanceKlass org/apache/maven/plugin/PluginValidationManager$IssueLocality
  8814. instanceKlass org/apache/maven/classrealm/ClassRealmRequest$RealmType
  8815. instanceKlass sun/security/ssl/ContentType
  8816. instanceKlass org/apache/maven/execution/ExecutionEvent$Type
  8817. instanceKlass org/apache/maven/artifact/ArtifactScopeEnum
  8818. instanceKlass sun/security/ssl/SSLKeyExchange$T12KeyAgreement
  8819. instanceKlass sun/security/ssl/PskKeyExchangeModesExtension$PskKeyExchangeMode
  8820. instanceKlass sun/security/ssl/ECPointFormatsExtension$ECPointFormat
  8821. instanceKlass sun/security/ssl/CertStatusExtension$CertStatusRequestType
  8822. instanceKlass sun/security/ssl/SSLExtension
  8823. instanceKlass com/google/gson/Strictness
  8824. instanceKlass java/net/StandardProtocolFamily
  8825. instanceKlass jdk/internal/util/OperatingSystem
  8826. instanceKlass sun/security/ssl/SignatureScheme$SigAlgParamSpec
  8827. instanceKlass com/google/inject/spi/InjectionPoint$Position
  8828. instanceKlass sun/security/ssl/SignatureScheme
  8829. instanceKlass com/google/common/util/concurrent/AbstractFutureState$VarHandleAtomicHelperMaker
  8830. instanceKlass java/lang/annotation/ElementType
  8831. instanceKlass com/google/gson/ToNumberPolicy
  8832. instanceKlass sun/security/ssl/ClientAuthType
  8833. instanceKlass com/google/gson/FieldNamingPolicy
  8834. instanceKlass com/google/gson/LongSerializationPolicy
  8835. instanceKlass com/google/inject/internal/InternalFlags$ColorizeOption
  8836. instanceKlass com/google/inject/internal/InternalFlags$BytecodeGenOption
  8837. instanceKlass com/google/inject/internal/InternalFlags$NullableProvidesOption
  8838. instanceKlass com/google/inject/internal/InternalFlags$CustomClassLoadingOption
  8839. instanceKlass com/google/inject/internal/InternalFlags$IncludeStackTraceOption
  8840. instanceKlass sun/security/ssl/SSLHandshake
  8841. instanceKlass com/google/inject/Key$NullAnnotationStrategy
  8842. instanceKlass org/eclipse/jdt/ls/core/internal/BuildWorkspaceStatus
  8843. instanceKlass java/net/Proxy$Type
  8844. instanceKlass sun/net/www/protocol/http/HttpURLConnection$TunnelState
  8845. instanceKlass sun/reflect/annotation/TypeAnnotation$TypeAnnotationTarget
  8846. instanceKlass org/eclipse/jdt/ls/core/internal/ServiceStatus
  8847. instanceKlass sun/security/ssl/NamedGroup
  8848. instanceKlass sun/security/ssl/NamedGroup$NamedGroupSpec
  8849. instanceKlass sun/security/ssl/CipherSuite$KeyExchange
  8850. instanceKlass sun/security/ssl/CipherSuite$MacAlg
  8851. instanceKlass sun/security/ssl/CipherSuite$HashAlg
  8852. instanceKlass com/google/inject/Stage
  8853. instanceKlass org/eclipse/sisu/space/BeanScanning
  8854. instanceKlass sun/security/ssl/CipherType
  8855. instanceKlass sun/security/ssl/SSLCipher
  8856. instanceKlass sun/security/ssl/CipherSuite
  8857. instanceKlass java/security/CryptoPrimitive
  8858. instanceKlass sun/security/ssl/ProtocolVersion
  8859. instanceKlass org/eclipse/buildship/core/internal/util/gradle/PublishedGradleVersions$LookupStrategy
  8860. instanceKlass org/eclipse/buildship/core/internal/CoreTraceScopes
  8861. instanceKlass org/eclipse/jdt/ls/core/internal/DiagnosticsState$ErrorLevel
  8862. instanceKlass javax/xml/catalog/CatalogFeatures$State
  8863. instanceKlass jdk/xml/internal/XMLSecurityManager$NameMap
  8864. instanceKlass jdk/xml/internal/XMLSecurityManager$Processor
  8865. instanceKlass jdk/xml/internal/XMLSecurityManager$Limit
  8866. instanceKlass com/sun/org/apache/xalan/internal/utils/XMLSecurityPropertyManager$Property
  8867. instanceKlass com/sun/org/apache/xalan/internal/utils/FeaturePropertyBase$State
  8868. instanceKlass jdk/xml/internal/JdkProperty$ImplPropMap
  8869. instanceKlass jdk/xml/internal/JdkXmlFeatures$XmlFeature
  8870. instanceKlass org/eclipse/jdt/ls/core/internal/preferences/CodeGenerationTemplate
  8871. instanceKlass org/eclipse/jdt/ls/core/internal/preferences/Preferences$SearchScope
  8872. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/ProjectEncodingMode
  8873. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/InlayHintsParameterMode
  8874. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/CompletionGuessMethodArgumentsMode
  8875. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/CompletionMatchCaseMode
  8876. instanceKlass org/eclipse/jdt/ls/core/internal/preferences/Preferences$FeatureStatus
  8877. instanceKlass org/eclipse/jdt/ls/core/internal/preferences/Preferences$Severity
  8878. instanceKlass java/security/DrbgParameters$Capability
  8879. instanceKlass lombok/eclipse/agent/PatchDelegate$DelegateReceiver
  8880. instanceKlass ch/qos/logback/core/spi/FilterReply
  8881. instanceKlass org/apache/maven/model/building/ModelProblem$Severity
  8882. instanceKlass com/google/common/cache/LocalCache$EntryFactory
  8883. instanceKlass com/google/common/cache/CacheBuilder$NullListener
  8884. instanceKlass com/google/common/cache/CacheBuilder$OneWeigher
  8885. instanceKlass com/google/common/cache/LocalCache$Strength
  8886. instanceKlass org/eclipse/m2e/core/internal/preferences/ProblemSeverity
  8887. instanceKlass org/eclipse/m2e/core/lifecyclemapping/model/PluginExecutionAction
  8888. instanceKlass org/slf4j/helpers/Reporter$Level
  8889. instanceKlass org/slf4j/helpers/Reporter$TargetChoice
  8890. instanceKlass ch/qos/logback/classic/spi/Configurator$ExecutionStatus
  8891. instanceKlass org/apache/felix/scr/impl/inject/field/FieldHandler$METHOD_TYPE
  8892. instanceKlass java/math/RoundingMode
  8893. instanceKlass java/time/format/TextStyle
  8894. instanceKlass java/time/format/DateTimeFormatterBuilder$SettingsParser
  8895. instanceKlass java/time/format/ResolverStyle
  8896. instanceKlass java/time/format/SignStyle
  8897. instanceKlass java/time/temporal/JulianFields$Field
  8898. instanceKlass java/time/temporal/IsoFields$Unit
  8899. instanceKlass java/time/temporal/IsoFields$Field
  8900. instanceKlass org/apache/felix/scr/impl/inject/ValueUtils$ValueType
  8901. instanceKlass org/apache/felix/scr/impl/manager/RegistrationManager$RegState
  8902. instanceKlass org/apache/felix/scr/impl/manager/AbstractComponentManager$State
  8903. instanceKlass org/osgi/util/promise/PromiseFactory$Option
  8904. instanceKlass org/apache/felix/scr/impl/metadata/ReferenceMetadata$ReferenceScope
  8905. instanceKlass org/apache/felix/scr/impl/metadata/ServiceMetadata$Scope
  8906. instanceKlass org/apache/felix/scr/impl/metadata/DSVersion
  8907. instanceKlass com/sun/org/apache/xerces/internal/impl/XMLScanner$NameType
  8908. instanceKlass com/sun/org/apache/xerces/internal/util/Status
  8909. instanceKlass javax/xml/catalog/CatalogFeatures$Feature
  8910. instanceKlass com/sun/org/apache/xerces/internal/utils/XMLSecurityPropertyManager$Property
  8911. instanceKlass com/sun/org/apache/xerces/internal/utils/XMLSecurityPropertyManager$State
  8912. instanceKlass com/sun/org/apache/xerces/internal/utils/XMLSecurityManager$NameMap
  8913. instanceKlass jdk/xml/internal/JdkProperty$State
  8914. instanceKlass com/sun/org/apache/xerces/internal/utils/XMLSecurityManager$Limit
  8915. instanceKlass org/apache/felix/scr/impl/logger/InternalLogger$Level
  8916. instanceKlass java/nio/file/StandardCopyOption
  8917. instanceKlass sun/util/locale/provider/LocaleProviderAdapter$Type
  8918. instanceKlass java/util/Locale$Category
  8919. instanceKlass java/lang/StackStreamFactory$WalkerState
  8920. instanceKlass java/lang/StackWalker$ExtendedOption
  8921. instanceKlass aQute/bnd/header/Attrs$Type
  8922. instanceKlass org/apache/aries/spifly/ProviderBundleTrackerCustomizer$DiscoveryMode
  8923. instanceKlass org/eclipse/osgi/container/ModuleContainerAdaptor$ContainerEvent
  8924. instanceKlass org/eclipse/osgi/report/resolution/ResolutionReport$Entry$Type
  8925. instanceKlass java/util/Comparators$NaturalOrderComparator
  8926. instanceKlass org/eclipse/osgi/container/Module$StartOptions
  8927. instanceKlass java/lang/StackWalker$Option
  8928. instanceKlass org/apache/felix/resolver/PermutationType
  8929. instanceKlass org/eclipse/osgi/container/ModuleDatabase$Sort
  8930. instanceKlass org/eclipse/osgi/container/Module$Settings
  8931. instanceKlass org/eclipse/osgi/container/ModuleContainerAdaptor$ModuleEvent
  8932. instanceKlass org/eclipse/osgi/storage/ContentProvider$Type
  8933. instanceKlass org/eclipse/osgi/container/Module$State
  8934. instanceKlass org/osgi/service/log/LogLevel
  8935. instanceKlass sun/util/logging/PlatformLogger$Level
  8936. instanceKlass jdk/internal/logger/BootstrapLogger$LoggingBackend
  8937. instanceKlass java/lang/reflect/ProxyGenerator$PrimitiveTypeInfo
  8938. instanceKlass java/lang/annotation/RetentionPolicy
  8939. instanceKlass java/nio/file/AccessMode
  8940. instanceKlass java/nio/file/attribute/PosixFilePermission
  8941. instanceKlass jdk/internal/icu/util/CodePointTrie$ValueWidth
  8942. instanceKlass jdk/internal/icu/util/CodePointTrie$Type
  8943. instanceKlass java/text/Normalizer$Form
  8944. instanceKlass java/time/temporal/ChronoUnit
  8945. instanceKlass java/time/temporal/ChronoField
  8946. instanceKlass sun/security/util/DisabledAlgorithmConstraints$Constraint$Operator
  8947. instanceKlass java/lang/System$Logger$Level
  8948. instanceKlass sun/security/rsa/RSAUtil$KeyType
  8949. instanceKlass sun/security/util/KnownOIDs
  8950. instanceKlass lombok/patcher/StackRequest
  8951. instanceKlass java/util/regex/Pattern$Qtype
  8952. instanceKlass java/lang/invoke/MethodHandleImpl$ArrayAccess
  8953. instanceKlass java/util/zip/ZipCoder$Comparison
  8954. instanceKlass java/nio/file/LinkOption
  8955. instanceKlass sun/nio/fs/WindowsPathType
  8956. instanceKlass java/nio/file/StandardOpenOption
  8957. instanceKlass java/util/stream/Collector$Characteristics
  8958. instanceKlass java/util/concurrent/TimeUnit
  8959. instanceKlass java/util/stream/StreamShape
  8960. instanceKlass java/lang/invoke/MethodHandles$Lookup$ClassOption
  8961. instanceKlass java/lang/invoke/VarHandle$AccessType
  8962. instanceKlass java/lang/invoke/VarHandle$AccessMode
  8963. instanceKlass java/lang/invoke/MethodHandleImpl$Intrinsic
  8964. instanceKlass java/lang/invoke/LambdaForm$BasicType
  8965. instanceKlass java/lang/invoke/LambdaForm$Kind
  8966. instanceKlass sun/invoke/util/Wrapper
  8967. instanceKlass java/util/stream/StreamOpFlag$Type
  8968. instanceKlass java/util/stream/StreamOpFlag
  8969. instanceKlass java/io/File$PathStatus
  8970. instanceKlass java/lang/module/ModuleDescriptor$Requires$Modifier
  8971. instanceKlass java/lang/reflect/AccessFlag$Location
  8972. instanceKlass java/lang/reflect/AccessFlag
  8973. instanceKlass java/lang/module/ModuleDescriptor$Modifier
  8974. instanceKlass java/lang/reflect/ClassFileFormatVersion
  8975. instanceKlass java/lang/Thread$State
  8976. ciInstanceKlass java/lang/Enum 1 1 204 9 7 12 1 1 1 9 12 1 1 10 7 12 1 1 1 9 12 1 10 7 12 1 1 1 100 1 10 10 12 1 1 10 12 1 7 1 10 10 7 12 1 1 10 12 1 1 18 12 1 1 10 100 12 1 1 1 10 12 1 1 11 7 12 1 1 1 100 1 8 1 10 12 1 100 1 7 1 10 8 1 10 12 1 1 10 12 1 1 8 1 10 12 1 10 100 1 8 1 10 10 12 1 1 10 100 12 1 1 1 7 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 100 1 7 1 1 100 1 1 1 1 1 1 1 1 1 1 1 16 15 10 12 16 15 10 100 12 1 1 1 1 1 100 1 100 1 1
  8977. ciInstanceKlass java/lang/reflect/Method 1 1 472 9 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 9 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 10 7 12 1 1 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 9 12 1 1 100 1 8 1 10 12 1 10 12 1 9 12 1 1 8 1 10 7 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 9 7 12 1 1 1 10 12 1 1 10 12 10 7 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 1 10 7 1 10 7 12 1 1 1 10 7 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 7 12 1 1 1 10 12 1 10 8 1 10 12 1 10 12 1 7 1 8 1 8 1 8 1 10 12 1 10 12 1 1 10 12 1 1 10 10 12 1 1 10 12 1 11 7 1 10 12 1 9 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 11 7 12 1 1 1 11 12 1 9 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 9 12 1 1 10 7 12 1 1 1 10 7 12 1 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 11 7 12 1 1 1 10 7 12 1 1 1 7 1 100 1 100 1 10 12 1 10 12 1 1 10 12 1 100 1 8 1 10 12 1 10 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 8 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  8978. ciInstanceKlass java/lang/reflect/Field 1 1 457 9 7 12 1 1 1 10 12 1 1 10 100 12 1 1 1 10 100 12 1 1 9 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 10 7 12 1 1 1 9 12 1 1 9 12 1 9 12 1 9 12 1 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 1 100 1 8 1 10 12 1 10 12 1 9 12 1 1 9 12 1 10 12 1 10 7 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 9 100 12 1 1 1 10 100 12 1 1 1 7 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 7 1 10 7 12 1 1 7 1 10 8 1 10 12 1 1 10 12 1 1 8 1 10 12 10 12 1 8 1 8 1 10 11 7 1 9 12 1 10 12 1 1 10 12 1 1 11 7 12 1 1 1 10 12 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 10 12 1 10 7 12 1 1 10 12 1 10 12 1 10 12 1 9 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 7 12 1 1 10 12 1 1 11 7 1 10 12 1 7 1 10 100 12 1 1 1 10 7 12 1 1 1 9 12 1 10 7 12 1 1 1 11 7 12 1 1 1 10 12 1 1 10 12 1 1 9 7 12 1 1 10 7 12 1 1 1 10 12 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 100 1 1
  8979. ciInstanceKlass java/lang/reflect/Parameter 1 1 243 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 9 12 1 1 9 12 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 7 1 10 10 12 1 1 11 7 12 1 1 1 10 12 1 10 100 12 1 1 1 10 12 1 1 10 12 1 10 12 1 8 1 8 1 10 7 12 1 1 1 10 12 1 10 12 9 100 12 1 1 1 10 100 12 1 1 1 10 12 1 8 1 10 12 1 9 12 1 1 10 12 1 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 10 12 1 10 100 12 1 1 1 10 12 1 1 11 7 12 1 1 10 7 12 1 1 7 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 9 12 1 100 1 10 11 12 1 1 11 12 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1
  8980. ciInstanceKlass java/lang/reflect/RecordComponent 1 1 196 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 9 12 1 10 12 1 1 10 12 1 1 10 100 12 1 1 1 10 12 1 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 100 12 1 1 10 100 12 1 1 9 12 1 1 10 100 12 1 1 1 11 100 12 1 1 1 10 9 100 12 1 1 1 10 100 12 1 1 1 9 12 1 1 10 100 12 1 1 1 10 12 1 1 11 7 12 1 1 10 7 12 1 1 7 1 9 12 1 9 12 1 1 9 12 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 7 1 10 10 12 1 10 12 1 1 8 1 10 12 1 10 12 1 9 12 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 100 1 1
  8981. ciInstanceKlass java/lang/StringBuffer 1 1 483 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 1 9 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 1 9 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 10 12 1 1 10 12 1 10 12 1 10 12 1 10 10 100 12 1 1 1 10 10 12 1 1 9 12 1 1 10 100 12 1 1 10 100 1 8 10 100 12 1 1 1 8 10 12 1 8 1 10 12 1 10 12 1 10 100 12 1 1 1 10 100 12 1 1 1 7 1 10 12 100 1 8 1 10 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 10 12 1 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 7 1 10 12 1 9 7 12 1 1 1 9 7 1 9 12 1 1 7 1 7 1 7 1 7 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  8982. staticfield java/lang/StringBuffer serialPersistentFields [Ljava/io/ObjectStreamField; 3 [Ljava/io/ObjectStreamField;
  8983. instanceKlass jdk/internal/loader/BuiltinClassLoader
  8984. instanceKlass java/net/URLClassLoader
  8985. ciInstanceKlass java/security/SecureClassLoader 1 1 102 10 7 12 1 1 1 7 1 10 12 1 9 7 12 1 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 7 1 10 7 1 10 12 1 7 1 10 12 1 11 7 12 1 1 1 7 1 11 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1
  8986. instanceKlass org/codehaus/plexus/classworlds/realm/ClassRealm
  8987. instanceKlass org/eclipse/equinox/launcher/Main$StartupClassLoader
  8988. ciInstanceKlass java/net/URLClassLoader 1 1 600 10 7 12 1 1 1 7 1 10 12 1 9 7 12 1 1 1 10 7 12 1 1 1 9 12 1 1 7 1 10 12 1 9 12 1 1 10 12 1 10 10 12 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 7 1 10 12 1 1 10 12 1 1 10 12 1 1 100 1 100 1 10 7 12 1 1 1 100 1 8 1 10 12 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 11 100 12 1 1 1 11 7 12 1 1 1 11 12 1 1 7 1 11 12 1 11 7 12 1 1 10 12 1 11 12 1 11 12 1 1 11 10 12 1 1 10 12 1 1 10 12 1 1 7 1 10 12 1 10 12 1 1 7 1 100 1 10 12 1 1 7 1 10 10 12 1 1 10 7 12 1 1 10 12 1 100 1 7 1 10 8 1 10 12 1 1 8 1 10 12 1 1 10 10 12 1 8 1 8 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 100 1 100 1 8 1 10 12 1 10 12 1 1 10 12 1 1 7 1 10 12 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 7 12 1 1 1 10 12 1 1 8 1 10 12 1 1 11 7 12 1 1 1 9 7 12 1 1 1 10 7 12 1 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 10 7 12 1 1 1 8 1 10 12 1 1 7 1 10 10 12 1 10 12 1 1 10 12 1 1 7 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 7 1 10 7 12 1 1 9 7 12 1 1 1 10 12 1 8 1 100 1 8 1 10 12 1 10 12 1 8 1 10 12 1 10 12 1 9 12 1 1 10 100 12 1 1 10 12 1 10 12 1 10 100 1 8 1 10 100 1 10 12 1 10 7 12 1 100 1 10 12 1 10 12 1 100 1 10 10 7 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 100 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1
  8989. ciInstanceKlass java/util/jar/Manifest 1 1 339 10 7 12 1 1 1 7 1 10 9 7 12 1 1 1 7 1 10 9 12 1 1 9 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 11 7 1 11 12 1 1 10 12 1 1 10 100 12 1 1 1 100 1 7 1 10 8 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 11 100 1 10 12 1 10 12 1 1 11 12 1 1 10 12 1 11 12 1 1 11 100 12 1 1 1 11 7 12 1 1 11 12 1 1 100 1 10 12 1 8 1 11 12 1 7 1 10 12 1 1 11 12 1 10 12 1 10 12 1 10 7 12 1 1 1 8 1 10 12 1 1 10 9 7 12 1 1 1 10 12 1 1 10 100 12 1 10 12 1 10 12 1 9 100 12 1 1 1 8 1 10 12 1 8 1 8 1 7 1 10 12 1 10 12 1 10 12 1 1 100 1 8 1 10 12 1 1 8 1 10 10 12 1 1 8 1 10 12 1 1 10 7 12 1 1 1 10 12 1 10 11 12 1 1 10 12 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 1 11 10 12 1 11 10 12 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1
  8990. ciInstanceKlass java/io/ByteArrayInputStream 1 1 117 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 9 12 1 9 12 1 10 100 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 100 12 1 1 1 10 12 1 1 3 10 100 1 10 100 12 1 1 1 9 12 1 1 100 1 10 10 7 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  8991. staticfield java/io/ByteArrayInputStream $assertionsDisabled Z 1
  8992. instanceKlass java/nio/DoubleBuffer
  8993. instanceKlass java/nio/FloatBuffer
  8994. instanceKlass java/nio/ShortBuffer
  8995. instanceKlass java/nio/IntBuffer
  8996. instanceKlass java/nio/LongBuffer
  8997. instanceKlass java/nio/CharBuffer
  8998. instanceKlass java/nio/ByteBuffer
  8999. ciInstanceKlass java/nio/Buffer 1 1 256 100 1 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 100 1 7 1 10 8 1 10 12 1 1 10 12 1 8 1 8 1 10 12 1 1 10 12 1 8 1 9 12 1 1 100 1 8 1 10 12 1 8 1 8 1 9 12 10 12 1 8 1 8 1 8 1 10 12 1 8 1 8 1 8 1 100 1 10 100 1 10 100 1 10 9 12 1 1 10 7 12 1 1 1 100 1 10 12 1 1 10 12 1 10 100 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 9 12 1 1 10 7 12 1 1 1 9 12 1 1 7 1 10 10 12 1 1 7 1 10 10 7 12 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 1
  9000. staticfield java/nio/Buffer UNSAFE Ljdk/internal/misc/Unsafe; jdk/internal/misc/Unsafe
  9001. staticfield java/nio/Buffer SCOPED_MEMORY_ACCESS Ljdk/internal/misc/ScopedMemoryAccess; jdk/internal/misc/ScopedMemoryAccess
  9002. staticfield java/nio/Buffer IOOBE_FORMATTER Ljava/util/function/BiFunction; jdk/internal/util/Preconditions$4
  9003. staticfield java/nio/Buffer $assertionsDisabled Z 1
  9004. instanceKlass org/eclipse/aether/util/graph/visitor/Stack
  9005. instanceKlass org/apache/maven/model/merge/ModelMerger$MergingList
  9006. instanceKlass java/util/AbstractList$SubList
  9007. instanceKlass com/google/common/collect/Lists$TransformingRandomAccessList
  9008. instanceKlass java/util/Collections$CopiesList
  9009. instanceKlass org/eclipse/osgi/internal/weaving/DynamicImportList
  9010. instanceKlass org/eclipse/osgi/internal/container/InternalUtils$CopyOnFirstWriteList
  9011. instanceKlass java/util/AbstractSequentialList
  9012. instanceKlass java/util/Collections$SingletonList
  9013. instanceKlass java/util/Vector
  9014. instanceKlass sun/security/jca/ProviderList$ServiceList
  9015. instanceKlass sun/security/jca/ProviderList$3
  9016. instanceKlass java/util/Arrays$ArrayList
  9017. instanceKlass java/util/ArrayList$SubList
  9018. instanceKlass java/util/Collections$EmptyList
  9019. instanceKlass java/util/ArrayList
  9020. ciInstanceKlass java/util/AbstractList 1 1 218 10 7 12 1 1 1 9 7 12 1 1 1 10 12 1 1 10 12 1 1 100 1 10 10 12 1 1 11 7 12 1 1 1 11 12 1 1 11 12 1 10 7 12 1 1 1 10 12 1 11 12 1 11 12 1 11 12 1 10 12 1 1 10 12 1 1 11 7 12 1 1 1 11 7 1 11 7 1 10 12 1 7 1 10 12 1 10 12 1 1 7 1 7 1 10 12 1 100 1 10 100 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 8 1 100 1 8 1 8 1 8 1 10 7 1 11 10 10 12 1 11 12 1 10 12 1 1 8 1 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 1 1 1 1 1
  9021. ciInstanceKlass java/lang/Iterable 1 1 62 10 7 12 1 1 1 11 7 12 1 1 1 11 7 12 1 1 1 11 12 1 1 11 7 12 1 1 1 10 100 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  9022. ciInstanceKlass java/util/Collection 1 1 115 11 7 12 1 1 1 7 1 11 7 12 1 1 1 10 7 12 1 1 1 11 12 1 1 11 7 12 1 1 1 11 12 1 1 11 7 12 1 1 1 11 12 1 1 10 100 12 1 1 1 11 12 1 10 7 12 1 1 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  9023. ciInstanceKlass java/util/SequencedCollection 1 1 109 100 1 10 12 1 1 11 7 12 1 1 1 11 7 12 1 1 1 11 12 1 1 11 12 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 8 1 1 12 10 1 1 1 8 1 1 1 8 1 1 1 8 1 1 1 8 1 1 8 1 1 1 8 1 1 8 1 1 1 8 1 1 8 1 1 1 8 1 1 8 1 1 8 1
  9024. ciInstanceKlass java/util/List 1 1 251 10 100 12 1 1 1 11 100 12 1 1 1 11 100 12 1 1 1 11 12 1 1 11 100 12 1 1 11 12 1 1 11 12 1 1 10 100 12 1 1 1 7 1 7 1 10 12 1 1 100 1 10 7 12 1 1 1 11 12 1 1 11 12 1 11 12 1 100 1 10 12 1 11 12 1 1 11 12 1 1 11 12 1 10 100 12 1 1 1 9 7 12 1 1 1 7 1 10 12 10 12 1 7 1 10 12 1 1 10 12 1 10 12 1 1 11 12 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 100 1 1 1
  9025. ciMethod java/util/List add (Ljava/lang/Object;)Z 0 0 1 0 -1
  9026. instanceKlass java/util/Hashtable$ValueCollection
  9027. instanceKlass java/util/AbstractMap$2
  9028. instanceKlass org/eclipse/sisu/inject/MildElements
  9029. instanceKlass org/eclipse/sisu/inject/MildValues$1
  9030. instanceKlass com/google/common/collect/AbstractMapBasedMultimap$WrappedCollection
  9031. instanceKlass com/google/common/collect/Maps$Values
  9032. instanceKlass com/google/common/collect/AbstractMultimap$Values
  9033. instanceKlass com/google/common/collect/ImmutableCollection
  9034. instanceKlass com/sun/jna/Structure$StructureSet
  9035. instanceKlass java/util/TreeMap$Values
  9036. instanceKlass java/util/IdentityHashMap$Values
  9037. instanceKlass org/apache/felix/resolver/util/ArrayMap$1
  9038. instanceKlass org/apache/felix/resolver/util/OpenHashMap$AbstractObjectCollection
  9039. instanceKlass org/eclipse/osgi/internal/container/NamespaceList$Builder
  9040. instanceKlass java/util/AbstractQueue
  9041. instanceKlass java/util/LinkedHashMap$LinkedValues
  9042. instanceKlass java/util/HashMap$Values
  9043. instanceKlass java/util/ArrayDeque
  9044. instanceKlass java/util/AbstractSet
  9045. instanceKlass java/util/ImmutableCollections$AbstractImmutableCollection
  9046. instanceKlass java/util/AbstractList
  9047. ciInstanceKlass java/util/AbstractCollection 1 1 160 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 11 7 12 1 1 1 11 12 1 1 10 12 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 10 7 12 1 1 1 7 1 10 7 12 1 1 1 10 100 12 1 1 1 100 1 10 11 12 1 11 7 1 10 12 1 10 12 1 10 100 12 1 1 1 11 8 1 7 1 10 10 12 1 1 8 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  9048. ciMethod java/util/AbstractCollection <init> ()V 584 0 1252644 0 80
  9049. ciInstanceKlass java/lang/AssertionStatusDirectives 0 0 24 10 100 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  9050. instanceKlass org/eclipse/jdt/internal/core/builder/AbortIncrementalBuildException
  9051. instanceKlass com/sun/org/apache/xerces/internal/xni/XNIException
  9052. instanceKlass org/eclipse/jdt/internal/compiler/flow/UnconditionalFlowInfo$AssertionFailedException
  9053. instanceKlass org/eclipse/jdt/internal/compiler/lookup/Scope$MethodClashException
  9054. instanceKlass com/microsoft/java/builder/jdtbuilder/MissingSourceFileException
  9055. instanceKlass com/microsoft/java/builder/jdtbuilder/ImageBuilderInternalException
  9056. instanceKlass org/eclipse/jdt/internal/compiler/ast/LambdaExpression$CopyFailureException
  9057. instanceKlass org/eclipse/jdt/internal/compiler/ast/LambdaExpression$1NotPertientToApplicability
  9058. instanceKlass lombok/core/AnnotationValues$AnnotationValueDecodeFail
  9059. instanceKlass org/eclipse/jdt/internal/compiler/problem/ShouldNotImplement
  9060. instanceKlass org/apache/maven/project/DuplicateArtifactAttachmentException
  9061. instanceKlass org/w3c/dom/DOMException
  9062. instanceKlass org/eclipse/m2e/core/internal/lifecyclemapping/DuplicateMappingException
  9063. instanceKlass org/eclipse/m2e/core/internal/lifecyclemapping/LifecycleMappingConfigurationException
  9064. instanceKlass org/eclipse/aether/named/support/LockUpgradeNotSupportedException
  9065. instanceKlass java/util/concurrent/CompletionException
  9066. instanceKlass com/microsoft/gradle/bs/importer/model/NamedPipeConnectionException
  9067. instanceKlass org/eclipse/jdt/internal/core/search/matching/MatchLocator$WrappedCoreException
  9068. instanceKlass com/google/inject/internal/aop/GlueException
  9069. instanceKlass java/io/UncheckedIOException
  9070. instanceKlass org/apache/maven/artifact/InvalidArtifactRTException
  9071. instanceKlass com/google/inject/OutOfScopeException
  9072. instanceKlass java/lang/annotation/IncompleteAnnotationException
  9073. instanceKlass org/eclipse/lsp4j/jsonrpc/JsonRpcException
  9074. instanceKlass org/eclipse/lsp4j/jsonrpc/MessageIssueException
  9075. instanceKlass com/google/gson/JsonParseException
  9076. instanceKlass com/google/inject/CreationException
  9077. instanceKlass com/google/inject/ConfigurationException
  9078. instanceKlass com/google/inject/ProvisionException
  9079. instanceKlass org/eclipse/lsp4j/jsonrpc/ResponseErrorException
  9080. instanceKlass java/security/ProviderException
  9081. instanceKlass org/gradle/api/UncheckedIOException
  9082. instanceKlass org/eclipse/buildship/core/internal/GradlePluginsRuntimeException
  9083. instanceKlass java/lang/reflect/UndeclaredThrowableException
  9084. instanceKlass com/sun/jna/LastErrorException
  9085. instanceKlass org/eclipse/text/edits/MalformedTreeException
  9086. instanceKlass org/eclipse/jdt/internal/codeassist/select/SelectionNodeFound
  9087. instanceKlass org/eclipse/jdt/internal/core/DeltaProcessor$1FoundRelevantDeltaException
  9088. instanceKlass org/eclipse/jdt/internal/codeassist/complete/InvalidCursorLocation
  9089. instanceKlass org/eclipse/jdt/internal/codeassist/complete/CompletionNodeFound
  9090. instanceKlass org/eclipse/jdt/internal/compiler/problem/AbortCompilation
  9091. instanceKlass org/eclipse/jdt/internal/compiler/lookup/SourceTypeCollisionException
  9092. instanceKlass org/eclipse/jdt/internal/core/builder/MissingSourceFileException
  9093. instanceKlass org/eclipse/jdt/internal/core/builder/ImageBuilderInternalException
  9094. instanceKlass java/lang/NegativeArraySizeException
  9095. instanceKlass org/eclipse/jdt/internal/core/ClasspathEntry$AssertionFailedException
  9096. instanceKlass com/google/common/cache/CacheLoader$InvalidCacheLoadException
  9097. instanceKlass com/google/common/util/concurrent/UncheckedExecutionException
  9098. instanceKlass java/time/DateTimeException
  9099. instanceKlass ch/qos/logback/core/LogbackException
  9100. instanceKlass org/objectweb/asm/tree/UnsupportedClassVersionException
  9101. instanceKlass org/eclipse/core/internal/events/BuildManager$JobManagerSuspendedException
  9102. instanceKlass org/eclipse/core/internal/localstore/IsSynchronizedVisitor$ResourceChangedException
  9103. instanceKlass org/eclipse/core/internal/dtree/ObjectNotFoundException
  9104. instanceKlass org/eclipse/core/internal/utils/WrappedRuntimeException
  9105. instanceKlass org/eclipse/core/runtime/OperationCanceledException
  9106. instanceKlass org/eclipse/equinox/internal/provisional/frameworkadmin/FrameworkAdminRuntimeException
  9107. instanceKlass org/osgi/util/promise/FailedPromisesException
  9108. instanceKlass java/lang/IllegalCallerException
  9109. instanceKlass org/eclipse/core/runtime/InvalidRegistryObjectException
  9110. instanceKlass org/eclipse/core/runtime/AssertionFailedException
  9111. instanceKlass org/osgi/service/component/ComponentException
  9112. instanceKlass org/osgi/framework/hooks/weaving/WeavingException
  9113. instanceKlass java/util/MissingResourceException
  9114. instanceKlass java/lang/reflect/InaccessibleObjectException
  9115. instanceKlass java/util/ConcurrentModificationException
  9116. instanceKlass org/osgi/framework/ServiceException
  9117. instanceKlass java/util/concurrent/RejectedExecutionException
  9118. instanceKlass java/lang/TypeNotPresentException
  9119. instanceKlass org/eclipse/osgi/framework/util/ThreadInfoReport
  9120. instanceKlass java/lang/IndexOutOfBoundsException
  9121. instanceKlass org/eclipse/osgi/storage/Storage$StorageException
  9122. instanceKlass java/util/NoSuchElementException
  9123. instanceKlass java/lang/SecurityException
  9124. instanceKlass java/lang/invoke/WrongMethodTypeException
  9125. instanceKlass java/lang/UnsupportedOperationException
  9126. instanceKlass java/lang/IllegalStateException
  9127. instanceKlass java/lang/IllegalArgumentException
  9128. instanceKlass java/lang/ArithmeticException
  9129. instanceKlass java/lang/NullPointerException
  9130. instanceKlass java/lang/IllegalMonitorStateException
  9131. instanceKlass java/lang/ArrayStoreException
  9132. instanceKlass java/lang/ClassCastException
  9133. ciInstanceKlass java/lang/RuntimeException 1 1 40 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  9134. instanceKlass org/eclipse/jdt/internal/compiler/ast/SwitchStatement$SwitchTranslator$StringSwitchTranslator$StringCaseConstant
  9135. instanceKlass org/eclipse/jdt/internal/compiler/ast/SwitchStatement$SingletonBootstrap
  9136. instanceKlass org/eclipse/jdt/internal/compiler/CompilerConfiguration
  9137. instanceKlass org/eclipse/jdt/internal/compiler/util/Tuples$Pair
  9138. instanceKlass org/eclipse/jdt/internal/compiler/ast/Pattern$TestContextRecord
  9139. instanceKlass org/eclipse/jdt/internal/core/JavadocContents$Range
  9140. instanceKlass org/eclipse/jdt/internal/compiler/util/CharArray
  9141. instanceKlass org/eclipse/jdt/internal/core/builder/ClasspathJar$PackageCacheEntry
  9142. instanceKlass org/eclipse/jdt/internal/core/JarPackageFragmentRootInfo$PackageContent
  9143. instanceKlass org/eclipse/m2e/jdt/internal/UnitTestSupport$ExecutionId
  9144. instanceKlass org/eclipse/jdt/internal/compiler/parser/JavadocTagConstants$LevelTags
  9145. instanceKlass org/eclipse/core/internal/utils/Cache$Entry
  9146. instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$SecondaryTypesCache
  9147. instanceKlass org/eclipse/m2e/core/embedder/ArtifactRef
  9148. instanceKlass org/eclipse/m2e/core/internal/lifecyclemapping/AnnotationMappingMetadataSource$State
  9149. instanceKlass org/eclipse/m2e/core/internal/project/registry/MavenProjectCache$CacheKey
  9150. instanceKlass org/eclipse/m2e/core/internal/project/registry/VersionlessKey
  9151. instanceKlass org/eclipse/m2e/core/project/configurator/MojoExecutionKey
  9152. instanceKlass jdk/net/UnixDomainPrincipal
  9153. instanceKlass java/lang/reflect/Executable$ParameterData
  9154. instanceKlass org/eclipse/m2e/core/embedder/ArtifactRepositoryRef
  9155. instanceKlass org/eclipse/m2e/core/project/configurator/ProjectConfigurationRequest
  9156. instanceKlass org/eclipse/m2e/core/embedder/ArtifactKey
  9157. instanceKlass org/eclipse/m2e/core/embedder/MavenConfigurationChangeEvent
  9158. instanceKlass org/eclipse/m2e/core/embedder/MavenSettingsLocations
  9159. instanceKlass java/lang/reflect/Proxy$ProxyBuilder$ProxyClassContext
  9160. instanceKlass java/nio/DirectByteBuffer$Deallocator
  9161. instanceKlass org/eclipse/equinox/launcher/Main$Identifier
  9162. instanceKlass sun/security/pkcs/SignerInfo$AlgorithmInfo
  9163. instanceKlass jdk/internal/misc/ThreadTracker$ThreadRef
  9164. instanceKlass java/security/SecureClassLoader$CodeSourceKey
  9165. instanceKlass jdk/internal/module/ModuleReferenceImpl$CachedHash
  9166. instanceKlass java/util/stream/Collectors$CollectorImpl
  9167. instanceKlass jdk/internal/reflect/ReflectionFactory$Config
  9168. instanceKlass jdk/internal/foreign/abi/UpcallLinker$CallRegs
  9169. instanceKlass jdk/internal/foreign/abi/VMStorage
  9170. ciInstanceKlass java/lang/Record 1 1 22 10 7 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  9171. ciInstanceKlass java/lang/invoke/MethodType 1 1 780 7 1 10 7 12 1 1 1 9 12 1 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 9 7 12 1 1 8 1 10 100 12 1 1 1 9 7 1 9 7 1 10 12 1 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 1 7 1 8 1 10 12 1 100 1 10 10 12 1 10 12 1 1 10 12 1 1 11 7 12 1 1 1 9 12 1 11 12 1 1 7 10 12 1 1 10 12 1 1 7 1 7 1 10 7 12 1 1 1 10 12 1 10 12 1 9 12 1 1 10 7 12 1 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 8 1 8 1 10 12 1 1 9 12 1 1 100 1 10 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 8 1 10 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 9 12 1 10 12 1 10 10 12 1 1 10 12 1 9 12 1 1 10 12 1 1 11 12 1 1 10 12 1 1 10 12 1 10 12 1 7 1 8 1 8 1 8 1 10 12 1 10 12 1 10 12 1 1 10 10 12 1 11 12 1 1 11 12 1 10 100 12 1 1 1 9 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 100 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 9 12 1 1 7 1 10 12 1 10 12 1 1 9 100 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 8 1 10 7 12 1 1 1 11 12 1 1 9 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 100 12 1 1 100 1 10 12 1 1 11 100 12 1 1 18 12 1 1 11 12 1 1 18 12 1 11 12 1 100 1 11 100 12 1 1 10 12 1 100 1 10 12 1 10 100 12 1 1 10 12 1 1 9 12 1 1 9 100 12 1 1 1 10 7 12 1 1 1 9 12 1 10 100 12 1 1 10 12 1 100 10 12 1 1 10 12 1 7 1 10 10 12 1 1 7 1 7 1 9 12 1 1 7 1 7 1 7 1 1 1 5 0 1 1 1 1 1 1 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 10 12 16 16 15 10 12 16 15 10 100 12 1 1 1 1 1 7 1 1 7 1 1 100 1 100 1 1
  9172. staticfield java/lang/invoke/MethodType internTable Ljdk/internal/util/ReferencedKeySet; jdk/internal/util/ReferencedKeySet
  9173. staticfield java/lang/invoke/MethodType NO_PTYPES [Ljava/lang/Class; 0 [Ljava/lang/Class;
  9174. staticfield java/lang/invoke/MethodType objectOnlyTypes [Ljava/lang/invoke/MethodType; 20 [Ljava/lang/invoke/MethodType;
  9175. staticfield java/lang/invoke/MethodType METHOD_HANDLE_ARRAY [Ljava/lang/Class; 1 [Ljava/lang/Class;
  9176. staticfield java/lang/invoke/MethodType serialPersistentFields [Ljava/io/ObjectStreamField; 0 [Ljava/io/ObjectStreamField;
  9177. staticfield java/lang/invoke/MethodType $assertionsDisabled Z 1
  9178. ciInstanceKlass java/lang/invoke/TypeDescriptor$OfMethod 1 0 43 100 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1
  9179. instanceKlass java/lang/InstantiationException
  9180. instanceKlass java/lang/IllegalAccessException
  9181. instanceKlass java/lang/reflect/InvocationTargetException
  9182. instanceKlass java/lang/NoSuchFieldException
  9183. instanceKlass java/lang/NoSuchMethodException
  9184. instanceKlass java/lang/ClassNotFoundException
  9185. ciInstanceKlass java/lang/ReflectiveOperationException 1 1 34 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1
  9186. instanceKlass java/lang/invoke/DelegatingMethodHandle
  9187. instanceKlass java/lang/invoke/BoundMethodHandle
  9188. instanceKlass java/lang/invoke/DirectMethodHandle
  9189. ciInstanceKlass java/lang/invoke/MethodHandle 1 1 733 100 1 9 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 7 1 7 1 10 12 1 1 9 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 11 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 100 1 7 1 10 8 1 10 12 1 1 10 12 1 8 1 10 12 1 1 10 12 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 7 12 1 1 10 7 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 8 1 10 7 12 1 1 1 8 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 8 1 10 12 1 1 8 1 10 12 1 8 1 10 7 12 1 1 1 9 12 1 1 100 1 10 9 7 12 1 1 1 9 7 1 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 8 1 10 12 1 1 8 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 9 100 12 1 1 1 10 12 1 1 11 12 1 10 12 1 10 12 1 1 10 100 12 1 1 100 1 11 12 1 10 100 1 11 12 1 7 1 10 12 1 11 12 1 9 100 12 1 1 1 11 12 1 1 11 100 12 1 1 1 10 12 1 1 9 12 1 11 12 1 9 12 1 9 12 1 9 12 1 11 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 8 1 10 12 1 10 12 1 8 1 10 12 1 10 12 1 10 12 1 1 10 10 10 7 12 1 1 10 12 1 1 100 1 7 1 8 1 8 1 10 10 12 1 1 10 12 1 10 12 1 7 1 10 100 12 1 1 1 10 9 7 12 1 1 1 10 12 1 1 10 12 1 1 8 1 8 1 10 7 12 1 1 9 12 1 9 12 1 1 9 12 1 1 10 12 1 7 1 10 12 1 10 12 1 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 11 7 12 1 1 9 12 1 10 12 1 1 9 12 1 10 12 1 8 10 12 1 1 8 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 100 1 7 1 100 1 1 100 1 1 100 1 1 1 1
  9190. staticfield java/lang/invoke/MethodHandle FORM_OFFSET J 20
  9191. staticfield java/lang/invoke/MethodHandle UPDATE_OFFSET J 13
  9192. staticfield java/lang/invoke/MethodHandle $assertionsDisabled Z 1
  9193. instanceKlass java/io/ObjectStreamClass$DeserializationConstructorsCache
  9194. ciInstanceKlass java/util/concurrent/ConcurrentHashMap 1 1 1210 7 1 7 1 3 10 12 1 1 3 7 1 10 7 12 1 1 1 7 1 10 7 12 1 1 1 100 1 11 12 1 1 11 12 1 11 12 1 1 9 12 1 1 9 12 1 1 9 12 1 10 7 12 1 1 1 7 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 4 10 12 1 9 12 1 10 12 1 1 100 1 10 5 0 10 12 1 10 12 1 1 5 0 10 12 1 1 10 12 1 9 12 1 1 10 12 1 1 9 12 1 9 12 1 1 10 12 1 1 9 12 1 10 12 1 1 9 12 1 1 10 12 1 1 100 1 10 100 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 100 1 10 12 1 1 7 1 100 1 8 1 10 12 1 10 12 1 1 10 12 1 1 11 7 12 1 1 10 12 1 1 11 12 1 1 11 7 12 1 1 1 11 7 12 1 1 1 11 12 1 7 1 11 12 1 11 12 1 10 12 1 1 10 12 1 1 9 12 1 1 10 100 12 1 1 1 9 10 12 1 1 9 12 1 10 12 1 1 5 0 9 12 1 1 7 1 10 12 1 9 12 1 1 7 1 10 12 1 9 12 1 7 1 10 7 1 10 10 12 1 1 8 1 10 12 1 10 12 1 1 11 100 1 10 12 1 10 100 12 1 1 1 8 1 10 100 12 1 1 1 8 1 10 12 1 8 1 10 12 1 10 12 1 1 10 100 12 1 1 10 12 1 10 12 1 10 12 1 9 12 1 9 10 12 1 9 12 1 1 11 100 12 1 1 1 11 7 12 1 1 1 100 1 10 12 11 100 12 1 1 10 11 7 12 1 10 12 1 100 1 10 12 1 100 1 10 10 9 7 12 1 1 1 10 12 3 10 7 12 1 1 9 12 1 10 12 1 1 9 12 1 1 9 12 1 10 12 1 1 10 7 12 1 1 9 12 1 9 7 12 1 1 10 12 1 1 10 12 1 3 9 12 1 9 12 1 10 12 1 1 7 1 9 3 9 12 1 7 1 10 12 1 9 12 1 10 12 1 9 12 1 10 12 1 9 12 1 10 100 12 1 1 1 100 10 12 1 7 1 5 0 10 100 12 1 1 100 1 10 12 1 1 10 12 1 10 12 1 100 1 10 12 1 10 100 1 100 1 10 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 7 1 10 12 1 1 100 1 10 12 1 10 10 12 1 100 1 10 12 1 10 10 12 1 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 10 100 1 10 10 100 1 10 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 10 100 1 10 10 100 1 10 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 10 12 1 10 7 12 1 1 1 10 12 1 7 1 7 1 10 12 1 9 12 1 1 9 12 1 1 10 12 1 1 8 10 12 1 1 8 8 8 8 7 10 12 1 1 10 12 1 100 1 8 1 10 7 1 7 1 7 1 1 1 5 0 1 1 3 1 3 1 1 1 1 3 1 3 1 3 1 1 1 1 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  9195. staticfield java/util/concurrent/ConcurrentHashMap NCPU I 12
  9196. staticfield java/util/concurrent/ConcurrentHashMap serialPersistentFields [Ljava/io/ObjectStreamField; 3 [Ljava/io/ObjectStreamField;
  9197. staticfield java/util/concurrent/ConcurrentHashMap U Ljdk/internal/misc/Unsafe; jdk/internal/misc/Unsafe
  9198. staticfield java/util/concurrent/ConcurrentHashMap SIZECTL J 20
  9199. staticfield java/util/concurrent/ConcurrentHashMap TRANSFERINDEX J 32
  9200. staticfield java/util/concurrent/ConcurrentHashMap BASECOUNT J 24
  9201. staticfield java/util/concurrent/ConcurrentHashMap CELLSBUSY J 36
  9202. staticfield java/util/concurrent/ConcurrentHashMap CELLVALUE J 144
  9203. staticfield java/util/concurrent/ConcurrentHashMap ABASE I 16
  9204. staticfield java/util/concurrent/ConcurrentHashMap ASHIFT I 2
  9205. instanceKlass org/apache/maven/project/DefaultProjectBuilder$1
  9206. instanceKlass com/google/gson/internal/LinkedTreeMap
  9207. instanceKlass org/eclipse/sisu/wire/EntryMapAdapter
  9208. instanceKlass com/google/common/collect/Maps$ViewCachingAbstractMap
  9209. instanceKlass com/google/common/collect/MapMakerInternalMap
  9210. instanceKlass org/eclipse/sisu/wire/MergedProperties
  9211. instanceKlass com/google/common/cache/LocalCache
  9212. instanceKlass java/util/concurrent/ConcurrentSkipListMap
  9213. instanceKlass org/eclipse/osgi/internal/framework/FilterImpl$DictionaryMap
  9214. instanceKlass org/eclipse/osgi/internal/framework/FilterImpl$ServiceReferenceMap
  9215. instanceKlass org/eclipse/osgi/internal/serviceregistry/ShrinkableValueCollectionMap
  9216. instanceKlass org/apache/felix/resolver/util/ArrayMap
  9217. instanceKlass java/util/Collections$SingletonMap
  9218. instanceKlass java/util/TreeMap
  9219. instanceKlass java/util/IdentityHashMap
  9220. instanceKlass java/util/EnumMap
  9221. instanceKlass java/util/WeakHashMap
  9222. instanceKlass java/util/Collections$EmptyMap
  9223. instanceKlass java/util/HashMap
  9224. instanceKlass sun/util/PreHashedMap
  9225. instanceKlass java/util/ImmutableCollections$AbstractImmutableMap
  9226. instanceKlass java/util/concurrent/ConcurrentHashMap
  9227. ciInstanceKlass java/util/AbstractMap 1 1 196 10 7 12 1 1 1 10 7 12 1 1 1 11 7 12 1 1 1 10 11 12 1 1 11 7 12 1 1 1 11 12 1 1 7 1 11 12 1 10 12 1 1 11 12 1 100 1 10 11 12 1 11 7 1 10 12 1 1 11 12 1 9 12 1 1 7 1 10 12 1 9 12 1 1 7 1 10 11 11 12 1 1 11 12 1 7 1 100 1 11 12 1 8 1 7 1 10 10 12 1 1 8 1 10 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 100 1 100 1 100 1 100 1 100 1 1 1 1 1 1
  9228. ciInstanceKlass java/util/concurrent/ConcurrentMap 1 1 208 11 7 12 1 1 1 10 100 12 1 1 11 12 1 1 11 100 12 1 1 1 11 7 12 1 1 1 11 12 1 1 100 1 11 12 1 11 12 1 100 1 11 100 12 1 1 1 18 12 1 11 12 1 1 11 100 12 1 1 11 12 1 1 11 100 12 1 11 12 1 1 11 12 1 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 11 12 15 10 100 12 1 1 1 1 1 100 1 100 1 1 1 100 1 8 1 1 12 10 1 1 1 8 1 1 1 8 1 1 8 1 1 1 8 1 1 1 8 1 1 1 8 1 1 1 8 1 1 1 8 1 1 1 8 1 1 1 8 1 1 8 1
  9229. ciInstanceKlass jdk/internal/loader/ClassLoaders 1 1 183 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 100 12 1 1 1 9 7 12 1 1 1 9 12 1 1 9 12 1 1 7 1 11 100 12 1 1 1 100 1 11 12 1 1 11 12 1 1 10 100 12 1 1 1 10 100 12 1 1 1 100 1 100 1 10 7 12 1 1 1 9 12 1 1 10 12 1 1 7 1 10 12 1 1 10 12 1 7 1 8 1 10 7 12 1 1 1 10 12 1 1 7 1 10 12 1 10 12 1 10 12 1 8 1 10 7 12 1 1 8 1 8 1 10 12 1 7 1 10 12 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  9230. staticfield jdk/internal/loader/ClassLoaders JLA Ljdk/internal/access/JavaLangAccess; java/lang/System$2
  9231. staticfield jdk/internal/loader/ClassLoaders BOOT_LOADER Ljdk/internal/loader/ClassLoaders$BootClassLoader; jdk/internal/loader/ClassLoaders$BootClassLoader
  9232. staticfield jdk/internal/loader/ClassLoaders PLATFORM_LOADER Ljdk/internal/loader/ClassLoaders$PlatformClassLoader; jdk/internal/loader/ClassLoaders$PlatformClassLoader
  9233. staticfield jdk/internal/loader/ClassLoaders APP_LOADER Ljdk/internal/loader/ClassLoaders$AppClassLoader; jdk/internal/loader/ClassLoaders$AppClassLoader
  9234. instanceKlass jdk/internal/loader/ClassLoaders$BootClassLoader
  9235. instanceKlass jdk/internal/loader/ClassLoaders$PlatformClassLoader
  9236. instanceKlass jdk/internal/loader/ClassLoaders$AppClassLoader
  9237. ciInstanceKlass jdk/internal/loader/BuiltinClassLoader 1 1 737 9 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 9 12 1 1 9 12 1 1 7 1 10 12 1 9 12 1 10 12 1 9 12 1 10 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 11 7 12 1 1 1 7 1 7 1 10 10 12 1 1 8 1 10 12 1 10 12 7 1 10 12 1 10 12 1 1 11 7 12 1 1 1 11 7 12 1 1 1 11 12 1 1 7 1 8 1 8 1 10 9 12 1 1 10 7 12 1 1 11 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 10 7 12 1 1 1 10 12 1 1 11 7 12 1 1 1 10 7 12 1 1 7 1 10 7 12 1 1 1 10 12 1 100 1 8 1 10 12 1 1 10 8 1 10 12 1 1 10 12 1 1 10 12 1 1 11 7 12 1 1 11 12 1 7 1 10 11 12 1 1 11 10 12 1 1 7 1 10 12 1 10 7 12 1 10 12 1 7 1 10 12 1 10 7 12 1 1 1 100 1 10 12 1 1 11 12 1 7 1 100 1 10 12 1 10 12 1 1 100 1 100 1 10 12 1 10 12 1 18 12 1 1 10 12 1 10 12 1 1 18 100 1 10 7 12 1 1 1 7 1 10 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 9 12 1 1 100 1 10 10 12 1 1 10 12 1 1 10 12 1 10 12 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 18 12 1 7 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 100 1 10 12 1 7 1 10 12 1 10 7 12 1 1 1 10 12 1 11 12 1 7 1 10 12 1 7 1 100 1 10 12 1 10 12 1 11 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 8 1 10 12 1 1 10 7 12 1 1 10 12 1 100 1 8 1 8 1 10 10 12 1 8 1 8 1 10 7 12 1 1 1 11 7 12 1 1 1 9 7 12 1 1 1 10 7 12 1 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 10 7 12 1 1 1 8 1 10 12 1 7 1 10 12 1 1 10 12 1 7 1 10 11 12 1 1 10 12 10 12 1 10 12 1 100 1 10 12 1 10 12 1 10 10 12 1 10 7 12 1 1 8 1 10 7 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 16 15 10 12 16 15 10 12 16 15 10 12 16 1 15 10 100 12 1 1 1 1 1 100 1 1 1 1 1 100 1 100 1 1
  9238. staticfield jdk/internal/loader/BuiltinClassLoader packageToModule Ljava/util/Map; java/util/concurrent/ConcurrentHashMap
  9239. staticfield jdk/internal/loader/BuiltinClassLoader $assertionsDisabled Z 1
  9240. ciInstanceKlass jdk/internal/loader/ClassLoaders$AppClassLoader 1 1 119 8 1 10 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 7 1 8 1 10 12 10 7 12 1 1 1 10 7 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 7 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1
  9241. ciInstanceKlass jdk/internal/loader/ClassLoaders$PlatformClassLoader 1 1 42 8 1 10 7 12 1 1 1 10 7 12 1 1 1 7 1 10 12 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 100 1 1
  9242. ciInstanceKlass java/lang/ArithmeticException 1 1 26 10 100 12 1 1 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1
  9243. ciInstanceKlass java/lang/ArrayStoreException 1 1 26 10 100 12 1 1 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1
  9244. ciInstanceKlass java/lang/ClassCastException 1 1 26 10 7 12 1 1 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1
  9245. ciInstanceKlass java/lang/ClassNotFoundException 1 1 96 7 1 10 7 12 1 1 1 10 12 1 10 12 1 1 10 100 12 1 1 1 8 1 10 100 12 1 1 1 10 7 12 1 1 10 100 12 1 1 1 10 100 12 1 1 1 10 12 1 1 7 1 10 12 1 9 12 1 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1
  9246. staticfield java/lang/ClassNotFoundException serialPersistentFields [Ljava/io/ObjectStreamField; 1 [Ljava/io/ObjectStreamField;
  9247. instanceKlass java/util/regex/PatternSyntaxException
  9248. instanceKlass java/nio/file/InvalidPathException
  9249. instanceKlass java/lang/IllegalThreadStateException
  9250. instanceKlass org/apache/maven/cli/MavenCli$IllegalUseOfUndefinedProperty
  9251. instanceKlass java/security/InvalidParameterException
  9252. instanceKlass java/nio/charset/IllegalCharsetNameException
  9253. instanceKlass java/nio/charset/UnsupportedCharsetException
  9254. instanceKlass java/lang/NumberFormatException
  9255. ciInstanceKlass java/lang/IllegalArgumentException 1 1 35 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1
  9256. ciInstanceKlass java/lang/IllegalMonitorStateException 1 1 26 10 100 12 1 1 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1
  9257. ciInstanceKlass java/lang/BootstrapMethodError 0 0 45 10 100 12 1 1 1 10 12 1 10 12 1 10 100 12 1 1 1 10 100 12 1 1 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1
  9258. instanceKlass java/lang/ExceptionInInitializerError
  9259. instanceKlass java/lang/ClassFormatError
  9260. instanceKlass java/lang/UnsatisfiedLinkError
  9261. instanceKlass java/lang/IncompatibleClassChangeError
  9262. instanceKlass java/lang/BootstrapMethodError
  9263. instanceKlass java/lang/NoClassDefFoundError
  9264. ciInstanceKlass java/lang/LinkageError 1 1 31 10 7 12 1 1 1 10 12 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1
  9265. ciInstanceKlass java/lang/NullPointerException 1 1 52 10 7 12 1 1 1 10 12 1 9 7 12 1 1 1 10 12 1 1 9 12 1 1 10 12 1 1 10 12 1 1 1 1 5 0 1 1 1 1 1 1 1 1 100 1 100 1 100 1 1 1
  9266. ciInstanceKlass java/lang/NoClassDefFoundError 1 1 26 10 7 12 1 1 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1
  9267. ciInstanceKlass java/lang/StackOverflowError 1 1 26 10 100 12 1 1 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1
  9268. ciInstanceKlass java/lang/StackTraceElement 1 1 235 10 7 12 1 1 1 10 7 12 1 1 9 12 1 1 9 12 1 1 9 12 1 9 12 1 8 1 10 100 12 1 1 1 7 1 9 12 1 8 1 9 12 1 9 12 1 9 12 1 1 10 12 1 1 10 12 1 8 1 10 7 12 1 1 1 7 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 10 12 1 8 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 9 12 1 1 10 7 12 1 1 1 10 12 1 1 7 1 10 12 1 1 10 7 12 1 1 10 7 12 1 1 1 10 7 12 1 1 10 7 12 1 1 10 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 7 1 1 1 1 1 1 1 3 1 3 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 7 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1
  9269. instanceKlass java/util/concurrent/locks/AbstractQueuedSynchronizer
  9270. ciInstanceKlass java/util/concurrent/locks/AbstractOwnableSynchronizer 1 1 32 10 7 12 1 1 1 9 7 12 1 1 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1
  9271. ciInstanceKlass jdk/internal/vm/Continuation 0 0 549 9 100 12 1 1 1 9 12 1 9 12 1 100 1 7 1 10 12 1 1 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 9 7 12 1 1 1 11 100 12 1 1 1 10 7 1 9 12 1 1 9 12 1 1 10 8 1 10 12 1 9 12 1 1 10 11 12 1 1 100 1 10 100 12 1 1 1 10 12 1 1 10 12 1 10 12 1 1 11 12 1 1 9 12 1 1 10 12 1 1 18 12 1 1 10 7 12 1 1 1 100 1 10 12 1 11 100 12 1 1 1 10 12 1 9 12 1 10 12 1 1 100 1 8 1 10 12 1 10 12 1 1 9 12 1 1 11 12 1 1 9 12 1 1 8 1 10 11 12 1 1 11 12 1 1 10 12 1 1 10 12 1 1 9 12 1 10 12 1 10 10 12 1 8 1 10 12 1 8 1 8 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 9 12 1 11 12 1 7 1 10 12 1 10 12 1 1 9 12 1 1 7 1 10 12 1 1 9 12 1 1 10 12 1 10 12 1 11 7 12 1 1 10 7 1 10 12 1 8 1 9 12 1 10 12 1 1 9 12 1 1 10 7 12 1 1 8 1 8 1 8 1 8 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 8 1 10 12 1 1 9 12 1 1 10 12 1 1 9 12 1 8 1 10 7 12 1 1 1 10 12 1 8 1 100 1 8 1 10 9 12 1 1 8 1 10 7 12 1 1 10 100 12 1 1 8 1 8 1 10 12 10 100 12 1 1 1 10 7 1 10 7 12 1 1 1 18 11 100 12 1 1 1 18 12 1 11 12 1 1 7 1 10 7 12 1 1 10 12 1 1 8 10 12 1 1 10 100 12 1 1 1 10 100 12 1 1 10 12 1 8 1 10 12 1 7 1 7 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 16 1 15 10 12 16 15 11 7 12 1 1 1 16 1 16 1 15 10 12 16 15 10 100 12 1 1 1 1 1 1 1 1 100 1 100 1 1
  9272. ciInstanceKlass jdk/internal/misc/UnsafeConstants 1 1 34 10 100 12 1 1 1 9 7 12 1 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 1 1 1 1 1 1 1 1
  9273. staticfield jdk/internal/misc/UnsafeConstants ADDRESS_SIZE0 I 8
  9274. staticfield jdk/internal/misc/UnsafeConstants PAGE_SIZE I 4096
  9275. staticfield jdk/internal/misc/UnsafeConstants BIG_ENDIAN Z 0
  9276. staticfield jdk/internal/misc/UnsafeConstants UNALIGNED_ACCESS Z 1
  9277. staticfield jdk/internal/misc/UnsafeConstants DATA_CACHE_LINE_FLUSH_SIZE I 0
  9278. instanceKlass org/apache/maven/artifact/versioning/ManagedVersionMap
  9279. instanceKlass sun/net/www/http/KeepAliveCache
  9280. instanceKlass com/sun/jna/win32/W32APIOptions$2
  9281. instanceKlass com/sun/jna/win32/W32APIOptions$1
  9282. instanceKlass org/eclipse/jdt/ls/core/internal/preferences/Preferences$ReferencedLibraries$3
  9283. instanceKlass java/lang/ProcessEnvironment
  9284. instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$10
  9285. instanceKlass java/util/LinkedHashMap
  9286. ciInstanceKlass java/util/HashMap 1 1 629 10 7 12 1 1 1 7 1 10 12 1 1 7 1 10 7 12 1 1 1 100 1 11 12 1 1 11 12 1 11 12 1 1 10 7 12 1 1 1 7 1 3 10 7 12 1 1 1 100 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 7 12 1 1 1 8 1 10 12 1 9 12 1 1 10 12 1 9 12 1 1 4 10 12 1 10 12 1 1 11 7 12 1 1 9 12 1 1 10 7 12 1 1 1 6 0 10 12 1 1 11 12 1 1 11 7 12 1 1 1 11 7 12 1 1 1 11 12 1 1 7 1 11 12 1 11 12 1 10 12 1 10 12 1 1 9 12 10 12 1 1 9 7 12 1 1 1 9 12 9 12 1 10 12 1 1 9 12 1 7 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 9 12 1 10 12 1 1 3 4 10 12 1 1 10 12 1 1 9 12 1 1 9 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 9 12 1 1 7 1 10 12 1 10 12 1 10 7 12 1 1 1 7 1 9 12 1 1 7 1 10 9 12 7 1 10 100 1 10 11 7 12 1 1 1 100 1 10 11 7 12 1 1 11 7 12 1 1 1 10 12 1 100 1 7 1 10 12 1 10 12 1 10 12 1 10 7 12 1 1 10 12 1 1 10 12 1 1 10 100 12 1 1 1 8 10 100 12 1 1 1 100 1 10 4 4 10 12 1 1 10 100 12 1 1 1 10 12 1 8 1 6 0 10 100 12 1 1 1 100 1 11 100 12 1 1 1 10 12 1 10 12 1 10 10 12 1 1 6 0 8 1 10 12 1 10 12 7 1 7 1 1 1 1 5 0 1 3 1 1 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  9287. ciMethod java/util/HashMap size ()I 274 0 137 0 0
  9288. ciMethod java/util/HashMap get (Ljava/lang/Object;)Ljava/lang/Object; 1024 0 79903 0 -1
  9289. ciMethod java/util/HashMap keySet ()Ljava/util/Set; 1024 0 9043 0 216
  9290. ciInstanceKlass java/lang/invoke/LambdaForm 1 1 1059 7 1 100 1 10 7 12 1 1 1 9 12 1 1 9 12 1 9 12 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 10 7 12 1 1 9 12 1 10 12 1 1 100 1 10 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 9 12 1 9 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 9 100 12 1 1 1 10 12 1 1 9 7 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 7 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 1 9 12 1 1 9 12 1 9 12 1 1 10 12 1 9 12 1 10 100 12 1 1 1 10 12 1 1 7 1 10 12 1 9 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 7 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 8 1 10 12 1 10 12 1 10 10 12 1 8 1 8 1 9 12 1 9 12 1 1 10 12 1 1 10 12 1 9 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 100 12 1 1 1 9 12 1 10 12 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 10 12 1 9 12 1 7 1 10 12 1 1 9 12 1 10 12 1 10 12 1 1 10 12 10 12 1 10 12 1 1 10 12 1 1 10 10 12 1 1 10 12 1 1 7 1 8 1 10 12 1 1 10 12 1 10 12 1 1 10 8 1 10 12 1 1 8 1 8 1 8 1 10 12 1 10 12 1 10 12 1 1 100 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 9 12 1 1 8 1 10 100 12 1 1 1 10 7 12 1 1 10 12 10 12 1 1 10 12 1 1 9 12 1 8 10 12 1 1 100 1 10 12 1 1 10 12 1 9 7 12 1 1 9 7 12 1 1 1 8 1 10 100 12 1 1 10 12 1 1 7 1 7 1 10 10 12 1 1 10 12 1 1 8 1 8 1 7 1 8 1 10 12 10 12 1 10 12 1 10 12 1 1 8 1 8 1 10 12 1 10 12 1 1 8 1 8 1 8 1 7 1 8 1 7 1 8 1 7 1 8 1 10 12 1 8 1 9 10 7 12 1 1 1 10 12 1 9 12 1 1 10 12 1 10 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 8 1 100 10 12 1 10 12 1 9 12 1 1 10 7 12 1 1 8 1 8 1 7 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 8 1 8 1 8 1 10 12 1 8 1 10 12 1 8 1 8 1 8 1 8 1 8 1 10 12 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 9 12 1 1 8 1 10 12 1 1 9 12 1 1 10 12 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 1 7 1 10 7 12 1 1 1 9 12 1 10 12 1 10 12 1 8 1 10 12 1 9 12 1 1 7 1 10 7 12 1 1 1 8 1 100 1 10 12 1 9 12 1 9 12 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 9 7 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 9 12 10 12 1 10 10 12 1 9 12 1 9 9 12 1 7 9 12 1 1 10 12 1 1 9 12 1 10 12 1 10 7 1 9 1 1 1 1 3 1 3 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 100 1 1 7 1 1 1 1 1 1 1 1 1 1 1
  9291. staticfield java/lang/invoke/LambdaForm DEFAULT_CUSTOMIZED Ljava/lang/invoke/MethodHandle; null
  9292. staticfield java/lang/invoke/LambdaForm DEFAULT_KIND Ljava/lang/invoke/LambdaForm$Kind; java/lang/invoke/LambdaForm$Kind
  9293. staticfield java/lang/invoke/LambdaForm COMPILE_THRESHOLD I 0
  9294. staticfield java/lang/invoke/LambdaForm INTERNED_ARGUMENTS [[Ljava/lang/invoke/LambdaForm$Name; 5 [[Ljava/lang/invoke/LambdaForm$Name;
  9295. staticfield java/lang/invoke/LambdaForm IMPL_NAMES Ljava/lang/invoke/MemberName$Factory; java/lang/invoke/MemberName$Factory
  9296. staticfield java/lang/invoke/LambdaForm LF_identity [Ljava/lang/invoke/LambdaForm; 6 [Ljava/lang/invoke/LambdaForm;
  9297. staticfield java/lang/invoke/LambdaForm LF_zero [Ljava/lang/invoke/LambdaForm; 6 [Ljava/lang/invoke/LambdaForm;
  9298. staticfield java/lang/invoke/LambdaForm NF_identity [Ljava/lang/invoke/LambdaForm$NamedFunction; 6 [Ljava/lang/invoke/LambdaForm$NamedFunction;
  9299. staticfield java/lang/invoke/LambdaForm NF_zero [Ljava/lang/invoke/LambdaForm$NamedFunction; 6 [Ljava/lang/invoke/LambdaForm$NamedFunction;
  9300. staticfield java/lang/invoke/LambdaForm createFormsLock Ljava/lang/Object; java/lang/Object
  9301. staticfield java/lang/invoke/LambdaForm DEBUG_NAME_COUNTERS Ljava/util/HashMap; null
  9302. staticfield java/lang/invoke/LambdaForm DEBUG_NAMES Ljava/util/HashMap; null
  9303. staticfield java/lang/invoke/LambdaForm TRACE_INTERPRETER Z 0
  9304. staticfield java/lang/invoke/LambdaForm $assertionsDisabled Z 1
  9305. ciInstanceKlass java/lang/invoke/MemberName 1 1 724 7 1 7 1 100 1 9 12 1 1 10 7 12 1 1 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 9 7 12 1 1 10 12 1 7 1 7 1 10 12 1 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 9 12 1 1 8 1 10 100 12 1 1 1 7 1 10 10 12 1 1 100 1 100 1 10 12 1 9 12 1 1 100 1 8 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 8 1 8 1 10 12 1 8 1 9 12 1 1 3 10 12 1 10 12 1 10 12 1 10 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 7 1 8 10 12 1 1 10 12 1 1 8 1 9 7 1 8 9 7 1 10 12 1 1 10 12 1 10 12 1 8 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 7 1 10 12 1 1 10 12 1 8 1 10 12 1 10 12 1 8 1 10 12 1 1 10 12 1 1 7 1 10 12 1 1 10 12 8 1 8 1 7 1 10 12 1 10 100 12 1 1 1 100 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 10 12 1 10 12 1 10 12 1 3 10 12 1 3 10 12 1 3 3 3 3 3 3 10 12 1 3 9 12 1 10 12 1 1 3 10 12 1 10 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 10 10 12 1 10 12 1 1 10 12 1 10 10 12 1 1 10 12 1 10 12 1 10 12 1 7 1 10 10 10 12 100 1 10 10 10 12 1 1 10 12 1 1 10 10 12 1 8 10 7 1 10 12 1 10 7 1 10 12 1 10 12 1 10 12 1 10 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 100 1 10 12 1 1 100 1 8 1 10 7 1 10 12 1 10 12 10 12 1 1 10 12 1 10 12 1 8 1 8 1 8 1 8 1 10 12 1 10 12 1 10 7 12 1 1 1 8 1 8 1 10 12 1 8 1 10 10 10 12 1 10 12 1 8 1 8 1 10 10 12 1 8 1 10 100 12 1 1 1 8 1 100 1 10 12 1 10 12 1 1 10 12 1 8 1 8 1 8 1 8 1 100 1 10 8 1 8 1 8 1 8 1 10 12 1 7 1 100 1 7 1 10 100 1 10 7 1 10 7 12 1 1 1 9 7 12 1 1 1 7 1 7 1 1 1 1 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  9306. staticfield java/lang/invoke/MemberName $assertionsDisabled Z 1
  9307. instanceKlass java/lang/invoke/VarHandleReferences$Array
  9308. instanceKlass java/lang/invoke/VarHandleLongs$FieldInstanceReadOnly
  9309. instanceKlass java/lang/invoke/VarHandleByteArrayAsDoubles$ByteArrayViewVarHandle
  9310. instanceKlass java/lang/invoke/VarHandleByteArrayAsFloats$ByteArrayViewVarHandle
  9311. instanceKlass java/lang/invoke/VarHandleByteArrayAsChars$ByteArrayViewVarHandle
  9312. instanceKlass java/lang/invoke/VarHandleByteArrayAsShorts$ByteArrayViewVarHandle
  9313. instanceKlass java/lang/invoke/VarHandleBooleans$FieldInstanceReadOnly
  9314. instanceKlass java/lang/invoke/VarHandleReferences$FieldInstanceReadOnly
  9315. instanceKlass java/lang/invoke/VarHandleInts$FieldInstanceReadOnly
  9316. instanceKlass java/lang/invoke/VarHandleByteArrayAsLongs$ByteArrayViewVarHandle
  9317. instanceKlass java/lang/invoke/VarHandleByteArrayAsInts$ByteArrayViewVarHandle
  9318. instanceKlass java/lang/invoke/VarHandleReferences$FieldStaticReadOnly
  9319. ciInstanceKlass java/lang/invoke/VarHandle 1 1 473 10 7 12 1 1 1 10 7 12 1 1 9 12 1 1 9 12 1 1 100 1 10 8 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 9 100 12 1 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 9 12 1 10 12 1 9 12 1 1 10 7 12 1 1 10 12 1 9 7 12 1 1 1 9 12 1 1 10 12 1 1 100 1 7 1 10 8 1 10 12 1 1 10 12 1 8 1 10 12 1 10 12 1 9 12 1 1 9 12 1 10 12 1 10 12 1 1 10 12 1 10 10 100 12 1 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 100 12 1 1 1 10 100 12 1 1 1 9 12 1 1 9 10 12 1 10 12 1 10 12 1 1 10 12 1 10 7 12 1 1 1 9 12 1 1 10 12 1 1 9 12 1 10 12 1 10 12 1 10 7 12 1 1 100 1 10 9 7 12 1 1 1 9 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 8 10 12 1 1 7 1 10 12 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 1 1 1 1 1 100 1 1 1 100 1 1 100 1 100 1 100 1 100 1 100 1 100 1 1 1 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1
  9320. staticfield java/lang/invoke/VarHandle VFORM_OFFSET J 16
  9321. staticfield java/lang/invoke/VarHandle $assertionsDisabled Z 1
  9322. ciInstanceKlass java/util/Collections 1 1 932 10 7 12 1 1 1 11 7 12 1 1 1 7 1 11 12 1 1 7 1 10 12 1 1 10 12 1 11 12 1 1 7 1 11 12 1 1 11 12 1 1 10 12 1 11 100 12 1 1 11 12 1 1 11 12 1 10 12 1 10 12 1 10 12 11 100 12 1 1 1 10 12 1 1 11 12 1 11 12 1 1 9 12 1 1 100 1 10 10 12 1 1 10 12 1 11 100 12 1 1 1 11 12 1 1 10 12 1 11 12 1 100 1 8 1 10 12 1 11 7 12 1 1 1 11 7 1 11 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 11 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 11 12 1 1 7 1 10 12 1 11 7 1 100 1 10 12 1 11 7 1 7 1 10 12 1 11 100 1 100 1 10 12 1 11 7 1 7 1 10 12 1 11 100 1 100 1 10 12 1 11 7 1 11 7 1 10 12 10 11 7 1 7 1 10 12 1 11 100 1 100 1 10 11 100 1 100 1 10 12 1 11 100 1 100 1 10 12 1 7 1 10 10 12 1 7 1 10 10 12 1 100 1 10 100 1 10 7 1 10 100 1 10 10 12 1 10 7 1 10 7 1 10 100 1 10 100 1 10 12 1 10 100 12 1 1 1 100 1 100 1 10 12 1 100 1 10 12 1 100 1 10 12 1 100 1 10 12 1 100 1 10 12 1 100 1 10 100 1 10 12 1 100 1 10 12 1 100 1 10 12 1 9 7 12 1 1 1 9 100 12 1 1 9 7 12 1 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 7 1 10 12 7 1 10 7 1 10 7 1 10 7 1 10 12 1 100 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 1 10 7 1 10 12 1 9 7 12 1 1 1 9 7 12 1 1 1 7 1 9 12 1 1 10 12 7 1 10 7 1 10 11 7 12 1 1 11 12 1 10 12 1 11 11 12 1 11 11 12 1 8 1 7 1 10 11 100 1 10 12 1 100 1 10 100 12 1 1 1 100 1 10 12 1 7 1 10 7 1 10 7 1 10 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  9323. staticfield java/util/Collections EMPTY_SET Ljava/util/Set; java/util/Collections$EmptySet
  9324. staticfield java/util/Collections EMPTY_LIST Ljava/util/List; java/util/Collections$EmptyList
  9325. staticfield java/util/Collections EMPTY_MAP Ljava/util/Map; java/util/Collections$EmptyMap
  9326. instanceKlass jdk/internal/reflect/FieldAccessorImpl
  9327. instanceKlass jdk/internal/reflect/ConstructorAccessorImpl
  9328. instanceKlass jdk/internal/reflect/MethodAccessorImpl
  9329. ciInstanceKlass jdk/internal/reflect/MagicAccessorImpl 1 1 16 10 7 12 1 1 1 100 1 1 1 1 1 1 1 1
  9330. instanceKlass jdk/internal/reflect/DirectMethodHandleAccessor
  9331. ciInstanceKlass jdk/internal/reflect/MethodAccessorImpl 1 1 38 10 7 12 1 1 1 10 100 12 1 1 1 100 1 1 1 1 1 1 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  9332. ciInstanceKlass jdk/internal/reflect/MethodAccessor 1 0 17 100 1 100 1 1 1 1 100 1 100 1 1 1 1 1 1
  9333. instanceKlass jdk/internal/reflect/SerializationConstructorAccessorImpl
  9334. instanceKlass jdk/internal/reflect/DirectConstructorHandleAccessor$NativeAccessor
  9335. instanceKlass jdk/internal/reflect/DirectConstructorHandleAccessor
  9336. instanceKlass jdk/internal/reflect/NativeConstructorAccessorImpl
  9337. ciInstanceKlass jdk/internal/reflect/ConstructorAccessorImpl 1 1 27 10 7 12 1 1 1 100 1 100 1 1 1 1 1 1 1 1 1 100 1 100 1 100 1 1 1
  9338. ciInstanceKlass jdk/internal/reflect/ConstructorAccessor 1 0 16 100 1 100 1 1 1 1 100 1 100 1 100 1 1 1
  9339. ciInstanceKlass jdk/internal/reflect/DelegatingClassLoader 1 1 18 10 7 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1
  9340. ciInstanceKlass jdk/internal/reflect/CallerSensitive 1 0 17 100 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1
  9341. ciInstanceKlass jdk/internal/reflect/NativeConstructorAccessorImpl 0 0 125 10 7 12 1 1 1 9 7 12 1 1 1 100 1 10 12 1 9 12 1 1 9 12 1 1 10 100 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 9 12 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 100 1 10 10 12 1 1 10 12 1 10 12 1 1 10 12 1 7 1 10 12 1 1 10 12 1 1 8 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 100 1 1 1 1 1 1 1
  9342. ciInstanceKlass jdk/internal/reflect/ConstantPool 1 1 142 10 7 12 1 1 1 9 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 100 12 1 1 1 8 11 7 12 1 1 1 10 7 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  9343. ciInstanceKlass jdk/internal/reflect/UnsafeStaticFieldAccessorImpl 0 0 47 10 7 12 1 1 1 9 7 12 1 1 1 10 7 12 1 1 1 9 12 1 1 8 11 100 12 1 1 1 10 100 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  9344. ciInstanceKlass jdk/internal/reflect/FieldAccessor 1 0 48 100 1 100 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  9345. instanceKlass jdk/internal/reflect/MethodHandleFieldAccessorImpl
  9346. instanceKlass jdk/internal/reflect/UnsafeFieldAccessorImpl
  9347. ciInstanceKlass jdk/internal/reflect/FieldAccessorImpl 1 1 269 10 7 12 1 1 1 9 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 10 7 12 1 1 1 10 12 1 1 7 1 10 10 12 1 1 10 12 1 1 8 1 10 10 12 1 100 1 8 1 10 12 1 8 1 10 12 1 8 1 10 12 1 100 1 10 12 1 1 10 8 1 10 12 1 1 8 1 10 7 12 1 1 8 1 10 7 12 1 1 8 1 10 7 12 1 1 8 1 10 7 12 1 1 8 1 10 7 12 1 1 8 1 10 7 12 1 1 8 1 10 7 12 1 1 8 1 10 7 12 1 1 10 12 1 1 8 1 10 12 1 1 10 100 12 1 1 1 8 1 10 12 1 8 1 8 1 8 1 8 1 10 7 12 1 1 1 8 1 8 1 8 1 10 12 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  9348. instanceKlass jdk/internal/reflect/UnsafeStaticFieldAccessorImpl
  9349. ciInstanceKlass jdk/internal/reflect/UnsafeFieldAccessorImpl 0 0 62 10 100 12 1 1 1 10 100 12 1 1 1 10 100 12 1 1 1 9 100 12 1 1 10 12 1 9 12 1 1 10 100 12 1 1 1 9 12 1 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  9350. instanceKlass java/lang/invoke/VolatileCallSite
  9351. instanceKlass java/lang/invoke/MutableCallSite
  9352. instanceKlass java/lang/invoke/ConstantCallSite
  9353. ciInstanceKlass java/lang/invoke/CallSite 1 1 307 10 7 12 1 1 1 10 7 12 1 1 1 9 7 12 1 1 1 10 12 1 1 9 12 1 1 10 7 12 1 1 1 10 12 1 7 1 10 12 1 1 10 12 1 1 9 100 12 1 1 1 10 7 12 1 1 10 12 1 1 100 1 7 1 10 10 7 12 1 1 1 10 12 1 1 8 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 10 100 12 1 1 10 12 1 1 9 12 1 9 100 12 1 1 1 8 1 10 7 12 1 1 1 10 12 1 1 7 1 10 12 1 1 9 12 1 8 1 100 1 10 12 1 10 12 1 100 1 8 1 10 10 12 1 10 12 1 1 100 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 9 12 1 1 8 10 12 1 1 9 12 1 1 100 1 10 10 12 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 7 12 1 1 1 7 1 8 1 10 10 12 10 12 1 1 7 1 7 1 7 1 8 1 10 12 1 10 7 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 7 1 1 1 1
  9354. staticfield java/lang/invoke/CallSite $assertionsDisabled Z 1
  9355. ciInstanceKlass java/lang/invoke/ConstantCallSite 1 1 65 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 10 7 12 1 1 1 10 12 1 100 1 10 12 9 12 1 1 100 1 10 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1
  9356. staticfield java/lang/invoke/ConstantCallSite UNSAFE Ljdk/internal/misc/Unsafe; jdk/internal/misc/Unsafe
  9357. instanceKlass java/lang/invoke/DirectMethodHandle$StaticAccessor
  9358. instanceKlass java/lang/invoke/DirectMethodHandle$Special
  9359. instanceKlass java/lang/invoke/DirectMethodHandle$Interface
  9360. instanceKlass java/lang/invoke/DirectMethodHandle$Constructor
  9361. instanceKlass java/lang/invoke/DirectMethodHandle$Accessor
  9362. ciInstanceKlass java/lang/invoke/DirectMethodHandle 1 1 923 7 1 7 1 100 1 7 1 7 1 10 7 12 1 1 1 10 7 12 1 1 1 7 1 10 12 1 10 12 1 1 10 7 12 1 1 10 12 1 1 10 12 1 10 12 1 7 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 9 12 1 1 100 1 10 9 12 1 1 9 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 10 12 1 1 8 1 10 12 1 1 7 1 10 12 1 7 1 10 10 12 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 1 7 1 10 12 1 10 12 1 7 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 8 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 9 7 12 1 1 1 7 1 10 12 1 10 7 12 1 1 1 10 12 1 10 12 1 1 9 12 1 1 7 1 10 8 1 10 12 1 1 10 12 1 1 8 1 10 12 1 10 12 1 10 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 10 7 12 1 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 8 1 9 7 12 1 1 1 8 1 9 12 1 9 12 1 8 1 9 12 1 9 12 1 8 1 9 12 1 9 12 1 8 1 10 12 1 10 12 1 1 9 12 1 1 7 1 10 12 1 1 7 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 1 7 1 10 12 1 1 10 12 1 10 12 1 1 7 1 10 12 1 1 10 12 1 10 7 12 1 1 1 10 12 1 10 12 1 1 10 12 1 9 12 1 1 10 7 1 9 12 9 12 1 10 7 12 1 1 1 10 12 1 7 1 7 1 7 1 9 12 1 1 10 7 12 1 1 1 10 12 10 12 1 7 1 10 12 1 10 12 1 1 8 1 9 12 1 9 12 1 10 12 1 1 9 12 1 1 10 7 12 1 1 1 9 12 1 1 9 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 9 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 9 12 1 1 10 12 1 1 9 7 12 1 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 8 1 9 12 1 1 9 12 1 1 10 12 1 10 12 1 1 9 7 1 10 12 1 9 12 1 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 8 1 8 1 8 1 8 1 10 12 1 1 9 12 1 1 10 12 1 10 100 12 1 1 1 8 9 12 1 1 10 12 1 1 8 1 8 8 9 12 1 8 1 8 8 8 8 8 1 8 10 12 1 7 1 10 12 1 8 1 8 1 10 12 1 10 12 1 10 12 1 10 12 1 1 7 1 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 3 1 3 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  9363. staticfield java/lang/invoke/DirectMethodHandle IMPL_NAMES Ljava/lang/invoke/MemberName$Factory; java/lang/invoke/MemberName$Factory
  9364. staticfield java/lang/invoke/DirectMethodHandle FT_UNCHECKED_REF I 8
  9365. staticfield java/lang/invoke/DirectMethodHandle ACCESSOR_FORMS [Ljava/lang/invoke/LambdaForm; 132 [Ljava/lang/invoke/LambdaForm;
  9366. staticfield java/lang/invoke/DirectMethodHandle ALL_WRAPPERS [Lsun/invoke/util/Wrapper; 10 [Lsun/invoke/util/Wrapper;
  9367. staticfield java/lang/invoke/DirectMethodHandle NFS [Ljava/lang/invoke/LambdaForm$NamedFunction; 12 [Ljava/lang/invoke/LambdaForm$NamedFunction;
  9368. staticfield java/lang/invoke/DirectMethodHandle OBJ_OBJ_TYPE Ljava/lang/invoke/MethodType; java/lang/invoke/MethodType
  9369. staticfield java/lang/invoke/DirectMethodHandle LONG_OBJ_TYPE Ljava/lang/invoke/MethodType; java/lang/invoke/MethodType
  9370. staticfield java/lang/invoke/DirectMethodHandle $assertionsDisabled Z 1
  9371. ciInstanceKlass java/lang/invoke/MutableCallSite 0 0 63 10 100 12 1 1 1 10 12 1 9 100 12 1 1 1 10 12 1 10 12 1 1 9 12 1 1 10 100 12 1 1 1 10 100 12 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1
  9372. ciInstanceKlass java/lang/invoke/VolatileCallSite 0 0 37 10 100 12 1 1 1 10 12 1 10 100 12 1 1 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  9373. ciInstanceKlass java/lang/invoke/ResolvedMethodName 1 1 16 10 100 12 1 1 1 100 1 1 1 1 1 1 1 1
  9374. ciInstanceKlass java/lang/invoke/MethodHandleNatives 1 1 690 100 1 10 7 12 1 1 1 9 7 12 1 1 1 10 12 1 1 100 1 10 10 12 1 1 10 12 1 10 12 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 10 12 1 1 7 1 10 7 12 1 1 1 10 7 12 1 1 1 7 1 10 10 12 1 1 8 1 10 12 1 8 1 10 12 1 1 8 1 10 12 1 1 9 7 12 1 1 1 8 1 10 100 12 1 1 1 7 1 10 12 100 1 100 1 8 1 7 1 10 10 12 1 7 1 9 7 12 1 1 10 12 1 1 10 12 1 10 7 12 1 1 1 10 12 1 1 9 12 1 8 1 10 12 1 1 10 12 1 8 1 10 12 1 1 7 1 10 12 1 10 7 12 1 1 1 10 12 1 10 12 1 1 10 12 1 1 8 1 10 12 1 1 8 1 10 12 1 8 1 8 1 8 1 7 1 10 12 1 8 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 10 10 12 1 1 10 12 1 10 100 12 1 1 1 100 1 8 1 10 100 12 1 1 1 7 1 8 1 10 12 1 8 1 8 1 8 1 8 1 8 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 7 1 10 12 1 7 1 7 1 10 12 1 10 12 1 8 1 8 1 10 10 12 1 1 10 12 1 1 8 1 10 7 12 1 1 8 1 8 1 10 12 1 1 10 7 12 1 1 1 100 1 10 12 1 1 7 1 9 12 1 1 10 7 12 1 1 1 10 10 12 1 9 12 1 10 12 1 9 12 1 9 12 1 10 12 1 1 10 12 1 10 12 1 1 7 1 7 1 10 12 1 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 8 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 7 12 1 1 1 10 12 1 1 100 1 8 1 10 9 7 12 1 1 1 10 12 1 1 10 12 1 1 7 1 10 12 1 1 10 12 1 1 100 1 100 1 10 10 100 1 100 1 10 100 1 10 10 12 1 1 10 7 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 8 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 10 7 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 100 1 1 1
  9375. staticfield java/lang/invoke/MethodHandleNatives $assertionsDisabled Z 1
  9376. ciInstanceKlass java/lang/invoke/MethodHandleNatives$CallSiteContext 1 1 49 10 7 12 1 1 1 7 1 10 10 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1
  9377. ciInstanceKlass jdk/internal/foreign/abi/NativeEntryPoint 0 0 194 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 100 1 8 1 10 12 1 10 12 1 1 100 1 10 100 12 1 1 1 10 12 1 9 12 1 1 18 12 1 1 10 100 12 1 1 1 10 7 12 1 1 1 9 7 12 1 1 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 1 8 1 10 12 1 1 7 1 8 1 10 12 1 10 12 1 1 10 12 1 9 12 1 1 18 12 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 10 100 12 1 1 1 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 1 15 10 12 16 1 16 15 10 12 15 10 100 12 1 1 1 1 1 100 1 1 100 1 100 1 1
  9378. ciInstanceKlass jdk/internal/foreign/abi/ABIDescriptor 0 0 55 10 100 12 1 1 1 9 100 12 1 1 1 9 12 1 1 9 12 1 9 12 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 1 1 1 1 1 1 1 1 1
  9379. ciInstanceKlass jdk/internal/foreign/abi/VMStorage 0 0 91 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 9 12 1 1 9 12 1 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 18 12 1 18 12 1 1 18 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 8 1 15 15 15 15 15 10 100 12 1 1 1 1 100 1 100 1 1
  9380. ciInstanceKlass jdk/internal/foreign/abi/UpcallLinker$CallRegs 0 0 66 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 18 12 1 1 18 12 1 1 18 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 8 1 15 15 15 10 100 12 1 1 1 1 1 100 1 100 1 1
  9381. ciInstanceKlass java/lang/StackWalker 1 1 271 9 7 12 1 1 1 7 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 11 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 100 1 8 1 10 12 1 10 12 1 10 12 1 10 7 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 10 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 11 12 1 1 100 1 8 1 10 10 7 12 1 1 9 12 1 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 18 12 1 1 100 1 8 1 10 8 1 10 12 1 1 10 100 12 1 1 1 10 12 1 1 9 7 12 1 1 11 100 12 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 16 15 10 12 16 1 15 10 100 12 1 1 1 1 1 1 1 1 1 100 1 100 1 1
  9382. staticfield java/lang/StackWalker DEFAULT_EMPTY_OPTION Ljava/util/EnumSet; java/util/RegularEnumSet
  9383. staticfield java/lang/StackWalker DEFAULT_WALKER Ljava/lang/StackWalker; java/lang/StackWalker
  9384. ciInstanceKlass java/lang/StackWalker$StackFrame 1 1 41 100 1 10 12 1 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1
  9385. instanceKlass java/lang/LiveStackFrameInfo
  9386. ciInstanceKlass java/lang/StackFrameInfo 1 1 142 10 7 12 1 1 1 9 7 12 1 1 1 9 7 1 9 12 1 1 11 7 12 1 1 1 9 12 1 1 11 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 11 12 1 11 12 1 1 11 12 1 10 12 1 1 9 12 1 1 10 12 1 1 10 7 12 1 1 10 12 1 1 11 12 1 1 9 12 1 1 10 7 1 10 12 1 9 12 1 1 10 12 1 1 100 1 8 1 10 12 1 10 7 12 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 7 1 1 1 1 1 1
  9387. staticfield java/lang/StackFrameInfo JLIA Ljdk/internal/access/JavaLangInvokeAccess; java/lang/invoke/MethodHandleImpl$1
  9388. ciInstanceKlass java/lang/LiveStackFrameInfo 0 0 97 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 9 12 1 9 12 1 9 12 1 1 7 1 10 12 1 1 10 12 1 8 1 10 12 1 1 8 1 8 1 8 1 10 100 1 10 12 1 100 1 10 12 1 7 1 7 1 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1
  9389. ciInstanceKlass java/lang/LiveStackFrame 0 0 135 100 1 10 100 12 1 1 1 11 7 12 1 1 1 11 12 1 10 7 12 1 1 1 100 1 8 1 10 12 1 1 10 7 12 1 1 1 9 100 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 11 12 1 10 12 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 100 1 8 1 1 12 10 1 1 1 8 1 1 1 8 1 1 1 8 1 1 1 8 1 1 8 1 1 1 8 1 1 8 1
  9390. instanceKlass java/lang/StackStreamFactory$StackFrameTraverser
  9391. ciInstanceKlass java/lang/StackStreamFactory$AbstractStackWalker 1 1 375 7 1 7 1 3 10 7 12 1 1 1 10 7 12 1 1 10 7 12 1 1 1 9 12 1 1 10 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 9 12 1 1 9 12 1 1 10 12 1 1 9 7 12 1 1 1 10 12 1 1 10 12 1 9 12 1 1 10 7 12 1 1 1 10 12 1 1 9 12 1 1 9 7 12 1 1 1 7 1 10 8 1 10 12 1 1 10 12 1 8 1 10 12 1 1 10 100 12 1 1 1 100 1 8 1 10 12 1 8 1 10 12 10 7 12 1 1 9 12 1 8 1 5 0 8 1 8 1 9 12 1 1 10 12 1 1 18 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 9 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 8 1 10 12 1 10 12 1 10 12 1 10 12 1 1 8 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 10 12 1 9 12 1 8 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 8 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 7 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 15 10 100 12 1 1 1 1 1 1 1 1 100 1 100 1 1
  9392. ciInstanceKlass jdk/internal/module/Modules 1 1 504 10 7 12 1 1 1 9 7 12 1 1 1 11 7 12 1 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 11 12 1 11 12 1 11 12 1 11 12 1 1 10 7 12 1 1 1 10 100 12 1 1 1 18 12 1 1 10 7 12 1 1 1 7 1 10 7 12 1 1 1 10 100 12 1 1 1 10 100 12 1 1 10 12 1 1 11 12 1 9 12 1 1 11 7 12 1 1 1 10 12 1 1 10 10 12 1 10 9 12 1 1 10 100 12 1 1 10 12 1 1 10 100 12 1 1 100 1 11 100 12 1 1 1 10 100 12 1 1 1 11 100 12 1 1 10 12 1 1 10 100 12 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 11 12 1 1 18 12 1 1 11 100 12 1 1 10 100 12 1 1 1 11 100 12 1 1 1 7 1 11 12 1 1 11 7 12 1 1 1 11 12 1 1 10 12 1 1 10 100 12 1 1 18 12 1 1 11 12 1 1 18 12 1 1 11 12 1 1 10 12 1 18 18 10 12 1 1 9 12 1 1 11 7 12 1 1 1 100 1 10 11 12 1 11 12 1 1 11 12 1 1 10 100 1 10 12 1 1 10 100 12 1 1 10 12 1 1 11 12 10 12 1 1 7 1 10 18 12 1 10 12 1 1 7 1 8 1 10 12 1 10 100 12 1 1 18 12 1 11 11 12 10 12 1 10 10 100 1 18 12 1 10 10 10 7 12 1 1 10 7 12 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 10 12 1 16 16 15 10 12 1 16 1 16 1 15 10 12 1 16 1 16 1 15 10 12 16 1 15 10 16 1 15 10 12 16 1 15 10 12 16 15 10 12 16 15 10 12 15 10 100 12 1 1 1 1 1 1 100 1 100 1 1
  9393. staticfield jdk/internal/module/Modules JLA Ljdk/internal/access/JavaLangAccess; java/lang/System$2
  9394. staticfield jdk/internal/module/Modules JLMA Ljdk/internal/access/JavaLangModuleAccess; java/lang/module/ModuleDescriptor$1
  9395. staticfield jdk/internal/module/Modules $assertionsDisabled Z 1
  9396. instanceKlass org/eclipse/sisu/bean/BeanScheduler$Pending
  9397. instanceKlass org/apache/maven/artifact/versioning/ComparableVersion$ListItem
  9398. ciInstanceKlass java/util/ArrayList 1 1 509 10 7 12 1 1 1 7 1 9 7 12 1 1 1 9 12 1 100 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 9 12 1 11 7 12 1 1 1 9 12 1 1 11 12 1 1 7 10 7 12 1 1 1 9 12 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 100 1 7 1 10 12 1 10 10 7 12 1 1 1 10 7 12 1 1 10 12 1 100 1 10 10 12 10 12 1 1 10 12 1 1 10 12 1 10 12 10 12 1 1 7 1 10 12 1 1 10 12 1 1 10 12 1 100 1 10 11 12 1 1 11 7 12 1 1 1 11 12 1 10 12 1 10 12 1 10 12 1 1 100 1 10 12 1 1 10 10 12 1 1 10 12 1 8 1 8 1 8 1 8 1 10 12 1 1 10 12 1 1 11 12 1 7 1 10 7 12 1 1 10 12 1 10 12 1 1 10 100 12 1 1 10 12 1 10 100 12 1 1 1 11 100 12 1 1 1 10 12 1 100 1 8 1 10 7 1 10 12 1 7 1 10 12 1 10 12 1 1 7 1 10 12 1 10 12 1 1 11 7 12 1 1 7 1 10 12 1 10 12 1 1 11 7 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 11 100 12 1 1 10 12 1 1 7 1 7 1 7 1 1 1 1 5 0 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 1 1 1 1
  9399. staticfield java/util/ArrayList EMPTY_ELEMENTDATA [Ljava/lang/Object; 0 [Ljava/lang/Object;
  9400. staticfield java/util/ArrayList DEFAULTCAPACITY_EMPTY_ELEMENTDATA [Ljava/lang/Object; 0 [Ljava/lang/Object;
  9401. ciInstanceKlass java/util/RandomAccess 1 0 7 100 1 100 1 1 1
  9402. ciMethod java/util/ArrayList <init> ()V 246 0 759857 0 -1
  9403. ciInstanceKlass java/util/Comparator 1 1 288 10 7 12 1 1 1 10 7 12 1 1 1 18 12 1 1 7 1 7 1 11 12 1 1 11 12 1 11 12 1 11 12 1 1 11 12 1 1 11 12 1 1 10 12 1 9 7 12 1 1 1 100 1 10 12 1 1 18 12 1 18 12 18 12 18 12 18 12 10 100 12 1 1 1 10 7 12 1 1 1 8 1 10 12 1 1 8 1 8 1 8 1 8 1 8 1 10 12 1 10 12 1 8 10 7 1 10 12 1 8 10 12 1 8 1 10 12 1 10 12 1 8 1 10 12 1 1 100 1 8 1 7 1 8 1 8 1 7 1 8 1 8 1 100 1 100 1 8 1 10 12 1 11 12 1 1 10 7 12 1 1 11 12 1 1 10 7 12 1 1 11 12 1 1 10 7 12 1 1 11 12 1 7 1 11 12 1 11 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 11 12 3 3 15 11 12 15 11 12 15 11 12 15 11 12 15 11 12 15 10 7 12 1 1 1 1 100 1 1 1 100 1 100 1 1
  9404. instanceKlass org/eclipse/jdt/ls/core/internal/preferences/Preferences$ReferencedLibraries$2
  9405. instanceKlass org/eclipse/jdt/ls/core/internal/preferences/Preferences$ReferencedLibraries$1
  9406. instanceKlass java/util/LinkedHashSet
  9407. ciInstanceKlass java/util/HashSet 1 1 303 10 7 12 1 1 1 7 1 10 9 7 12 1 1 1 11 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 7 1 10 10 12 1 1 11 7 12 1 1 1 10 10 12 1 1 10 12 1 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 7 12 1 1 1 10 100 1 7 1 10 12 1 10 7 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 11 7 12 1 1 11 12 1 10 12 1 1 10 100 12 1 1 1 10 12 1 100 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 7 12 1 1 1 8 1 10 12 1 4 4 10 12 1 1 8 1 10 12 1 1 4 10 100 12 1 1 1 100 1 10 12 1 1 11 100 12 1 1 1 100 1 10 12 1 7 1 10 12 1 10 12 1 1 10 12 1 100 1 8 1 10 10 12 1 10 10 7 1 7 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 100 1 7 1 1 1
  9408. staticfield java/util/HashSet PRESENT Ljava/lang/Object; java/lang/Object
  9409. instanceKlass org/eclipse/aether/graph/Dependency$Exclusions
  9410. instanceKlass java/util/Hashtable$KeySet
  9411. instanceKlass com/google/gson/internal/LinkedTreeMap$EntrySet
  9412. instanceKlass org/eclipse/sisu/wire/EntrySetAdapter
  9413. instanceKlass org/eclipse/sisu/wire/EntryMapAdapter$EntrySet
  9414. instanceKlass java/lang/ProcessEnvironment$CheckedKeySet
  9415. instanceKlass com/google/common/collect/Sets$ImprovedAbstractSet
  9416. instanceKlass java/util/concurrent/ConcurrentSkipListMap$KeySet
  9417. instanceKlass com/google/common/collect/Sets$SetView
  9418. instanceKlass java/util/concurrent/ConcurrentSkipListSet
  9419. instanceKlass java/lang/ProcessEnvironment$CheckedEntrySet
  9420. instanceKlass java/util/AbstractMap$1
  9421. instanceKlass java/util/Hashtable$EntrySet
  9422. instanceKlass org/eclipse/osgi/framework/util/CaseInsensitiveDictionaryMap$EntrySet
  9423. instanceKlass org/eclipse/osgi/framework/util/CaseInsensitiveDictionaryMap$KeySet
  9424. instanceKlass org/eclipse/osgi/framework/eventmgr/CopyOnWriteIdentityMap$Snapshot$EntrySet
  9425. instanceKlass java/util/TreeMap$EntrySet
  9426. instanceKlass java/util/LinkedHashMap$LinkedEntrySet
  9427. instanceKlass java/util/TreeMap$KeySet
  9428. instanceKlass java/util/TreeSet
  9429. instanceKlass java/util/LinkedHashMap$LinkedKeySet
  9430. instanceKlass java/util/Collections$SingletonSet
  9431. instanceKlass java/util/WeakHashMap$EntrySet
  9432. instanceKlass java/util/IdentityHashMap$KeySet
  9433. instanceKlass java/util/EnumSet
  9434. instanceKlass jdk/internal/util/ReferencedKeySet
  9435. instanceKlass java/util/HashMap$KeySet
  9436. instanceKlass java/util/WeakHashMap$KeySet
  9437. instanceKlass java/util/Collections$SetFromMap
  9438. instanceKlass java/util/HashSet
  9439. instanceKlass java/util/ImmutableCollections$MapN$1
  9440. instanceKlass java/util/Collections$EmptySet
  9441. instanceKlass java/util/HashMap$EntrySet
  9442. ciInstanceKlass java/util/AbstractSet 1 1 96 10 7 12 1 1 1 100 1 7 1 11 12 1 1 10 7 1 10 12 1 1 100 1 100 1 10 12 1 1 11 7 12 1 1 1 11 12 1 1 10 7 12 1 1 10 7 12 1 1 1 11 10 12 1 1 11 12 1 11 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  9443. ciMethod java/util/HashSet size ()I 516 0 22971 0 104
  9444. ciMethod java/util/HashSet iterator ()Ljava/util/Iterator; 4670 0 29014 0 1400
  9445. ciInstanceKlass java/io/ObjectStreamField 1 1 193 10 7 12 1 1 1 10 7 12 1 1 100 1 10 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 10 7 12 1 1 1 10 12 1 1 9 7 12 1 1 9 7 1 9 7 1 9 7 1 9 7 1 9 7 1 9 7 1 9 7 1 100 1 8 1 10 12 1 10 7 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 10 7 12 1 1 1 10 100 12 1 1 10 12 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 10 9 12 1 1 10 12 1 1 10 12 1 1 7 1 10 10 12 1 1 10 12 1 10 12 1 9 12 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  9446. ciInstanceKlass java/util/SequencedSet 1 1 78 11 7 12 1 1 1 7 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 8 1 1 12 10 1 1 1 8 1 1 1 8 1 1 1 8 1 1 1 8 1 1 1 8 1 1 8 1 1 1 8 1 1 8 1 1 8 1 1 1 8 1 1 8 1 1 8 1
  9447. ciInstanceKlass java/lang/annotation/Annotation 1 0 17 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1
  9448. instanceKlass org/eclipse/jdt/ls/core/internal/handlers/ResponseStore$1
  9449. instanceKlass org/eclipse/ltk/internal/core/refactoring/history/RefactoringHistoryService$1
  9450. ciInstanceKlass java/util/LinkedHashMap 1 1 386 9 7 12 1 1 1 9 12 1 1 9 12 1 9 7 12 1 1 9 12 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 9 12 1 9 12 1 1 9 12 1 10 12 1 1 100 1 10 10 12 1 1 10 12 1 10 12 1 1 9 12 1 1 9 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 10 12 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 9 7 1 10 12 1 10 12 1 1 9 12 1 1 7 1 10 12 1 100 1 100 1 10 10 12 1 1 10 12 1 1 9 12 1 1 7 1 10 7 1 10 12 1 9 12 1 7 1 10 100 1 10 11 7 12 1 1 1 100 1 10 11 7 12 1 1 100 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 100 1 10 12 1 7 1 1 1 1 5 0 1 1 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 100 1 100 1 1 1 1 1 100 1 7 1 1 1 1 1 1 1 1 1
  9451. ciInstanceKlass java/util/SequencedMap 1 1 157 11 7 12 1 1 1 11 100 12 1 1 1 11 7 12 1 1 1 100 1 11 12 1 1 100 1 10 12 1 1 11 12 1 1 11 12 1 1 100 1 10 12 100 1 10 12 1 100 1 10 100 1 10 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 8 1 1 12 10 1 1 1 8 1 1 1 8 1 1 8 1 1 1 8 1 1 1 8 1 1 1 8 1 1 1 8 1 1 1 8 1 1 1 8 1 1 1 8 1 1 8 1
  9452. ciMethod java/util/LinkedHashMap keySet ()Ljava/util/Set; 826 0 17826 0 272
  9453. ciMethod java/util/LinkedHashMap sequencedKeySet ()Ljava/util/SequencedSet; 600 0 7512 0 272
  9454. instanceKlass java/util/LinkedHashMap$Entry
  9455. ciInstanceKlass java/util/HashMap$Node 1 1 95 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 9 12 1 9 12 1 1 7 1 10 10 12 1 1 8 1 10 12 1 10 12 1 1 10 7 12 1 1 1 7 1 11 12 1 1 10 12 1 1 11 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 7 1 1
  9456. instanceKlass java/util/HashMap$TreeNode
  9457. ciInstanceKlass java/util/LinkedHashMap$Entry 1 1 41 10 7 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 100 1 1 1
  9458. ciInstanceKlass java/util/HashMap$KeySet 1 1 129 9 7 12 1 1 1 10 7 12 1 1 1 9 7 12 1 1 1 10 12 1 7 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 7 1 10 12 1 7 1 10 12 1 1 10 12 1 100 1 10 9 12 1 1 9 12 1 9 100 12 1 1 1 11 100 12 1 1 1 9 12 1 1 100 1 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1
  9459. ciMethod java/util/HashMap$KeySet size ()I 3740 0 1635 0 0
  9460. ciMethod java/util/HashMap$KeySet iterator ()Ljava/util/Iterator; 1024 0 14860 0 808
  9461. ciMethod java/util/HashMap$KeySet <init> (Ljava/util/HashMap;)V 292 0 1124 0 0
  9462. instanceKlass java/util/HashMap$ValueIterator
  9463. instanceKlass java/util/HashMap$KeyIterator
  9464. instanceKlass java/util/HashMap$EntryIterator
  9465. ciInstanceKlass java/util/HashMap$HashIterator 1 1 91 9 7 12 1 1 1 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 9 12 1 1 9 12 1 1 9 12 1 9 12 1 9 12 1 100 1 10 100 1 10 9 7 1 100 1 10 9 12 1 9 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  9466. ciMethod java/util/HashMap$HashIterator <init> (Ljava/util/HashMap;)V 982 2048 7800 0 704
  9467. ciMethod java/util/HashMap$HashIterator hasNext ()Z 1024 0 5768 0 88
  9468. ciMethod java/util/HashMap$HashIterator nextNode ()Ljava/util/HashMap$Node; 780 1182 3564 0 560
  9469. ciInstanceKlass java/util/HashMap$KeyIterator 1 1 45 10 7 12 1 1 1 10 7 12 1 1 1 9 7 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1
  9470. ciMethod java/util/HashMap$KeyIterator <init> (Ljava/util/HashMap;)V 1024 0 14859 0 0
  9471. ciMethod java/util/HashMap$KeyIterator next ()Ljava/lang/Object; 1024 0 6555 0 568
  9472. ciInstanceKlass java/util/Arrays$LegacyMergeSort 1 1 45 10 7 12 1 1 1 7 1 8 1 10 12 1 10 7 12 1 1 1 7 1 10 12 1 1 9 7 12 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1
  9473. staticfield java/util/Arrays$LegacyMergeSort userRequested Z 0
  9474. instanceKlass java/util/LinkedHashMap$LinkedValueIterator
  9475. instanceKlass java/util/LinkedHashMap$LinkedEntryIterator
  9476. instanceKlass java/util/LinkedHashMap$LinkedKeyIterator
  9477. ciInstanceKlass java/util/LinkedHashMap$LinkedHashIterator 1 1 100 9 7 12 1 1 1 10 7 12 1 1 1 9 12 1 1 9 7 12 1 1 1 9 12 1 9 12 1 9 12 1 1 9 12 1 9 12 1 100 1 10 100 1 10 9 7 12 1 1 9 12 1 100 1 10 9 7 12 1 1 9 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1
  9478. ciMethod java/util/LinkedHashMap$LinkedHashIterator <init> (Ljava/util/LinkedHashMap;Z)V 1024 0 6707 0 192
  9479. ciMethod java/util/HashSet <init> ()V 1024 0 96124 0 216
  9480. ciMethod java/util/Set add (Ljava/lang/Object;)Z 0 0 1 0 -1
  9481. ciMethod java/util/AbstractSet <init> ()V 1024 0 159014 0 80
  9482. ciMethod java/util/Collections sort (Ljava/util/List;Ljava/util/Comparator;)V 1024 0 4591 0 -1
  9483. ciMethod java/util/HashMap getNode (Ljava/lang/Object;)Ljava/util/HashMap$Node; 1024 20 46422 0 -1
  9484. ciMethod java/util/HashMap <init> ()V 786 0 211935 0 88
  9485. ciMethod java/util/AbstractMap <init> ()V 964 0 278368 0 80
  9486. ciMethod java/lang/Integer valueOf (I)Ljava/lang/Integer; 168 0 177266 0 -1
  9487. ciMethod java/lang/Integer <init> (I)V 530 0 96000 0 -1
  9488. ciMethod java/util/Arrays legacyMergeSort ([Ljava/lang/Object;)V 0 0 1 0 -1
  9489. ciMethod java/util/Arrays sort ([Ljava/lang/Object;)V 464 0 2482 0 0
  9490. ciMethod java/util/Arrays sort ([I)V 778 0 1550 0 0
  9491. ciMethod java/util/Arrays equals ([C[C)Z 598 0 46755 0 -1
  9492. ciMethod java/util/Iterator next ()Ljava/lang/Object; 0 0 1 0 -1
  9493. ciMethod java/util/Iterator hasNext ()Z 0 0 1 0 -1
  9494. ciMethod java/util/Set iterator ()Ljava/util/Iterator; 0 0 1 0 -1
  9495. ciMethod java/util/Set size ()I 0 0 1 0 -1
  9496. ciMethod java/util/Set remove (Ljava/lang/Object;)Z 0 0 1 0 -1
  9497. ciMethod java/lang/String toCharArray ()[C 512 0 237954 0 -1
  9498. ciMethod java/lang/String <init> ([C)V 514 0 5402 0 -1
  9499. ciMethod java/util/Map keySet ()Ljava/util/Set; 0 0 1 0 -1
  9500. ciMethod java/util/Map put (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; 0 0 1 0 -1
  9501. ciMethod java/util/Map get (Ljava/lang/Object;)Ljava/lang/Object; 0 0 1 0 -1
  9502. ciMethod java/lang/Comparable compareTo (Ljava/lang/Object;)I 0 0 1 0 -1
  9503. ciMethod java/lang/Object <init> ()V 1024 0 6318697 0 136
  9504. ciInstanceKlass java/util/NoSuchElementException 0 0 34 10 100 12 1 1 1 10 12 1 10 12 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1
  9505. ciInstanceKlass java/lang/AssertionError 0 0 79 10 100 12 1 1 1 10 12 1 10 100 12 1 1 1 10 100 1 100 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  9506. ciInstanceKlass java/util/LinkedHashMap$LinkedKeySet 1 1 177 9 7 12 1 1 1 10 7 12 1 1 1 9 12 1 1 9 7 12 1 1 1 10 12 1 7 1 10 12 1 10 12 1 1 10 100 12 1 1 1 10 12 1 1 100 1 10 100 12 1 1 1 7 1 10 12 1 1 10 12 1 1 100 1 10 9 12 1 9 12 1 1 9 7 12 1 1 1 11 7 12 1 1 1 9 12 1 9 12 1 9 12 1 100 1 10 100 1 10 10 12 1 1 9 100 1 9 12 10 12 1 1 10 10 12 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  9507. ciInstanceKlass java/util/LinkedHashMap$LinkedKeyIterator 1 1 46 10 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1
  9508. ciInstanceKlass java/util/ComparableTimSort 1 1 199 10 7 12 1 1 1 7 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 9 12 1 3 9 12 1 1 9 12 1 9 12 1 1 100 1 10 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 7 1 11 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 100 1 8 1 10 12 1 10 100 12 1 1 10 100 12 1 1 1 10 7 12 1 1 1 1 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  9509. staticfield java/util/ComparableTimSort $assertionsDisabled Z 1
  9510. ciInstanceKlass java/util/ConcurrentModificationException 0 0 34 10 100 12 1 1 1 10 12 1 10 12 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1
  9511. ciInstanceKlass java/util/DualPivotQuicksort 1 1 331 7 1 100 1 100 1 10 100 12 1 1 1 10 12 1 1 100 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 100 12 1 1 1 9 12 1 1 100 1 9 12 1 1 10 12 1 1 100 1 10 12 1 10 12 1 1 10 12 1 100 1 10 12 1 10 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 1 100 1 10 12 1 10 12 1 10 12 1 1 10 12 10 12 1 10 12 1 10 12 3 10 12 1 10 12 1 10 12 3 3 10 100 12 1 1 1 10 12 1 4 10 12 1 10 12 1 10 12 1 10 12 10 12 1 100 1 10 12 1 10 12 1 10 100 12 1 1 1 10 12 1 6 0 10 12 1 10 12 1 10 12 1 10 12 10 12 1 100 1 10 12 1 10 12 1 1 1 3 1 3 1 3 1 1 3 1 3 1 3 1 3 1 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 100 1 1 100 1 1 1 1 1 1 1 1 1 1 1
  9512. ciInstanceKlass org/eclipse/jdt/core/compiler/CharOperation 1 1 393 7 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 9 12 7 9 12 7 1 9 12 9 12 9 12 9 12 1 1 1 10 12 1 1 1 1 10 7 1 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 7 1 9 12 1 10 100 1 12 1 1 10 12 1 10 12 1 1 1 1 1 1 1 10 12 1 10 12 1 1 1 100 100 1 10 12 1 10 12 1 1 1 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 11 100 1 12 1 11 12 1 1 1 1 1 1 100 1 1 1 10 7 1 12 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 10 12 1 1 1 10 12 10 12 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 10 12 1 10 7 1 1 10 12 1 1 1 10 1 1 1 1 1 1 1 10 12 3 1 1 1 1 10 12 1 1 10 12 1 10 12 1 1 1 1 1 1 10 12 10 12 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 8 1 10 10 12 1 10 100 1 12 1 1 10 12 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1
  9513. staticfield org/eclipse/jdt/core/compiler/CharOperation NO_CHAR [C 0
  9514. staticfield org/eclipse/jdt/core/compiler/CharOperation NO_CHAR_CHAR [[C 0 [[C
  9515. staticfield org/eclipse/jdt/core/compiler/CharOperation NO_STRINGS [Ljava/lang/String; 0 [Ljava/lang/String;
  9516. staticfield org/eclipse/jdt/core/compiler/CharOperation ALL_PREFIX [C 1
  9517. staticfield org/eclipse/jdt/core/compiler/CharOperation COMMA_SEPARATOR [C 1
  9518. staticfield org/eclipse/jdt/core/compiler/CharOperation EMPTY_REGIONS [I 0
  9519. ciInstanceKlass org/eclipse/jdt/internal/compiler/lookup/TypeIds 1 1 331 100 1 100 1 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 3 1 1 3 1 3 1 3 1 3 1 3 1 1 1 1 3 1 3 1 3 1 3 1 3 1 1 3 1 1 3 1 3 1 3 1 3 1 3 1 1 1 1 3 1 3 1 3 1 3 1 3 1 1 1 1 3 1 3 1 3 1 3 1 3 1 1 1 1 3 1 3 1 3 1 3 1 3 1 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 3 1 1 3 1 3 1 3 1 3 1 1 3 1 3 1 3 1 1 1 1 1 1 1 3 1 1 3 1 3 1 1 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1
  9520. ciInstanceKlass org/eclipse/jdt/internal/compiler/lookup/TypeConstants 1 1 1596 7 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 8 1 1 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 8 1 1 1 1 8 1 1 8 1 1 1 8 1 1 8 1 1 1 1 1 8 1 10 7 1 12 1 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 8 1 9 12 8 1 9 12 9 12 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 9 12 8 1 9 12 8 1 9 12 8 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 7 9 12 9 12 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 9 12 8 1 8 1 9 12 8 1 8 1 8 1 9 12 8 1 9 12 8 1 9 12 8 1 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 8 1 9 12 8 1 8 1 9 12 8 1 9 12 8 1 8 1 9 12 8 1 9 12 7 1 10 12 1 1 8 1 8 1 8 1 8 1 9 12 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 9 12 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 9 12 7 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 9 12 8 1 8 1 8 1 8 1 8 1 8 1 8 1 9 12 8 1 9 12 8 1 8 1 8 1 8 1 9 12 8 1 8 1 9 12 8 1 8 1 8 1 8 1 8 1 9 12 8 1 9 12 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 8 1 9 12 9 12 9 12 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 8 1 9 12 9 12 8 1 9 12 8 9 12 8 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 8 1 9 12 9 12 8 1 9 12 9 12 8 1 9 12 8 1 9 12 9 12 8 1 9 12 9 12 9 12 9 12 8 1 9 12 8 1 9 12 1 1 1 1 1 100 1 1 1 100 1 1 1
  9521. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA [C 4
  9522. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVAC [C 5
  9523. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVAX [C 5
  9524. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAKARTA [C 7
  9525. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants LANG [C 4
  9526. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants BASE [C 4
  9527. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants IO [C 2
  9528. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants NIO [C 3
  9529. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants UTIL [C 4
  9530. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ZIP [C 3
  9531. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JDK [C 3
  9532. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ANNOTATION [C 10
  9533. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants REFLECT [C 7
  9534. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants LENGTH [C 6
  9535. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CLONE [C 5
  9536. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants EQUALS [C 6
  9537. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants GETCLASS [C 8
  9538. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants HASHCODE [C 8
  9539. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants TOSTRING [C 8
  9540. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants OBJECT [C 6
  9541. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants MAIN [C 4
  9542. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants SERIALVERSIONUID [C 16
  9543. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants SERIALPERSISTENTFIELDS [C 22
  9544. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants READRESOLVE [C 11
  9545. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants WRITEREPLACE [C 12
  9546. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants READOBJECT [C 10
  9547. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants WRITEOBJECT [C 11
  9548. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CharArray_JAVA_LANG_OBJECT [C 16
  9549. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CharArray_JAVA_LANG_ENUM [C 14
  9550. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CharArray_JAVA_LANG_RECORD [C 16
  9551. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CharArray_JAVA_LANG_RECORD_SLASH [C 16
  9552. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CharArray_JAVA_LANG_ANNOTATION_ANNOTATION [C 31
  9553. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CharArray_JAVA_IO_OBJECTINPUTSTREAM [C 25
  9554. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CharArray_JAVA_IO_OBJECTOUTPUTSTREAM [C 26
  9555. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CharArray_JAVA_IO_OBJECTSTREAMFIELD [C 25
  9556. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ANONYM_PREFIX [C 4
  9557. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ANONYM_SUFFIX [C 4
  9558. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants WILDCARD_NAME [C 1
  9559. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants WILDCARD_SUPER [C 7
  9560. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants WILDCARD_EXTENDS [C 9
  9561. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants WILDCARD_MINUS [C 1
  9562. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants WILDCARD_STAR [C 1
  9563. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants WILDCARD_PLUS [C 1
  9564. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants WILDCARD_CAPTURE_NAME_PREFIX [C 8
  9565. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants WILDCARD_CAPTURE_NAME_SUFFIX [C 4
  9566. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants WILDCARD_CAPTURE_SIGNABLE_NAME_SUFFIX [C 11
  9567. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants WILDCARD_CAPTURE [C 1
  9568. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CAPTURE18 [C 1
  9569. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants BYTE [C 4
  9570. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants SHORT [C 5
  9571. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants INT [C 3
  9572. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants LONG [C 4
  9573. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants FLOAT [C 5
  9574. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants DOUBLE [C 6
  9575. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CHAR [C 4
  9576. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants BOOLEAN [C 7
  9577. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants NULL [C 4
  9578. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants VOID [C 4
  9579. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants VALUE [C 5
  9580. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants VALUES [C 6
  9581. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants VALUEOF [C 7
  9582. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants UPPER_SOURCE [C 6
  9583. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants UPPER_CLASS [C 5
  9584. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants UPPER_RUNTIME [C 7
  9585. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ANNOTATION_PREFIX [C 1
  9586. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ANNOTATION_SUFFIX [C 2
  9587. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants TYPE [C 4
  9588. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants UPPER_FIELD [C 5
  9589. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants UPPER_METHOD [C 6
  9590. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants UPPER_PARAMETER [C 9
  9591. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants UPPER_CONSTRUCTOR [C 11
  9592. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants UPPER_LOCAL_VARIABLE [C 14
  9593. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants UPPER_ANNOTATION_TYPE [C 15
  9594. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants UPPER_PACKAGE [C 7
  9595. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ANONYMOUS_METHOD [C 7
  9596. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants DESERIALIZE_LAMBDA [C 19
  9597. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants LAMBDA_TYPE [C 8
  9598. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants UPPER_MODULE [C 6
  9599. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants UPPER_RECORD_COMPONENT [C 16
  9600. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants YIELD [C 5
  9601. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants STRING_CONCAT_MARKER_1 [C 1
  9602. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants VAR [C 3
  9603. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants RECORD_RESTRICTED_IDENTIFIER [C 6
  9604. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants RECORD_CLASS [C 6
  9605. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants PERMITS [C 7
  9606. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants SEALED [C 6
  9607. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants NON_SEALED [C 10
  9608. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants TYPE_USE_TARGET [C 8
  9609. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants TYPE_PARAMETER_TARGET [C 14
  9610. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ORG [C 3
  9611. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ECLIPSE [C 7
  9612. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CORE [C 4
  9613. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants RUNTIME [C 7
  9614. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants APACHE [C 6
  9615. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants COMMONS [C 7
  9616. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants LANG3 [C 5
  9617. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants COM [C 3
  9618. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants GOOGLE [C 6
  9619. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JDT [C 3
  9620. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants INTERNAL [C 8
  9621. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants COMPILER [C 8
  9622. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants LOOKUP [C 6
  9623. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants TYPEBINDING [C 11
  9624. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants DOM [C 3
  9625. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ITYPEBINDING [C 12
  9626. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants SPRING [C 15
  9627. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_BASE [[C 2 [[C
  9628. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG [[C 2 [[C
  9629. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_IO [[C 2 [[C
  9630. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_ANNOTATION [[C 3 [[C
  9631. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_ANNOTATION_ANNOTATION [[C 4 [[C
  9632. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_ASSERTIONERROR [[C 3 [[C
  9633. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_CLASS [[C 3 [[C
  9634. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_CLASSNOTFOUNDEXCEPTION [[C 3 [[C
  9635. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_NOSUCHFIELDERROR [[C 3 [[C
  9636. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_CLONEABLE [[C 3 [[C
  9637. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_ENUM [[C 3 [[C
  9638. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_EXCEPTION [[C 3 [[C
  9639. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_ERROR [[C 3 [[C
  9640. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_ILLEGALARGUMENTEXCEPTION [[C 3 [[C
  9641. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_INCOMPATIBLECLASSCHANGEERROR [[C 3 [[C
  9642. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_ITERABLE [[C 3 [[C
  9643. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_NOCLASSDEFFOUNDERROR [[C 3 [[C
  9644. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_OBJECT [[C 3 [[C
  9645. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_RECORD [[C 3 [[C
  9646. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_STRING [[C 3 [[C
  9647. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_STRINGBUFFER [[C 3 [[C
  9648. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_STRINGBUILDER [[C 3 [[C
  9649. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_SYSTEM [[C 3 [[C
  9650. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_RUNTIMEEXCEPTION [[C 3 [[C
  9651. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_THROWABLE [[C 3 [[C
  9652. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_REFLECT_CONSTRUCTOR [[C 4 [[C
  9653. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_IO_PRINTSTREAM [[C 3 [[C
  9654. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_IO_SERIALIZABLE [[C 3 [[C
  9655. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_BYTE [[C 3 [[C
  9656. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_SHORT [[C 3 [[C
  9657. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_CHARACTER [[C 3 [[C
  9658. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_INTEGER [[C 3 [[C
  9659. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_LONG [[C 3 [[C
  9660. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_FLOAT [[C 3 [[C
  9661. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_DOUBLE [[C 3 [[C
  9662. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_BOOLEAN [[C 3 [[C
  9663. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_VOID [[C 3 [[C
  9664. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_UTIL_COLLECTION [[C 3 [[C
  9665. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_UTIL_ITERATOR [[C 3 [[C
  9666. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants NEXT [C 4
  9667. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_UTIL_OBJECTS [[C 3 [[C
  9668. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_UTIL_LIST [[C 3 [[C
  9669. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_UTIL_ARRAYS [[C 3 [[C
  9670. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_DEPRECATED [[C 3 [[C
  9671. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants FOR_REMOVAL [C 10
  9672. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants SINCE [C 5
  9673. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_ANNOTATION_DOCUMENTED [[C 4 [[C
  9674. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_ANNOTATION_INHERITED [[C 4 [[C
  9675. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_ANNOTATION_REPEATABLE [[C 4 [[C
  9676. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_OVERRIDE [[C 3 [[C
  9677. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_FUNCTIONAL_INTERFACE [[C 3 [[C
  9678. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_ANNOTATION_RETENTION [[C 4 [[C
  9679. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_SUPPRESSWARNINGS [[C 3 [[C
  9680. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_ANNOTATION_TARGET [[C 4 [[C
  9681. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_ANNOTATION_RETENTIONPOLICY [[C 4 [[C
  9682. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_ANNOTATION_ELEMENTTYPE [[C 4 [[C
  9683. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JDK_INTERNAL_PREVIEW_FEATURE [[C 3 [[C
  9684. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JDK_INTERNAL_JAVAC_PREVIEW_FEATURE [[C 4 [[C
  9685. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_REFLECT_FIELD [[C 4 [[C
  9686. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_REFLECT_METHOD [[C 4 [[C
  9687. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_IO_CLOSEABLE [[C 3 [[C
  9688. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_IO_OBJECTSTREAMEXCEPTION [[C 3 [[C
  9689. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_IO_EXTERNALIZABLE [[C 3 [[C
  9690. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_IO_IOEXCEPTION [[C 3 [[C
  9691. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_IO_OBJECTOUTPUTSTREAM [[C 3 [[C
  9692. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_IO_OBJECTINPUTSTREAM [[C 3 [[C
  9693. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_IO_IO [[C 3 [[C
  9694. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_NIO_FILE_FILES [[C 4 [[C
  9695. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVAX_RMI_CORBA_STUB [[C 4 [[C
  9696. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_SAFEVARARGS [[C 3 [[C
  9697. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants INVOKE [C 6
  9698. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_INVOKE_METHODHANDLE_POLYMORPHICSIGNATURE [[C 5 [[C
  9699. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_INVOKE_METHODHANDLE_$_POLYMORPHICSIGNATURE [[C 4 [[C
  9700. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_INVOKE_LAMBDAMETAFACTORY [[C 4 [[C
  9701. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_INVOKE_SERIALIZEDLAMBDA [[C 4 [[C
  9702. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_INVOKE_METHODHANDLES [[C 4 [[C
  9703. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_INVOKE_METHODHANDLE [[C 4 [[C
  9704. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_INVOKE_VARHANDLE [[C 4 [[C
  9705. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_INVOKE_STRING_CONCAT_FACTORY [[C 4 [[C
  9706. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_AUTOCLOSEABLE [[C 3 [[C
  9707. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CLOSE [C 5
  9708. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_RUNTIME_OBJECTMETHODS [[C 4 [[C
  9709. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_RUNTIME_SWITCHBOOTSTRAPS [[C 4 [[C
  9710. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_INVOKE_CONSTANTBOOTSTRAP [[C 4 [[C
  9711. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants PRIMITIVE_CLASS [C 14
  9712. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants PRIMITIVE_CLASS__SIGNATURE [C 93
  9713. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants GET_STATIC_FINAL [C 14
  9714. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants GET_STATIC_FINAL__SIGNATURE [C 94
  9715. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_ENUM_ENUMDESC [[C 3 [[C
  9716. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_CONSTANT_CLASSDESC [[C 4 [[C
  9717. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants GUAVA_CLOSEABLES [[C 5 [[C
  9718. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants APACHE_IOUTILS [[C 5 [[C
  9719. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants APACHE_DBUTILS [[C 5 [[C
  9720. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CLOSE_QUIETLY [C 12
  9721. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants closeMethods [Lorg/eclipse/jdt/internal/compiler/lookup/TypeConstants$CloseMethodRecord; 9 [Lorg/eclipse/jdt/internal/compiler/lookup/TypeConstants$CloseMethodRecord;
  9722. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_IO_WRAPPER_CLOSEABLES [[C 18 [[C
  9723. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_UTIL_ZIP_WRAPPER_CLOSEABLES [[C 12 [[C
  9724. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants OTHER_WRAPPER_CLOSEABLES [[[C 5 [[[C
  9725. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_IO_RESOURCE_FREE_CLOSEABLES [[C 7 [[C
  9726. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_UTIL_STREAM [[C 3 [[C
  9727. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants RESOURCE_FREE_CLOSEABLE_J_U_STREAMS [[C 4 [[C
  9728. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ONE_UTIL_STREAMEX [[C 3 [[C
  9729. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants RESOURCE_FREE_CLOSEABLE_STREAMEX [[C 5 [[C
  9730. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CHANNELS [C 8
  9731. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants FLUENT_RESOURCE_CLASSES [[[C 16 [[[C
  9732. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_UTIL_STREAM__STREAM [[C 4 [[C
  9733. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants FILTER [C 6
  9734. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ASSERT_CLASS [C 6
  9735. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ASSERTIONS_CLASS [C 10
  9736. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ORG_ECLIPSE_CORE_RUNTIME_ASSERT [[C 5 [[C
  9737. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants IS_NOTNULL [C 9
  9738. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JUNIT [C 5
  9739. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants FRAMEWORK [C 9
  9740. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JUPITER [C 7
  9741. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants PARAMS [C 6
  9742. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants PROVIDER [C 8
  9743. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants API [C 3
  9744. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JUNIT_FRAMEWORK_ASSERT [[C 3 [[C
  9745. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ORG_JUNIT_ASSERT [[C 3 [[C
  9746. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ORG_JUNIT_JUPITER_API_ASSERTIONS [[C 5 [[C
  9747. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ASSERT_NULL [C 10
  9748. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ASSERT_NOTNULL [C 13
  9749. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ASSERT_TRUE [C 10
  9750. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ASSERT_FALSE [C 11
  9751. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants METHOD_SOURCE [C 12
  9752. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ORG_JUNIT_METHOD_SOURCE [[C 6 [[C
  9753. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants VALIDATE_CLASS [C 8
  9754. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ORG_APACHE_COMMONS_LANG_VALIDATE [[C 5 [[C
  9755. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ORG_APACHE_COMMONS_LANG3_VALIDATE [[C 5 [[C
  9756. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ORG_ECLIPSE_JDT_INTERNAL_COMPILER_LOOKUP_TYPEBINDING [[C 7 [[C
  9757. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ORG_ECLIPSE_JDT_CORE_DOM_ITYPEBINDING [[C 6 [[C
  9758. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants IS_TRUE [C 6
  9759. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants NOT_NULL [C 7
  9760. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants COM_GOOGLE_COMMON_BASE_PRECONDITIONS [[C 5 [[C
  9761. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CHECK_NOT_NULL [C 12
  9762. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CHECK_ARGUMENT [C 13
  9763. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CHECK_STATE [C 10
  9764. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants REQUIRE_NON_NULL [C 14
  9765. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants INJECT_PACKAGE [C 6
  9766. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants INJECT_TYPE [C 6
  9767. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVAX_ANNOTATION_INJECT_INJECT [[C 3 [[C
  9768. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAKARTA_ANNOTATION_INJECT_INJECT [[C 3 [[C
  9769. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants COM_GOOGLE_INJECT_INJECT [[C 4 [[C
  9770. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants OPTIONAL [C 8
  9771. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants IS_INSTANCE [C 10
  9772. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants NON_NULL [C 7
  9773. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants IS_NULL [C 6
  9774. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_UTIL_MAP [[C 3 [[C
  9775. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants GET [C 3
  9776. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants REMOVE [C 6
  9777. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants REMOVE_ALL [C 9
  9778. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CONTAINS_ALL [C 11
  9779. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants RETAIN_ALL [C 9
  9780. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CONTAINS_KEY [C 11
  9781. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CONTAINS_VALUE [C 13
  9782. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CONTAINS [C 8
  9783. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants INDEX_OF [C 7
  9784. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants LAST_INDEX_OF [C 11
  9785. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants AUTOWIRED [C 9
  9786. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants BEANS [C 5
  9787. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants FACTORY [C 7
  9788. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ORG_SPRING_AUTOWIRED [[C 6 [[C
  9789. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants REQUIRED [C 8
  9790. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants INIT [C 6
  9791. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CLINIT [C 8
  9792. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants SYNTHETIC_SWITCH_ENUM_TABLE [C 14
  9793. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants SYNTHETIC_ENUM_VALUES [C 11
  9794. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants SYNTHETIC_ASSERT_DISABLED [C 19
  9795. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants SYNTHETIC_CLASS [C 6
  9796. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants SYNTHETIC_OUTER_LOCAL_PREFIX [C 4
  9797. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants SYNTHETIC_ENCLOSING_INSTANCE_PREFIX [C 5
  9798. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants SYNTHETIC_ACCESS_METHOD_PREFIX [C 7
  9799. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants SYNTHETIC_ENUM_CONSTANT_INITIALIZATION_METHOD_PREFIX [C 30
  9800. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants SYNTHETIC_STATIC_FACTORY [C 9
  9801. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants DEFAULT_LOCATION__PARAMETER [C 9
  9802. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants DEFAULT_LOCATION__RETURN_TYPE [C 11
  9803. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants DEFAULT_LOCATION__FIELD [C 5
  9804. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants DEFAULT_LOCATION__TYPE_ARGUMENT [C 13
  9805. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants DEFAULT_LOCATION__TYPE_PARAMETER [C 14
  9806. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants DEFAULT_LOCATION__TYPE_BOUND [C 10
  9807. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants DEFAULT_LOCATION__ARRAY_CONTENTS [C 14
  9808. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants DEFAULT_LOCATION__RECORD_COMPONENT [C 16
  9809. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants PACKAGE_INFO_NAME [C 12
  9810. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants MODULE_INFO_NAME [C 11
  9811. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants MODULE_INFO_FILE_NAME [C 16
  9812. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants MODULE_INFO_CLASS_NAME [C 17
  9813. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_DOT_BASE [C 9
  9814. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JDK_INTERNAL_VALUEBASED [[C 3 [[C
  9815. instanceKlass org/eclipse/jdt/internal/compiler/ast/Javadoc
  9816. instanceKlass org/eclipse/jdt/internal/compiler/ast/MemberValuePair
  9817. instanceKlass org/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration
  9818. instanceKlass org/eclipse/jdt/internal/compiler/ast/ImportReference
  9819. instanceKlass org/eclipse/jdt/internal/compiler/ast/ModuleReference
  9820. instanceKlass org/eclipse/jdt/internal/compiler/ast/ModuleStatement
  9821. instanceKlass org/eclipse/jdt/internal/compiler/ast/ModuleDeclaration
  9822. instanceKlass org/eclipse/jdt/internal/compiler/ast/Statement
  9823. instanceKlass org/eclipse/jdt/internal/compiler/ast/AbstractMethodDeclaration
  9824. ciInstanceKlass org/eclipse/jdt/internal/compiler/ast/ASTNode 1 1 1459 7 1 7 1 7 1 100 1 1 1 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 1 3 1 1 3 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 7 1 12 1 1 9 12 7 1 9 12 7 1 9 12 7 1 9 12 7 1 9 12 7 1 9 12 7 1 9 12 1 1 1 1 10 12 9 12 1 1 1 1 10 7 1 12 1 1 7 1 9 12 1 1 9 12 1 9 12 1 1 9 7 1 9 12 1 10 7 1 12 1 100 1 10 7 1 12 1 1 9 12 1 1 10 7 1 12 1 1 9 12 1 1 10 12 1 1 7 1 100 1 9 12 1 100 1 10 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 9 7 1 12 1 10 12 1 10 12 1 9 12 1 1 10 7 1 12 1 10 12 1 9 12 1 100 1 5 0 7 1 9 12 1 10 12 1 1 10 12 1 7 1 10 12 1 1 10 12 1 10 12 1 1 10 12 10 12 1 10 12 1 10 12 1 10 10 12 1 1 9 12 10 10 12 1 9 12 10 12 1 10 7 1 12 1 1 10 12 1 1 10 12 1 1 9 7 1 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 1 1 1 1 1 10 7 1 9 12 9 12 10 12 1 1 1 1 1 1 1 10 7 1 12 1 10 12 1 1 10 12 1 9 12 1 9 12 1 100 1 9 12 1 10 12 9 10 12 1 1 10 12 1 1 9 7 1 12 1 10 10 7 1 12 1 1 9 7 1 12 1 1 9 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 9 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 9 10 10 12 1 1 9 10 12 1 10 100 1 1 1 1 1 1 1 1 1 10 12 1 7 1 9 10 10 12 1 7 1 9 10 12 1 10 12 1 10 12 1 10 1 1 1 1 1 1 1 1 8 1 10 7 1 12 1 1 10 12 10 12 1 1 1 1 1 1 1 1 8 1 1 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 1 1 10 7 1 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 100 100 1 1 10 12 1 1 9 7 1 12 1 10 12 1 1 1 1 7 1 100 1 10 12 1 100 1 9 12 1 11 12 1 10 12 10 7 1 12 1 1 10 12 1 10 12 1 1 7 1 10 12 1 100 1 10 12 1 1 10 12 1 9 12 1 10 12 1 10 10 100 1 12 1 1 10 12 1 9 12 1 1 10 12 1 10 12 1 3 10 12 1 9 12 1 10 12 1 1 10 7 1 12 1 7 1 11 12 1 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 7 1 10 12 1 1 1 1 10 9 12 1 100 1 7 1 10 12 1 1 9 12 9 10 12 1 1 9 5 0 9 12 1 1 9 100 1 12 1 9 12 1 10 12 1 1 9 12 1 9 12 1 10 12 1 1 7 1 10 12 1 1 10 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 100 1 12 1 1 10 12 1 10 12 1 1 100 1 10 12 1 10 12 1 100 1 10 12 1 11 100 1 12 1 1 10 12 1 1 10 12 1 1 9 12 1 10 12 1 1 10 11 12 1 1 11 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 100 9 10 12 1 1 9 100 1 5 0 100 1 10 12 1 10 12 1 1 9 100 1 12 10 12 1 10 12 1 9 1 1 1 1 1 1 100 1 9 12 1 10 10 12 1 1 1 1 1 1 100 1 1 10 12 1 10 12 1 9 100 1 10 12 1 1 9 9 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 10 10 12 1 5 0 10 12 1 1 10 12 1 10 12 1 1 9 10 12 1 1 9 10 9 12 10 12 1 1 10 12 1 5 0 9 12 9 12 1 10 7 1 12 1 1 9 9 9 9 10 12 1 1 9 9 9 9 10 12 1 100 1 9 12 9 10 12 1 1 10 12 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 10 11 100 1 12 1 11 12 1 1 1 1 1 1 1 1 1 1 1 100 1 10 10 12 11 12 1 10 10 12 1 100 1 9 12 1 1 9 100 1 9 12 1 10 12 1 1 10 9 5 0 9 100 1 12 1 1 10 12 1 1 10 12 1 10 12 1 9 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 9 9 12 1 1 10 12 1 1 10 7 1 12 1 1 10 9 9 12 1 5 0 10 12 1 1 9 100 1 12 1 9 12 1 9 12 100 1 1 1 1 1 100 1 1 5 0 10 12 1 1 10 12 1 1 1 1 1 1 1 1 10 10 10 12 1 1 1 1 1 1 1 1 1
  9825. staticfield org/eclipse/jdt/internal/compiler/ast/ASTNode NO_FIELD_DECLARATIONS [Lorg/eclipse/jdt/internal/compiler/ast/FieldDeclaration; 0 [Lorg/eclipse/jdt/internal/compiler/ast/FieldDeclaration;
  9826. staticfield org/eclipse/jdt/internal/compiler/ast/ASTNode NO_ARGUMENTS [Lorg/eclipse/jdt/internal/compiler/ast/Argument; 0 [Lorg/eclipse/jdt/internal/compiler/ast/Argument;
  9827. staticfield org/eclipse/jdt/internal/compiler/ast/ASTNode NO_RECORD_COMPONENTS [Lorg/eclipse/jdt/internal/compiler/ast/RecordComponent; 0 [Lorg/eclipse/jdt/internal/compiler/ast/RecordComponent;
  9828. staticfield org/eclipse/jdt/internal/compiler/ast/ASTNode NO_TYPE_PATTERNS [Lorg/eclipse/jdt/internal/compiler/ast/TypePattern; 0 [Lorg/eclipse/jdt/internal/compiler/ast/TypePattern;
  9829. staticfield org/eclipse/jdt/internal/compiler/ast/ASTNode NO_VARIABLES [Lorg/eclipse/jdt/internal/compiler/lookup/LocalVariableBinding; 0 [Lorg/eclipse/jdt/internal/compiler/lookup/LocalVariableBinding;
  9830. staticfield org/eclipse/jdt/internal/compiler/ast/ASTNode NO_ANNOTATIONS [Lorg/eclipse/jdt/internal/compiler/ast/Annotation; 0 [Lorg/eclipse/jdt/internal/compiler/ast/Annotation;
  9831. staticfield org/eclipse/jdt/internal/compiler/ast/ASTNode $assertionsDisabled Z 1
  9832. instanceKlass org/eclipse/jdt/internal/compiler/ast/Clinit
  9833. instanceKlass org/eclipse/jdt/internal/compiler/ast/ConstructorDeclaration
  9834. instanceKlass org/eclipse/jdt/internal/compiler/ast/MethodDeclaration
  9835. ciInstanceKlass org/eclipse/jdt/internal/compiler/ast/AbstractMethodDeclaration 1 1 889 7 1 7 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 9 12 9 12 9 12 1 1 1 1 1 1 100 1 10 12 1 100 1 10 7 1 10 100 1 10 1 1 1 1 1 9 12 1 1 1 9 12 9 12 10 12 1 10 7 1 12 1 1 10 7 1 12 1 1 9 7 1 12 1 1 10 7 1 12 1 1 9 12 1 9 7 1 12 1 1 10 12 1 1 1 1 1 1 1 1 1 100 100 1 5 0 9 12 1 1 9 12 1 1 5 0 9 12 1 5 0 9 5 0 10 12 1 1 1 1 1 1 10 12 1 1 10 12 1 10 12 1 9 12 7 1 9 7 1 12 1 10 12 1 1 10 12 1 1 1 1 1 1 100 1 9 12 9 12 1 9 7 1 12 1 1 9 7 1 12 1 1 100 1 10 12 1 1 10 100 1 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 100 1 1 10 12 1 10 7 1 12 1 1 9 7 1 5 0 10 7 1 12 1 1 5 0 10 12 1 10 12 1 10 12 1 1 9 12 1 9 12 1 9 12 1 10 12 1 1 10 12 1 9 12 1 10 12 1 1 5 0 100 1 10 12 1 9 12 1 1 10 12 1 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 9 7 1 12 1 1 9 7 1 12 1 10 12 1 1 9 100 1 10 7 1 12 1 1 100 1 10 100 1 12 1 1 10 12 1 1 9 7 1 12 1 1 10 7 1 12 9 12 1 9 12 1 10 12 1 9 9 12 1 9 12 1 10 12 1 9 12 1 10 12 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 9 12 10 7 1 12 1 10 12 1 9 12 1 9 12 1 1 10 7 1 12 1 1 10 12 1 1 10 7 1 12 1 1 9 12 1 10 12 1 18 12 1 1 10 12 1 1 10 12 1 10 12 9 12 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 100 1 1 1 1 1 1 1 1 100 1 1 1 1 1 9 12 1 9 12 1 1 9 12 1 1 10 12 1 1 1 100 1 10 12 1 1 9 100 1 12 1 9 12 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 9 12 10 7 1 12 10 12 1 10 12 1 9 10 12 1 1 10 100 1 12 1 1 10 12 1 1 10 100 1 8 1 10 12 1 10 12 1 9 12 10 12 1 10 12 9 12 10 100 1 10 8 1 10 10 12 1 1 1 1 1 1 100 10 100 1 3 8 1 10 12 1 1 1 1 1 10 12 10 12 1 10 12 10 12 10 12 1 1 10 12 1 10 12 1 1 5 0 9 3 10 12 1 1 1 9 9 12 9 10 12 1 9 12 10 12 1 9 12 1 10 10 12 1 10 12 1 1 10 12 1 1 10 9 5 0 10 12 1 9 12 1 1 10 100 1 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 9 100 1 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 9 100 1 12 1 10 12 1 10 100 1 12 1 100 1 10 100 1 9 12 1 1 1 1 1 1 1 1 10 12 1 10 12 1 10 12 1 100 1 3 10 12 1 1 10 12 1 1 10 100 1 12 1 1 9 12 1 9 12 1 10 12 1 1 10 12 1 1 1 1 1 1 100 1 10 12 1 9 12 10 12 1 1 1 1 1 1 1 1 9 10 12 1 1 1 1 10 12 1 1 1 1 1 10 7 1 12 1 1 15 1 16 10 12 15 16 1 100 1 100 1 1 1
  9836. instanceKlass org/eclipse/jdt/internal/compiler/lookup/ImportBinding
  9837. instanceKlass org/eclipse/jdt/internal/compiler/lookup/ProblemBinding
  9838. instanceKlass org/eclipse/jdt/internal/compiler/lookup/Scope$1
  9839. instanceKlass org/eclipse/jdt/internal/compiler/lookup/ModuleBinding
  9840. instanceKlass org/eclipse/jdt/internal/compiler/lookup/PackageBinding
  9841. instanceKlass org/eclipse/jdt/internal/compiler/lookup/MethodBinding
  9842. instanceKlass org/eclipse/jdt/internal/compiler/lookup/VariableBinding
  9843. instanceKlass org/eclipse/jdt/internal/compiler/lookup/TypeBinding
  9844. ciInstanceKlass org/eclipse/jdt/internal/compiler/lookup/Binding 1 1 243 7 1 7 1 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 7 1 9 12 7 1 9 12 7 1 9 12 7 1 9 12 7 1 9 12 9 12 9 12 9 12 7 1 9 12 7 1 9 12 9 12 9 12 9 12 7 1 9 12 7 1 9 12 7 1 9 12 7 1 9 12 7 1 9 12 9 12 9 12 9 12 7 1 9 12 7 1 9 12 1 1 100 1 1 10 12 9 12 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 10 12 1 1 1 1 1 100 1 1 1 10 12 1 1 1 1 10 12 1 1 1 1 1 1 1
  9845. staticfield org/eclipse/jdt/internal/compiler/lookup/Binding NO_MODULES [Lorg/eclipse/jdt/internal/compiler/lookup/ModuleBinding; 0 [Lorg/eclipse/jdt/internal/compiler/lookup/ModuleBinding;
  9846. staticfield org/eclipse/jdt/internal/compiler/lookup/Binding NO_PACKAGES [Lorg/eclipse/jdt/internal/compiler/lookup/PackageBinding; 0 [Lorg/eclipse/jdt/internal/compiler/lookup/PackageBinding;
  9847. staticfield org/eclipse/jdt/internal/compiler/lookup/Binding NO_PLAIN_PACKAGES [Lorg/eclipse/jdt/internal/compiler/lookup/PlainPackageBinding; 0 [Lorg/eclipse/jdt/internal/compiler/lookup/PlainPackageBinding;
  9848. staticfield org/eclipse/jdt/internal/compiler/lookup/Binding NO_TYPES [Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding; 0 [Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding;
  9849. staticfield org/eclipse/jdt/internal/compiler/lookup/Binding NO_REFERENCE_TYPES [Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding; 0 [Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding;
  9850. staticfield org/eclipse/jdt/internal/compiler/lookup/Binding NO_PARAMETERS [Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding; 0 [Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding;
  9851. staticfield org/eclipse/jdt/internal/compiler/lookup/Binding NO_EXCEPTIONS [Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding; 0 [Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding;
  9852. staticfield org/eclipse/jdt/internal/compiler/lookup/Binding ANY_EXCEPTION [Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding; 1 [Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding;
  9853. staticfield org/eclipse/jdt/internal/compiler/lookup/Binding NO_FIELDS [Lorg/eclipse/jdt/internal/compiler/lookup/FieldBinding; 0 [Lorg/eclipse/jdt/internal/compiler/lookup/FieldBinding;
  9854. staticfield org/eclipse/jdt/internal/compiler/lookup/Binding NO_METHODS [Lorg/eclipse/jdt/internal/compiler/lookup/MethodBinding; 0 [Lorg/eclipse/jdt/internal/compiler/lookup/MethodBinding;
  9855. staticfield org/eclipse/jdt/internal/compiler/lookup/Binding NO_PERMITTED_TYPES [Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding; 0 [Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding;
  9856. staticfield org/eclipse/jdt/internal/compiler/lookup/Binding NO_SUPERINTERFACES [Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding; 0 [Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding;
  9857. staticfield org/eclipse/jdt/internal/compiler/lookup/Binding NO_MEMBER_TYPES [Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding; 0 [Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding;
  9858. staticfield org/eclipse/jdt/internal/compiler/lookup/Binding NO_TYPE_VARIABLES [Lorg/eclipse/jdt/internal/compiler/lookup/TypeVariableBinding; 0 [Lorg/eclipse/jdt/internal/compiler/lookup/TypeVariableBinding;
  9859. staticfield org/eclipse/jdt/internal/compiler/lookup/Binding NO_ANNOTATIONS [Lorg/eclipse/jdt/internal/compiler/lookup/AnnotationBinding; 0 [Lorg/eclipse/jdt/internal/compiler/lookup/AnnotationBinding;
  9860. staticfield org/eclipse/jdt/internal/compiler/lookup/Binding NO_ELEMENT_VALUE_PAIRS [Lorg/eclipse/jdt/internal/compiler/lookup/ElementValuePair; 0 [Lorg/eclipse/jdt/internal/compiler/lookup/ElementValuePair;
  9861. staticfield org/eclipse/jdt/internal/compiler/lookup/Binding NO_PARAMETER_NAMES [[C 0 [[C
  9862. staticfield org/eclipse/jdt/internal/compiler/lookup/Binding NO_COMPONENTS [Lorg/eclipse/jdt/internal/compiler/lookup/RecordComponentBinding; 0 [Lorg/eclipse/jdt/internal/compiler/lookup/RecordComponentBinding;
  9863. staticfield org/eclipse/jdt/internal/compiler/lookup/Binding UNINITIALIZED_FIELDS [Lorg/eclipse/jdt/internal/compiler/lookup/FieldBinding; 0 [Lorg/eclipse/jdt/internal/compiler/lookup/FieldBinding;
  9864. staticfield org/eclipse/jdt/internal/compiler/lookup/Binding UNINITIALIZED_METHODS [Lorg/eclipse/jdt/internal/compiler/lookup/MethodBinding; 0 [Lorg/eclipse/jdt/internal/compiler/lookup/MethodBinding;
  9865. staticfield org/eclipse/jdt/internal/compiler/lookup/Binding UNINITIALIZED_REFERENCE_TYPES [Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding; 0 [Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding;
  9866. staticfield org/eclipse/jdt/internal/compiler/lookup/Binding NO_INFERENCE_VARIABLES [Lorg/eclipse/jdt/internal/compiler/lookup/InferenceVariable; 0 [Lorg/eclipse/jdt/internal/compiler/lookup/InferenceVariable;
  9867. staticfield org/eclipse/jdt/internal/compiler/lookup/Binding NO_TYPE_BOUNDS [Lorg/eclipse/jdt/internal/compiler/lookup/TypeBound; 0 [Lorg/eclipse/jdt/internal/compiler/lookup/TypeBound;
  9868. instanceKlass org/eclipse/jdt/internal/compiler/lookup/ClassScope
  9869. instanceKlass org/eclipse/jdt/internal/compiler/lookup/BlockScope
  9870. instanceKlass org/eclipse/jdt/internal/compiler/lookup/CompilationUnitScope
  9871. ciInstanceKlass org/eclipse/jdt/internal/compiler/lookup/Scope 1 1 2759 7 1 7 1 1 1 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 7 1 12 1 1 9 12 7 1 10 12 1 9 12 7 1 10 9 12 7 1 9 12 1 1 9 12 1 1 1 1 10 9 12 9 12 9 12 10 12 1 7 1 9 12 1 1 1 10 7 1 12 1 1 1 1 1 1 1 1 9 12 1 1 100 1 5 0 10 12 1 7 1 9 12 1 10 12 10 12 1 1 9 12 1 1 10 12 1 10 12 1 10 10 7 1 12 1 1 7 1 10 12 1 1 7 1 9 12 1 1 10 12 1 10 7 1 12 1 1 9 10 12 1 1 7 1 11 100 1 12 1 1 9 100 1 10 12 1 1 10 12 1 100 1 10 12 1 11 12 1 11 12 1 10 10 12 1 1 100 1 9 12 1 9 9 12 1 9 12 1 9 12 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 9 12 1 1 9 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 1 1 1 1 18 12 1 1 10 12 1 1 100 1 10 12 1 1 10 1 1 1 1 1 1 1 1 1 18 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 10 1 1 1 1 1 1 1 1 1 1 10 7 1 12 1 1 11 7 1 12 1 10 12 1 10 100 1 12 1 1 1 1 1 1 1 1 1 1 10 12 1 10 12 1 1 9 12 1 10 12 1 1 1 1 10 12 1 1 1 1 10 12 1 10 12 1 1 10 12 1 7 1 3 10 12 1 10 12 1 1 1 7 1 1 1 9 12 1 1 1 10 12 1 1 9 9 12 1 1 1 1 10 12 1 1 1 1 1 11 7 1 12 1 1 9 7 1 12 1 9 12 1 9 12 1 9 12 1 10 12 1 10 7 1 12 1 10 7 1 11 12 1 1 10 12 1 1 10 12 1 1 9 5 0 10 12 1 1 7 1 9 12 1 100 1 10 12 1 7 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 7 1 10 9 7 1 12 1 10 12 1 10 12 1 1 9 12 1 10 12 1 10 12 1 9 12 1 7 1 10 7 1 12 1 1 10 12 1 9 5 0 9 12 1 10 12 1 1 10 100 1 12 1 1 9 9 12 1 7 1 10 10 12 10 12 1 10 12 1 1 9 12 1 10 12 1 10 12 1 5 0 10 12 1 1 10 12 1 5 0 9 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 9 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 7 1 100 9 12 1 1 10 12 1 1 10 10 12 1 1 1 1 9 12 1 1 9 12 10 12 1 9 12 1 9 12 1 100 1 3 10 10 12 1 1 9 7 1 7 1 9 12 1 9 12 1 1 9 7 1 9 12 1 10 7 1 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 7 1 1 1 7 1 9 12 1 1 1 1 1 1 1 1 1 9 12 1 7 1 1 1 10 12 10 1 1 9 12 10 12 1 1 1 100 1 9 12 1 9 12 1 1 1 1 1 9 7 1 12 7 1 10 10 12 1 1 10 12 10 12 1 1 10 12 1 1 10 12 10 7 1 12 1 1 9 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 100 7 1 1 9 5 0 10 12 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 7 1 10 12 1 1 1 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 9 12 1 10 12 1 9 12 1 9 7 1 12 1 10 12 1 1 1 1 1 1 10 12 1 1 1 10 12 7 1 10 12 1 9 12 1 5 0 9 12 1 1 10 12 1 10 12 1 10 12 1 1 10 7 1 10 9 12 1 10 12 1 11 12 1 11 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 5 0 10 10 12 1 10 12 1 1 1 1 1 1 1 1 10 12 1 10 1 1 10 10 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 1 1 10 12 1 10 12 1 1 10 12 9 10 12 1 10 12 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 10 12 1 9 12 1 10 12 1 10 12 10 12 1 1 1 10 12 1 1 11 12 1 1 11 7 1 12 1 10 12 1 11 12 1 11 10 12 1 1 1 1 1 1 9 12 1 1 10 12 1 10 12 10 12 1 1 10 1 1 1 1 1 1 1 1 1 9 12 1 1 9 12 1 9 12 1 10 12 10 12 10 11 12 1 7 1 9 3 9 7 1 5 0 100 1 9 3 10 10 12 10 10 9 9 7 1 12 1 1 10 12 10 12 1 1 10 12 1 11 12 1 1 10 10 12 1 9 12 1 1 10 7 1 9 12 1 10 12 1 1 10 12 1 1 10 12 1 1 9 12 1 1 9 7 1 9 10 12 1 10 10 10 12 10 12 1 1 10 10 12 1 1 10 12 1 1 10 7 1 10 12 1 10 12 1 1 9 100 1 12 1 1 10 100 1 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 1 1 10 10 10 10 10 12 10 12 1 10 12 1 7 1 10 1 1 1 1 10 12 1 10 9 12 1 100 1 10 12 1 1 1 1 1 1 10 12 1 10 12 1 9 12 1 10 12 1 1 1 1 1 10 12 1 10 12 1 9 12 1 1 1 1 1 1 10 12 1 9 12 9 12 1 10 12 1 1 9 12 1 9 9 9 100 1 10 9 1 1 1 1 10 12 10 10 12 1 1 10 12 1 1 9 12 1 10 11 12 1 1 9 9 12 1 11 12 1 10 10 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 9 12 1 10 12 1 1 10 12 1 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 8 1 10 7 1 12 1 10 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 10 12 9 12 9 12 1 1 1 1 10 12 10 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 1 100 7 1 9 12 1 9 12 1 9 12 1 10 12 1 1 1 1 10 12 1 1 10 12 10 12 1 1 9 10 10 12 10 12 1 10 1 1 1 10 12 1 10 12 1 1 10 12 1 10 10 12 1 9 10 9 10 5 0 10 12 1 10 12 1 9 12 1 9 12 1 1 10 7 1 12 1 10 12 1 1 7 1 9 12 1 10 12 1 10 12 1 1 9 10 1 1 1 1 1 10 12 1 1 10 12 10 10 1 1 1 1 10 12 1 1 9 12 1 10 12 1 1 10 12 1 1 1 100 1 100 1 10 12 10 12 1 10 12 1 1 10 10 12 1 1 10 12 1 1 1 1 1 11 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 9 12 1 1 1 1 1 10 12 1 10 12 1 10 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 9 12 1 1 10 100 1 1 1 1 1 10 12 10 12 1 9 9 12 1 10 12 1 10 10 12 1 10 10 10 9 12 1 1 1 100 1 1 1 1 10 10 12 1 10 12 1 1 10 1 1 1 1 1 1 1 1 1 1 10 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 10 1 1 10 12 10 12 10 10 12 9 10 12 1 1 1 1 1 1 1 1 1 1 1 9 12 1 1 9 12 1 11 11 10 12 10 12 10 12 1 7 1 9 10 10 11 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 11 12 1 11 12 1 1 10 12 1 10 12 1 100 1 11 12 1 10 12 1 1 7 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 7 1 100 1 10 10 9 12 1 10 10 10 12 1 10 10 12 1 1 9 7 1 12 1 10 100 1 12 1 10 12 1 1 9 12 1 10 12 1 100 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 1 1 1 1 1 1 1 1 9 12 1 10 9 12 1 10 12 1 10 12 10 12 1 7 1 9 12 1 1 10 7 1 12 1 1 1 1 1 1 1 10 12 1 1 1 10 12 1 9 12 1 1 1 9 12 1 1 9 12 1 10 1 1 1 10 10 12 1 7 1 10 12 1 8 1 18 12 1 1 10 12 1 10 12 1 1 18 7 1 10 12 1 10 10 10 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 5 0 10 12 1 1 1 1 1 1 10 9 12 10 100 1 9 12 1 9 12 1 10 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 100 1 1 1 10 12 1 10 12 1 1 1 10 12 1 1 10 12 1 1 1 1 5 0 10 12 1 10 12 1 1 9 12 9 12 1 1 1 9 12 1 1 10 10 12 10 10 12 1 10 12 10 10 12 1 1 9 12 1 9 12 9 12 1 7 1 10 12 10 10 1 1 1 1 1 1 1 1 100 1 10 10 12 1 1 10 12 7 1 1 1 1 1 9 7 1 12 1 18 12 1 9 12 1 18 9 12 1 18 9 12 1 18 9 12 1 18 9 12 1 18 9 12 1 18 9 12 1 18 9 12 1 18 9 12 1 18 9 12 1 18 9 12 1 18 9 12 1 18 9 12 1 18 9 12 1 18 9 12 1 18 9 12 1 18 9 12 1 18 9 12 1 18 9 12 1 18 9 12 1 18 9 12 1 18 1 10 9 12 1 10 12 1 1 1 10 12 1 1 10 12 1 9 12 1 10 12 1 10 10 12 1 9 1 1 1 1 1 1 1 1 100 100 1 100 1 1 1 1 1 1 1 1 1 1 9 3 1 1 100 1 100 1 3 1 1 1 1 1 1 1 10 7 1 12 1 1 15 16 10 12 15 1 16 16 10 12 15 1 16 10 7 1 12 1 15 8 1 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 15 16 1 100 1 100 1 1 1 1 1 1
  9872. staticfield org/eclipse/jdt/internal/compiler/lookup/Scope $assertionsDisabled Z 1
  9873. ciInstanceKlass org/eclipse/jdt/internal/compiler/lookup/CompilationUnitScope 1 1 1206 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 9 7 1 12 1 1 10 12 1 9 12 1 1 1 1 1 10 12 1 9 12 7 1 10 12 1 9 12 9 12 9 7 1 12 1 9 12 1 1 9 7 1 12 1 9 7 1 12 1 9 12 9 7 1 12 1 7 1 10 9 12 7 1 10 9 12 9 12 7 1 10 9 12 7 1 10 9 12 7 1 10 9 12 1 1 7 1 9 12 9 7 1 12 1 10 7 1 12 1 1 100 1 1 9 12 1 1 9 7 1 12 1 1 11 7 1 12 1 1 10 12 1 1 10 12 1 1 9 12 1 1 9 12 1 10 12 1 1 10 7 1 12 1 1 9 12 1 9 12 9 12 1 1 10 100 1 12 1 1 10 12 1 10 12 1 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 7 1 10 12 1 9 12 1 1 9 10 12 1 1 9 12 1 9 12 1 9 12 1 1 10 12 1 1 100 1 10 10 12 1 1 10 7 1 12 1 10 12 1 1 9 12 1 100 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 9 10 7 1 12 1 1 9 100 1 12 1 1 10 7 1 12 1 1 10 12 1 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 9 12 9 12 1 100 1 3 10 12 1 10 12 1 9 7 1 12 1 9 12 1 9 3 9 12 1 7 1 18 12 1 1 11 7 1 12 1 1 18 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 11 12 1 9 12 1 10 9 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 7 1 12 1 7 1 1 1 1 1 1 1 1 1 10 12 1 10 12 1 1 1 9 7 1 12 1 9 12 7 1 10 10 12 1 10 12 1 1 10 7 1 12 9 12 1 10 12 1 1 10 7 1 12 1 1 10 12 1 10 12 1 10 12 1 9 12 10 10 12 1 10 12 1 1 10 12 1 1 1 1 1 7 1 10 12 1 10 12 1 1 1 10 12 1 9 12 1 10 12 1 1 10 7 1 12 1 1 10 12 1 1 100 1 1 9 12 9 12 9 12 7 1 10 12 1 10 9 9 12 10 12 1 9 12 1 10 12 1 10 12 1 10 10 12 1 1 9 7 1 12 1 1 9 12 1 9 12 1 10 12 1 1 9 12 1 1 9 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 7 1 10 12 1 1 10 12 1 10 12 1 1 9 12 1 1 9 5 0 10 12 1 1 100 1 9 12 1 9 12 1 10 9 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 7 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 7 1 10 12 1 1 10 12 1 1 100 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 7 1 10 12 1 1 10 12 1 10 12 1 1 1 1 1 10 12 1 1 10 12 1 1 1 10 12 1 1 10 7 1 100 1 9 12 1 1 10 10 10 12 1 10 12 1 1 10 12 1 10 10 10 9 12 1 1 1 7 1 10 12 1 10 12 1 10 12 1 1 9 12 1 1 10 10 10 12 1 1 1 1 100 9 12 1 10 12 1 100 1 10 12 1 9 12 9 12 1 9 12 1 9 12 1 1 10 12 1 1 10 12 1 1 9 100 1 1 1 1 1 1 1 1 1 1 9 10 9 12 1 9 12 1 10 12 1 10 12 1 1 1 1 1 1 1 1 10 12 1 1 9 10 12 1 10 12 1 1 7 1 10 12 1 11 7 1 12 10 12 1 1 1 1 10 12 1 1 1 10 1 1 1 100 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 10 12 1 1 10 12 1 10 10 12 1 1 9 12 1 10 12 1 1 11 7 1 12 1 1 9 12 1 10 10 12 1 10 12 1 1 11 12 1 9 10 12 1 9 12 1 9 10 12 1 9 12 9 12 1 1 1 1 1 1 1 1 100 100 1 1 10 12 1 10 12 18 12 1 1 7 1 10 12 1 1 10 12 1 10 10 12 1 1 1 1 10 12 1 1 100 1 1 10 12 1 1 9 12 1 5 0 10 12 1 1 10 12 1 1 10 12 1 1 9 12 1 10 12 1 9 10 12 1 9 12 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 10 12 1 1 10 12 1 1 1 1 1 10 12 1 18 12 1 10 12 1 1 1 1 1 1 9 12 7 1 10 10 1 1 1 10 7 1 11 12 1 1 9 12 1 1 1 1 1 1 1 1 10 100 1 12 1 1 1 1 1 10 7 1 12 1 1 15 16 15 16 16 10 12 15 16 10 100 1 12 1 15 8 1 16 10 12 15 1 16 1 100 1 100 1 1 100 1 1 100 1 100 1 1 1
  9874. instanceKlass org/eclipse/jdt/internal/compiler/lookup/ModuleScope
  9875. instanceKlass org/eclipse/jdt/internal/compiler/lookup/MethodScope
  9876. ciInstanceKlass org/eclipse/jdt/internal/compiler/lookup/BlockScope 1 1 1147 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 9 12 9 12 9 12 1 1 1 1 10 12 1 1 1 1 10 12 1 7 1 9 12 10 12 1 1 9 12 9 12 1 1 1 1 10 9 12 9 12 9 12 9 12 9 12 1 1 1 1 9 7 1 12 1 1 7 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 9 7 1 12 1 1 7 1 9 12 1 1 9 12 1 9 12 1 10 12 1 1 9 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 9 12 10 12 10 12 1 10 12 1 1 9 12 1 1 10 7 1 12 1 1 10 7 1 12 1 1 10 12 1 9 12 1 9 12 1 9 12 1 1 1 1 1 1 10 12 1 1 9 7 1 12 1 10 7 1 12 1 1 10 12 10 12 1 10 12 1 7 1 10 12 1 1 1 1 8 1 18 12 1 1 18 18 18 12 1 10 12 1 1 18 12 1 18 12 1 1 1 1 1 1 100 1 9 12 1 100 1 3 10 12 1 1 10 7 1 12 1 1 3 10 12 1 1 1 1 1 1 9 12 9 12 10 12 1 9 1 1 1 1 100 9 12 1 7 1 10 12 1 1 1 100 1 1 10 12 1 9 12 10 12 1 10 12 9 12 1 10 12 1 1 9 7 1 12 1 1 9 12 1 3 10 12 1 7 1 10 12 1 1 10 12 1 10 12 1 1 9 7 1 12 1 10 12 1 10 7 1 12 1 9 12 1 1 9 12 1 1 10 12 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 9 12 10 10 12 1 10 12 1 100 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 9 12 100 1 9 12 10 12 1 1 10 12 1 1 10 7 1 12 1 1 1 1 1 1 1 1 3 9 12 1 1 1 1 1 7 1 10 12 1 11 7 1 12 1 10 12 1 1 10 7 1 12 1 1 10 12 1 7 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 100 1 10 12 1 1 100 1 10 12 1 100 1 10 12 1 7 1 10 12 1 1 10 12 1 10 12 1 7 1 10 12 1 1 11 12 1 11 12 1 10 12 1 1 10 12 1 1 10 7 1 12 1 1 10 12 1 1 10 12 1 1 11 12 1 1 10 12 1 1 100 1 9 12 9 10 12 1 1 10 12 1 10 12 1 1 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 1 1 10 12 1 1 9 10 10 1 1 1 1 1 1 10 10 12 1 10 7 1 12 1 10 10 12 1 1 1 1 1 1 1 1 10 12 1 1 10 10 12 1 10 12 1 9 12 9 12 1 1 9 100 1 12 1 1 7 1 10 12 1 10 10 9 10 10 12 1 10 12 1 1 9 7 1 12 1 1 10 12 1 1 10 100 1 10 12 1 10 10 12 10 9 10 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 9 1 1 1 1 100 1 10 12 1 10 10 12 1 10 10 1 10 1 1 10 12 1 1 9 9 12 1 10 12 1 1 1 1 100 1 1 10 12 1 1 10 12 10 12 18 1 1 9 12 7 1 10 12 11 7 1 12 1 1 1 1 1 1 1 9 7 1 12 1 10 12 1 11 12 1 10 12 1 1 1 11 12 1 1 1 9 12 1 10 12 1 1 10 10 12 10 7 1 12 1 9 12 1 7 1 9 12 1 10 12 1 1 7 1 10 12 1 11 7 1 12 1 1 10 12 1 1 10 12 1 1 9 100 1 12 1 1 100 1 5 0 9 12 1 10 12 1 9 10 12 1 5 0 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 7 1 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 11 12 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 9 7 1 12 1 1 10 9 10 12 1 1 9 12 7 1 9 12 1 1 9 12 1 1 1 1 1 1 1 1 1 1 1 100 100 1 1 10 12 1 1 10 12 1 1 1 1 1 1 11 12 1 11 12 1 1 9 12 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 9 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 11 12 1 10 12 1 1 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 100 100 10 10 12 10 100 1 12 1 1 9 10 12 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 1 10 100 1 12 1 15 8 1 8 1 8 1 8 1 8 1 8 1 1 100 1 100 1 1 1
  9877. staticfield org/eclipse/jdt/internal/compiler/lookup/BlockScope EmulationPathToImplicitThis [Lorg/eclipse/jdt/internal/compiler/lookup/VariableBinding; 0 [Lorg/eclipse/jdt/internal/compiler/lookup/VariableBinding;
  9878. staticfield org/eclipse/jdt/internal/compiler/lookup/BlockScope NoEnclosingInstanceInConstructorCall [Lorg/eclipse/jdt/internal/compiler/lookup/VariableBinding; 0 [Lorg/eclipse/jdt/internal/compiler/lookup/VariableBinding;
  9879. staticfield org/eclipse/jdt/internal/compiler/lookup/BlockScope NoEnclosingInstanceInStaticContext [Lorg/eclipse/jdt/internal/compiler/lookup/VariableBinding; 0 [Lorg/eclipse/jdt/internal/compiler/lookup/VariableBinding;
  9880. ciInstanceKlass org/eclipse/jdt/internal/compiler/lookup/MethodScope 1 1 822 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 9 12 8 1 10 7 1 12 1 1 9 7 1 12 1 1 8 1 10 100 1 12 1 1 1 1 1 1 1 100 1 10 12 1 9 12 9 12 9 12 9 12 9 12 7 9 12 7 1 9 12 1 1 9 12 9 12 9 12 1 1 1 1 1 1 1 10 12 1 1 8 1 18 12 1 1 18 18 18 12 1 10 12 1 1 18 12 1 9 12 1 18 12 1 18 12 1 9 12 10 100 1 12 1 1 18 18 18 1 1 1 1 1 1 1 9 7 1 12 1 9 12 1 1 100 1 3 10 12 1 1 7 1 10 7 1 12 1 1 7 1 9 12 1 100 1 9 7 1 100 1 3 10 12 1 1 10 12 1 1 3 9 10 12 1 3 10 12 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 9 7 1 12 1 1 10 12 1 3 10 12 1 3 5 0 10 12 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 3 10 12 1 100 1 9 12 1 1 9 7 1 12 1 9 7 1 12 1 1 9 100 1 12 1 1 9 100 1 3 9 12 1 100 1 5 0 10 12 1 10 12 1 10 12 1 3 10 12 10 7 1 10 12 1 1 10 12 1 5 0 10 12 1 10 10 12 1 1 1 1 1 1 1 1 1 1 10 12 1 10 12 1 9 12 1 10 12 1 9 12 1 10 12 1 9 5 0 9 12 1 9 12 1 1 9 7 1 3 100 1 10 12 1 1 1 1 1 1 1 9 12 1 9 12 1 10 12 1 9 12 1 1 10 12 1 1 9 12 1 9 100 1 12 1 1 10 12 1 1 10 12 1 10 7 1 12 1 1 9 12 1 9 12 1 9 7 1 12 1 1 10 12 1 1 9 12 1 10 12 1 1 9 12 9 100 1 9 10 12 1 1 1 1 1 1 1 1 1 100 1 1 9 12 10 12 1 1 9 12 1 1 3 10 12 1 10 12 1 3 10 12 1 9 12 10 12 10 10 12 10 9 12 1 1 10 12 1 10 12 10 12 1 1 7 9 12 1 1 9 12 1 10 12 1 10 9 7 1 12 1 10 7 1 12 1 1 10 12 1 1 10 12 1 1 9 12 1 1 9 100 1 12 1 1 9 3 10 12 1 1 9 7 1 12 1 1 9 12 1 10 12 1 1 1 1 1 1 100 100 1 1 10 12 10 7 1 12 1 10 11 7 1 12 1 100 1 9 100 1 10 12 1 10 100 1 9 9 12 1 10 12 1 1 11 12 1 1 11 12 1 10 12 1 1 10 12 1 1 10 12 1 100 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 7 1 10 12 10 12 1 1 9 12 1 9 12 1 1 11 100 1 12 1 1 100 1 1 1 1 1 1 1 100 1 1 1 1 10 12 1 1 9 7 1 12 1 9 1 1 9 7 1 12 10 12 1 1 9 7 1 12 1 9 12 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 9 10 12 1 1 1 10 7 1 12 1 1 1 1 1 1 10 12 1 1 10 12 9 12 1 9 12 10 12 1 1 1 1 10 12 1 10 12 1 1 1 1 10 12 1 1 9 7 1 12 1 10 12 1 9 12 1 1 10 100 1 12 1 1 1 1 100 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 10 100 1 12 1 15 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 1 100 1 100 1 1 1
  9881. ciInstanceKlass org/eclipse/jdt/internal/compiler/lookup/ClassScope 1 1 1530 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 9 12 9 12 9 12 9 12 1 1 1 1 1 1 1 1 1 9 7 1 12 1 1 10 12 1 1 9 7 1 12 1 1 100 1 3 9 7 1 12 1 100 1 9 7 1 12 1 1 9 7 1 12 1 1 9 7 1 12 1 10 7 1 12 1 1 9 12 1 1 9 9 7 1 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 9 12 1 1 9 7 1 12 1 7 1 9 12 1 1 9 12 1 1 100 1 5 0 10 12 1 1 10 7 1 12 1 1 9 5 0 9 12 1 10 12 1 10 12 1 1 9 12 1 10 12 1 1 9 7 1 12 1 10 12 1 10 12 1 10 12 1 10 12 1 5 0 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 7 1 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 9 12 1 10 12 1 9 12 1 1 9 7 1 12 1 10 7 1 12 1 1 9 12 1 1 9 12 1 1 10 12 1 1 7 1 7 1 10 12 1 10 12 1 1 10 7 1 9 3 10 12 1 10 12 1 1 7 1 9 12 1 9 100 1 12 1 9 9 12 1 100 1 9 12 1 3 9 100 1 12 1 1 10 12 1 9 9 5 0 100 1 8 1 10 12 1 9 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 7 1 12 1 1 9 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 10 12 10 12 1 10 12 1 9 12 10 10 12 1 10 12 1 10 12 1 7 1 10 12 1 9 12 1 9 12 1 1 100 9 7 1 10 12 1 9 12 1 1 9 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 9 12 1 9 12 1 9 10 12 1 1 10 12 1 1 9 7 1 12 1 100 1 5 0 10 12 1 1 9 12 1 9 10 12 1 10 12 10 12 1 10 12 10 12 1 10 12 1 1 1 1 1 1 1 1 7 1 1 1 10 12 1 10 12 1 10 12 1 10 100 1 12 1 1 10 12 1 1 10 12 1 10 1 1 9 12 1 1 9 12 1 10 12 1 100 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 1 1 1 100 1 10 12 1 10 12 1 9 12 1 1 10 12 1 1 10 12 1 7 1 9 12 1 10 12 1 1 9 12 1 10 12 1 10 12 1 1 10 12 1 10 10 12 1 9 12 1 100 1 10 12 1 5 0 9 10 12 1 1 9 9 12 1 100 1 10 12 1 1 1 1 1 1 1 1 1 100 9 12 1 1 10 12 1 1 10 12 1 9 10 12 1 1 10 12 1 1 10 12 1 9 12 10 10 12 1 10 12 1 1 9 12 1 10 12 1 1 9 12 1 1 10 7 1 12 1 1 10 12 1 1 11 100 1 12 1 1 10 100 1 12 1 1 9 12 1 1 9 12 1 1 9 12 1 10 12 1 1 10 12 1 1 1 1 1 100 100 100 10 12 1 1 9 10 12 1 10 12 1 1 9 3 1 1 10 100 1 12 1 1 1 1 9 7 1 12 1 1 10 12 1 1 3 3 10 12 1 3 10 12 1 10 10 12 1 9 10 12 10 10 12 1 10 3 10 12 1 10 12 1 10 12 1 9 12 1 5 0 9 12 1 9 10 12 1 9 12 10 12 1 10 12 1 1 10 12 1 9 12 1 10 12 1 10 12 1 3 10 12 1 10 9 12 10 10 10 10 5 0 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 9 9 12 1 10 12 1 10 12 1 9 12 1 10 9 12 1 1 3 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 9 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 3 10 12 1 3 10 12 1 10 12 1 3 1 9 12 7 1 10 10 12 1 1 9 12 1 10 7 1 12 1 9 12 1 9 12 1 9 10 12 1 1 10 9 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 10 12 1 10 12 1 10 12 5 0 1 1 1 1 1 1 1 1 1 1 10 7 1 12 10 12 1 10 12 1 1 1 1 10 10 10 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 5 0 10 12 1 1 10 10 12 1 10 12 1 10 12 1 10 10 10 12 1 10 12 1 1 9 5 0 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 9 7 1 10 12 1 1 10 7 1 12 1 10 12 1 1 1 1 1 1 1 1 10 12 1 1 10 10 100 1 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 9 12 1 5 0 10 12 1 1 10 12 1 10 10 12 1 10 12 1 1 10 12 1 10 12 10 12 1 1 5 0 10 12 10 12 1 10 12 1 1 1 1 1 1 100 1 10 12 1 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 10 12 1 1 1 1 1 1 10 12 1 1 9 12 1 1 9 10 12 1 9 100 1 9 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 100 9 12 1 1 11 7 1 12 1 10 12 10 12 10 12 1 1 11 12 1 10 12 1 1 5 0 10 12 1 10 12 1 9 12 1 1 10 12 10 12 1 1 9 7 1 10 100 1 12 1 1 1 1 1 1 7 1 9 12 1 1 10 12 1 10 12 1 9 12 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 9 1 10 12 1 100 1 10 10 12 1 1 10 10 12 1 10 12 1 10 12 1 100 1 10 10 12 1 1 11 12 1 1 11 100 1 12 1 10 12 11 12 1 10 12 1 1 1 1 1 1 1 100 9 12 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 9 12 1 1 10 12 1 10 12 1 1 10 12 1 1 9 10 12 1 1 100 1 10 12 1 9 12 1 9 10 1 1 1 1 1 10 12 1 1 1 10 12 1 10 12 1 10 12 1 1 1 1 1 1 10 12 1 10 12 1 1 1 1 10 12 18 12 1 8 1 1 1 1 10 100 1 12 1 15 8 1 1 100 1 100 1 1 1 1 7 1 12 10
  9882. instanceKlass org/eclipse/jdt/internal/compiler/lookup/PolyTypeBinding
  9883. instanceKlass org/eclipse/jdt/internal/compiler/lookup/ArrayBinding
  9884. instanceKlass org/eclipse/jdt/internal/compiler/lookup/BaseTypeBinding
  9885. instanceKlass org/eclipse/jdt/internal/compiler/lookup/ReferenceBinding
  9886. ciInstanceKlass org/eclipse/jdt/internal/compiler/lookup/TypeBinding 1 1 808 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 7 1 12 1 1 9 12 7 1 10 12 1 9 12 7 1 100 1 9 7 1 12 1 10 12 1 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 7 1 10 9 12 7 1 10 9 12 9 12 1 1 1 10 3 9 12 9 12 1 9 12 1 1 1 9 12 1 1 5 0 1 1 1 10 7 1 12 1 1 10 12 1 10 12 1 1 1 1 1 1 100 1 8 1 10 12 1 1 1 1 1 10 12 1 100 1 10 12 1 10 12 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 1 1 1 1 100 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 8 1 10 12 1 1 1 10 12 1 100 1 10 12 1 10 12 1 1 1 1 1 1 1 9 100 1 12 1 1 1 1 9 12 1 1 1 1 1 10 12 1 1 10 12 100 1 1 1 7 1 9 10 12 1 10 10 12 1 10 12 1 1 9 12 1 1 10 7 1 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 100 10 12 1 100 1 10 12 9 12 10 12 1 9 12 10 12 10 12 1 1 10 100 1 12 1 1 10 12 1 7 1 9 12 1 10 12 1 7 1 10 12 1 10 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 10 7 1 10 12 1 10 7 1 12 1 1 11 7 1 12 1 9 12 1 1 11 12 1 7 1 11 12 1 1 7 1 1 1 1 10 12 1 1 1 10 12 1 1 10 9 12 10 12 9 12 7 1 10 9 9 10 1 1 1 1 1 1 1 1 1 1 1 1 100 1 5 0 1 5 0 1 1 10 12 1 1 1 1 1 1 10 12 10 12 1 1 1 1 1 10 12 1 1 1 1 10 10 12 1 1 1 1 10 12 1 1 1 5 0 1 1 1 1 5 0 1 5 0 1 5 0 1 1 1 5 0 1 1 1 7 1 9 12 1 1 10 12 1 10 12 1 10 10 12 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 10 12 1 10 12 1 10 10 12 1 10 12 1 10 12 1 9 5 0 10 12 10 12 10 12 1 1 1 1 1 1 9 12 9 12 10 7 1 9 9 12 1 9 12 1 9 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 10 12 10 10 12 7 1 9 12 1 10 100 1 10 1 1 1 1 1 1 10 12 9 12 1 9 12 1 100 1 10 12 1 1 9 12 10 9 12 10 12 1 10 12 1 10 12 1 9 12 1 10 12 9 9 12 10 12 10 12 10 10 12 1 1 1 1 1 1 1 1 1 1 10 10 1 1 1 10 12 1 1 1 1 10 12 1 1 5 0 1 9 12 1 100 1 1 10 12 9 100 1 12 1 1 9 100 1 12 1 9 12 1 10 1 1 100 1 1 1 9 100 1 12 1 10 12 1 1 5 0 5 0 1 1 1 1 10 12 1 9 1 1 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 9 12 1 1 1 1 1 9 12 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  9887. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeBinding TYPE_USE_BINDING Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding; org/eclipse/jdt/internal/compiler/lookup/TypeBinding$1
  9888. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeBinding INT Lorg/eclipse/jdt/internal/compiler/lookup/BaseTypeBinding; org/eclipse/jdt/internal/compiler/lookup/BaseTypeBinding
  9889. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeBinding BYTE Lorg/eclipse/jdt/internal/compiler/lookup/BaseTypeBinding; org/eclipse/jdt/internal/compiler/lookup/BaseTypeBinding
  9890. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeBinding SHORT Lorg/eclipse/jdt/internal/compiler/lookup/BaseTypeBinding; org/eclipse/jdt/internal/compiler/lookup/BaseTypeBinding
  9891. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeBinding CHAR Lorg/eclipse/jdt/internal/compiler/lookup/BaseTypeBinding; org/eclipse/jdt/internal/compiler/lookup/BaseTypeBinding
  9892. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeBinding LONG Lorg/eclipse/jdt/internal/compiler/lookup/BaseTypeBinding; org/eclipse/jdt/internal/compiler/lookup/BaseTypeBinding
  9893. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeBinding FLOAT Lorg/eclipse/jdt/internal/compiler/lookup/BaseTypeBinding; org/eclipse/jdt/internal/compiler/lookup/BaseTypeBinding
  9894. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeBinding DOUBLE Lorg/eclipse/jdt/internal/compiler/lookup/BaseTypeBinding; org/eclipse/jdt/internal/compiler/lookup/BaseTypeBinding
  9895. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeBinding BOOLEAN Lorg/eclipse/jdt/internal/compiler/lookup/BaseTypeBinding; org/eclipse/jdt/internal/compiler/lookup/BaseTypeBinding
  9896. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeBinding NULL Lorg/eclipse/jdt/internal/compiler/lookup/NullTypeBinding; org/eclipse/jdt/internal/compiler/lookup/NullTypeBinding
  9897. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeBinding VOID Lorg/eclipse/jdt/internal/compiler/lookup/VoidTypeBinding; org/eclipse/jdt/internal/compiler/lookup/VoidTypeBinding
  9898. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeBinding NUMERIC_TYPES [Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding; 7 [Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding;
  9899. staticfield org/eclipse/jdt/internal/compiler/lookup/TypeBinding $assertionsDisabled Z 1
  9900. instanceKlass org/eclipse/jdt/internal/compiler/ast/ReferenceExpression$2
  9901. instanceKlass org/eclipse/jdt/internal/compiler/lookup/IntersectionTypeBinding18
  9902. instanceKlass org/eclipse/jdt/internal/compiler/lookup/UnresolvedReferenceBinding
  9903. instanceKlass org/eclipse/jdt/internal/compiler/lookup/BinaryTypeBinding
  9904. instanceKlass org/eclipse/jdt/internal/compiler/ast/LambdaExpression$1LambdaTypeBinding
  9905. instanceKlass org/eclipse/jdt/internal/compiler/lookup/ParameterizedTypeBinding
  9906. instanceKlass org/eclipse/jdt/internal/compiler/lookup/ReferenceBinding$1
  9907. instanceKlass org/eclipse/jdt/internal/compiler/lookup/WildcardBinding
  9908. instanceKlass org/eclipse/jdt/internal/compiler/lookup/TypeBinding$1
  9909. instanceKlass org/eclipse/jdt/internal/compiler/lookup/ProblemReferenceBinding
  9910. instanceKlass org/eclipse/jdt/internal/compiler/lookup/TypeVariableBinding
  9911. instanceKlass org/eclipse/jdt/internal/compiler/lookup/SourceTypeBinding
  9912. ciInstanceKlass org/eclipse/jdt/internal/compiler/lookup/ReferenceBinding 1 1 1563 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 10 12 1 9 12 7 1 10 9 12 7 1 10 9 12 7 1 9 7 1 12 1 100 1 10 12 1 9 12 18 12 1 1 9 12 1 1 100 1 1 10 12 1 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 1 1 10 1 1 1 1 1 9 7 1 12 10 12 1 1 1 1 1 1 1 1 1 1 100 100 1 5 0 9 7 1 12 1 10 7 1 12 1 1 1 1 1 1 1 100 10 7 1 12 1 1 1 1 1 1 1 1 1 1 1 1 1 10 7 1 12 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 10 12 1 1 1 9 12 1 1 100 1 5 0 1 1 1 1 1 10 12 1 10 12 1 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 10 12 1 10 12 1 10 12 1 10 10 12 1 1 1 1 1 1 1 1 1 1 1 1 10 7 1 12 1 1 10 12 1 1 9 7 1 10 10 1 1 1 1 1 10 12 1 10 12 1 100 1 3 9 7 1 12 1 1 10 12 1 7 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 7 1 8 1 10 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 100 1 9 12 1 10 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 1 1 1 1 10 7 1 12 1 1 1 1 1 1 10 12 1 1 1 1 10 12 1 10 12 1 100 1 10 12 1 10 12 1 8 1 1 1 1 5 0 5 0 9 12 1 10 12 1 10 12 1 1 100 1 9 12 1 10 100 1 12 1 1 9 12 1 10 100 1 12 1 1 10 12 1 10 12 5 0 1 1 1 1 1 1 100 1 1 1 1 1 9 100 1 1 1 1 1 1 3 1 1 10 12 10 12 1 1 1 1 1 1 10 12 1 10 12 1 1 9 100 1 10 12 1 1 1 1 100 1 1 9 100 1 12 1 1 100 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 10 12 1 1 100 1 1 9 12 1 1 10 12 1 1 1 1 1 10 12 1 9 1 1 10 7 1 12 10 12 1 1 1 10 10 12 1 1 10 12 1 9 12 1 10 7 1 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 10 12 1 10 12 10 7 1 12 1 1 1 1 1 1 3 1 1 1 1 1 10 12 1 1 1 1 1 10 12 10 12 1 1 1 1 1 5 0 1 3 1 1 7 1 9 12 1 1 1 1 10 12 10 12 1 1 1 1 1 1 10 12 10 1 1 1 1 10 9 7 1 10 11 7 1 12 1 1 7 1 9 12 1 1 9 12 1 11 12 1 1 10 12 1 9 12 1 1 10 12 1 10 7 1 9 12 1 10 12 1 10 12 7 1 10 12 1 1 9 7 1 12 1 1 7 1 9 12 1 1 10 10 12 1 100 1 9 12 1 10 12 1 10 12 10 12 1 1 10 10 12 1 1 1 1 1 1 1 1 1 3 1 3 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 1 1 1 100 10 12 10 12 1 1 1 1 1 3 1 1 1 5 0 1 5 0 1 1 10 12 1 1 10 12 1 1 10 12 1 5 0 1 10 7 1 12 1 1 1 1 1 3 1 3 10 12 9 5 0 1 9 12 1 1 1 1 10 12 1 1 1 1 1 10 9 12 1 1 1 1 1 1 10 12 10 12 10 12 1 1 10 12 10 1 1 1 1 1 9 7 1 12 1 10 12 1 9 12 1 1 10 100 1 12 1 10 12 10 12 1 5 0 9 12 1 5 0 9 12 1 1 1 1 1 1 100 1 1 10 12 1 1 7 1 1 1 1 1 1 10 12 9 12 1 10 12 1 1 1 1 10 12 1 1 1 1 1 1 1 1 1 10 12 1 1 10 12 1 10 12 10 12 10 1 1 10 12 10 10 12 10 12 1 1 1 1 1 1 1 11 12 1 10 10 12 1 10 12 1 1 1 1 1 9 12 1 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 1 9 12 1 9 12 1 10 12 5 0 9 12 1 10 12 1 1 10 12 1 1 1 100 10 12 9 12 1 1 1 1 10 12 1 9 12 1 9 12 1 1 10 12 1 9 12 10 9 5 0 10 12 1 10 10 12 1 1 1 1 1 1 1 7 1 10 8 1 10 12 1 10 12 10 12 1 10 10 12 1 10 7 1 12 1 1 10 12 1 9 12 1 10 100 1 12 1 1 9 12 1 1 1 1 1 1 1 1 1 1 1 10 12 10 12 1 1 10 7 1 12 1 1 9 12 10 12 1 1 10 12 1 10 12 1 10 100 1 12 1 1 10 12 1 1 9 12 1 9 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 10 10 12 1 10 12 1 10 1 1 1 1 9 12 1 1 10 12 1 10 12 1 1 1 1 1 100 1 8 1 10 100 1 10 12 1 10 12 1 1 10 12 1 10 10 12 11 100 1 12 1 1 11 12 1 1 11 100 1 12 1 11 12 1 1 11 12 1 11 12 1 100 1 10 1 1 1 1 1 1 10 12 10 12 1 1 1 1 1 1 1 1 1 1 1 1 10 7 1 12 1 1 15 1 16 10 12 15 16 1 100 1 100 1 1 1 1
  9913. staticfield org/eclipse/jdt/internal/compiler/lookup/ReferenceBinding LUB_GENERIC Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding; org/eclipse/jdt/internal/compiler/lookup/ReferenceBinding$1
  9914. staticfield org/eclipse/jdt/internal/compiler/lookup/ReferenceBinding FIELD_COMPARATOR Ljava/util/Comparator; org/eclipse/jdt/internal/compiler/lookup/ReferenceBinding$2
  9915. staticfield org/eclipse/jdt/internal/compiler/lookup/ReferenceBinding METHOD_COMPARATOR Ljava/util/Comparator; org/eclipse/jdt/internal/compiler/lookup/ReferenceBinding$3
  9916. staticfield org/eclipse/jdt/internal/compiler/lookup/ReferenceBinding BASIC_MEMBER_TYPES_COMPARATOR Ljava/util/Comparator; org/eclipse/jdt/internal/compiler/lookup/ReferenceBinding$$Lambda+0x000002032b2a66f8
  9917. instanceKlass org/eclipse/jdt/internal/compiler/lookup/RecordComponentBinding
  9918. instanceKlass org/eclipse/jdt/internal/compiler/lookup/FieldBinding
  9919. instanceKlass org/eclipse/jdt/internal/compiler/lookup/LocalVariableBinding
  9920. ciInstanceKlass org/eclipse/jdt/internal/compiler/lookup/VariableBinding 1 1 185 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 7 1 12 1 1 9 12 1 1 1 1 1 10 12 9 12 9 12 9 12 9 12 9 12 1 1 9 7 1 100 1 5 0 1 1 100 100 1 1 1 10 12 1 1 1 1 1 1 1 100 1 3 1 100 1 1 1 5 0 1 5 0 1 5 0 1 1 1 1 1 1 100 1 10 12 1 3 10 100 1 12 1 1 3 8 1 10 12 1 1 10 12 1 8 1 8 1 100 1 10 12 1 8 1 10 12 1 1 1 1 1 1 1 1 1 3 1 1 10 100 1 12 1 1 100 1 10 10 12 1 10 100 1 12 1 1 10 100 1 12 1 10 12 1 5 0 10 12 1 1 10 12 1 1 10 100 1 12 1 1 1 1 1 1 1
  9921. staticfield org/eclipse/jdt/internal/compiler/lookup/VariableBinding $assertionsDisabled Z 1
  9922. instanceKlass org/eclipse/jdt/internal/compiler/lookup/AptBinaryLocalVariableBinding
  9923. instanceKlass org/eclipse/jdt/internal/compiler/lookup/AptSourceLocalVariableBinding
  9924. instanceKlass org/eclipse/jdt/internal/compiler/lookup/CatchParameterBinding
  9925. instanceKlass org/eclipse/jdt/internal/compiler/ast/LocalDeclaration$1
  9926. instanceKlass org/eclipse/jdt/internal/compiler/lookup/SyntheticArgumentBinding
  9927. ciInstanceKlass org/eclipse/jdt/internal/compiler/lookup/LocalVariableBinding 1 1 437 7 1 7 1 1 1 1 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 7 1 12 1 1 9 12 1 1 1 1 1 9 7 1 12 1 1 10 12 1 9 12 9 12 1 1 100 1 5 0 5 0 1 1 1 1 1 1 1 1 100 100 1 1 9 7 1 12 10 12 9 12 1 1 10 12 9 12 1 1 1 100 1 1 1 100 1 10 12 100 1 10 7 1 12 1 1 9 12 1 1 7 1 9 12 1 1 10 100 1 12 10 12 1 1 100 1 9 12 1 10 100 1 9 10 12 1 1 9 12 1 1 9 10 100 1 12 1 1 9 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 9 12 1 100 1 9 12 1 1 9 100 1 12 1 1 100 1 10 100 1 12 1 1 10 12 1 1 10 7 1 12 1 1 10 7 1 12 1 1 1 1 1 1 1 100 100 10 12 1 9 12 1 1 1 1 1 9 12 1 1 10 7 1 12 1 1 1 1 1 1 10 7 1 10 12 1 1 1 1 1 1 10 12 9 12 9 12 10 100 1 12 1 1 18 12 1 1 18 12 1 18 9 12 1 18 18 18 8 1 18 12 1 18 1 1 1 1 5 0 1 5 0 1 1 10 12 1 7 1 1 1 1 1 1 5 0 5 0 9 100 1 12 1 3 10 12 1 1 10 100 1 12 1 1 10 12 1 1 9 12 1 100 1 10 12 1 1 1 1 1 1 5 0 10 12 1 1 1 9 12 10 12 11 100 1 12 1 1 1 1 100 1 10 11 12 1 1 1 9 12 1 1 1 1 1 1 100 1 8 1 10 12 1 1 1 1 1 10 100 1 12 1 15 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 1 100 1 100 1 1
  9928. staticfield org/eclipse/jdt/internal/compiler/lookup/LocalVariableBinding $assertionsDisabled Z 1
  9929. instanceKlass org/eclipse/jdt/internal/compiler/lookup/NestedTypeBinding
  9930. ciInstanceKlass org/eclipse/jdt/internal/compiler/lookup/SourceTypeBinding 1 1 2123 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 9 12 9 12 9 12 9 12 9 12 9 12 9 12 1 1 9 12 1 1 10 7 1 12 1 1 10 7 1 12 1 1 9 12 1 9 12 1 1 9 7 1 12 1 9 9 12 1 9 12 1 9 12 10 12 1 9 12 9 7 1 12 1 9 12 9 12 1 9 12 9 12 10 12 1 1 10 12 1 1 1 1 1 10 12 1 9 12 1 1 100 1 5 0 5 0 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 5 0 1 1 10 12 1 100 1 10 7 1 7 1 10 12 1 11 12 1 1 7 1 7 1 9 7 1 12 1 9 7 1 10 7 1 12 1 1 9 12 1 1 9 7 1 12 1 1 10 12 1 11 12 1 1 9 10 12 1 1 9 12 1 9 100 1 12 1 1 10 7 1 12 1 1 18 12 1 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 9 12 1 10 12 1 1 8 1 1 1 1 9 7 1 12 1 9 9 100 1 100 1 3 9 5 0 9 9 12 1 1 10 7 1 12 1 1 1 1 1 1 8 1 9 12 1 9 7 1 12 1 1 10 12 1 100 1 18 1 1 100 1 100 100 1 1 1 8 1 9 12 1 10 12 1 1 18 1 1 7 1 7 1 10 12 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 9 12 1 9 18 1 1 1 1 7 1 1 1 9 12 1 10 12 1 10 12 1 1 10 12 1 10 12 10 12 1 1 1 1 1 100 1 1 1 10 12 1 9 12 1 1 1 9 12 1 9 7 1 12 1 10 7 1 12 1 10 12 1 9 12 1 10 12 1 1 1 1 1 1 9 100 1 10 12 1 1 1 9 12 1 10 12 1 1 1 10 12 1 9 7 1 12 1 10 12 1 10 12 1 9 12 1 1 10 12 1 1 10 12 1 1 10 7 1 12 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 9 12 1 10 12 1 1 10 12 1 1 10 12 1 1 11 12 1 1 11 7 1 12 1 1 11 7 1 12 1 1 9 10 12 1 1 11 12 1 10 12 1 1 1 1 1 1 1 1 10 12 1 10 12 1 10 12 1 10 10 12 1 1 1 9 12 10 12 1 9 12 1 1 1 1 10 12 1 9 1 1 1 1 10 12 1 10 12 1 10 12 9 12 1 1 1 10 1 1 1 10 12 10 12 10 100 1 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 7 1 10 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 3 9 5 0 10 12 1 100 1 10 12 1 10 12 1 10 12 1 1 1 10 12 1 10 12 1 10 12 1 1 1 10 12 9 12 1 10 12 1 1 9 12 1 1 1 1 1 10 12 1 9 12 1 10 12 1 1 10 12 9 7 1 3 10 5 0 3 10 10 9 10 12 1 3 10 9 12 1 1 9 12 1 9 7 1 12 1 10 12 1 1 10 12 1 1 10 7 1 12 1 10 10 7 1 12 1 1 9 12 10 7 1 12 1 1 9 3 10 12 1 1 9 12 1 1 10 12 1 1 10 12 1 9 12 1 10 12 1 9 10 12 9 9 3 10 12 1 1 9 12 1 1 9 11 12 1 1 10 12 1 1 10 10 12 1 1 9 12 1 9 12 1 10 12 1 1 9 7 1 12 1 5 0 10 12 1 1 9 12 1 1 10 12 1 10 12 1 10 12 1 1 10 7 1 12 1 1 9 12 1 1 9 12 1 5 0 10 3 9 10 12 1 1 10 12 1 1 10 12 1 1 5 0 10 12 1 10 12 1 1 10 12 1 1 9 12 10 100 1 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 1 1 10 12 1 10 12 1 5 0 5 0 10 12 1 1 10 12 1 10 7 1 12 1 1 10 11 12 1 100 1 11 12 1 10 100 1 12 11 12 1 9 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 10 12 10 12 1 1 1 10 12 10 10 7 1 10 12 1 10 10 12 1 10 12 1 1 1 1 100 9 12 1 100 1 9 12 1 9 10 12 1 1 1 1 10 12 10 12 1 10 12 1 1 10 12 1 1 1 10 12 10 12 1 9 12 1 1 1 100 1 1 10 12 5 0 10 12 1 1 10 12 1 5 0 10 12 1 1 10 12 1 1 1 1 1 1 1 1 100 1 1 10 12 10 7 1 12 1 1 10 1 1 1 1 1 1 10 12 1 1 1 1 1 10 12 1 1 11 12 1 1 11 7 1 10 12 1 10 100 1 10 100 1 12 1 1 10 12 1 1 1 1 1 1 1 1 1 9 10 12 1 1 1 1 1 1 1 10 12 9 12 1 1 1 10 12 10 12 1 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 10 12 1 1 10 100 1 1 1 10 12 10 100 1 10 12 1 5 0 10 7 1 10 12 1 10 10 10 9 12 1 10 12 1 1 1 1 1 1 1 1 1 10 12 1 10 12 5 0 1 1 5 0 1 10 7 1 12 1 1 10 12 1 1 10 12 1 1 1 10 12 1 10 12 10 12 1 1 5 0 1 1 10 12 1 1 1 10 12 10 12 1 1 10 12 1 100 1 10 12 1 9 12 1 9 12 1 9 7 1 12 10 12 1 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 100 1 10 10 7 1 12 1 1 10 12 1 9 9 12 1 9 9 12 1 9 12 1 9 12 1 9 12 1 11 7 1 12 9 3 11 10 12 11 12 1 10 12 10 12 11 12 1 11 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 10 100 1 10 100 1 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 1 1 100 1 9 9 10 10 9 10 12 1 1 9 12 10 12 1 1 10 7 1 12 1 1 9 12 1 9 12 10 12 1 10 10 12 1 1 100 1 10 12 1 10 12 1 10 12 1 9 7 1 12 1 1 10 12 1 1 10 12 1 1 9 12 1 1 9 100 1 9 12 9 12 1 10 9 12 1 9 12 1 9 7 1 5 0 9 9 10 12 1 1 3 10 12 1 1 9 10 12 1 9 12 10 12 1 10 12 1 100 1 10 12 1 9 5 0 10 12 1 1 5 0 10 12 1 1 100 1 11 12 1 100 1 10 12 1 1 9 9 12 1 10 12 1 1 5 0 10 12 1 10 12 1 1 5 0 10 12 1 10 12 1 10 12 1 10 12 1 1 7 1 9 12 10 12 1 10 12 1 9 10 12 1 9 12 5 0 10 12 1 10 12 1 1 9 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 10 12 1 10 12 1 9 12 1 5 0 5 0 10 12 1 1 10 12 100 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 9 12 1 9 9 12 1 10 12 1 1 10 12 1 100 1 9 12 10 12 1 1 10 12 1 1 10 12 1 10 9 12 1 10 100 1 10 12 1 1 9 12 1 9 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 10 12 10 12 1 1 10 12 1 9 12 9 9 9 10 12 1 1 1 10 12 1 10 1 1 1 10 12 9 12 1 9 1 100 1 1 10 12 10 10 1 1 1 1 100 1 9 100 1 10 12 1 1 1 10 12 10 12 1 1 1 1 1 1 10 12 1 10 12 1 9 12 1 1 1 1 1 10 12 10 9 12 10 12 10 12 1 10 1 1 1 10 12 1 1 10 12 10 12 9 9 1 1 10 12 9 12 1 1 9 7 1 12 1 7 1 10 1 1 1 10 12 9 12 10 12 10 12 10 12 1 10 12 1 1 11 7 1 10 10 12 1 1 1 1 1 1 1 1 1 10 10 12 1 8 1 10 12 1 9 12 1 3 8 1 10 12 1 8 1 8 1 10 8 1 10 12 1 8 1 10 8 1 10 10 12 1 8 1 10 12 1 8 1 10 8 1 8 1 8 1 8 1 8 1 8 1 10 12 1 8 1 8 1 8 1 8 1 8 1 10 8 1 8 1 10 12 1 8 1 9 12 1 8 1 8 1 8 1 8 1 10 8 1 8 1 8 1 10 8 1 8 1 9 12 1 8 1 10 8 1 8 1 1 1 10 12 1 1 10 7 1 12 1 10 12 1 1 1 1 10 12 1 9 12 1 10 12 1 1 1 1 10 12 1 10 12 10 3 10 1 1 9 12 1 1 1 9 12 1 5 0 9 12 1 10 12 1 1 1 1 1 1 1 9 12 1 1 10 7 1 12 1 1 1 10 100 1 12 1 15 8 1 8 1 1 100 1 100 1 1 1 1 1
  9931. instanceKlass org/eclipse/jdt/internal/compiler/lookup/ArrayBinding$1
  9932. instanceKlass org/eclipse/jdt/internal/compiler/lookup/MostSpecificExceptionMethodBinding
  9933. instanceKlass org/eclipse/jdt/internal/compiler/lookup/SyntheticFactoryMethodBinding
  9934. instanceKlass org/eclipse/jdt/internal/compiler/lookup/PolymorphicMethodBinding
  9935. instanceKlass org/eclipse/jdt/internal/compiler/lookup/SyntheticMethodBinding
  9936. instanceKlass org/eclipse/jdt/internal/compiler/lookup/ProblemMethodBinding
  9937. instanceKlass org/eclipse/jdt/internal/compiler/lookup/ParameterizedMethodBinding
  9938. ciInstanceKlass org/eclipse/jdt/internal/compiler/lookup/MethodBinding 1 1 1107 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 9 12 9 12 9 12 9 12 9 12 9 12 1 1 1 1 100 1 5 0 5 0 5 0 5 0 1 1 1 1 10 12 9 12 1 9 12 9 12 1 9 12 9 12 1 9 12 1 1 1 9 12 9 12 9 12 9 12 1 9 12 9 12 1 9 12 9 12 10 7 1 12 1 1 10 12 1 10 12 1 100 1 100 7 1 100 100 1 9 7 1 12 1 9 12 1 1 10 12 1 10 12 1 1 10 12 1 1 1 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 10 12 1 10 12 1 1 100 1 10 12 1 1 1 1 1 1 1 1 1 10 7 1 1 100 1 1 10 12 1 1 10 7 1 12 1 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 100 1 10 12 1 1 1 1 1 1 1 1 1 1 1 10 12 1 10 7 1 12 1 1 10 12 1 10 12 1 9 7 1 12 1 1 9 11 7 1 12 1 10 12 1 10 12 1 10 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 10 12 1 10 12 1 11 12 1 11 12 1 10 12 1 10 12 1 1 11 12 1 1 10 10 12 1 10 12 1 10 10 1 1 1 1 1 1 1 1 100 1 1 1 1 1 9 12 1 5 0 10 12 1 10 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 10 12 1 1 1 1 100 1 1 1 10 12 10 12 1 1 10 12 10 7 1 12 1 1 10 10 100 1 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 10 7 1 12 1 9 12 11 100 1 12 1 1 10 12 1 9 12 1 9 100 1 12 1 9 100 1 9 12 1 10 100 1 12 1 1 10 100 1 12 1 1 5 0 5 0 1 1 1 1 1 1 1 1 1 10 12 1 10 12 1 1 11 12 1 10 12 1 9 10 12 1 9 12 1 10 12 1 1 100 1 10 12 1 1 10 12 1 1 100 1 9 100 1 12 1 1 10 12 1 1 1 1 1 10 12 1 1 1 1 1 1 1 1 100 100 1 3 7 1 10 12 10 12 1 1 10 10 12 1 10 12 1 9 10 10 12 10 12 1 1 1 1 1 1 1 3 1 1 10 12 1 1 1 1 1 9 12 1 100 1 9 12 1 9 7 1 12 1 1 10 7 1 12 1 1 9 12 1 1 10 7 1 12 1 1 10 12 1 1 9 7 1 12 1 9 12 9 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 5 0 10 12 1 10 12 1 10 12 1 1 10 7 1 12 1 1 1 1 100 1 1 1 10 12 100 10 12 1 1 9 10 12 10 12 1 1 1 1 1 1 100 1 1 9 12 1 10 12 1 1 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 3 1 1 3 1 3 1 3 1 1 3 1 9 12 1 10 12 1 10 12 1 9 12 1 100 1 1 1 1 3 1 10 12 1 1 1 3 1 1 1 3 1 1 1 1 10 12 10 12 8 1 10 12 1 10 10 12 1 1 10 7 1 12 1 1 1 1 1 1 1 10 12 1 1 1 1 10 12 1 1 1 1 1 1 1 10 12 10 1 1 9 12 1 10 12 10 1 10 12 1 1 10 12 1 9 100 1 12 1 9 12 1 1 10 100 1 10 12 1 10 10 12 1 9 5 0 10 7 1 12 1 1 100 1 9 12 1 10 10 12 1 1 9 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 10 12 9 12 10 12 9 12 1 1 9 12 100 1 1 1 1 1 10 12 9 12 1 3 8 1 10 12 1 1 10 12 1 8 1 8 1 10 12 8 1 8 1 8 1 8 1 8 1 8 1 10 8 1 8 1 1 9 10 12 1 1 1 1 1 10 12 1 1 10 12 1 10 12 1 10 10 100 1 12 1 1 10 100 1 12 1 1 1 1 1 1 1 1 1 1 1 100 9 10 12 1 1 10 10 12 1 10 12 100 1 10 12 1 9 12 1 9 12 1 1 1 1 1 1 1 1 1 1 1 100 10 12 1 1 10 12 1 3 10 12 1 1 1 1 10 12 1 10 12 1 10 10 7 1 12 1 1 1 1 1 1 1 1 1 1 1 1 5 0 9 10 12 1 10 12 1 1 1 9 12 1 9 10 12 1 1 1 10 1 1 1 1 1 1 9 100 1 12 1 1 9 12 1 1 1 1 10 7 1 12 1 1 10 12 10 10 12 1 1 10 12 1 1 1 1 9 12 1 10 12 1 1 1 1 1 1 1 10 10 10 1 1 1 1 100 1 1 1
  9939. instanceKlass org/eclipse/jdt/internal/compiler/lookup/NullTypeBinding
  9940. instanceKlass org/eclipse/jdt/internal/compiler/lookup/VoidTypeBinding
  9941. ciInstanceKlass org/eclipse/jdt/internal/compiler/lookup/BaseTypeBinding 1 1 168 7 1 7 1 1 1 1 1 1 3 1 3 1 3 1 3 1 1 1 1 1 1 10 12 1 1 9 12 1 1 100 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 1 1 10 12 9 12 1 1 100 1 5 0 9 12 1 9 12 9 12 1 1 1 10 12 1 1 1 1 1 10 12 1 1 1 1 1 1 10 12 1 1 9 9 12 1 1 10 12 1 1 1 1 1 1 10 12 1 1 1 1 1 10 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 100 1 10 1 1 1 1 1 100 1 1 1 1 1 1 1 10 12 1 100 1 10 12 10 12 1 1 1
  9942. staticfield org/eclipse/jdt/internal/compiler/lookup/BaseTypeBinding CONVERSIONS [I 256
  9943. ciInstanceKlass org/eclipse/jdt/internal/compiler/lookup/ProblemReferenceBinding 1 1 186 7 1 7 1 1 1 1 1 1 1 1 10 12 1 9 12 1 1 9 12 9 12 1 1 9 9 12 1 1 1 1 1 100 1 1 100 1 10 1 1 1 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 1 1 1 100 1 10 100 1 12 1 1 10 100 1 12 1 1 10 12 1 10 12 1 1 10 100 1 12 1 1 9 100 1 12 1 1 10 100 1 12 1 1 10 12 1 1 10 18 12 1 1 8 1 100 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 10 12 1 100 1 100 1 10 12 1 8 1 10 12 1 1 8 1 10 100 1 12 1 1 10 12 1 8 1 10 12 8 1 10 12 8 1 10 1 1 1 1 1 10 100 1 12 1 15 8 1 1 100 1 100 1 1
  9944. ciInstanceKlass org/eclipse/jdt/internal/compiler/lookup/HotSwappable 1 0 9 100 1 100 1 1 1 1 1
  9945. ciInstanceKlass org/eclipse/jdt/internal/compiler/lookup/ArrayBinding 1 1 533 7 1 7 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 9 7 1 12 1 9 12 1 1 9 7 1 12 1 1 10 12 1 1 9 12 1 1 100 1 1 10 12 9 12 1 1 100 1 9 12 9 12 9 12 7 1 10 12 1 1 9 5 0 5 0 9 12 5 0 1 1 1 1 1 7 1 1 1 10 12 1 1 10 12 10 12 1 1 1 1 1 1 1 5 0 10 12 1 1 1 1 1 1 5 0 9 12 1 1 10 12 1 1 100 1 3 10 12 10 12 10 12 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 10 12 1 1 1 1 1 10 12 10 12 1 1 9 12 1 1 10 12 1 1 1 1 1 1 1 10 12 10 7 1 12 1 1 1 1 1 1 100 1 9 12 10 12 1 1 1 10 12 1 10 12 1 100 1 10 12 1 8 1 10 12 1 1 10 12 10 12 1 18 12 1 1 1 10 10 12 1 10 12 1 1 10 12 1 1 1 100 1 9 12 1 100 1 10 100 1 12 1 1 1 1 1 1 10 12 1 1 1 10 12 1 10 100 1 12 1 1 1 1 10 12 9 12 10 12 1 1 10 12 1 10 7 1 12 1 1 10 12 1 10 12 1 10 12 1 100 1 10 12 1 100 1 9 12 1 1 10 12 10 12 1 100 1 9 12 1 10 12 1 9 12 1 1 1 1 1 1 1 1 1 100 1 1 10 12 10 1 1 1 10 12 1 1 1 10 12 1 10 12 1 5 0 9 100 1 12 1 1 9 12 1 10 12 1 1 10 12 10 12 1 1 1 1 1 1 100 1 10 12 1 10 12 10 1 1 5 0 9 12 100 1 10 100 1 12 1 1 5 0 1 1 1 1 1 10 1 10 12 1 1 10 12 1 1 9 5 0 1 1 1 1 10 8 1 100 1 1 10 12 1 1 10 12 1 10 12 1 1 1 1 1 5 0 10 12 1 1 1 10 12 1 1 9 12 100 1 10 12 1 9 100 1 12 1 9 12 1 9 12 1 9 12 1 1 9 12 1 9 12 9 12 1 9 12 1 9 9 12 1 9 12 1 9 12 1 10 12 1 10 12 1 1 1 1 1 1 1 10 12 10 12 1 1 1 10 100 1 12 1 15 8 1 1 100 1 100 1 1 1
  9946. staticfield org/eclipse/jdt/internal/compiler/lookup/ArrayBinding ArrayLength Lorg/eclipse/jdt/internal/compiler/lookup/FieldBinding; org/eclipse/jdt/internal/compiler/lookup/FieldBinding
  9947. instanceKlass org/eclipse/jdt/internal/compiler/lookup/UnresolvedAnnotationBinding
  9948. ciInstanceKlass org/eclipse/jdt/internal/compiler/lookup/AnnotationBinding 1 1 377 7 1 7 1 1 1 1 1 1 1 1 100 1 5 0 10 12 1 1 9 7 1 12 1 1 100 1 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 10 100 1 12 1 1 10 12 1 1 10 12 1 9 100 1 12 1 1 10 100 1 12 1 1 10 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 10 12 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 10 12 1 1 10 12 1 1 100 1 9 12 1 9 100 1 12 1 10 12 1 1 1 1 1 9 12 1 10 12 1 1 9 12 1 1 10 12 1 1 5 0 9 12 1 5 0 9 12 1 9 12 1 7 1 9 12 1 10 12 1 1 1 1 1 1 9 12 1 5 0 10 12 1 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 9 12 1 10 12 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 1 1 1 1 100 10 12 1 9 12 9 12 1 1 9 100 1 12 1 1 10 12 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 100 1 10 12 1 10 12 1 1 9 12 1 10 12 1 10 100 1 12 1 1 9 12 10 12 1 8 1 10 12 1 10 12 1 1 1 1 1 10 12 10 12 10 100 1 12 1 1 1 9 12 1 1 10 12 1 10 12 1 1 1 1 1 1 1 1 100 1 1
  9949. ciInstanceKlass org/eclipse/jdt/internal/compiler/lookup/VoidTypeBinding 1 1 37 100 1 7 1 1 1 1 100 1 9 7 1 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  9950. ciInstanceKlass org/eclipse/jdt/internal/compiler/lookup/NullTypeBinding 1 1 44 100 1 7 1 1 1 1 100 1 9 7 1 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 9 100 1 12 1 1 1
  9951. instanceKlass org/eclipse/jdt/internal/compiler/SourceElementParser$1
  9952. instanceKlass org/eclipse/jdt/internal/codeassist/SelectionEngine$1
  9953. ciInstanceKlass org/eclipse/jdt/internal/compiler/problem/ProblemReporter 1 1 5301 7 1 7 1 1 1 1 1 1 1 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 7 1 12 1 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 7 1 10 12 1 9 12 11 7 1 12 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 1 1 1 100 1 10 12 100 1 100 1 3 3 1 1 1 1 10 12 1 1 7 1 9 7 1 12 1 9 12 1 10 12 1 1 1 1 1 1 100 1 1 3 1 1 1 1 3 1 1 1 3 1 1 3 10 100 1 12 1 1 10 12 1 9 7 1 12 1 1 10 7 1 12 1 10 10 7 1 12 1 1 10 12 1 10 10 12 1 10 12 10 12 1 1 1 1 1 1 1 10 12 1 10 12 1 10 12 1 9 12 1 1 10 100 1 12 1 1 9 100 1 12 1 1 10 7 1 12 1 1 9 7 1 12 1 1 9 7 1 12 1 3 9 9 3 1 1 1 1 1 1 1 3 10 10 3 1 3 9 10 12 1 1 3 10 10 1 1 3 1 1 3 9 12 1 10 12 1 1 10 12 1 1 1 1 3 1 1 1 10 12 1 1 3 1 1 1 1 10 7 1 12 1 1 3 10 10 9 100 1 9 3 1 1 1 1 1 1 1 3 9 100 1 9 1 1 1 3 1 1 3 9 100 1 9 1 1 1 1 3 9 100 1 9 1 1 1 3 1 1 3 1 1 1 1 3 9 7 1 9 1 1 1 1 1 1 1 3 1 3 1 1 3 3 1 1 3 1 1 9 7 1 3 1 1 1 1 3 9 12 1 1 3 1 1 3 10 12 1 9 100 1 9 9 12 1 1 1 1 1 9 7 1 9 1 1 1 3 9 100 1 9 1 1 1 1 3 1 1 9 12 10 12 1 10 12 1 3 3 1 1 1 1 1 3 1 3 1 1 9 7 1 12 9 12 1 3 10 10 1 1 1 1 3 9 12 1 10 12 1 3 10 12 1 1 3 1 3 1 9 100 1 9 10 12 1 1 1 1 1 1 3 9 8 1 10 10 10 12 1 1 10 12 1 1 1 9 7 1 12 1 1 100 1 5 0 3 5 0 3 3 10 1 1 1 1 3 1 1 3 9 100 1 9 1 1 1 1 3 1 1 1 10 12 1 1 3 1 1 1 1 1 1 9 7 1 12 1 1 10 12 1 1 3 9 9 10 12 1 1 1 1 1 3 1 1 1 3 10 9 100 1 9 1 1 1 1 1 9 7 1 12 1 9 7 1 12 1 9 100 1 12 1 1 100 1 9 12 1 8 1 10 100 1 12 1 1 3 9 12 1 1 10 100 1 12 1 1 10 100 1 12 1 1 10 7 1 12 1 1 10 12 1 1 10 100 1 12 1 18 12 1 1 3 1 1 1 1 1 1 1 1 10 100 1 3 3 3 1 1 1 1 1 3 1 3 1 3 1 3 1 3 1 1 3 1 1 1 1 3 10 12 1 1 9 10 7 1 10 1 1 3 1 3 1 1 3 9 7 1 10 1 1 1 3 1 3 9 12 1 1 1 10 12 1 3 3 1 1 1 1 1 1 3 1 1 1 1 3 1 1 3 1 3 1 1 1 1 3 1 1 3 1 3 1 3 1 1 9 3 1 1 3 1 1 1 3 1 1 1 1 3 1 9 12 1 9 12 1 9 12 1 8 1 9 12 1 8 1 3 9 12 1 1 1 3 9 100 1 9 1 1 1 1 3 1 1 10 100 1 12 1 3 9 9 1 1 1 1 1 3 10 12 1 1 1 1 1 1 3 1 1 3 1 18 12 1 1 10 12 1 1 9 5 0 3 3 3 3 1 1 1 1 10 7 1 10 12 1 10 12 1 7 1 9 12 1 9 18 12 1 18 3 3 3 3 3 3 3 3 1 1 1 1 1 1 1 1 100 1 3 10 12 1 10 12 1 1 10 12 1 18 12 1 1 10 12 1 1 7 1 9 12 1 1 18 12 1 9 3 3 10 12 1 3 3 1 1 1 1 1 1 18 12 1 9 100 1 10 12 3 3 9 100 1 9 3 3 1 1 1 1 1 1 9 12 1 100 1 5 0 9 12 11 100 1 12 1 100 1 10 100 1 12 1 1 9 12 1 100 1 10 12 1 1 10 100 1 12 9 7 1 12 1 10 12 1 9 12 1 100 1 10 12 1 1 1 1 1 1 1 1 1 1 7 1 100 1 1 1 3 9 7 1 9 9 1 1 1 3 1 1 3 1 1 9 100 1 3 9 9 1 1 1 3 1 1 3 9 100 1 9 1 1 1 3 1 1 3 1 1 3 9 1 1 3 1 1 10 12 1 3 10 12 1 3 10 12 1 1 9 12 1 1 10 12 1 3 1 1 1 1 1 3 1 10 12 1 3 3 1 3 1 3 1 1 3 3 1 1 1 3 9 9 1 1 1 3 1 3 1 1 3 3 1 1 1 9 3 1 1 3 1 1 10 100 1 12 1 1 3 1 1 1 3 9 7 1 9 9 1 1 1 1 10 12 1 3 10 12 1 1 1 3 1 3 10 10 1 1 1 3 1 3 1 3 1 1 7 1 10 8 1 10 12 1 1 10 12 1 3 3 9 10 12 9 9 1 1 1 1 1 1 1 1 1 100 1 100 1 10 12 1 8 1 8 3 1 3 1 3 1 7 1 9 12 1 9 12 1 3 1 1 1 1 9 12 9 12 1 10 12 1 10 12 1 10 12 1 9 12 1 1 9 12 10 12 1 1 9 12 1 10 12 1 9 12 1 3 3 1 1 1 1 1 7 1 1 3 1 1 3 9 100 1 9 1 1 1 3 10 10 1 1 3 10 100 1 1 1 1 1 3 10 12 10 12 1 1 1 1 11 7 1 11 1 1 1 1 3 10 12 1 1 1 3 10 10 1 9 12 9 12 1 1 9 100 1 9 12 3 11 10 12 1 1 1 1 1 1 1 9 12 1 1 1 1 3 1 1 1 3 3 1 1 3 1 3 3 1 1 9 12 1 10 12 1 9 12 3 1 1 3 1 3 1 1 1 3 1 1 3 1 10 12 1 10 12 1 10 12 1 10 12 1 10 10 12 1 1 10 12 1 8 1 3 3 1 1 1 1 1 1 1 10 12 1 1 9 12 1 3 3 3 10 12 1 3 1 3 1 3 1 3 1 3 1 1 3 1 3 1 3 1 3 1 3 1 1 9 100 1 12 1 3 10 10 1 1 1 3 1 3 1 3 1 1 3 1 3 1 3 1 1 3 3 1 1 1 3 1 3 1 3 1 3 1 3 3 1 10 12 1 1 10 3 3 3 1 1 3 1 3 10 12 1 1 1 3 1 1 9 10 12 1 3 9 9 100 1 3 1 1 1 9 10 12 1 1 3 1 1 3 9 9 1 3 1 1 3 9 100 1 9 1 1 1 1 3 9 12 1 9 1 3 1 3 9 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 9 3 3 10 12 100 1 3 3 3 3 10 7 1 9 12 1 3 9 7 1 9 3 10 12 1 1 1 1 1 1 9 100 1 12 1 1 11 100 1 12 1 1 18 12 1 1 11 100 1 12 1 1 18 12 1 1 11 12 1 1 11 12 1 10 100 1 12 1 1 11 12 1 1 9 3 1 1 1 1 1 1 18 1 1 1 1 1 1 1 18 3 1 1 1 1 10 12 1 10 12 1 3 3 3 1 3 3 100 1 9 12 100 1 9 12 1 1 9 10 12 1 7 1 9 1 1 1 1 100 1 1 10 12 1 3 10 12 1 1 1 3 9 12 1 1 3 1 1 1 3 1 3 1 9 12 3 1 1 1 1 3 1 1 1 1 10 12 1 10 10 1 1 3 1 1 1 1 1 1 1 3 1 1 1 3 1 1 3 9 100 1 1 1 1 1 3 10 1 1 3 1 1 3 9 9 12 9 1 1 3 1 1 10 12 1 9 12 1 9 12 1 3 10 7 1 9 12 1 5 0 10 12 1 3 3 3 3 3 3 3 3 3 100 1 10 9 10 12 1 1 3 10 12 1 1 9 12 1 9 12 1 3 3 3 9 12 3 3 3 9 8 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 10 10 12 9 3 10 3 3 18 18 1 1 3 1 3 1 3 1 3 1 1 9 7 1 12 1 9 10 9 12 9 12 1 10 12 1 1 3 3 3 1 1 1 1 7 1 9 10 12 1 100 1 9 9 10 12 1 1 1 1 1 1 3 10 12 1 1 9 9 1 3 1 1 3 1 1 3 9 9 10 12 1 10 12 1 10 12 1 3 3 3 3 3 3 3 10 12 3 3 3 3 3 9 12 1 1 9 100 1 12 1 10 12 1 3 18 12 18 10 12 1 1 3 3 1 1 1 1 1 1 1 1 1 100 1 1 3 1 1 3 10 7 1 12 1 18 18 9 9 1 1 1 1 1 1 1 1 10 100 1 18 18 9 9 1 1 1 10 100 1 9 9 1 1 3 1 3 9 10 12 1 100 1 9 12 7 1 10 12 1 1 11 7 1 12 1 1 11 100 1 12 1 11 12 1 3 3 3 3 9 12 1 9 9 7 1 9 9 7 1 9 9 12 1 7 1 9 12 1 9 9 5 0 1 1 1 1 1 1 1 1 1 1 1 1 3 1 3 1 3 1 3 1 3 1 9 12 1 1 3 9 9 1 1 3 1 3 1 1 3 1 1 1 3 1 3 1 10 12 1 100 1 10 12 1 3 1 1 11 11 10 10 3 3 9 12 1 10 12 1 1 3 1 1 1 1 1 1 1 1 1 9 100 1 12 1 1 1 10 100 1 12 9 7 1 12 1 1 1 1 1 1 3 9 12 1 10 12 1 1 10 1 1 3 1 1 3 3 1 10 12 1 3 10 12 1 9 3 1 1 3 1 3 1 3 1 1 3 1 1 1 3 1 3 1 1 3 9 100 1 12 1 1 1 3 3 1 1 10 12 1 9 12 1 9 12 1 10 12 1 1 1 1 3 3 3 3 3 3 3 3 1 1 1 3 3 3 9 9 1 3 1 3 1 1 3 9 10 12 1 1 1 3 3 3 3 3 3 3 3 3 1 3 1 3 1 3 1 3 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 3 3 3 3 3 3 3 1 3 1 3 1 3 1 3 1 3 10 12 1 9 12 1 9 12 1 10 12 1 1 1 1 1 8 1 1 3 1 3 1 3 1 3 9 12 1 9 12 1 1 3 1 1 3 1 3 1 3 1 3 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 100 1 1 8 1 8 1 8 1 8 1 1 1 3 3 9 9 12 1 10 12 1 3 3 9 9 1 1 3 10 12 1 9 12 1 9 3 1 1 3 1 1 5 0 5 0 3 10 12 1 1 10 12 1 10 12 7 1 9 3 3 9 7 1 7 1 10 12 1 10 3 3 10 12 1 1 9 7 1 12 1 1 3 3 3 3 100 1 100 1 7 1 100 1 9 3 3 1 1 1 1 1 3 9 100 1 9 1 1 1 9 12 1 10 12 1 3 1 3 3 1 1 10 100 1 12 1 1 1 1 1 1 10 12 1 1 10 12 3 10 1 1 1 10 12 1 1 9 12 1 9 12 1 18 12 3 1 1 1 1 100 1 1 10 3 1 3 1 10 12 1 9 12 1 9 10 12 1 3 1 1 9 12 1 1 1 1 1 10 12 1 10 12 10 12 1 5 0 10 12 1 3 3 1 1 3 1 3 1 3 3 1 3 1 3 1 3 1 1 1 3 1 3 1 9 3 9 9 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 9 12 1 10 12 1 1 9 9 10 12 1 1 1 3 3 3 1 1 3 3 3 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 10 12 1 100 1 18 10 12 11 12 1 9 12 1 3 1 1 10 18 3 3 9 12 3 18 1 1 1 3 1 1 1 3 1 1 3 9 100 1 12 1 1 1 3 3 1 1 3 10 3 1 10 12 1 3 1 3 1 9 12 9 12 1 1 1 1 100 9 1 1 100 1 3 3 1 3 1 3 1 3 1 3 1 1 3 1 10 12 1 3 1 3 1 3 3 9 10 3 3 1 1 1 1 1 3 100 1 10 12 1 1 3 100 1 1 1 1 3 1 3 1 3 1 3 1 1 1 18 3 3 3 3 1 1 1 1 3 1 3 1 1 9 12 3 1 9 12 1 1 11 7 1 12 1 8 1 9 3 1 1 3 9 12 1 9 12 9 12 1 1 8 1 1 1 1 3 1 1 10 12 1 3 3 3 10 10 12 3 1 1 1 1 1 1 1 1 1 1 3 10 12 1 1 1 1 1 3 1 1 3 1 1 3 1 1 3 1 1 1 3 1 3 1 3 1 3 1 3 1 1 3 1 10 12 1 1 3 1 9 12 1 9 12 1 9 12 1 9 12 1 3 1 1 3 1 3 1 3 1 1 3 10 1 3 1 1 3 9 1 3 1 1 3 1 1 3 1 1 1 1 3 9 9 1 1 1 1 3 1 1 1 3 1 1 1 1 3 1 1 3 1 1 3 1 1 1 1 3 1 1 1 3 1 3 1 1 3 1 1 9 12 1 3 1 1 10 3 10 12 1 1 11 12 1 9 12 9 12 1 10 12 1 9 12 1 10 12 1 10 12 1 10 12 1 10 12 1 9 12 1 10 12 1 1 9 12 1 100 1 1 1 1 1 1 1 9 12 1 1 9 100 1 12 1 8 1 3 8 1 3 8 1 3 8 1 3 8 1 3 8 1 3 8 1 3 9 12 8 1 3 8 1 3 8 1 3 8 1 3 8 1 3 8 1 3 8 1 8 1 3 8 1 3 8 1 3 9 12 1 1 1 1 1 1 3 1 10 12 1 3 3 1 1 3 1 10 3 3 1 1 3 1 1 3 1 1 3 1 3 1 1 3 1 3 1 1 3 1 1 3 1 1 11 12 1 10 12 1 1 1 10 12 9 12 1 8 1 9 12 1 8 1 10 12 1 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 1 3 1 1 1 1 3 1 3 1 3 1 3 1 1 3 9 9 1 1 3 1 1 1 1 1 1 3 1 3 1 1 3 1 1 3 9 12 1 3 1 1 1 3 1 1 1 3 1 1 3 1 1 1 1 1 1 3 1 1 1 10 12 1 1 10 12 1 10 12 1 8 1 10 12 1 1 1 1 3 1 1 9 100 1 12 1 3 9 9 1 1 1 3 1 1 1 3 1 1 1 1 3 1 3 1 9 12 1 3 3 1 9 12 9 3 10 1 9 12 10 3 1 3 3 1 3 3 1 1 10 12 1 1 3 3 9 12 1 10 100 1 12 1 9 12 1 9 12 1 1 1 3 1 1 1 3 9 1 1 1 3 1 1 3 1 1 3 9 9 9 1 1 1 1 3 1 1 3 3 1 1 1 9 3 10 12 10 12 3 1 1 3 1 9 12 1 3 1 1 1 9 3 3 1 1 3 9 1 1 3 1 3 1 1 3 10 1 1 3 3 1 1 3 3 1 1 3 1 1 3 9 12 1 10 12 1 1 1 3 1 3 1 3 1 1 1 3 3 1 3 1 1 3 9 100 1 9 9 12 1 1 1 3 1 3 1 1 3 9 9 1 3 9 12 1 10 12 1 1 9 1 1 3 9 1 3 9 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 9 12 1 9 12 1 9 10 12 1 1 1 1 3 9 1 3 1 3 1 1 1 1 9 12 1 3 1 1 11 100 1 12 1 11 100 1 12 1 100 1 10 12 10 12 1 10 12 1 1 10 12 1 10 100 1 12 1 1 10 12 1 10 12 1 1 10 12 1 9 100 1 12 1 10 12 1 9 12 1 11 9 12 1 100 1 10 12 1 11 12 1 1 3 3 9 100 1 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 10 7 1 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 100 1 1 3 3 3 10 1 1 1 3 1 3 1 1 3 3 3 1 1 1 1 3 10 10 3 1 1 1 1 3 1 1 1 3 1 3 1 3 1 1 1 9 100 1 3 9 9 1 1 1 3 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 3 1 1 3 1 1 1 10 12 1 100 1 9 12 1 100 1 3 3 1 1 1 1 1 1 3 1 1 3 1 3 1 1 9 10 3 1 1 3 1 3 1 3 1 3 1 1 1 3 1 1 10 7 1 12 1 1 9 12 1 3 9 9 3 1 1 1 10 12 1 3 3 3 3 1 1 1 9 3 1 9 12 1 3 1 3 1 3 1 1 3 1 3 1 3 1 10 12 1 1 3 1 1 100 1 10 12 1 10 12 1 1 10 12 1 1 9 10 12 1 10 12 1 9 100 1 12 1 1 10 12 1 1 10 12 1 10 12 1 9 12 1 10 12 1 1 1 1 1 1 3 10 12 1 100 1 9 12 1 10 12 1 1 10 12 1 1 1 3 10 12 1 3 3 3 1 1 3 10 12 1 1 9 10 3 3 1 100 1 3 1 3 1 1 3 1 1 1 1 3 1 1 1 9 3 3 1 1 1 1 1 10 12 1 3 3 8 1 9 100 1 9 1 1 1 1 1 3 3 1 3 1 1 3 1 3 1 1 18 18 3 1 1 1 10 12 1 1 9 12 1 9 3 9 1 9 9 1 1 1 9 12 1 3 3 3 3 3 3 3 1 1 1 10 12 1 3 10 12 1 1 3 3 1 1 3 1 1 1 3 1 1 3 1 1 1 1 1 3 1 1 1 1 10 12 1 1 1 1 1 1 1 1 10 12 1 1 3 3 1 3 9 1 3 1 1 1 1 3 1 1 1 3 9 12 1 1 1 1 9 12 10 12 1 9 12 1 9 12 1 10 12 1 3 3 3 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 3 10 12 9 12 3 1 1 1 1 10 12 3 1 1 10 12 1 1 1 3 1 3 1 3 1 3 1 3 1 1 1 1 3 1 1 1 1 1 1 1 1 3 1 1 1 3 1 1 1 3 1 1 3 1 1 1 3 3 1 3 1 1 1 3 1 1 1 3 1 3 1 1 10 12 1 1 1 1 8 1 10 12 1 8 1 8 1 9 12 1 9 100 1 12 1 10 10 12 1 10 12 1 1 3 9 9 1 1 1 1 1 1 1 100 1 3 1 3 1 1 1 1 3 1 1 1 3 9 100 1 9 1 1 1 9 100 1 12 1 10 9 12 1 1 1 1 9 3 1 1 1 1 1 1 1 1 1 1 3 10 9 9 1 1 3 1 1 1 10 12 1 1 9 100 1 9 10 12 10 12 1 3 9 12 1 3 1 1 1 1 1 9 7 1 12 1 1 1 1 3 1 3 1 1 9 12 10 3 1 1 3 1 3 1 1 3 1 1 1 1 1 3 1 1 1 1 3 1 3 1 3 1 1 9 12 1 3 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 3 1 3 1 3 1 1 1 3 1 1 3 1 1 3 1 1 3 9 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 9 3 1 3 1 3 1 1 3 9 100 1 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 1 10 12 1 3 3 1 1 3 3 1 10 3 8 1 10 12 8 1 3 1 1 1 3 1 1 3 1 1 5 0 9 3 1 1 3 1 1 1 1 1 1 9 12 1 3 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 10 100 1 3 9 9 1 1 1 3 1 3 1 10 9 12 1 3 3 1 1 1 1 3 1 3 1 1 1 3 10 100 1 10 1 1 3 1 3 1 3 1 3 1 10 3 1 3 1 3 18 12 1 10 12 1 1 1 1 1 100 1 9 12 10 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 100 1 100 1 1 1 1 1 10 1 1 1 10 1 1 10 1 1 9 100 1 1 1 1 1 1 1 1 11 12 1 1 1 1 10 7 1 12 1 15 8 1 10 7 1 12 1 1 15 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 1 1 15 1 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 8 1 8 1 8 1 8 1 8 1 8 1 8 1 16 10 12 15 16 8 1 16 10 12 15 16 1 100 1 100 1 1 1 1 1 12 10 1 12 10 1 100 1 8 1 12 10 1 7 10 1
  9954. staticfield org/eclipse/jdt/internal/compiler/problem/ProblemReporter $assertionsDisabled Z 1
  9955. ciInstanceKlass org/eclipse/jdt/internal/compiler/lookup/SyntheticMethodBinding 1 1 705 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 10 12 1 9 12 9 12 9 12 1 9 12 1 100 1 7 1 10 12 1 1 9 12 9 7 1 12 1 1 10 7 1 12 1 1 10 12 1 1 10 7 1 12 1 1 9 12 1 9 7 1 12 1 9 12 1 10 12 1 1 9 7 1 12 1 1 9 12 1 7 1 9 12 9 12 9 12 1 1 9 12 9 12 1 1 9 12 1 9 12 1 1 10 12 1 1 10 7 1 12 1 1 9 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 9 12 1 1 9 7 1 12 1 1 9 7 1 12 1 1 9 7 1 12 1 9 9 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 1 10 12 1 100 1 9 12 1 1 10 12 1 1 9 12 9 12 10 12 1 1 100 100 1 1 10 12 1 10 12 1 1 10 12 1 1 9 9 3 9 9 9 12 10 12 1 1 1 1 10 12 1 10 12 1 1 9 12 1 10 7 1 12 1 1 10 9 12 1 10 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 10 12 1 1 1 9 12 1 10 12 1 1 100 1 10 9 12 1 10 12 1 1 10 12 1 10 12 1 9 12 9 12 1 1 1 1 1 9 12 9 12 1 1 9 100 1 12 1 10 12 1 10 12 1 1 9 12 1 100 1 5 0 1 1 100 1 1 9 12 9 7 1 12 9 5 0 10 12 1 11 7 1 12 1 1 18 12 1 1 11 12 1 1 3 18 11 12 1 1 18 12 1 1 11 12 1 1 7 1 9 12 1 1 1 1 9 12 9 100 1 1 1 9 10 100 1 12 1 1 1 1 1 1 1 1 1 9 10 9 12 1 1 9 12 1 9 12 1 9 100 1 9 5 0 9 12 1 10 12 1 1 9 100 1 3 9 10 100 1 12 1 1 100 1 10 10 12 1 1 9 100 1 12 1 1 5 0 10 100 1 12 1 1 100 1 9 12 1 100 1 11 100 1 12 1 10 12 1 1 10 12 1 10 12 1 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 1 5 0 9 12 9 10 12 1 1 10 12 1 9 12 1 9 9 1 1 1 1 1 1 100 10 1 1 1 1 1 1 1 9 100 1 12 1 1 10 12 1 1 1 10 12 1 10 10 12 1 1 10 12 1 1 1 1 1 1 10 12 1 10 12 1 10 12 1 9 12 1 100 1 10 100 1 12 1 1 10 100 1 12 1 1 10 12 1 1 1 1 1 1 7 1 1 1 1 10 7 1 12 1 1 15 1 16 15 1 16 16 10 12 1 15 16 1 16 10 12 15 16 1 100 1 100 1 1
  9956. ciInstanceKlass org/eclipse/jdt/internal/compiler/ast/LambdaExpression 1 1 1612 7 1 7 1 100 1 100 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 9 12 7 1 10 12 1 1 9 12 1 1 1 10 12 1 9 12 9 12 9 12 9 12 9 12 7 1 10 12 9 12 9 12 9 12 9 12 9 12 1 9 12 9 12 9 12 9 12 1 10 12 1 1 10 12 1 1 1 1 1 1 10 12 9 100 1 9 12 7 1 9 12 1 100 1 1 9 12 7 1 1 1 1 9 12 1 1 1 1 9 12 1 9 12 1 1 9 7 1 12 1 100 1 10 7 1 12 1 1 7 1 10 7 1 12 1 1 9 7 1 12 1 7 1 10 10 12 1 1 10 12 1 10 12 1 1 10 12 1 9 7 1 12 1 9 9 12 1 1 10 9 12 1 1 10 12 1 1 7 1 10 12 1 10 12 1 1 9 12 1 7 1 10 12 1 1 9 12 1 1 10 7 1 12 1 1 9 12 1 9 12 1 1 10 12 1 1 10 7 1 12 1 9 12 1 10 12 1 1 10 12 1 9 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 7 1 1 1 9 12 1 1 9 12 1 10 100 1 12 1 1 10 7 1 12 1 1 10 12 1 1 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 1 1 1 100 1 10 12 1 1 9 12 1 1 9 7 1 12 1 9 12 1 10 12 1 1 9 12 1 9 7 1 12 1 10 100 1 9 12 1 1 9 7 1 12 1 7 1 10 12 1 10 12 1 1 9 12 10 12 1 1 7 1 9 12 1 9 12 1 10 12 1 9 12 9 12 1 10 3 9 7 1 12 1 10 7 1 12 1 10 7 1 12 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 9 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 100 1 3 9 12 1 1 100 1 5 0 9 12 1 10 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 5 0 9 5 0 10 12 1 1 10 12 1 1 10 10 12 1 1 10 12 1 1 10 10 12 1 1 100 1 100 1 10 12 1 10 12 1 1 9 7 1 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 9 3 10 12 1 1 9 12 1 1 5 0 100 1 9 12 1 9 12 10 12 1 1 9 10 12 1 1 10 12 1 10 12 1 10 12 1 1 9 9 12 1 10 7 1 12 1 1 10 12 1 1 5 0 3 10 12 1 9 12 1 9 12 7 1 10 12 1 7 1 9 9 12 1 10 12 1 10 12 1 9 10 12 1 10 12 1 10 9 12 9 12 10 12 1 10 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 10 12 1 7 1 10 12 1 10 12 1 10 12 1 100 1 10 12 1 9 12 1 100 1 9 12 1 100 1 1 1 1 1 1 1 1 10 7 1 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 1 1 1 1 1 10 12 1 1 10 9 12 1 7 1 9 7 1 12 1 1 10 12 1 10 12 1 1 9 7 1 12 1 10 7 1 12 1 1 10 12 1 1 9 7 1 12 1 11 7 1 12 1 1 11 12 1 1 9 12 7 1 1 1 1 1 9 12 1 10 12 1 1 10 12 1 1 10 7 1 12 1 1 10 10 12 1 1 10 12 1 1 9 12 1 9 3 10 12 1 9 12 9 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 5 0 10 12 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 10 12 1 10 100 1 12 1 1 10 12 1 10 12 1 10 100 1 12 1 1 10 12 1 1 10 100 1 12 1 1 5 0 5 0 10 12 1 1 9 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 100 10 12 1 1 1 1 10 12 10 100 1 10 12 1 10 12 1 1 100 1 1 1 1 1 1 100 1 1 1 1 10 12 1 1 1 3 8 1 18 12 1 1 8 1 10 12 1 10 12 1 8 1 8 1 10 8 1 1 1 1 1 10 7 1 12 1 1 10 10 12 1 1 1 1 1 1 7 1 10 12 1 10 10 12 1 1 10 12 1 1 9 7 1 12 1 1 9 12 1 10 12 1 1 10 9 12 1 10 12 1 10 12 1 1 10 10 12 1 1 10 12 1 100 1 1 1 1 9 12 10 12 1 10 12 1 1 11 7 1 12 1 1 11 7 1 12 1 1 10 12 1 1 11 12 1 9 12 1 1 10 12 1 1 10 12 1 10 10 12 1 1 10 12 1 1 9 12 10 12 1 1 10 12 1 1 1 1 1 1 100 1 1 1 1 1 10 12 10 12 1 1 9 10 12 1 1 10 10 12 1 1 10 12 1 10 10 12 1 10 12 1 1 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 10 12 1 9 12 1 10 7 1 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 9 12 1 1 100 1 10 12 1 100 1 10 100 1 10 100 1 10 1 1 1 1 10 12 1 1 9 100 1 12 1 1 100 1 1 1 9 12 1 9 12 1 10 12 1 11 12 9 1 1 1 1 1 9 12 9 12 1 9 12 1 10 12 1 9 9 12 1 9 12 1 10 12 1 9 12 1 10 12 1 9 12 1 1 1 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 11 100 1 100 1 9 12 1 11 12 1 10 12 1 10 12 1 10 12 10 12 1 18 12 1 1 10 12 1 1 10 12 1 10 12 10 12 1 1 10 9 10 12 1 1 100 1 1 1 1 1 1 1 100 1 10 12 1 9 12 1 9 1 1 1 1 10 12 1 10 12 1 1 1 1 18 12 1 1 11 100 1 12 1 1 1 10 12 1 10 12 1 10 100 1 10 12 1 1 1 1 1 1 1 9 12 1 9 12 1 1 1 1 100 1 10 9 12 1 10 12 1 10 12 1 11 12 1 1 11 18 12 1 11 12 1 1 1 1 1 1 1 1 1 1 9 12 100 1 10 1 1 9 12 9 100 1 10 12 1 1 11 1 1 100 1 10 12 1 100 1 10 10 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 10 7 1 7 1 9 12 1 1 1 1 100 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 10 100 1 12 1 15 8 1 10 7 1 12 1 1 15 16 10 12 15 16 16 10 12 15 1 16 1 16 10 12 15 16 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1
  9957. staticfield org/eclipse/jdt/internal/compiler/ast/LambdaExpression NO_SYNTHETIC_ARGUMENTS [Lorg/eclipse/jdt/internal/compiler/lookup/SyntheticArgumentBinding; 0 [Lorg/eclipse/jdt/internal/compiler/lookup/SyntheticArgumentBinding;
  9958. staticfield org/eclipse/jdt/internal/compiler/ast/LambdaExpression NO_BODY Lorg/eclipse/jdt/internal/compiler/ast/Block; org/eclipse/jdt/internal/compiler/ast/Block
  9959. ciInstanceKlass org/eclipse/core/filesystem/provider/FileInfo 1 1 181 7 1 7 1 7 1 1 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 10 12 3 9 12 9 12 100 1 9 12 9 12 8 1 9 12 9 12 1 1 1 1 1 1 1 1 1 1 10 12 100 1 1 1 1 1 1 11 12 1 1 10 7 1 12 1 1 1 1 1 10 12 1 1 1 1 3 10 12 1 5 0 10 12 1 1 5 0 3 5 0 1 1 1 1 1 1 1 1 1 1 3 10 12 3 10 12 3 1 1 10 7 1 12 1 1 1 1 1 1 1 1 1 100 1 10 1 1 1 100 1 10 8 1 10 12 1 1 8 1 8 1 8 1 10 12 1 8 1 8 1 10 12 10 12 1 8 1 8 1 10 12 1 8 1 8 1 10 12 1 1 1 10 12 1 1
  9960. ciInstanceKlass org/eclipse/jdt/internal/compiler/classfmt/ClassFileConstants 1 1 279 100 1 100 1 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 3 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 3 1 3 1 1 3 1 1 3 1 3 1 3 1 1 3 1 3 1 3 1 3 1 3 1 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 3 1 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 100 1 12 1 1 1 1 1 1
  9961. ciInstanceKlass org/eclipse/jdt/internal/compiler/util/Messages 1 1 275 7 1 7 1 1 1 1 1 1 8 1 1 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 10 12 1 1 1 1 10 12 1 1 1 1 1 1 1 1 10 7 1 12 1 1 1 1 1 9 12 10 7 1 12 1 1 10 12 1 1 7 1 10 12 1 18 12 1 10 12 1 1 10 7 1 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 7 10 12 1 1 18 12 1 1 1 1 1 1 1 1 1 1 10 7 1 12 1 1 10 12 1 1 10 12 1 1 10 7 1 12 1 10 12 1 1 10 12 1 18 10 12 1 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 100 100 1 10 12 10 12 1 1 10 7 1 12 1 7 1 10 12 1 10 12 1 10 100 1 12 1 1 100 1 1 1 1 1 1 1 7 1 10 12 1 1 10 12 1 1 1 1 1 10 7 1 12 1 15 8 1 8 1 8 1 1 100 1 100 1 1 1 1
  9962. ciInstanceKlass org/eclipse/jdt/internal/compiler/lookup/SyntheticArgumentBinding 1 1 101 7 1 7 1 1 1 1 1 1 1 1 1 1 9 7 1 12 1 1 9 12 1 10 7 1 12 1 1 9 12 1 1 100 1 10 12 1 9 12 1 1 100 1 5 0 9 12 1 1 9 12 9 12 1 1 1 1 1 1 9 12 1 10 7 1 12 1 1 10 7 1 12 1 1 10 12 1 1 1 1 1 9 100 1 9 9 12 1 10 12 1 1 9 12 1 1 1 1 1 1
  9963. ciInstanceKlass org/eclipse/jdt/internal/compiler/lookup/MemberTypeBinding 1 1 164 7 1 7 1 1 1 1 10 12 9 12 1 1 100 1 5 0 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 10 12 1 1 100 1 10 12 10 12 1 10 12 1 9 12 10 12 9 12 10 12 1 1 1 1 1 9 12 1 10 100 1 12 10 12 1 10 7 1 9 12 1 10 7 1 12 1 1 1 1 10 12 1 1 1 1 10 12 9 12 1 1 100 1 10 5 0 10 12 1 9 10 10 12 1 9 12 1 100 1 3 9 5 0 1 1 1 1 10 12 1 10 12 1 100 1 10 12 10 12 1 10 12 18 12 1 1 1 1 10 12 1 1 1 10 100 1 12 1 15 8 1 1 100 1 100 1 1
  9964. ciInstanceKlass org/eclipse/jdt/internal/compiler/lookup/LocalTypeBinding 1 1 406 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 9 12 1 1 1 1 7 9 7 1 12 1 1 9 7 1 12 1 10 7 1 12 1 1 10 12 1 9 12 1 100 1 9 12 1 1 100 1 5 0 5 0 9 12 9 12 9 10 12 1 9 12 10 12 1 1 9 100 1 12 1 100 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 100 1 100 1 10 12 1 9 12 1 1 1 10 12 1 1 100 1 10 12 100 1 9 12 1 10 100 1 12 1 1 10 12 1 1 1 1 1 1 1 9 12 10 12 9 12 1 1 9 12 10 12 1 9 12 1 1 9 7 1 12 1 5 0 9 12 1 1 9 100 1 12 1 1 9 100 1 12 1 1 7 1 1 1 1 10 12 10 12 1 10 10 12 1 1 100 1 10 10 12 1 1 10 12 1 10 100 1 12 1 1 10 12 1 10 12 1 9 12 1 10 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 9 12 10 12 10 12 1 1 10 100 1 12 1 1 1 1 10 12 9 12 1 1 1 10 12 1 10 12 9 12 1 10 12 10 12 10 12 1 1 10 10 1 9 7 1 12 1 10 12 9 12 1 10 12 1 10 12 1 10 12 10 12 1 10 12 1 1 9 12 1 1 10 12 1 10 100 1 1 1 1 100 1 10 12 10 1 5 0 10 12 1 1 1 9 12 1 1 10 100 1 12 1 1 1 1 1 10 12 9 12 10 1 1 10 12 1 10 12 1 18 12 1 1 10 12 18 10 12 18 12 1 18 1 9 12 10 100 1 12 1 1 1 1 100 1 1 1 10 100 1 12 1 15 8 1 8 1 8 1 8 1 1 100 1 100 1 1
  9965. staticfield org/eclipse/jdt/internal/compiler/lookup/LocalTypeBinding LocalTypePrefix [C 7
  9966. instanceKlass org/eclipse/jdt/internal/compiler/codegen/ExceptionLabel
  9967. instanceKlass org/eclipse/jdt/internal/compiler/codegen/BranchLabel
  9968. ciInstanceKlass org/eclipse/jdt/internal/compiler/codegen/Label 1 1 29 7 1 7 1 1 1 1 1 1 1 3 1 1 1 10 12 9 12 1 1 1 1 1 9 12 1 1 1
  9969. ciInstanceKlass org/eclipse/jdt/internal/compiler/lookup/RawTypeBinding 1 1 369 7 1 7 1 1 1 1 10 12 1 9 12 1 1 5 0 9 7 1 100 1 5 0 100 1 10 12 1 1 10 12 1 1 9 12 1 1 100 1 3 9 3 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 100 1 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 10 12 1 10 12 1 10 10 12 1 1 9 7 1 12 1 1 10 12 1 1 8 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 9 12 10 12 1 1 1 1 10 12 1 10 12 1 9 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 9 7 1 12 10 12 1 10 12 10 12 1 1 1 1 1 1 1 10 12 1 10 12 1 10 8 1 10 12 1 10 12 1 1 10 10 12 1 1 1 9 12 10 12 1 100 1 1 10 12 1 1 10 12 1 10 7 1 12 7 1 10 12 1 10 10 1 1 10 12 1 1 1 10 12 1 1 10 12 1 1 1 1 10 12 1 1 1 10 7 1 9 12 1 1 1 1 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 9 12 1 1 10 12 10 12 1 10 100 1 12 1 9 12 1 10 12 1 9 12 1 10 12 1 1 10 12 1 10 12 1 1 1 1 1 1 1 1 100 1 1 1 1 1 10 12 9 12 10 7 1 12 1 1 9 12 1 1 10 12 1 1 1 1 10 12 9 1 1 1 1 1 1 1 1 1 1 1 1 9 12 1 10 12 10 12 1 10 12 1 1
  9970. instanceKlass org/eclipse/jdt/internal/compiler/codegen/MultiCatchExceptionLabel
  9971. ciInstanceKlass org/eclipse/jdt/internal/compiler/codegen/ExceptionLabel 1 1 156 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 9 12 9 12 9 12 9 12 9 12 1 1 1 1 1 1 1 1 1 1 1 9 12 10 7 1 12 1 1 9 12 1 9 9 12 1 1 1 1 1 10 7 1 12 1 1 1 1 1 1 10 100 1 12 1 1 10 100 1 12 1 10 100 1 12 1 1 10 12 1 1 100 1 10 12 1 10 12 1 1 10 12 1 10 100 1 12 1 10 12 1 8 1 9 100 1 12 1 1 10 100 1 12 1 1 10 12 1 8 1 10 12 1 8 1 8 1 8 1 8 1 8 1 8 1 10 12 1 1 1 1 1 100 1 1
  9972. instanceKlass org/eclipse/jdt/internal/compiler/codegen/StackMapFrameCodeStream
  9973. ciInstanceKlass org/eclipse/jdt/internal/compiler/codegen/CodeStream 1 1 3182 7 1 7 1 1 1 1 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 9 12 7 1 10 12 1 1 9 12 9 12 1 1 1 10 12 7 1 9 12 7 1 9 12 7 1 9 12 9 12 9 12 9 12 9 12 7 1 10 9 12 7 1 10 9 12 9 7 1 12 1 9 12 9 12 1 9 12 100 1 9 12 1 1 9 7 1 12 1 1 10 7 1 12 1 1 9 7 1 12 1 10 12 1 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 9 12 9 12 9 12 9 12 10 12 1 9 12 100 1 10 7 1 12 1 1 10 12 1 1 9 12 9 7 1 12 1 1 10 12 1 1 1 1 10 12 1 1 9 12 1 9 12 1 10 12 1 1 9 12 1 1 1 1 1 1 10 7 1 12 1 1 1 1 1 1 1 1 9 12 10 12 10 12 1 1 1 1 1 1 1 9 12 10 7 1 12 1 1 9 12 9 12 1 1 10 12 1 1 10 12 1 1 1 1 1 9 7 1 12 1 1 10 12 1 9 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 1 7 1 10 12 1 7 1 100 1 8 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 9 12 1 1 10 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 10 12 1 1 10 12 1 1 10 7 1 12 1 1 10 12 1 1 1 1 1 9 12 1 9 12 1 1 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 9 12 1 11 7 1 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 10 10 1 10 12 10 1 1 1 9 12 1 1 11 7 1 12 1 1 10 12 1 1 1 1 1 1 1 1 1 18 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 10 7 1 12 1 1 9 12 1 100 1 5 0 10 7 1 12 1 1 9 12 10 12 1 1 9 12 1 10 12 1 10 12 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 9 12 1 9 12 1 10 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 1 1 1 1 10 12 1 1 10 12 1 10 12 1 1 1 1 10 12 1 10 12 10 12 1 10 12 1 1 1 1 10 7 1 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 10 12 1 1 10 12 1 10 12 1 10 12 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 1 1 1 1 10 12 1 10 12 9 10 12 1 10 12 1 1 10 12 1 1 1 9 7 1 12 1 10 7 1 10 7 1 12 1 1 10 12 1 1 10 12 1 9 12 1 1 9 100 1 12 1 1 10 7 1 12 1 1 10 10 12 1 1 10 12 1 9 12 1 9 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 1 1 1 1 1 9 9 10 12 1 1 9 12 1 10 12 1 1 10 12 1 10 12 10 12 1 10 12 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 10 12 10 12 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 7 1 12 1 1 10 12 1 10 12 10 12 1 10 7 1 12 1 1 10 12 10 12 10 12 10 12 1 10 12 1 10 12 1 10 12 1 1 1 10 12 1 1 10 100 1 12 1 1 10 12 1 1 9 7 1 12 1 1 9 12 1 9 12 1 10 12 10 12 7 1 9 12 1 10 12 1 1 7 1 9 12 1 100 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 9 12 1 9 12 1 9 12 1 1 9 7 1 12 1 9 12 1 9 9 12 1 1 1 1 1 1 1 1 10 12 1 9 7 1 12 1 10 12 10 12 1 10 12 10 12 1 10 12 1 1 1 1 1 10 100 1 12 1 10 12 1 1 8 1 10 12 11 100 1 12 1 1 11 100 1 12 1 1 10 12 1 1 11 12 1 8 1 10 12 1 9 12 1 10 12 1 9 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 5 0 10 12 1 1 9 7 1 12 1 10 100 1 10 10 12 1 10 12 1 11 12 1 9 12 1 10 12 1 1 10 12 10 12 1 10 10 12 1 10 12 1 1 9 12 1 10 12 1 1 10 12 1 10 12 1 1 1 1 1 1 9 7 1 12 1 10 12 1 10 12 1 10 12 10 12 1 10 12 1 100 1 10 12 1 1 9 10 12 1 10 12 1 1 1 1 1 1 1 1 1 100 100 1 10 12 1 9 12 10 12 1 1 9 9 12 1 9 12 1 9 12 1 10 12 1 1 1 10 12 1 10 12 9 12 1 1 9 10 12 10 12 1 1 1 1 100 1 10 9 12 1 9 7 1 12 1 9 12 1 1 9 10 12 1 10 12 1 10 100 1 12 1 11 7 1 12 1 1 11 12 1 1 9 12 1 9 12 1 9 12 1 10 12 8 1 10 10 12 1 9 12 10 12 10 12 1 8 10 12 1 10 12 1 7 1 10 11 12 1 11 12 1 1 11 100 1 10 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 11 11 11 12 1 9 100 1 12 9 12 1 9 12 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 9 12 1 9 12 1 10 12 1 100 1 10 12 1 1 10 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 10 12 1 1 10 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 100 1 9 12 1 9 12 1 9 12 1 9 12 1 10 12 1 8 1 9 9 12 1 10 12 1 10 12 1 8 1 9 12 1 9 12 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 1 1 9 12 1 10 12 10 12 10 12 1 10 12 10 12 1 10 12 1 10 12 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 10 100 1 10 12 1 100 1 10 12 1 1 1 1 1 1 1 100 1 9 12 1 9 12 1 10 12 10 1 1 9 12 1 10 1 10 12 1 1 10 12 1 1 9 10 12 1 1 1 10 12 1 10 12 1 1 10 12 1 1 100 1 8 1 10 1 1 1 1 100 1 10 12 1 10 12 1 10 12 9 12 1 10 12 1 1 8 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 9 10 12 1 10 12 1 10 12 1 10 10 9 12 1 10 12 1 1 1 1 1 1 1 1 1 100 1 1 10 12 1 10 10 10 10 10 12 1 1 10 12 1 10 12 1 10 12 1 100 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 100 1 1 1 10 9 12 1 10 12 1 1 1 1 10 10 12 1 1 10 12 1 1 1 1 1 1 1 100 1 1 10 10 12 1 1 10 10 12 1 18 12 1 1 9 12 1 1 18 1 18 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 1 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 10 12 1 9 12 1 9 10 12 1 1 1 1 1 1 1 10 12 1 1 10 12 1 10 12 1 1 1 1 9 12 1 8 1 9 12 1 9 12 1 9 12 1 1 100 10 12 1 1 9 100 1 10 12 1 10 12 1 10 12 1 1 1 1 10 12 1 10 12 1 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 9 9 12 9 12 1 9 12 9 12 9 12 9 12 9 12 11 12 1 10 1 1 1 10 10 12 1 10 12 1 1 1 9 12 1 10 12 1 10 12 1 1 1 1 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 10 12 1 10 10 12 1 100 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 1 1 9 12 1 9 12 1 9 12 1 1 1 9 12 1 9 12 1 1 1 9 12 1 9 12 1 9 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 8 1 10 10 100 1 12 1 1 9 12 1 9 12 1 9 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 9 12 1 1 9 12 1 9 12 1 9 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 1 1 1 9 12 1 9 12 1 9 12 1 1 9 12 1 9 12 1 1 1 9 5 0 9 9 12 10 12 1 100 1 9 12 1 1 9 12 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 10 12 1 10 12 10 12 1 10 12 1 10 12 3 10 7 1 12 1 1 3 10 12 1 10 12 10 12 1 1 1 1 1 1 1 100 10 12 1 10 12 1 10 12 1 1 1 1 1 1 1 1 9 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 1 10 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 9 12 1 9 12 1 9 12 1 100 1 10 1 10 12 1 10 12 1 1 1 1 9 12 1 1 9 12 1 1 1 1 1 1 9 12 1 10 12 1 1 1 10 12 1 10 10 1 10 12 1 1 1 9 12 9 12 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 10 12 9 12 9 12 9 7 1 12 10 10 12 1 1 10 12 1 10 9 12 1 9 12 1 9 12 1 9 12 9 10 12 1 1 1 1 9 7 1 12 1 1 9 12 1 9 12 1 10 12 1 1 10 12 10 1 1 9 10 12 1 1 9 7 1 9 12 1 9 1 1 1 1 1 1 1 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 1 1 1 1 1 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 1 1 1 1 1 1 1 8 1 10 12 1 8 1 8 1 8 1 1 10 12 1 100 1 10 12 1 9 12 10 12 1 1 3 3 3 1 1 1 1 1 10 10 9 1 1 1 1 1 1 10 12 1 1 11 7 1 12 1 1 1 1 1 10 12 1 1 1 1 1 10 12 11 12 1 10 12 1 1 18 12 1 1 11 12 1 1 10 12 10 12 10 12 1 1 100 1 10 1 1 1 1 1 1 1 10 7 1 12 1 1 15 16 10 12 15 16 10 100 1 12 1 15 8 1 16 15 16 1 100 1 100 1 1 1 1
  9974. staticfield org/eclipse/jdt/internal/compiler/codegen/CodeStream RESTART_IN_WIDE_MODE Lorg/eclipse/jdt/internal/compiler/CompilationResult; org/eclipse/jdt/internal/compiler/CompilationResult
  9975. staticfield org/eclipse/jdt/internal/compiler/codegen/CodeStream RESTART_CODE_GEN_FOR_UNUSED_LOCALS_MODE Lorg/eclipse/jdt/internal/compiler/CompilationResult; org/eclipse/jdt/internal/compiler/CompilationResult
  9976. ciInstanceKlass org/eclipse/jdt/internal/compiler/codegen/ConstantPool 1 1 1825 7 1 7 1 100 1 100 1 1 1 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 7 1 12 1 1 9 12 8 1 10 7 1 12 1 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 9 12 8 9 12 9 12 8 1 9 12 9 12 8 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 8 1 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 7 9 7 1 12 1 9 12 1 9 12 1 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 8 1 9 12 9 12 8 1 9 12 8 1 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 8 1 9 12 8 1 9 12 9 12 8 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 8 1 9 12 9 12 8 1 9 12 9 12 8 1 9 12 9 12 8 1 9 12 9 12 8 1 9 12 9 12 8 1 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 8 1 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 9 12 8 1 9 12 8 9 12 8 1 9 12 8 9 12 9 12 8 9 12 8 1 9 12 8 9 12 8 1 9 12 8 9 12 9 12 8 9 12 9 12 8 9 12 9 12 8 9 12 9 12 8 9 12 9 12 8 9 12 8 1 9 12 8 9 12 9 12 8 9 12 9 12 8 9 12 9 12 8 9 12 9 12 8 9 12 9 12 8 9 12 9 12 8 9 12 9 12 8 9 12 9 12 8 9 12 9 12 8 9 12 9 12 8 9 12 9 12 1 1 1 1 10 12 9 12 7 1 10 9 12 9 12 7 1 10 12 9 12 9 12 9 12 9 12 9 12 7 1 10 9 12 9 12 10 12 1 1 9 7 1 12 1 9 12 9 12 1 9 12 9 12 1 1 1 10 7 12 1 1 10 12 1 1 3 9 12 1 1 9 100 1 12 1 1 10 100 1 12 1 1 10 12 1 1 10 100 1 12 1 1 10 12 1 10 12 1 1 1 1 1 1 1 10 7 1 12 1 1 9 12 1 1 100 1 5 0 10 7 1 12 1 1 10 12 1 10 12 1 1 1 1 10 12 1 1 1 1 1 1 10 12 1 1 1 9 12 7 1 10 10 12 1 10 7 12 1 1 1 1 1 1 9 12 7 1 10 10 12 1 10 7 12 1 1 1 9 12 7 1 10 10 12 1 1 9 12 7 1 10 10 12 1 1 1 1 1 1 1 1 1 1 1 10 12 10 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 10 12 10 12 1 1 1 1 1 9 7 1 12 1 10 7 1 12 10 12 1 10 12 1 10 12 1 9 12 10 10 12 1 1 1 10 12 10 12 1 1 1 1 100 10 10 12 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 10 12 1 1 10 12 1 1 1 1 10 12 1 7 1 10 12 1 10 12 1 1 9 12 10 7 1 12 1 9 12 1 1 1 1 1 1 1 1 10 12 10 10 12 1 1 1 1 1 1 9 7 1 12 1 10 12 1 1 1 1 1 10 12 1 10 10 10 10 10 10 1 1
  9977. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool Append [C 6
  9978. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool ARRAY_NEWINSTANCE_NAME [C 11
  9979. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool ARRAY_NEWINSTANCE_SIGNATURE [C 39
  9980. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool ArrayCopy [C 9
  9981. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool ArrayCopySignature [C 42
  9982. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool ArrayJavaLangClassConstantPoolName [C 18
  9983. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool ArrayJavaLangObjectConstantPoolName [C 19
  9984. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool booleanBooleanSignature [C 22
  9985. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool BooleanConstrSignature [C 4
  9986. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool BOOLEANVALUE_BOOLEAN_METHOD_NAME [C 12
  9987. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool BOOLEANVALUE_BOOLEAN_METHOD_SIGNATURE [C 3
  9988. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool byteByteSignature [C 19
  9989. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool ByteConstrSignature [C 4
  9990. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool BYTEVALUE_BYTE_METHOD_NAME [C 9
  9991. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool BYTEVALUE_BYTE_METHOD_SIGNATURE [C 3
  9992. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool charCharacterSignature [C 24
  9993. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool CharConstrSignature [C 4
  9994. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool CHARVALUE_CHARACTER_METHOD_NAME [C 9
  9995. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool CHARVALUE_CHARACTER_METHOD_SIGNATURE [C 3
  9996. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool Clinit [C 8
  9997. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool DefaultConstructorSignature [C 3
  9998. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool ClinitSignature [C 3
  9999. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool Close [C 5
  10000. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool CloseSignature [C 3
  10001. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool DesiredAssertionStatus [C 22
  10002. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool DesiredAssertionStatusSignature [C 3
  10003. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool DoubleConstrSignature [C 4
  10004. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool doubleDoubleSignature [C 21
  10005. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool DOUBLEVALUE_DOUBLE_METHOD_NAME [C 11
  10006. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool DOUBLEVALUE_DOUBLE_METHOD_SIGNATURE [C 3
  10007. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool EnumName [C 10
  10008. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool EnumOrdinal [C 13
  10009. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool Exit [C 4
  10010. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool ExitIntSignature [C 4
  10011. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool FloatConstrSignature [C 4
  10012. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool floatFloatSignature [C 20
  10013. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool FLOATVALUE_FLOAT_METHOD_NAME [C 10
  10014. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool FLOATVALUE_FLOAT_METHOD_SIGNATURE [C 3
  10015. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool ForName [C 7
  10016. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool ForNameSignature [C 37
  10017. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GET_BOOLEAN_METHOD_NAME [C 10
  10018. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GET_BOOLEAN_METHOD_SIGNATURE [C 21
  10019. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GET_BYTE_METHOD_NAME [C 7
  10020. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GET_BYTE_METHOD_SIGNATURE [C 21
  10021. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GET_CHAR_METHOD_NAME [C 7
  10022. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GET_CHAR_METHOD_SIGNATURE [C 21
  10023. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GET_DOUBLE_METHOD_NAME [C 9
  10024. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GET_DOUBLE_METHOD_SIGNATURE [C 21
  10025. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GET_FLOAT_METHOD_NAME [C 8
  10026. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GET_FLOAT_METHOD_SIGNATURE [C 21
  10027. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GET_INT_METHOD_NAME [C 6
  10028. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GET_INT_METHOD_SIGNATURE [C 21
  10029. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GET_LONG_METHOD_NAME [C 7
  10030. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GET_LONG_METHOD_SIGNATURE [C 21
  10031. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GET_OBJECT_METHOD_NAME [C 3
  10032. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GET_OBJECT_METHOD_SIGNATURE [C 38
  10033. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GET_SHORT_METHOD_NAME [C 8
  10034. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GET_SHORT_METHOD_SIGNATURE [C 21
  10035. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GetClass [C 8
  10036. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GetClassSignature [C 19
  10037. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GetComponentType [C 16
  10038. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GetComponentTypeSignature [C 19
  10039. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GetConstructor [C 14
  10040. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GetConstructorSignature [C 51
  10041. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GETDECLAREDCONSTRUCTOR_NAME [C 22
  10042. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GETDECLAREDCONSTRUCTOR_SIGNATURE [C 51
  10043. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GETDECLAREDFIELD_NAME [C 16
  10044. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GETDECLAREDFIELD_SIGNATURE [C 45
  10045. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GETDECLAREDMETHOD_NAME [C 17
  10046. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GETDECLAREDMETHOD_SIGNATURE [C 64
  10047. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GetMessage [C 10
  10048. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GetMessageSignature [C 20
  10049. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool HasNext [C 7
  10050. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool HasNextSignature [C 3
  10051. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool Init [C 6
  10052. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool IntConstrSignature [C 4
  10053. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool ITERATOR_NAME [C 8
  10054. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool ITERATOR_SIGNATURE [C 22
  10055. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool Intern [C 6
  10056. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool InternSignature [C 20
  10057. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool IntIntegerSignature [C 22
  10058. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool INTVALUE_INTEGER_METHOD_NAME [C 8
  10059. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool INTVALUE_INTEGER_METHOD_SIGNATURE [C 3
  10060. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool INVOKE_METHOD_METHOD_NAME [C 6
  10061. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool INVOKE_METHOD_METHOD_SIGNATURE [C 57
  10062. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JAVA_LANG_REFLECT_ACCESSIBLEOBJECT [[C 4 [[C
  10063. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JAVA_LANG_REFLECT_ARRAY [[C 4 [[C
  10064. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool IllegalArgumentExceptionConstructorSignature [C 21
  10065. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaIoPrintStreamSignature [C 21
  10066. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangAssertionErrorConstantPoolName [C 24
  10067. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangBooleanConstantPoolName [C 17
  10068. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangBooleanSignature [C 19
  10069. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangByteConstantPoolName [C 14
  10070. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangCharacterConstantPoolName [C 19
  10071. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangClassConstantPoolName [C 15
  10072. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangClassNotFoundExceptionConstantPoolName [C 32
  10073. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangClassSignature [C 17
  10074. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangDoubleConstantPoolName [C 16
  10075. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangEnumConstantPoolName [C 14
  10076. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangErrorConstantPoolName [C 15
  10077. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangIncompatibleClassChangeErrorConstantPoolName [C 38
  10078. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangMatchExceptionConstantPoolName [C 24
  10079. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangMatchExceptionNewInstanceSignature [C 42
  10080. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangExceptionConstantPoolName [C 19
  10081. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangFloatConstantPoolName [C 15
  10082. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangIntegerConstantPoolName [C 17
  10083. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangLongConstantPoolName [C 14
  10084. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangNoClassDefFoundErrorConstantPoolName [C 30
  10085. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangNoSuchFieldErrorConstantPoolName [C 26
  10086. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangObjectConstantPoolName [C 16
  10087. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JAVALANGREFLECTACCESSIBLEOBJECT_CONSTANTPOOLNAME [C 34
  10088. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JAVALANGREFLECTARRAY_CONSTANTPOOLNAME [C 23
  10089. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangReflectConstructorConstantPoolName [C 29
  10090. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangReflectConstructorNewInstanceSignature [C 39
  10091. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JAVALANGREFLECTFIELD_CONSTANTPOOLNAME [C 23
  10092. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JAVALANGREFLECTMETHOD_CONSTANTPOOLNAME [C 24
  10093. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangShortConstantPoolName [C 15
  10094. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangStringBufferConstantPoolName [C 22
  10095. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangStringBuilderConstantPoolName [C 23
  10096. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangStringConstantPoolName [C 16
  10097. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangStringSignature [C 18
  10098. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangObjectSignature [C 18
  10099. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangSystemConstantPoolName [C 16
  10100. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangThrowableConstantPoolName [C 19
  10101. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangIllegalArgumentExceptionConstantPoolName [C 34
  10102. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangVoidConstantPoolName [C 14
  10103. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaUtilIteratorConstantPoolName [C 18
  10104. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaUtilObjectsConstantPoolName [C 17
  10105. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool LongConstrSignature [C 4
  10106. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool longLongSignature [C 19
  10107. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool LONGVALUE_LONG_METHOD_NAME [C 9
  10108. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool LONGVALUE_LONG_METHOD_SIGNATURE [C 3
  10109. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool Name [C 4
  10110. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool NewInstance [C 11
  10111. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool NewInstanceSignature [C 39
  10112. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool Next [C 4
  10113. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool NextSignature [C 20
  10114. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool ObjectConstrSignature [C 21
  10115. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool ObjectSignature [C 18
  10116. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool Ordinal [C 7
  10117. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool OrdinalSignature [C 3
  10118. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool Out [C 3
  10119. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool RequireNonNull [C 14
  10120. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool RequireNonNullSignature [C 38
  10121. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool SET_BOOLEAN_METHOD_NAME [C 10
  10122. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool SET_BOOLEAN_METHOD_SIGNATURE [C 22
  10123. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool SET_BYTE_METHOD_NAME [C 7
  10124. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool SET_BYTE_METHOD_SIGNATURE [C 22
  10125. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool SET_CHAR_METHOD_NAME [C 7
  10126. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool SET_CHAR_METHOD_SIGNATURE [C 22
  10127. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool SET_DOUBLE_METHOD_NAME [C 9
  10128. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool SET_DOUBLE_METHOD_SIGNATURE [C 22
  10129. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool SET_FLOAT_METHOD_NAME [C 8
  10130. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool SET_FLOAT_METHOD_SIGNATURE [C 22
  10131. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool SET_INT_METHOD_NAME [C 6
  10132. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool SET_INT_METHOD_SIGNATURE [C 22
  10133. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool SET_LONG_METHOD_NAME [C 7
  10134. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool SET_LONG_METHOD_SIGNATURE [C 22
  10135. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool SET_OBJECT_METHOD_NAME [C 3
  10136. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool SET_OBJECT_METHOD_SIGNATURE [C 39
  10137. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool SET_SHORT_METHOD_NAME [C 8
  10138. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool SET_SHORT_METHOD_SIGNATURE [C 22
  10139. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool SETACCESSIBLE_NAME [C 13
  10140. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool SETACCESSIBLE_SIGNATURE [C 4
  10141. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool ShortConstrSignature [C 4
  10142. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool shortShortSignature [C 20
  10143. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool SHORTVALUE_SHORT_METHOD_NAME [C 10
  10144. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool SHORTVALUE_SHORT_METHOD_SIGNATURE [C 3
  10145. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool StringBufferAppendBooleanSignature [C 27
  10146. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool StringBufferAppendCharSignature [C 27
  10147. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool StringBufferAppendDoubleSignature [C 27
  10148. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool StringBufferAppendFloatSignature [C 27
  10149. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool StringBufferAppendIntSignature [C 27
  10150. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool StringBufferAppendLongSignature [C 27
  10151. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool StringBufferAppendObjectSignature [C 44
  10152. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool StringBufferAppendStringSignature [C 44
  10153. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool StringBuilderAppendBooleanSignature [C 28
  10154. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool StringBuilderAppendCharSignature [C 28
  10155. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool StringBuilderAppendDoubleSignature [C 28
  10156. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool StringBuilderAppendFloatSignature [C 28
  10157. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool StringBuilderAppendIntSignature [C 28
  10158. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool StringBuilderAppendLongSignature [C 28
  10159. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool StringBuilderAppendObjectSignature [C 45
  10160. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool StringBuilderAppendStringSignature [C 45
  10161. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool StringConstructorSignature [C 21
  10162. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool This [C 4
  10163. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool ToString [C 8
  10164. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool ToStringSignature [C 20
  10165. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool TYPE [C 4
  10166. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool ValueOf [C 7
  10167. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool ValueOfBooleanSignature [C 21
  10168. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool ValueOfCharSignature [C 21
  10169. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool ValueOfDoubleSignature [C 21
  10170. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool ValueOfFloatSignature [C 21
  10171. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool ValueOfIntSignature [C 21
  10172. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool ValueOfLongSignature [C 21
  10173. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool ValueOfObjectSignature [C 38
  10174. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool ValueOfStringClassSignature [C 53
  10175. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JAVA_LANG_ANNOTATION_DOCUMENTED [C 33
  10176. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JAVA_LANG_ANNOTATION_ELEMENTTYPE [C 34
  10177. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JAVA_LANG_ANNOTATION_RETENTION [C 32
  10178. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JAVA_LANG_ANNOTATION_RETENTIONPOLICY [C 38
  10179. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JAVA_LANG_ANNOTATION_TARGET [C 29
  10180. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JAVA_LANG_DEPRECATED [C 22
  10181. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JAVA_LANG_ANNOTATION_INHERITED [C 32
  10182. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JAVA_LANG_SAFEVARARGS [C 23
  10183. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JAVA_LANG_INVOKE_METHODHANDLE_POLYMORPHICSIGNATURE [C 52
  10184. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool METAFACTORY [C 11
  10185. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JAVA_LANG_INVOKE_LAMBDAMETAFACTORY_METAFACTORY_SIGNATURE [C 204
  10186. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool ALTMETAFACTORY [C 14
  10187. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JAVA_LANG_INVOKE_LAMBDAMETAFACTORY_ALTMETAFACTORY_SIGNATURE [C 134
  10188. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangInvokeSerializedLambda [C 35
  10189. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JavaLangInvokeSerializedLambdaConstantPoolName [C 33
  10190. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GetImplMethodName [C 17
  10191. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GetImplMethodNameSignature [C 20
  10192. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GetImplMethodKind [C 17
  10193. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GetImplMethodKindSignature [C 3
  10194. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GetFunctionalInterfaceClass [C 27
  10195. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GetFunctionalInterfaceClassSignature [C 20
  10196. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GetFunctionalInterfaceMethodName [C 32
  10197. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GetFunctionalInterfaceMethodNameSignature [C 20
  10198. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GetFunctionalInterfaceMethodSignature [C 37
  10199. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GetFunctionalInterfaceMethodSignatureSignature [C 20
  10200. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GetImplClass [C 12
  10201. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GetImplClassSignature [C 20
  10202. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GetImplMethodSignature [C 22
  10203. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GetImplMethodSignatureSignature [C 20
  10204. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GetCapturedArg [C 14
  10205. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool GetCapturedArgSignature [C 21
  10206. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JAVA_LANG_ANNOTATION_REPEATABLE [C 33
  10207. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool HashCode [C 8
  10208. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool HashCodeSignature [C 3
  10209. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool Equals [C 6
  10210. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool EqualsSignature [C 21
  10211. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool AddSuppressed [C 13
  10212. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool AddSuppressedSignature [C 24
  10213. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool Clone [C 5
  10214. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool CloneSignature [C 20
  10215. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool BOOTSTRAP [C 9
  10216. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JAVA_LANG_RUNTIME_OBJECTMETHOD_BOOTSTRAP_SIGNATURE [C 177
  10217. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool PREVIEW_FEATURE [C 35
  10218. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool REFLECTIVE [C 10
  10219. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool PREVIEW_FEATURE_JEP [C 39
  10220. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool TITLE [C 5
  10221. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool TYPESWITCH [C 10
  10222. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool ENUMSWITCH [C 10
  10223. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JAVA_LANG_RUNTIME_SWITCHBOOTSTRAPS_SWITCH_SIGNATURE [C 134
  10224. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool ConcatWithConstants [C 23
  10225. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JAVA_LANG_INVOKE_STRING_CONCAT_FACTORY_SIGNATURE [C 152
  10226. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JAVA_LANG_ENUM_ENUMDESC [C 25
  10227. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JAVA_LANG_CONST_CLASSDESC [C 30
  10228. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JAVA_LANG_INVOKE_CONSTANTBOOTSTRAP_SIGNATURE [C 144
  10229. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JAVA_LANG_ENUMDESC_OF_SIGNATURE [C 75
  10230. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JAVA_LANG_CLASSDESC_OF_SIGNATURE [C 50
  10231. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JAVA_LANG_RUNTIME_STRING_TEMPLATE_SIGNATURE [C 134
  10232. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool PROCESS [C 7
  10233. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool JAVA_LANG_RUNTIME_EXACTCONVERSIONSSUPPORT [C 41
  10234. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isIntToFloatExact [C 17
  10235. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isIntToFloatExactSignature [C 4
  10236. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isLongToFloatExact [C 18
  10237. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isLongToFloatExactSignature [C 4
  10238. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isLongToDoubleExact [C 19
  10239. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isLongToDoubleExactSignature [C 4
  10240. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isFloatToDoubleExact [C 20
  10241. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isFloatToDoubleExactSignature [C 4
  10242. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isDoubleToByteExact [C 19
  10243. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isDoubleToByteExactSignature [C 4
  10244. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isDoubleToShortExact [C 20
  10245. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isDoubleToShortExactSignature [C 4
  10246. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isDoubleToCharExact [C 19
  10247. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isDoubleToCharExactSignature [C 4
  10248. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isDoubleToIntExact [C 18
  10249. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isDoubleToIntExactSignature [C 4
  10250. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isDoubleToLongExact [C 19
  10251. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isDoubleToLongExactSignature [C 4
  10252. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isDoubleToFloatExact [C 20
  10253. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isDoubleToFloatExactSignature [C 4
  10254. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isFloatToByteExact [C 18
  10255. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isFloatToByteExactSignature [C 4
  10256. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isFloatToShortExact [C 19
  10257. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isFloatToShortExactSignature [C 4
  10258. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isFloatToCharExact [C 18
  10259. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isFloatToCharExactSignature [C 4
  10260. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isFloatToIntExact [C 17
  10261. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isFloatToIntExactSignature [C 4
  10262. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isFloatToLongExact [C 18
  10263. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isFloatToLongExactSignature [C 4
  10264. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isLongToByteExact [C 17
  10265. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isLongToByteExactSignature [C 4
  10266. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isLongToShortExact [C 18
  10267. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isLongToShortExactSignature [C 4
  10268. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isLongToCharExact [C 17
  10269. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isLongToCharExactSignature [C 4
  10270. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isLongToIntExact [C 16
  10271. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isLongToIntExactSignature [C 4
  10272. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isIntToByteExact [C 16
  10273. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isIntToByteExactSignature [C 4
  10274. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isIntToShortExact [C 17
  10275. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isIntToShortExactSignature [C 4
  10276. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isIntToCharExact [C 16
  10277. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool isIntToCharExactSignature [C 4
  10278. staticfield org/eclipse/jdt/internal/compiler/codegen/ConstantPool $assertionsDisabled Z 1
  10279. instanceKlass org/eclipse/jdt/internal/compiler/lookup/MissingTypeBinding
  10280. ciInstanceKlass org/eclipse/jdt/internal/compiler/lookup/BinaryTypeBinding 1 1 1870 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 8 1 10 7 1 12 1 1 9 12 7 1 9 12 7 1 10 12 1 9 12 7 1 10 9 12 1 1 100 1 1 1 7 1 7 1 10 12 1 9 7 1 12 1 1 10 7 1 12 1 1 7 1 10 12 1 1 7 1 10 10 12 1 1 10 12 1 7 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 7 1 7 1 10 12 100 1 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 10 12 1 9 12 9 12 1 1 100 1 5 0 5 0 5 0 1 1 1 1 7 1 9 12 1 1 8 1 10 12 1 10 12 1 11 12 1 1 9 7 1 12 1 1 7 1 11 7 1 12 1 11 12 1 1 10 12 1 11 11 12 1 9 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 100 100 100 1 1 9 12 1 1 100 1 1 1 1 7 10 7 1 12 1 1 7 1 10 12 1 1 7 1 10 7 1 9 12 1 10 12 1 10 12 1 9 12 1 1 9 12 1 9 5 0 7 1 10 10 12 1 7 1 10 12 1 1 1 1 1 1 10 12 1 1 1 10 9 12 9 12 9 12 9 7 1 12 1 9 12 9 12 10 12 1 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 1 10 12 1 1 1 1 1 11 7 1 10 7 1 12 1 1 9 12 1 1 10 12 1 5 0 9 12 1 11 12 1 9 12 1 11 12 1 100 1 9 12 1 11 12 1 9 12 1 11 12 1 9 12 1 11 12 1 1 5 0 11 12 1 5 0 11 12 1 5 0 11 12 1 5 0 11 12 1 10 12 10 12 1 100 1 10 12 1 3 10 12 1 1 11 12 1 1 1 1 1 100 1 100 1 1 10 7 1 12 1 10 7 1 12 1 1 10 12 1 1 1 1 1 10 12 1 10 12 5 0 5 0 10 12 1 1 7 1 10 12 1 1 10 7 1 12 1 1 100 1 1 1 1 100 1 1 9 10 12 1 1 1 1 1 1 1 1 1 1 1 10 12 5 0 5 0 10 12 1 1 7 1 10 12 1 1 1 1 100 10 12 1 100 1 10 12 1 18 12 1 1 10 12 1 10 12 1 1 1 1 9 12 1 9 12 1 9 12 1 9 12 1 11 12 1 1 11 7 1 9 12 1 1 9 7 1 12 1 9 12 1 10 12 1 1 9 12 1 11 12 1 1 10 12 1 1 11 12 1 1 10 12 1 1 11 12 1 1 11 12 1 1 10 12 1 9 12 1 11 12 1 1 7 1 10 9 12 1 9 12 1 10 12 1 1 5 0 3 11 12 1 10 12 1 1 9 10 12 11 12 1 9 7 1 12 1 3 11 12 1 1 10 12 1 5 0 11 12 1 1 5 0 10 12 1 10 12 1 1 10 12 1 7 1 10 12 1 10 12 1 1 10 12 10 12 1 1 11 12 1 3 10 11 12 1 11 12 1 1 10 12 1 1 5 0 11 12 1 1 11 12 1 1 10 12 1 1 10 12 1 10 9 10 9 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 9 12 1 100 1 9 7 1 12 1 9 12 9 12 1 10 12 10 12 1 1 5 0 10 11 12 1 10 12 1 9 12 1 9 12 1 9 12 1 100 1 10 12 1 5 0 10 12 1 10 12 1 10 12 1 1 9 12 1 9 12 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 1 100 100 100 100 100 1 10 12 1 9 10 12 1 9 10 12 1 9 1 1 1 1 1 100 10 12 1 10 12 1 7 1 10 12 1 10 12 1 100 1 10 12 1 1 1 1 10 12 1 9 12 1 10 12 1 100 1 1 1 1 1 10 12 1 1 10 12 1 1 100 1 10 12 1 1 9 12 1 10 7 1 12 1 1 10 12 1 11 7 1 11 11 10 12 11 12 1 1 11 10 12 1 1 9 9 12 1 11 5 0 10 12 1 9 7 1 12 1 9 9 3 10 12 1 1 10 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 11 3 10 12 1 3 9 12 1 9 12 1 11 12 1 11 11 11 11 12 1 11 12 1 10 12 1 10 12 1 11 12 1 1 11 12 1 1 11 12 1 11 12 1 1 11 12 1 9 12 1 10 12 1 1 10 12 1 1 10 12 1 11 12 1 10 12 1 9 11 12 1 9 11 12 1 1 10 12 1 1 9 12 1 100 1 11 10 12 1 1 11 12 1 10 12 1 9 12 1 9 12 1 1 10 7 1 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 9 12 1 11 12 1 8 1 8 1 10 100 1 12 1 1 1 1 10 12 1 1 1 1 1 1 1 100 10 12 1 1 10 12 1 1 10 12 1 11 12 1 1 10 12 11 12 1 10 12 1 1 10 1 1 1 1 1 1 1 1 1 10 9 10 12 10 12 1 5 0 10 12 10 12 1 9 12 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 10 12 9 12 1 10 12 1 1 1 1 1 1 1 1 1 1 10 12 10 12 10 7 1 12 1 1 10 10 12 1 1 1 10 10 12 1 1 1 1 1 10 12 10 12 1 1 10 12 1 9 10 12 1 1 10 12 1 1 1 1 1 1 10 12 10 10 12 1 1 1 1 10 12 1 1 10 12 10 1 1 10 12 9 12 1 1 1 9 12 1 10 12 1 1 11 12 1 9 10 12 1 1 10 12 1 1 9 10 12 1 1 1 1 1 1 1 10 12 1 10 12 1 1 1 10 12 1 10 12 5 0 1 9 12 10 10 5 0 10 12 1 1 10 12 1 5 0 1 1 9 12 1 9 100 1 9 12 5 0 9 3 1 1 1 9 10 9 12 9 12 1 1 1 1 10 12 10 10 12 1 10 12 1 1 1 1 1 1 10 12 1 100 1 9 100 1 10 12 1 1 7 1 10 1 1 11 5 0 9 9 12 1 9 10 12 1 10 12 1 10 12 1 1 10 12 1 9 5 0 1 1 1 1 1 1 9 12 1 100 1 9 12 1 9 12 1 1 9 12 1 1 11 100 1 10 12 1 1 10 12 1 1 9 100 1 11 11 12 1 9 12 1 1 9 12 1 1 10 12 1 9 12 1 1 1 1 1 1 1 1 1 1 10 12 1 9 12 1 1 10 12 1 1 10 12 10 12 9 12 1 10 12 1 10 10 12 1 10 12 1 9 12 1 10 12 1 1 1 1 1 1 100 1 9 12 1 10 12 1 10 12 1 1 10 10 10 100 1 12 1 1 1 1 1 5 0 5 0 1 10 9 9 12 1 9 12 1 1 1 1 1 100 10 12 1 10 12 1 9 12 10 9 12 1 10 10 12 1 1 1 1 1 9 12 1 5 0 10 12 1 10 10 9 10 12 1 1 10 12 1 1 5 0 10 12 1 1 1 10 12 1 10 12 1 10 12 10 10 12 1 1 10 12 1 10 5 0 1 10 12 10 12 1 10 12 5 0 1 10 12 1 10 12 1 100 1 10 8 1 10 12 1 1 10 12 1 8 1 10 12 1 8 1 10 12 1 8 1 10 12 1 10 12 1 8 1 10 12 1 8 1 10 12 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 10 12 10 12 1 8 1 8 1 10 12 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 10 18 8 1 8 1 8 1 10 18 8 1 8 1 8 1 10 18 8 1 8 1 8 1 10 1 1 1 1 1 10 9 12 1 10 12 1 1 1 10 10 9 12 1 1 1 10 100 1 12 1 15 8 1 8 1 1 100 1 100 1 1 1 1 1 1 1
  10281. staticfield org/eclipse/jdt/internal/compiler/lookup/BinaryTypeBinding TYPE_QUALIFIER_DEFAULT [C 20
  10282. staticfield org/eclipse/jdt/internal/compiler/lookup/BinaryTypeBinding NO_BINARY_METHODS [Lorg/eclipse/jdt/internal/compiler/env/IBinaryMethod; 0 [Lorg/eclipse/jdt/internal/compiler/env/IBinaryMethod;
  10283. staticfield org/eclipse/jdt/internal/compiler/lookup/BinaryTypeBinding FIELD_INITIALIZATION Lorg/eclipse/jdt/internal/compiler/lookup/BinaryTypeBinding$VariableBindingInitialization; org/eclipse/jdt/internal/compiler/lookup/BinaryTypeBinding$1
  10284. staticfield org/eclipse/jdt/internal/compiler/lookup/BinaryTypeBinding RECORD_INITIALIZATION Lorg/eclipse/jdt/internal/compiler/lookup/BinaryTypeBinding$VariableBindingInitialization; org/eclipse/jdt/internal/compiler/lookup/BinaryTypeBinding$2
  10285. ciInstanceKlass org/eclipse/jdt/internal/compiler/lookup/LookupEnvironment 1 1 1980 7 1 7 1 100 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 7 1 12 1 1 9 12 7 1 9 7 1 12 1 1 10 12 1 1 9 12 7 1 9 12 1 1 10 12 1 9 12 7 1 10 12 1 9 12 1 1 1 1 10 12 9 12 9 12 9 7 1 12 1 9 12 9 12 9 12 7 1 9 12 9 12 9 12 9 12 9 12 7 1 10 12 1 9 12 9 12 9 12 9 12 9 12 7 1 10 9 12 9 12 9 12 7 1 10 9 12 7 1 10 9 12 9 12 9 12 9 12 10 7 1 12 1 1 9 12 7 1 10 9 12 7 1 10 9 12 9 7 1 12 1 7 1 10 7 1 10 9 12 7 1 10 9 12 7 1 9 12 1 1 100 1 5 0 9 12 7 1 9 12 1 7 1 100 1 7 1 1 1 1 1 10 12 9 12 1 9 12 1 10 12 1 1 10 12 1 11 12 1 11 12 1 1 1 1 1 1 1 1 100 1 8 1 10 12 1 10 12 1 1 18 12 1 1 10 12 1 1 11 12 1 1 9 7 1 12 10 12 1 9 12 1 10 12 1 1 10 12 1 1 10 12 1 1 11 12 1 10 7 1 12 1 1 7 1 9 9 12 1 10 12 1 10 12 1 1 11 12 1 10 12 1 10 12 1 1 11 12 1 7 1 9 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 7 1 1 10 12 1 18 12 1 9 12 11 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 9 12 1 10 12 1 1 9 12 1 10 100 1 12 1 100 1 1 1 1 1 1 1 7 100 1 9 12 1 10 12 1 1 9 1 1 1 10 12 1 1 11 100 1 12 1 10 12 1 1 10 12 1 9 12 1 1 1 1 1 1 1 1 1 1 1 7 1 10 12 1 1 10 12 1 7 1 10 12 1 1 10 12 1 11 12 1 9 7 1 12 1 1 10 8 1 8 1 18 12 1 1 10 100 1 12 1 1 100 1 1 1 1 100 1 1 1 10 7 1 12 1 9 1 1 1 1 1 1 9 12 1 1 9 100 1 7 1 10 12 1 100 1 10 12 1 10 12 1 1 9 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 1 1 1 1 1 1 7 1 1 1 10 12 1 1 1 11 100 1 12 1 10 12 1 1 10 12 1 1 1 1 1 10 12 10 12 1 1 10 12 1 1 9 12 10 12 1 1 1 100 1 1 10 12 9 12 1 10 12 1 1 1 1 10 12 1 1 10 12 1 1 1 1 1 9 12 1 1 1 1 100 100 1 1 9 7 1 12 1 9 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 10 12 1 10 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 10 12 1 10 12 1 1 7 1 10 12 1 1 1 9 12 9 12 1 1 10 12 1 1 10 12 1 9 12 1 11 12 1 1 10 12 1 11 7 1 12 1 1 11 12 1 10 12 1 1 10 12 1 1 9 12 1 100 1 5 0 10 12 1 1 10 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 9 12 1 11 100 1 12 1 1 11 100 1 12 1 10 12 1 1 11 12 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 10 12 1 10 12 1 10 12 10 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 100 1 1 1 10 12 1 10 12 1 100 1 100 1 10 12 1 10 12 1 10 10 12 1 1 10 12 1 10 7 1 10 12 10 12 1 1 1 1 1 1 1 1 1 1 1 10 1 1 1 1 100 1 10 12 1 1 10 7 1 12 1 1 10 12 10 12 1 1 1 1 1 1 7 1 10 12 1 10 12 1 1 1 10 12 1 1 1 1 10 12 1 100 1 10 10 100 1 12 1 1 10 12 1 1 1 9 10 12 1 9 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 7 1 10 12 1 9 9 12 1 10 12 10 12 1 10 1 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 10 10 12 1 10 12 1 10 12 1 1 10 12 1 1 7 1 11 12 1 1 1 1 1 11 7 1 12 7 1 9 7 1 12 1 9 12 1 9 100 1 11 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 10 12 1 1 1 10 12 1 1 9 12 9 12 1 9 12 9 12 1 10 12 1 10 12 1 9 12 1 10 12 1 1 1 1 1 1 1 7 1 1 9 12 1 100 1 9 12 1 10 12 1 100 1 9 12 1 1 9 100 1 12 1 10 12 1 10 12 1 1 10 12 1 1 9 10 100 1 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 9 9 12 10 12 1 10 12 1 1 1 1 9 12 7 1 10 12 1 1 1 1 1 1 1 10 12 1 1 9 12 1 9 12 1 10 12 1 10 12 1 1 10 12 100 1 10 10 12 1 10 1 1 1 1 10 12 1 1 1 10 12 1 1 9 12 10 12 1 1 5 0 5 0 1 1 1 1 1 1 1 1 1 10 12 1 1 10 12 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 100 1 10 12 1 1 7 1 9 12 1 10 12 1 1 9 12 1 9 12 10 100 1 12 1 1 1 10 12 1 9 12 1 9 12 1 1 1 1 100 1 1 10 9 12 1 10 12 1 1 9 12 1 9 12 1 9 12 1 10 10 12 1 1 1 1 10 10 12 1 1 1 9 12 10 12 9 12 1 10 12 1 1 1 1 1 9 12 9 12 1 10 12 1 1 1 1 1 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 10 12 1 1 9 12 10 12 1 1 1 10 12 1 1 10 7 1 12 1 1 9 12 1 1 9 12 1 9 12 1 10 12 1 1 1 1 1 100 1 10 12 1 18 12 1 10 12 1 1 1 1 1 1 1 1 9 12 1 9 10 12 100 1 5 0 10 12 1 1 1 1 1 9 12 9 12 9 12 1 10 12 9 12 1 1 10 100 1 12 1 10 12 1 11 9 12 1 100 1 9 12 1 10 12 1 1 11 12 1 1 1 9 12 1 10 12 10 12 10 12 10 12 1 1 5 0 9 12 1 1 1 1 100 1 1 10 12 9 12 1 10 12 1 9 12 1 10 12 10 12 10 12 1 10 12 1 1 9 12 10 12 1 1 1 1 11 12 1 1 10 12 10 12 10 12 1 1 1 1 10 12 1 11 7 1 12 1 1 10 12 1 1 9 7 1 12 1 9 12 18 12 1 11 12 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 9 10 12 1 1 1 1 10 12 1 10 12 1 10 12 9 12 1 10 12 1 1 1 100 1 10 12 1 1 11 12 1 1 10 12 1 1 11 12 1 1 9 12 1 1 10 12 1 1 10 12 100 1 10 10 12 1 1 1 100 10 12 1 10 10 12 1 1 11 12 1 10 12 1 1 1 1 1 1 1 1 1 10 12 1 9 7 1 12 1 10 12 1 10 12 1 1 9 12 10 12 1 10 12 1 1 9 12 9 12 1 10 12 10 12 10 10 12 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 11 12 1 10 12 1 10 12 1 10 12 1 9 1 1 1 9 12 10 12 1 7 1 10 1 1 10 12 1 1 1 1 1 1 100 1 10 12 10 10 9 12 1 100 1 3 1 1 10 12 1 1 1 1 10 12 1 1 1 10 12 1 1 10 12 1 1 1 1 1 11 100 1 12 1 1 1 100 1 1 1 10 12 9 12 1 10 12 1 10 10 12 1 1 1 1 1 1 11 12 1 1 1 10 12 1 1 1 1 1 10 7 1 12 1 1 15 16 10 12 15 1 16 16 10 12 15 16 10 100 1 12 1 15 8 1 8 1 16 10 12 15 16 1 100 1 100 1 1 1 1
  10286. staticfield org/eclipse/jdt/internal/compiler/lookup/LookupEnvironment TheNotFoundPackage Lorg/eclipse/jdt/internal/compiler/lookup/ProblemPackageBinding; org/eclipse/jdt/internal/compiler/lookup/ProblemPackageBinding
  10287. staticfield org/eclipse/jdt/internal/compiler/lookup/LookupEnvironment TheNotFoundType Lorg/eclipse/jdt/internal/compiler/lookup/ProblemReferenceBinding; org/eclipse/jdt/internal/compiler/lookup/ProblemReferenceBinding
  10288. staticfield org/eclipse/jdt/internal/compiler/lookup/LookupEnvironment TheNotFoundModule Lorg/eclipse/jdt/internal/compiler/lookup/ModuleBinding; org/eclipse/jdt/internal/compiler/lookup/ModuleBinding
  10289. staticfield org/eclipse/jdt/internal/compiler/lookup/LookupEnvironment $assertionsDisabled Z 1
  10290. ciInstanceKlass org/eclipse/jdt/internal/compiler/ClassFile 1 1 3423 7 1 7 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 1 1 1 1 1 10 7 1 12 1 1 9 12 7 1 9 7 1 12 1 1 10 12 1 1 9 12 9 12 1 9 12 9 12 1 9 12 9 12 1 9 12 9 12 1 9 12 9 12 1 9 12 9 12 1 9 12 9 12 1 1 1 1 1 10 12 1 1 1 1 1 9 7 1 12 1 10 12 1 1 10 12 1 1 10 7 1 12 1 9 12 1 1 10 12 1 1 10 12 10 12 1 1 9 100 1 12 1 100 1 5 0 10 7 1 12 1 1 10 12 1 1 9 7 1 12 1 1 10 12 1 9 12 9 12 10 12 1 1 10 12 1 10 7 1 12 1 1 7 1 10 7 1 12 1 1 9 12 1 1 10 12 1 10 12 1 1 9 7 1 12 1 9 7 1 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 9 12 1 10 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 9 12 1 1 10 7 1 12 1 1 9 7 1 12 1 1 10 7 1 12 1 1 1 10 12 9 12 9 12 9 12 1 1 10 12 1 9 12 10 12 1 1 9 7 1 12 9 9 12 1 9 12 9 12 9 12 100 1 7 1 10 9 12 9 12 1 10 12 1 10 12 1 1 1 1 7 1 10 1 1 10 12 1 1 10 12 1 1 10 12 1 1 1 1 1 9 12 9 12 10 12 1 1 10 7 1 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 9 12 1 9 12 1 1 10 12 1 5 0 10 12 1 5 0 5 0 10 12 1 1 10 12 1 9 12 1 10 7 1 12 1 1 10 12 1 1 10 12 1 11 7 1 12 1 10 12 1 1 5 0 10 12 1 9 12 11 7 1 12 1 11 12 1 1 11 7 1 12 1 1 7 1 10 10 7 1 12 1 1 10 12 1 1 10 12 1 10 12 1 5 0 10 12 1 5 0 10 12 1 9 12 1 9 12 9 12 1 9 12 9 12 1 9 12 1 1 1 1 1 1 1 1 1 100 100 1 1 9 12 1 1 10 12 1 1 5 0 9 100 1 12 1 9 100 1 12 1 10 7 1 12 1 1 10 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 100 1 100 10 12 1 1 1 100 1 1 10 7 1 12 1 1 9 7 1 12 1 1 10 12 1 1 10 10 10 12 1 1 7 1 9 12 1 9 12 1 10 12 1 1 9 7 1 5 0 7 1 10 9 12 1 100 1 3 100 1 10 12 1 1 9 12 1 1 9 7 1 10 11 18 12 1 1 18 12 1 1 10 12 1 1 9 5 0 9 12 1 10 7 1 1 1 1 1 1 1 1 1 1 1 1 1 10 100 1 10 12 1 1 9 100 1 5 0 9 10 9 18 18 9 9 1 1 1 1 1 1 1 1 9 10 12 1 10 12 1 10 12 1 1 1 1 1 1 10 12 1 10 12 1 9 12 1 9 7 1 12 10 12 10 12 1 3 10 12 1 1 10 12 1 1 10 100 1 12 1 1 1 1 1 1 1 1 1 1 1 100 1 1 10 12 1 10 12 1 7 1 10 12 10 12 1 1 18 12 1 1 10 12 1 1 9 7 1 12 1 10 12 1 1 10 12 1 10 7 1 12 1 9 12 1 100 1 10 9 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 10 12 1 10 12 1 8 1 10 12 1 18 9 12 1 10 12 1 1 1 1 9 10 100 1 10 12 1 1 10 12 1 1 18 9 12 10 12 1 1 1 1 10 12 1 9 12 1 10 12 1 9 12 1 18 1 9 12 1 1 10 12 1 1 10 12 1 1 9 7 1 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 9 12 1 1 10 7 1 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 9 12 1 10 12 1 1 9 100 1 9 12 1 10 12 1 100 1 9 9 12 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 100 10 12 1 10 12 1 9 10 12 1 1 10 11 12 1 1 11 12 1 11 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 9 12 1 9 12 1 1 9 100 1 12 1 10 7 1 10 12 1 1 10 12 1 1 1 1 9 12 1 9 12 1 9 12 9 12 1 10 100 1 10 12 1 9 12 1 9 10 12 1 9 12 1 10 12 1 1 9 12 1 9 12 1 1 9 12 1 10 7 1 12 1 9 12 1 9 12 1 10 12 1 1 10 12 1 1 9 9 9 12 1 1 9 10 12 1 9 12 1 9 12 1 1 9 12 1 10 12 1 10 12 10 12 1 10 12 1 10 10 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 9 12 9 12 1 9 12 1 1 10 7 1 12 1 9 12 1 10 12 1 3 9 12 1 9 5 0 10 12 1 9 12 1 9 12 1 10 12 1 18 18 1 1 1 1 10 10 12 1 7 1 10 12 9 7 1 12 1 1 10 12 1 10 12 1 1 1 100 9 9 12 1 10 12 1 10 12 9 12 1 9 12 1 9 12 10 1 1 1 1 1 1 10 12 1 1 1 1 1 10 12 1 1 9 10 12 1 10 12 9 12 1 1 9 100 1 9 10 12 1 10 9 12 1 10 7 1 9 12 9 12 1 1 10 10 12 1 1 9 7 1 10 10 12 1 10 12 1 1 10 12 1 1 9 9 12 1 18 18 10 12 1 1 1 1 1 1 1 100 100 100 1 1 1 1 1 9 7 1 12 1 9 12 1 9 12 1 9 12 1 9 12 1 1 1 1 1 1 1 1 1 1 9 12 1 1 10 7 1 12 1 1 1 1 9 7 1 12 1 10 10 12 1 7 1 9 12 1 1 9 7 1 9 9 12 1 1 10 12 1 1 7 1 9 12 1 10 12 1 9 12 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 1 1 1 9 12 1 9 7 1 12 1 9 1 1 1 1 9 12 1 1 9 12 1 10 12 1 10 12 1 10 12 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 7 1 10 12 1 10 12 9 12 9 10 12 1 1 1 1 1 1 1 9 12 1 1 1 10 12 1 1 9 12 1 1 1 1 1 10 12 1 1 9 12 1 11 12 1 10 12 1 1 1 1 1 1 1 10 12 10 12 1 10 12 1 9 12 1 1 1 10 9 12 1 10 12 1 1 10 12 1 1 1 1 1 1 100 9 12 1 9 12 1 10 12 1 9 3 10 12 1 9 12 1 9 12 1 1 9 100 1 12 1 9 12 1 10 12 1 1 9 9 12 10 12 1 1 3 9 12 1 9 12 1 1 9 100 1 12 1 10 12 1 10 12 1 9 12 1 1 9 100 1 9 12 1 9 12 1 1 9 100 1 10 9 9 12 1 9 12 1 1 9 100 1 12 1 9 10 9 12 1 9 12 1 1 9 100 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 9 12 1 1 9 12 1 1 1 1 1 1 9 7 1 12 9 10 12 1 10 12 1 1 10 12 1 10 12 1 1 1 1 10 12 1 7 1 9 12 1 100 1 9 10 10 12 7 1 9 12 1 1 7 1 9 12 1 1 1 1 1 1 1 1 1 1 1 9 12 1 10 12 1 1 10 7 1 9 12 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 9 12 1 1 1 1 9 12 1 1 9 12 1 10 10 10 10 12 1 10 12 1 10 12 10 10 12 1 1 1 1 1 1 1 1 7 1 10 10 7 1 12 1 1 11 12 1 1 1 1 1 100 1 10 12 1 9 12 1 10 12 7 1 10 12 1 1 10 12 1 1 9 12 1 10 12 1 1 10 12 1 10 12 1 1 100 1 10 12 1 1 10 12 1 1 100 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 11 12 1 10 10 12 1 1 9 12 1 10 12 1 9 12 1 10 12 1 1 9 12 1 10 12 1 1 10 10 12 1 9 10 12 9 12 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 1 100 1 10 10 12 1 9 12 1 10 12 1 1 18 12 1 1 11 100 1 12 1 1 18 12 1 11 12 1 1 9 12 1 10 100 1 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 9 12 1 10 12 1 8 1 9 12 1 9 12 1 9 12 1 10 12 1 1 9 9 12 1 10 1 1 1 1 1 1 1 1 10 12 1 9 12 1 9 12 1 10 12 1 1 1 1 10 12 10 12 10 1 9 12 1 1 10 12 1 9 12 1 9 12 1 10 12 1 10 12 1 9 12 1 9 9 12 1 10 12 1 9 12 1 9 12 1 100 1 9 10 100 1 9 100 1 12 1 9 12 1 9 12 1 10 100 1 10 12 1 18 10 12 1 1 1 1 1 1 1 1 100 1 1 10 12 1 9 12 1 1 1 1 9 12 1 9 12 1 9 12 1 1 1 1 1 1 9 12 1 10 9 12 1 10 12 1 7 1 10 12 1 9 10 12 1 10 12 1 9 12 1 9 10 12 1 1 9 9 12 9 12 1 9 12 1 10 12 1 10 1 1 1 1 1 1 1 1 1 1 1 1 100 9 12 9 12 1 10 12 10 10 9 12 1 9 12 5 0 10 10 12 1 1 5 0 18 18 10 12 1 1 5 0 9 5 0 10 12 1 9 12 100 1 9 12 1 10 12 1 10 12 1 1 1 1 1 1 100 1 11 7 1 12 11 7 1 12 1 11 9 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 9 3 10 12 5 0 10 12 1 10 10 12 1 10 12 1 9 12 1 9 12 1 10 10 9 10 12 1 9 12 9 12 1 10 12 1 100 1 3 10 12 10 12 1 1 1 1 1 100 100 1 10 10 7 1 12 1 9 12 1 1 1 1 1 1 1 10 12 1 1 10 12 1 5 0 10 12 1 10 12 1 9 12 1 9 12 1 1 1 1 1 1 1 1 1 1 7 1 5 0 9 12 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 9 12 1 10 12 1 1 9 12 1 1 1 1 10 9 12 1 10 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 10 10 12 1 10 12 1 10 12 1 10 12 9 12 1 10 12 1 10 12 1 1 10 10 12 1 1 100 1 9 10 9 10 12 1 1 9 100 1 9 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 3 1 1 1 9 12 1 1 1 9 12 1 1 1 10 12 1 10 12 1 10 10 12 1 1 9 12 1 7 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 9 12 1 10 7 1 12 9 12 1 9 12 1 10 9 12 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 9 12 9 12 9 12 10 12 1 1 10 12 10 12 9 9 12 9 12 9 12 18 18 1 1 9 12 1 1 1 1 10 12 10 12 1 1 1 10 12 1 10 12 1 1 10 12 1 18 12 1 1 1 1 1 1 1 10 12 10 12 1 1 1 1 1 1 1 1 1 1 10 12 9 12 1 10 10 10 12 1 10 10 12 9 12 1 9 10 12 1 1 9 12 1 9 1 1 1 1 1 1 1 1 1 1 1 9 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 8 1 10 12 1 10 12 8 1 9 12 1 1 18 12 9 18 8 1 10 12 1 1 1 1 1 1 1 1 1 1 100 1 1 1 10 12 1 10 12 1 10 12 1 10 7 1 12 1 1 1 9 12 7 1 10 11 1 11 12 1 18 11 12 1 10 100 1 12 1 1 11 12 1 1 1 1 1 7 1 10 12 1 10 12 1 1 9 12 1 1 1 1 1 1 1 1 10 12 10 12 11 12 1 11 11 9 12 1 1 1 1 10 12 1 1 10 12 1 18 12 1 1 1 1 1 11 12 1 11 12 1 1 11 7 1 12 1 11 12 1 7 1 10 1 1 1 1 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 10 12 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 7 1 10 12 1 100 1 10 12 1 1 1 1 1 1 1 1 1 1 10 12 1 1 10 7 1 12 1 1 10 12 1 1 1 1 1 10 10 12 1 9 12 1 10 12 1 1 10 10 12 9 12 10 12 1 1 10 12 1 10 12 1 1 9 7 1 10 12 10 12 1 1 9 12 1 3 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 10 12 10 12 1 1 10 12 1 1 10 12 10 12 10 12 9 12 1 10 12 10 12 100 1 10 9 12 100 1 9 12 1 10 100 1 12 1 10 12 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 10 12 1 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 18 12 1 1 1 1 1 1 1 1 1 1 1 1 10 7 1 12 1 1 15 16 10 12 15 1 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 10 7 1 12 1 15 8 1 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 8 1 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 8 1 8 1 8 1 16 10 12 15 16 8 1 8 1 1 100 1 100 1 1 100 1 1 1 100 1 1 1
  10291. staticfield org/eclipse/jdt/internal/compiler/ClassFile ALTMETAFACTORY_STRING Ljava/lang/String; "altMetafactory"
  10292. staticfield org/eclipse/jdt/internal/compiler/ClassFile METAFACTORY_STRING Ljava/lang/String; "metafactory"
  10293. staticfield org/eclipse/jdt/internal/compiler/ClassFile BOOTSTRAP_STRING Ljava/lang/String; "bootstrap"
  10294. staticfield org/eclipse/jdt/internal/compiler/ClassFile TYPESWITCH_STRING Ljava/lang/String; "typeSwitch"
  10295. staticfield org/eclipse/jdt/internal/compiler/ClassFile ENUMSWITCH_STRING Ljava/lang/String; "enumSwitch"
  10296. staticfield org/eclipse/jdt/internal/compiler/ClassFile CONCAT_CONSTANTS Ljava/lang/String; "makeConcatWithConstants"
  10297. staticfield org/eclipse/jdt/internal/compiler/ClassFile INVOKE_STRING Ljava/lang/String; "invoke"
  10298. staticfield org/eclipse/jdt/internal/compiler/ClassFile BOOTSTRAP_METHODS [Ljava/lang/String; 12 [Ljava/lang/String;
  10299. staticfield org/eclipse/jdt/internal/compiler/ClassFile $assertionsDisabled Z 1
  10300. instanceKlass org/eclipse/jdt/internal/compiler/codegen/TypeAnnotationCodeStream
  10301. ciInstanceKlass org/eclipse/jdt/internal/compiler/codegen/StackMapFrameCodeStream 1 1 339 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 1 9 12 1 1 10 12 1 1 9 7 1 12 1 9 12 1 9 12 1 10 12 1 1 9 12 1 1 1 1 1 1 1 1 1 1 1 9 12 7 1 10 12 1 7 1 10 12 11 7 1 12 1 1 1 1 1 1 10 7 1 12 1 1 9 12 10 7 1 12 1 1 7 1 9 12 1 10 10 12 1 1 1 1 1 1 1 1 10 12 10 12 1 1 1 1 10 12 1 1 1 1 10 12 1 1 1 10 12 100 1 10 100 1 12 1 1 9 100 1 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 11 12 1 1 11 12 1 1 11 7 1 12 1 1 11 12 1 1 10 7 1 12 1 1 1 1 1 1 1 1 100 1 1 10 12 1 1 10 12 1 10 12 1 1 1 1 100 1 10 1 10 12 9 12 10 12 1 11 9 12 10 100 1 9 12 1 1 1 10 12 10 1 1 1 1 9 12 10 100 1 12 1 1 1 1 1 10 12 1 1 1 1 1 10 12 1 1 10 12 9 7 1 10 12 1 1 10 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 9 12 1 10 12 1 10 12 1 1 100 1 1 1 1 1 1
  10302. ciInstanceKlass org/eclipse/jdt/internal/compiler/codegen/TypeAnnotationCodeStream 1 1 156 7 1 7 1 1 1 1 1 1 1 1 10 12 9 12 1 1 100 1 7 1 10 12 1 9 12 1 1 1 1 1 1 1 1 10 100 1 12 1 1 1 1 1 1 1 1 1 10 7 1 1 10 12 1 1 1 1 9 12 1 100 1 3 9 12 1 100 1 10 12 10 12 1 1 1 1 1 10 12 10 12 1 1 10 12 1 1 10 12 1 1 1 1 10 12 1 1 9 12 1 10 7 1 12 1 1 10 12 10 12 1 1 1 1 100 1 1 10 100 1 12 1 10 12 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 10 12 1 10 12 1 1 1
  10303. ciInstanceKlass org/eclipse/jdt/internal/compiler/codegen/StackMapFrame 1 1 226 7 1 7 1 1 1 1 3 1 3 1 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 9 12 9 12 7 1 9 12 9 12 1 1 1 1 1 1 1 10 12 1 9 12 10 12 1 1 1 1 1 100 1 8 1 10 12 1 9 12 10 7 1 12 1 1 1 1 1 1 1 7 1 10 10 12 9 12 10 12 1 1 1 1 1 1 1 1 1 7 1 1 1 9 12 1 11 12 1 1 10 12 1 11 12 1 1 1 1 10 12 1 1 10 12 1 100 1 3 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 100 1 10 10 12 1 1 10 100 1 12 1 1 1 1 8 1 10 12 1 10 12 1 1 10 100 1 12 1 1 10 12 1 1 1 1 1 1 10 12 1 8 1 10 12 1 1 1 1 1 1 10 12 1 1 1 1 10 12 1 1 1 10 12 1 1 1 1 1 1
  10304. ciInstanceKlass org/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo 1 1 172 7 1 7 1 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 9 12 1 1 1 1 10 12 1 9 7 1 12 9 9 12 1 1 1 1 1 1 100 1 10 8 1 10 12 1 1 10 12 1 1 10 12 1 8 1 8 1 10 12 1 8 1 8 1 10 100 1 12 1 1 1 1 1 1 10 12 9 12 1 1 1 10 12 1 10 7 1 12 1 1 1 1 1 10 12 1 10 1 7 1 10 12 1 1 1 1 1 1 10 12 1 1 10 12 9 12 7 1 10 11 7 1 12 1 11 12 1 11 12 1 1 7 1 10 7 1 12 1 1 10 12 1 1 1 1 1 1
  10305. ciInstanceKlass org/eclipse/jdt/internal/compiler/ClassFile$3 1 1 47 7 1 7 1 100 1 1 1 1 1 1 9 12 10 12 1 1 1 1 1 1 1 9 7 1 12 1 1 1 1 1 1 10 12 1 1 1 1 1 100 1 12 1 1 1 1
  10306. ciInstanceKlass org/eclipse/jdt/internal/compiler/codegen/StackMapFrameCodeStream$ExceptionMarker 1 1 82 7 1 7 1 100 1 1 1 1 1 1 1 1 10 12 1 9 12 9 12 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 10 7 1 12 1 1 10 7 1 12 1 1 1 100 1 10 10 12 1 1 10 12 1 10 12 1 10 100 1 12 1 1 1 1 1 1 1 100 1 1 1
  10307. ciMethodData java/lang/Object <init> ()V 2 6318185 orig 80 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 4 0x0 0x9 0x1 0x0 oops 0 methods 0
  10308. ciMethodData java/util/AbstractCollection <init> ()V 2 1252352 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 7 0x10002 0x131c8c 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0
  10309. ciMethodData java/util/HashMap$HashIterator nextNode ()Ljava/util/HashMap$Node; 2 3174 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 39 0x100007 0xc66 0x30 0x0 0x170002 0x0 0x1c0007 0xc66 0x30 0x0 0x230002 0x0 0x350007 0xe3 0x80 0xb83 0x410007 0x0 0x60 0xb83 0x4a0007 0x7db 0x40 0x4c5a 0x5f0007 0x48b2 0xffffffffffffffe0 0x3a8 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0
  10310. ciMethodData java/util/HashMap$HashIterator hasNext ()Z 2 5256 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 16 0x40007 0x8c1 0x38 0xbc8 0x80003 0xbc8 0x18 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0
  10311. ciMethodData java/util/HashMap get (Ljava/lang/Object;)Ljava/lang/Object; 2 79391 orig 80 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 24 0x20005 0x13620 0x0 0x0 0x0 0x0 0x0 0x70007 0x6e54 0x38 0xc7de 0xb0003 0xc7de 0x18 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0xffffffffffffffff oops 0 methods 0
  10312. ciMethodData java/util/HashMap$KeyIterator next ()Ljava/lang/Object; 2 6043 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 16 0x10005 0x179c 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0
  10313. ciMethodData java/util/HashMap$HashIterator <init> (Ljava/util/HashMap;)V 2 7309 orig 80 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 29 0x60002 0x1c8d 0x260007 0xfe 0x80 0x1b8f 0x80000006002d0007 0xee 0x60 0x1aa3 0x360007 0x0 0x40 0x9bfb 0x4b0007 0x8157 0xffffffffffffffe0 0x1aa4 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x1e 0x0 oops 0 methods 0
  10314. ciMethodData java/util/HashMap keySet ()Ljava/util/Set; 2 8531 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 15 0x60007 0x1d81 0x30 0x3d3 0xe0002 0x3d3 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0
  10315. ciMethodData java/util/HashMap$KeySet iterator ()Ljava/util/Iterator; 2 14348 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 9 0x80002 0x380d 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0
  10316. ciMethodData java/util/HashMap$KeyIterator <init> (Ljava/util/HashMap;)V 2 14347 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 8 0x20002 0x380d 0x0 0x0 0x9 0x2 0x0 0x0 oops 0 methods 0
  10317. ciMethodData java/util/HashSet iterator ()Ljava/util/Iterator; 2 26679 orig 80 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 23 0x40005 0x0 0x0 0x20376f6b4e0 0x40da 0x20379809718 0x275e 0x70005 0x0 0x0 0x20375d4f0a0 0x40d9 0x2037980aa50 0x275e 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 4 3 java/util/HashMap 5 java/util/LinkedHashMap 10 java/util/HashMap$KeySet 12 java/util/LinkedHashMap$LinkedKeySet methods 0
  10318. ciMethodData java/util/HashMap <init> ()V 2 211542 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 9 0x10002 0x33a83 0x0 0x0 0x0 0x0 0x9 0x1 0x10 oops 0 methods 0
  10319. ciMethodData java/util/AbstractMap <init> ()V 2 277886 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 7 0x10002 0x43d70 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0
  10320. ciMethodData java/util/AbstractSet <init> ()V 2 158502 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 7 0x10002 0x26b4d 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0
  10321. ciMethodData java/util/HashMap$KeySet <init> (Ljava/util/HashMap;)V 1 978 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 10 0x60002 0x3d2 0x0 0x0 0x0 0x0 0x9 0x2 0x6 0x0 oops 0 methods 0
  10322. ciMethod java/lang/AssertionError <init> ()V 0 0 1 0 -1
  10323. ciMethodData java/util/HashSet <init> ()V 2 95612 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 11 0x10002 0x1762d 0x90002 0x175bf 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0
  10324. ciMethod java/util/LinkedHashMap$LinkedKeySet <init> (Ljava/util/LinkedHashMap;Z)V 604 0 1867 0 0
  10325. ciMethod java/util/LinkedHashMap$LinkedKeySet iterator ()Ljava/util/Iterator; 768 0 16009 0 280
  10326. ciMethod java/util/LinkedHashMap$LinkedKeyIterator <init> (Ljava/util/LinkedHashMap;Z)V 768 0 16009 0 0
  10327. ciMethodData java/util/LinkedHashMap$LinkedHashIterator <init> (Ljava/util/LinkedHashMap;Z)V 2 6195 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 18 0x60002 0x1834 0x100007 0x1834 0x38 0x0 0x170003 0x0 0x18 0x0 0x0 0x0 0x0 0x9 0x3 0x1e 0x0 0x0 oops 0 methods 0
  10328. ciMethod java/util/ComparableTimSort <init> ([Ljava/lang/Object;[Ljava/lang/Object;II)V 52 0 114 0 0
  10329. ciMethod java/util/ComparableTimSort sort ([Ljava/lang/Object;II[Ljava/lang/Object;II)V 512 66 2504 0 0
  10330. ciMethod java/util/ComparableTimSort binarySort ([Ljava/lang/Object;III)V 256 6040 1055 0 0
  10331. ciMethod java/util/ComparableTimSort countRunAndMakeAscending ([Ljava/lang/Object;II)I 434 2058 1133 0 0
  10332. ciMethod java/util/ComparableTimSort reverseRange ([Ljava/lang/Object;II)V 26 28 103 0 0
  10333. ciMethod java/util/ComparableTimSort minRunLength (I)I 52 90 114 0 0
  10334. ciMethod java/util/ComparableTimSort pushRun (II)V 118 0 202 0 0
  10335. ciMethod java/util/ComparableTimSort mergeCollapse ()V 118 34 202 0 0
  10336. ciMethod java/util/ComparableTimSort mergeForceCollapse ()V 52 32 114 0 0
  10337. ciMethod java/util/ComparableTimSort mergeAt (I)V 176 0 88 0 -1
  10338. ciMethodData java/util/LinkedHashMap sequencedKeySet ()Ljava/util/SequencedSet; 2 7212 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 22 0x60007 0x160e 0x30 0x61e 0xf0002 0x61f 0x1b0004 0x0 0x0 0x2037980aa50 0x160e 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x6 oops 1 9 java/util/LinkedHashMap$LinkedKeySet methods 0
  10339. ciMethodData java/util/LinkedHashMap$LinkedKeySet <init> (Ljava/util/LinkedHashMap;Z)V 2 1565 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 11 0x60002 0x61d 0x0 0x0 0x0 0x0 0x9 0x3 0x6 0x0 0x0 oops 0 methods 0
  10340. ciMethodData java/util/LinkedHashMap keySet ()Ljava/util/Set; 2 17413 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 16 0x10005 0x0 0x0 0x20379809718 0x4405 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 1 3 java/util/LinkedHashMap methods 0
  10341. ciMethodData java/util/LinkedHashMap$LinkedKeySet iterator ()Ljava/util/Iterator; 2 15625 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 9 0xc0002 0x3d09 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0
  10342. ciMethodData java/util/LinkedHashMap$LinkedKeyIterator <init> (Ljava/util/LinkedHashMap;Z)V 2 15625 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 9 0x30002 0x3d09 0x0 0x0 0x9 0x3 0x0 0x0 0x0 oops 0 methods 0
  10343. ciMethod java/util/DualPivotQuicksort getDepth (II)I 0 0 1 0 -1
  10344. ciMethod java/util/DualPivotQuicksort sort ([IIII)V 212 0 1550 0 0
  10345. ciMethod java/util/DualPivotQuicksort sort (Ljava/util/DualPivotQuicksort$Sorter;[IIII)V 4096 55966 2016 0 -1
  10346. ciMethod java/util/DualPivotQuicksort mixedInsertionSort ([IIII)V 762 136064 466 0 -1
  10347. ciMethod java/util/DualPivotQuicksort insertionSort ([III)V 686 6408 1476 0 -1
  10348. ciMethod java/util/DualPivotQuicksort heapSort ([III)V 0 0 1 0 -1
  10349. ciMethod java/util/DualPivotQuicksort tryMergeRuns (Ljava/util/DualPivotQuicksort$Sorter;[III)Z 138 4112 179 0 -1
  10350. ciMethod org/eclipse/jdt/core/compiler/CharOperation equals ([C[C)Z 598 0 795220 0 -1
  10351. ciMethod org/eclipse/jdt/core/compiler/CharOperation indexOf (C[C)I 3968 0 29959 0 -1
  10352. ciMethod org/eclipse/jdt/core/compiler/CharOperation indexOf (C[CI)I 628 4610 8215 0 -1
  10353. ciMethod org/eclipse/jdt/core/compiler/CharOperation lastIndexOf (C[C)I 996 8192 20411 0 -1
  10354. ciMethod org/eclipse/jdt/core/compiler/CharOperation splitOn (C[C)[[C 1996 131072 3429 0 -1
  10355. ciMethod org/eclipse/jdt/core/compiler/CharOperation subarray ([CII)[C 50 0 15518 0 -1
  10356. ciMethod org/eclipse/jdt/internal/compiler/lookup/Scope compilationUnitScope ()Lorg/eclipse/jdt/internal/compiler/lookup/CompilationUnitScope; 258 0 129 0 -1
  10357. ciMethod org/eclipse/jdt/internal/compiler/lookup/Scope createArrayType (Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding;I)Lorg/eclipse/jdt/internal/compiler/lookup/ArrayBinding; 892 0 726 0 -1
  10358. ciMethod org/eclipse/jdt/internal/compiler/lookup/Scope createArrayType (Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding;I[Lorg/eclipse/jdt/internal/compiler/lookup/AnnotationBinding;)Lorg/eclipse/jdt/internal/compiler/lookup/ArrayBinding; 1056 0 825 0 -1
  10359. ciMethod org/eclipse/jdt/internal/compiler/lookup/Scope getJavaLangClass ()Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding; 512 0 734 0 -1
  10360. ciMethod org/eclipse/jdt/internal/compiler/lookup/Scope getJavaLangInvokeSerializedLambda ()Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding; 0 0 1 0 -1
  10361. ciMethod org/eclipse/jdt/internal/compiler/lookup/Scope getJavaLangString ()Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding; 1024 0 40083 0 -1
  10362. ciMethod org/eclipse/jdt/internal/compiler/lookup/Scope getTypeOrPackage ([[C)Lorg/eclipse/jdt/internal/compiler/lookup/Binding; 4334 9946 20483 0 -1
  10363. ciMethod org/eclipse/jdt/internal/compiler/lookup/CompilationUnitScope recordQualifiedReference ([[C)V 4184 0 50673 0 -1
  10364. ciMethod org/eclipse/jdt/internal/compiler/lookup/MethodScope problemReporter ()Lorg/eclipse/jdt/internal/compiler/problem/ProblemReporter; 4114 0 54011 0 -1
  10365. ciMethod org/eclipse/jdt/internal/compiler/lookup/TypeBinding constantPoolName ()[C 0 0 1 0 -1
  10366. ciMethod org/eclipse/jdt/internal/compiler/lookup/TypeBinding isArrayType ()Z 516 0 247330 0 -1
  10367. ciMethod org/eclipse/jdt/internal/compiler/lookup/TypeBinding isNestedType ()Z 78 0 25825 0 -1
  10368. ciMethod org/eclipse/jdt/internal/compiler/lookup/TypeBinding syntheticOuterLocalVariables ()[Lorg/eclipse/jdt/internal/compiler/lookup/SyntheticArgumentBinding; 6 0 3 0 -1
  10369. ciMethod org/eclipse/jdt/internal/compiler/lookup/Binding isValidBinding ()Z 336 0 674484 0 -1
  10370. ciMethod org/eclipse/jdt/internal/compiler/lookup/ReferenceBinding isEnum ()Z 70 0 28718 0 -1
  10371. ciMethod org/eclipse/jdt/internal/compiler/lookup/ReferenceBinding syntheticEnclosingInstanceTypes ()[Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding; 0 0 1 0 -1
  10372. ciMethod org/eclipse/jdt/internal/compiler/lookup/LocalVariableBinding <init> ([CLorg/eclipse/jdt/internal/compiler/lookup/TypeBinding;IZ)V 772 0 16799 0 -1
  10373. ciMethod org/eclipse/jdt/internal/compiler/lookup/LocalVariableBinding recordInitializationEndPC (I)V 4118 0 17635 0 -1
  10374. ciMethod org/eclipse/jdt/internal/compiler/lookup/LocalVariableBinding recordInitializationStartPC (I)V 4262 0 18726 0 -1
  10375. ciMethod org/eclipse/jdt/internal/compiler/lookup/MethodBinding isConstructor ()Z 888 0 127499 0 -1
  10376. ciMethod org/eclipse/jdt/internal/compiler/lookup/MethodBinding isStatic ()Z 1024 0 276951 0 -1
  10377. ciMethod org/eclipse/jdt/internal/compiler/lookup/MethodBinding shortReadableName ()[C 16 16 25 0 -1
  10378. ciMethod org/eclipse/jdt/internal/compiler/lookup/ProblemReferenceBinding closestMatch ()Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding; 118 0 59 0 -1
  10379. ciMethod org/eclipse/jdt/internal/compiler/lookup/ProblemReferenceBinding problemId ()I 258 0 129 0 -1
  10380. ciMethod org/eclipse/jdt/internal/compiler/lookup/ArrayBinding leafComponentType ()Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding; 272 0 136 0 -1
  10381. ciMethod org/eclipse/jdt/internal/compiler/problem/ProblemReporter abortDueToInternalError (Ljava/lang/String;Lorg/eclipse/jdt/internal/compiler/ast/ASTNode;)V 0 0 1 0 -1
  10382. ciMethodData java/util/HashSet size ()I 2 22713 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 16 0x40005 0x0 0x0 0x20379809718 0x2f72 0x20376f6b4e0 0x2946 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 2 3 java/util/LinkedHashMap 5 java/util/HashMap methods 0
  10383. ciMethodData java/util/ComparableTimSort binarySort ([Ljava/lang/Object;III)V 2 927 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 119 0x30007 0x39f 0x70 0x0 0x80007 0x0 0x40 0x0 0xd0007 0x0 0x30 0x0 0x140002 0x0 0x1a0007 0x39f 0x20 0x0 0x220007 0x39f 0x2c8 0x734 0x280004 0x0 0x0 0x2037624d7a8 0x6f1 0x2037624d858 0x30 0x360007 0x734 0x50 0x0 0x3d0007 0x0 0x30 0x0 0x440002 0x0 0x4c0007 0x734 0xa8 0x181f 0x5e0005 0x28 0x0 0x2037624d7a8 0x1777 0x2037624d858 0x80 0x630007 0x1227 0x38 0x5f8 0x6a0003 0x5f8 0x18 0x730003 0x181f 0xffffffffffffff70 0x790007 0x734 0x50 0x0 0x800007 0x0 0x30 0x0 0x870002 0x0 0x930008 0x6 0x543 0xc8 0xfc 0x78 0xf5 0x40 0xb70004 0x0 0x0 0x2037624d7a8 0xe9 0x2037624d858 0x9 0xc10004 0x0 0x0 0x2037624d7a8 0x1d3 0x2037624d858 0x13 0xc20003 0x1f1 0x28 0xcf0002 0x543 0xd70004 0x0 0x0 0x2037624d7a8 0x6f1 0x2037624d858 0x30 0xdb0003 0x734 0xfffffffffffffd50 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x4 0x0 0x0 0x0 0x0 oops 10 25 org/eclipse/core/filesystem/provider/FileInfo 27 java/io/ObjectStreamField 46 org/eclipse/core/filesystem/provider/FileInfo 48 java/io/ObjectStreamField 81 org/eclipse/core/filesystem/provider/FileInfo 83 java/io/ObjectStreamField 88 org/eclipse/core/filesystem/provider/FileInfo 90 java/io/ObjectStreamField 100 org/eclipse/core/filesystem/provider/FileInfo 102 java/io/ObjectStreamField methods 0
  10384. ciMethodData java/util/ComparableTimSort countRunAndMakeAscending ([Ljava/lang/Object;II)I 2 916 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 98 0x30007 0x394 0x50 0x0 0x80007 0x0 0x30 0x0 0xf0002 0x0 0x190007 0x394 0x20 0x0 0x240004 0x0 0x0 0x2037624d7a8 0x31d 0x2037624d858 0x15 0x2a0005 0x62 0x0 0x2037624d7a8 0x31d 0x2037624d858 0x15 0x2f0007 0x33a 0x110 0x5a 0x340007 0x39 0xc8 0x22 0x3a0004 0x0 0x0 0x2037624d7a8 0x15 0x2037624d858 0x8 0x420005 0x5 0x0 0x2037624d7a8 0x15 0x2037624d858 0x8 0x470007 0x21 0x38 0x1 0x4d0003 0x1 0xffffffffffffff50 0x530002 0x5a 0x560003 0x5a 0xe0 0x5b0007 0x265 0xc8 0x3a07 0x610004 0x0 0x0 0x2037624d7a8 0x39ea 0x2037624d858 0xa 0x690005 0x13 0x0 0x2037624d7a8 0x39ea 0x2037624d858 0xa 0x6e0007 0xd5 0x38 0x3932 0x740003 0x3932 0xffffffffffffff50 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x3 0xffffffffffffffff 0x0 0x0 oops 12 17 org/eclipse/core/filesystem/provider/FileInfo 19 java/io/ObjectStreamField 24 org/eclipse/core/filesystem/provider/FileInfo 26 java/io/ObjectStreamField 39 org/eclipse/core/filesystem/provider/FileInfo 41 java/io/ObjectStreamField 46 org/eclipse/core/filesystem/provider/FileInfo 48 java/io/ObjectStreamField 69 org/eclipse/core/filesystem/provider/FileInfo 71 java/io/ObjectStreamField 76 org/eclipse/core/filesystem/provider/FileInfo 78 java/io/ObjectStreamField methods 0
  10385. ciMethodData java/util/ComparableTimSort reverseRange ([Ljava/lang/Object;II)V 1 90 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 32 0x50007 0x5a 0xa8 0x5a 0x140004 0x0 0x0 0x2037624d7a8 0x1b 0x2037624d858 0xb 0x1b0004 0x0 0x0 0x2037624d7a8 0x1b 0x2037624d858 0xb 0x1c0003 0x5a 0xffffffffffffff70 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x3 0xffffffffffffffff 0x0 0x0 oops 4 7 org/eclipse/core/filesystem/provider/FileInfo 9 java/io/ObjectStreamField 14 org/eclipse/core/filesystem/provider/FileInfo 16 java/io/ObjectStreamField methods 0
  10386. ciMethodData java/util/Arrays sort ([Ljava/lang/Object;)V 2 2252 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 20 0x30007 0x8cc 0x48 0x0 0x70002 0x0 0xa0003 0x0 0x28 0x140002 0x8cc 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0
  10387. ciMethodData java/util/ComparableTimSort sort ([Ljava/lang/Object;II[Ljava/lang/Object;II)V 2 2249 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 112 0x30007 0x8c9 0xb0 0x0 0x70007 0x0 0x80 0x0 0xb0007 0x0 0x60 0x0 0x100007 0x0 0x40 0x0 0x160007 0x0 0x30 0x0 0x1d0002 0x0 0x290007 0x316 0x20 0x5b3 0x310007 0x58 0x40 0x2be 0x370002 0x2be 0x430002 0x2be 0x510002 0x58 0x580002 0x58 0x600002 0x8f 0x690007 0x3c 0x68 0x53 0x700007 0x22 0x38 0x31 0x750003 0x31 0x18 0x860002 0x53 0x920005 0x8f 0x0 0x0 0x0 0x0 0x0 0x970005 0x8f 0x0 0x0 0x0 0x0 0x0 0xa80007 0x37 0xffffffffffffff18 0x58 0xae0007 0x58 0x50 0x0 0xb30007 0x0 0x30 0x0 0xba0002 0x0 0xc00005 0x58 0x0 0x0 0x0 0x0 0x0 0xc60007 0x58 0x50 0x0 0xcf0007 0x0 0x30 0x0 0xd60002 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x6 0x0 0x0 0x0 0x0 0x0 0x0 oops 0 methods 0
  10388. ciMethodData java/util/ComparableTimSort <init> ([Ljava/lang/Object;[Ljava/lang/Object;II)V 1 88 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 61 0x10002 0x58 0x1d0007 0x4 0x38 0x54 0x240003 0x54 0x18 0x2d0007 0x58 0x60 0x0 0x340007 0x0 0x40 0x0 0x3d0007 0x0 0x38 0x0 0x540003 0x58 0x18 0x6b0007 0x5 0x38 0x53 0x6f0003 0x53 0x88 0x770007 0x0 0x38 0x5 0x7c0003 0x5 0x50 0x830007 0x0 0x38 0x0 0x880003 0x0 0x18 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x5 0x0 0x0 0x0 0x0 0x0 oops 0 methods 0
  10389. ciMethodData java/util/ComparableTimSort minRunLength (I)I 1 88 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 24 0x30007 0x58 0x50 0x0 0x70007 0x0 0x30 0x0 0xe0002 0x0 0x170007 0x58 0x38 0x6e 0x240003 0x6e 0xffffffffffffffe0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0
  10390. ciMethodData java/util/ComparableTimSort pushRun (II)V 1 143 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 9 0x0 0x0 0x0 0x0 0x9 0x3 0x0 0x0 0x0 oops 0 methods 0
  10391. ciMethodData java/util/ComparableTimSort mergeCollapse ()V 1 143 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 61 0x50007 0x6b 0x180 0x37 0x100007 0x37 0x40 0x0 0x2a0007 0x0 0x60 0x0 0x2f0007 0x37 0x78 0x0 0x490007 0x0 0x58 0x0 0x5c0007 0x0 0x90 0x0 0x620003 0x0 0x70 0x660007 0x0 0xa8 0x37 0x770007 0x13 0x38 0x24 0x7a0003 0x24 0x68 0x7f0005 0x13 0x0 0x0 0x0 0x0 0x0 0x820003 0x13 0xfffffffffffffe98 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0xffffffffffffffff oops 0 methods 0
  10392. ciMethodData java/util/ComparableTimSort mergeForceCollapse ()V 1 88 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 31 0x50007 0x58 0xb0 0x24 0x100007 0x24 0x40 0x0 0x230007 0x0 0x20 0x0 0x2b0005 0x24 0x0 0x0 0x0 0x0 0x0 0x2e0003 0x24 0xffffffffffffff68 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0xffffffffffffffff oops 0 methods 0
  10393. ciMethodData org/eclipse/jdt/core/compiler/CharOperation equals ([C[C)Z 2 795402 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 12 0x20002 0xc2312 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0xffffffffffffffff 0xffffffffffffffff oops 0 methods 0
  10394. ciMethod org/eclipse/jdt/internal/compiler/util/Messages bind (Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String; 98 0 269 0 -1
  10395. ciMethod org/eclipse/jdt/internal/compiler/codegen/CodeStream record (Lorg/eclipse/jdt/internal/compiler/lookup/LocalVariableBinding;)V 4180 0 18718 0 -1
  10396. ciMethodData java/util/DualPivotQuicksort sort ([IIII)V 2 1444 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 43 0x70007 0x5a4 0xe8 0x0 0xf0007 0x0 0xc8 0x0 0x180002 0x0 0x1f0007 0x0 0x38 0x0 0x230003 0x0 0x18 0x3a0002 0x0 0x3d0005 0x0 0x0 0x0 0x0 0x0 0x0 0x410003 0x0 0x28 0x490002 0x5a4 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x4 0x0 0x0 0x0 0x0 oops 0 methods 0
  10397. ciMethodData java/util/DualPivotQuicksort sort (Ljava/util/DualPivotQuicksort$Sorter;[IIII)V 1 130 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 272 0x120007 0x0 0x50 0x83 0x180007 0x81 0x30 0x2 0x2a0002 0x2 0x320007 0x1 0x30 0x80 0x390002 0x80 0x3e0007 0x1 0x60 0x0 0x460007 0x0 0x70 0x0 0x4c0007 0x0 0x50 0x0 0x540002 0x1 0x570007 0x1 0x20 0x0 0x620007 0x1 0x30 0x0 0x690002 0x0 0xad0007 0x0 0x20 0x1 0xcc0007 0x1 0x20 0x0 0xeb0007 0x1 0x20 0x0 0x10a0007 0x0 0x20 0x1 0x1290007 0x1 0x20 0x0 0x1460007 0x0 0x70 0x1 0x14f0007 0x0 0x38 0x1 0x1680003 0x1 0x88 0x1790003 0x0 0x70 0x1820007 0x0 0x58 0x0 0x18b0007 0x0 0x38 0x0 0x1a40003 0x0 0x18 0x1c40007 0x0 0x2f8 0x1 0x1cf0007 0x0 0x2d8 0x1 0x1da0007 0x0 0x2b8 0x1 0x1e50007 0x0 0x298 0x1 0x20d0007 0x1 0x38 0x0 0x2100003 0x0 0xffffffffffffffe0 0x21c0007 0x1 0x38 0x0 0x21f0003 0x0 0xffffffffffffffe0 0x2370007 0x1 0x108 0x1c 0x2440007 0xf 0xb0 0xd 0x24b0007 0x1 0xb0 0x19 0x2570007 0xd 0xffffffffffffffe0 0xc 0x2600007 0xc 0x38 0x0 0x2760003 0x0 0x18 0x2870003 0xc 0x38 0x28e0007 0xd 0x20 0x2 0x2a20003 0x1c 0xffffffffffffff10 0x2c50007 0x1 0xc8 0x0 0x2c90007 0x0 0xa8 0x0 0x2d60005 0x0 0x0 0x0 0x0 0x0 0x0 0x2e30005 0x0 0x0 0x0 0x0 0x0 0x0 0x2e60003 0x0 0x38 0x2f40002 0x1 0x3020002 0x1 0x3050003 0x1 0x1a0 0x3240007 0x0 0xe8 0x0 0x3310007 0x0 0xb0 0x0 0x33e0007 0x0 0x90 0x0 0x34a0007 0x0 0x38 0x0 0x34d0003 0x0 0xffffffffffffffe0 0x3560007 0x0 0x20 0x0 0x36a0003 0x0 0x18 0x3760003 0x0 0xffffffffffffff30 0x38b0007 0x0 0x90 0x0 0x38f0007 0x0 0x70 0x0 0x39a0005 0x0 0x0 0x0 0x0 0x0 0x0 0x39d0003 0x0 0x28 0x3a90002 0x0 0x3b00003 0x1 0xfffffffffffff8d8 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x5 0x0 0x0 0x0 0x0 0x0 oops 0 methods 0
  10398. ciMethodData java/util/Arrays sort ([I)V 2 1161 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 11 0x50002 0x489 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0
  10399. ciMethodData java/util/HashMap$KeySet size ()I 1 0 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 7 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0
  10400. ciMethod org/eclipse/jdt/internal/compiler/lookup/LookupEnvironment getResolvedJavaBaseType ([[CLorg/eclipse/jdt/internal/compiler/lookup/Scope;)Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding; 264 0 21369 0 -1
  10401. ciMethod org/eclipse/jdt/internal/compiler/ClassFile getParametersCount ([C)I 1024 972 19037 0 -1
  10402. ciMethod org/eclipse/jdt/internal/compiler/ClassFile getReturnType ([C)[C 1024 0 50057 0 -1
  10403. ciMethod org/eclipse/jdt/internal/compiler/ClassFile i4At ([BII)I 26 0 17 0 -1
  10404. ciMethod org/eclipse/jdt/internal/compiler/ClassFile initializeDefaultLocals (Lorg/eclipse/jdt/internal/compiler/codegen/StackMapFrame;Lorg/eclipse/jdt/internal/compiler/lookup/MethodBinding;II)V 272 568 1548 0 -1
  10405. ciMethod org/eclipse/jdt/internal/compiler/ClassFile initializeLocals (ZILorg/eclipse/jdt/internal/compiler/codegen/StackMapFrame;)V 4104 112444 4719 0 -1
  10406. ciMethod org/eclipse/jdt/internal/compiler/ClassFile retrieveLocal (II)Lorg/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo; 4346 24648 6746 0 -1
  10407. ciMethod org/eclipse/jdt/internal/compiler/ClassFile scanType ([CI)I 4 0 165 0 -1
  10408. ciMethod org/eclipse/jdt/internal/compiler/ClassFile filterFakeFrames (Ljava/util/Set;Ljava/util/Map;I)Ljava/util/List; 278 1606 1549 0 -1
  10409. ciMethod org/eclipse/jdt/internal/compiler/ClassFile getTypeBinding ([CLorg/eclipse/jdt/internal/compiler/lookup/Scope;Z)Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding; 4150 0 21943 0 -1
  10410. ciMethod org/eclipse/jdt/internal/compiler/ClassFile getNewTypeBinding ([CLorg/eclipse/jdt/internal/compiler/lookup/Scope;)Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding; 446 0 2038 0 -1
  10411. ciMethod org/eclipse/jdt/internal/compiler/ClassFile isLikelyLocalTypeName ([C)Z 1638 10 503 0 -1
  10412. ciMethod org/eclipse/jdt/internal/compiler/ClassFile getANewArrayTypeBinding ([CLorg/eclipse/jdt/internal/compiler/lookup/Scope;)Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding; 96 0 99 0 -1
  10413. ciMethod org/eclipse/jdt/internal/compiler/ClassFile traverse (Lorg/eclipse/jdt/internal/compiler/lookup/MethodBinding;I[BIILjava/util/Map;ZLorg/eclipse/jdt/internal/compiler/lookup/Scope;)Ljava/util/List; 842 65908 1550 0 -1
  10414. ciMethod org/eclipse/jdt/internal/compiler/ClassFile inspectFrame (ILorg/eclipse/jdt/internal/compiler/codegen/StackMapFrame;)V 880 0 239838 0 -1
  10415. ciMethod org/eclipse/jdt/internal/compiler/ClassFile createNewFrame (ILorg/eclipse/jdt/internal/compiler/codegen/StackMapFrame;ZLorg/eclipse/jdt/internal/compiler/lookup/MethodBinding;)Lorg/eclipse/jdt/internal/compiler/codegen/StackMapFrame; 768 0 17118 0 -1
  10416. ciMethod org/eclipse/jdt/internal/compiler/ClassFile getDimensions ([C)I 18 90 117 0 -1
  10417. ciMethod org/eclipse/jdt/internal/compiler/ClassFile addRealJumpTarget (Ljava/util/Set;I)V 1410 0 21253 0 -1
  10418. ciMethod org/eclipse/jdt/internal/compiler/ClassFile addRealJumpTarget (Ljava/util/Set;ILjava/util/Map;Lorg/eclipse/jdt/internal/compiler/codegen/StackMapFrame;Lorg/eclipse/jdt/internal/compiler/lookup/Scope;)V 1664 0 34765 0 -1
  10419. ciMethod org/eclipse/jdt/internal/compiler/ClassFile add (Ljava/util/Map;Lorg/eclipse/jdt/internal/compiler/codegen/StackMapFrame;Lorg/eclipse/jdt/internal/compiler/lookup/Scope;)V 4188 0 19873 0 -1
  10420. ciMethod org/eclipse/jdt/internal/compiler/ClassFile u1At ([BII)I 800 0 309940 0 -1
  10421. ciMethod org/eclipse/jdt/internal/compiler/ClassFile u2At ([BII)I 672 0 311187 0 -1
  10422. ciMethod org/eclipse/jdt/internal/compiler/ClassFile u4At ([BII)J 2 0 2 0 -1
  10423. ciMethod org/eclipse/jdt/internal/compiler/ClassFile i2At ([BII)I 1638 0 34748 0 -1
  10424. ciMethod org/eclipse/jdt/internal/compiler/ClassFile utf8At ([BII)[C 256 5210 3894 0 -1
  10425. ciMethodData org/eclipse/jdt/internal/compiler/lookup/TypeBinding isArrayType ()Z 2 247833 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 11 0x80007 0x3581b 0x20 0x7001 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0
  10426. ciMethodData org/eclipse/jdt/internal/compiler/lookup/Scope getJavaLangString ()Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding; 2 40318 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 30 0x10005 0x9d7e 0x0 0x0 0x0 0x0 0x0 0x90005 0x0 0x0 0x2037c470df8 0x9d7e 0x0 0x0 0x140005 0x0 0x0 0x2037c4712e8 0x9d7f 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0xffffffffffffffff oops 2 10 org/eclipse/jdt/internal/compiler/lookup/CompilationUnitScope 17 org/eclipse/jdt/internal/compiler/lookup/LookupEnvironment methods 0
  10427. ciMethodData org/eclipse/jdt/internal/compiler/lookup/Scope createArrayType (Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding;I)Lorg/eclipse/jdt/internal/compiler/lookup/ArrayBinding; 1 351 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 18 0x60005 0x23 0x0 0x20376f6b640 0x107 0x20374cd0170 0x35 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x3 0x0 0x0 0x0 oops 2 3 org/eclipse/jdt/internal/compiler/lookup/MethodScope 5 org/eclipse/jdt/internal/compiler/lookup/BlockScope methods 0
  10428. ciMethodData org/eclipse/jdt/internal/compiler/lookup/Scope createArrayType (Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding;I[Lorg/eclipse/jdt/internal/compiler/lookup/AnnotationBinding;)Lorg/eclipse/jdt/internal/compiler/lookup/ArrayBinding; 1 389 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 46 0x10005 0x185 0x0 0x0 0x0 0x0 0x0 0x40007 0x0 0x90 0x185 0x80005 0x185 0x0 0x0 0x0 0x0 0x0 0xe0005 0x0 0x0 0x2037c4712e8 0x185 0x0 0x0 0x190005 0x0 0x0 0x0 0x0 0x0 0x0 0x1c0002 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x4 0x0 0xffffffffffffffff 0x0 0xffffffffffffffff oops 1 21 org/eclipse/jdt/internal/compiler/lookup/LookupEnvironment methods 0
  10429. compile org/eclipse/jdt/internal/compiler/ClassFile traverse (Lorg/eclipse/jdt/internal/compiler/lookup/MethodBinding;I[BIILjava/util/Map;ZLorg/eclipse/jdt/internal/compiler/lookup/Scope;)Ljava/util/List; -1 4 inline 63 0 -1 0 org/eclipse/jdt/internal/compiler/ClassFile traverse (Lorg/eclipse/jdt/internal/compiler/lookup/MethodBinding;I[BIILjava/util/Map;ZLorg/eclipse/jdt/internal/compiler/lookup/Scope;)Ljava/util/List; 1 4 0 java/util/HashSet <init> ()V 2 1 0 java/util/AbstractSet <init> ()V 3 1 0 java/util/AbstractCollection <init> ()V 4 1 0 java/lang/Object <init> ()V 2 9 0 java/util/HashMap <init> ()V 3 1 0 java/util/AbstractMap <init> ()V 4 1 0 java/lang/Object <init> ()V 1 20 0 org/eclipse/jdt/internal/compiler/codegen/StackMapFrameCodeStream getFramePositions ()[I 2 4 0 java/util/HashMap keySet ()Ljava/util/Set; 3 14 0 java/util/HashMap$KeySet <init> (Ljava/util/HashMap;)V 4 6 0 java/util/AbstractSet <init> ()V 5 1 0 java/util/AbstractCollection <init> ()V 6 1 0 java/lang/Object <init> ()V 2 9 0 java/util/HashMap$KeySet size ()I 2 23 0 java/util/HashMap$KeySet iterator ()Ljava/util/Iterator; 3 8 0 java/util/HashMap$KeyIterator <init> (Ljava/util/HashMap;)V 4 2 0 java/util/HashMap$HashIterator <init> (Ljava/util/HashMap;)V 5 6 0 java/lang/Object <init> ()V 2 59 0 java/util/HashMap$HashIterator hasNext ()Z 2 35 0 java/util/HashMap$KeyIterator next ()Ljava/lang/Object; 3 1 0 java/util/HashMap$HashIterator nextNode ()Ljava/util/HashMap$Node; 2 53 0 java/lang/Integer intValue ()I 2 68 0 java/util/Arrays sort ([I)V 3 5 0 java/util/DualPivotQuicksort sort ([IIII)V 1 66 0 org/eclipse/jdt/internal/compiler/codegen/StackMapFrameCodeStream getExceptionMarkers ()[Lorg/eclipse/jdt/internal/compiler/codegen/StackMapFrameCodeStream$ExceptionMarker; 2 15 0 java/util/HashSet size ()I 3 4 0 java/util/HashMap size ()I 2 30 0 java/util/HashSet iterator ()Ljava/util/Iterator; 3 4 0 java/util/HashMap keySet ()Ljava/util/Set; 4 14 0 java/util/HashMap$KeySet <init> (Ljava/util/HashMap;)V 5 6 0 java/util/AbstractSet <init> ()V 6 1 0 java/util/AbstractCollection <init> ()V 7 1 0 java/lang/Object <init> ()V 3 4 0 java/util/LinkedHashMap keySet ()Ljava/util/Set; 4 1 0 java/util/LinkedHashMap sequencedKeySet ()Ljava/util/SequencedSet; 5 15 0 java/util/LinkedHashMap$LinkedKeySet <init> (Ljava/util/LinkedHashMap;Z)V 6 6 0 java/util/AbstractSet <init> ()V 7 1 0 java/util/AbstractCollection <init> ()V 8 1 0 java/lang/Object <init> ()V 3 7 0 java/util/HashMap$KeySet iterator ()Ljava/util/Iterator; 4 8 0 java/util/HashMap$KeyIterator <init> (Ljava/util/HashMap;)V 5 2 0 java/util/HashMap$HashIterator <init> (Ljava/util/HashMap;)V 6 6 0 java/lang/Object <init> ()V 3 7 0 java/util/LinkedHashMap$LinkedKeySet iterator ()Ljava/util/Iterator; 4 12 0 java/util/LinkedHashMap$LinkedKeyIterator <init> (Ljava/util/LinkedHashMap;Z)V 5 3 0 java/util/LinkedHashMap$LinkedHashIterator <init> (Ljava/util/LinkedHashMap;Z)V 6 6 0 java/lang/Object <init> ()V 2 63 0 java/util/HashMap$HashIterator hasNext ()Z 2 42 0 java/util/HashMap$KeyIterator next ()Ljava/lang/Object; 3 1 0 java/util/HashMap$HashIterator nextNode ()Ljava/util/HashMap$Node; 2 72 0 java/util/Arrays sort ([Ljava/lang/Object;)V 3 20 0 java/util/ComparableTimSort sort ([Ljava/lang/Object;II[Ljava/lang/Object;II)V 4 55 0 java/util/ComparableTimSort countRunAndMakeAscending ([Ljava/lang/Object;II)I 5 42 0 org/eclipse/jdt/internal/compiler/codegen/StackMapFrameCodeStream$ExceptionMarker compareTo (Ljava/lang/Object;)I 5 66 0 org/eclipse/jdt/internal/compiler/codegen/StackMapFrameCodeStream$ExceptionMarker compareTo (Ljava/lang/Object;)I 5 83 0 java/util/ComparableTimSort reverseRange ([Ljava/lang/Object;II)V 5 105 0 org/eclipse/jdt/internal/compiler/codegen/StackMapFrameCodeStream$ExceptionMarker compareTo (Ljava/lang/Object;)I 4 67 0 java/util/ComparableTimSort binarySort ([Ljava/lang/Object;III)V 5 94 0 org/eclipse/jdt/internal/compiler/codegen/StackMapFrameCodeStream$ExceptionMarker compareTo (Ljava/lang/Object;)I 4 81 0 java/util/ComparableTimSort <init> ([Ljava/lang/Object;[Ljava/lang/Object;II)V 5 1 0 java/lang/Object <init> ()V 4 146 0 java/util/ComparableTimSort pushRun (II)V