compiler-dom.global.js 198 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473
  1. /**
  2. * @vue/compiler-dom v3.4.27
  3. * (c) 2018-present Yuxi (Evan) You and Vue contributors
  4. * @license MIT
  5. **/
  6. var VueCompilerDOM = (function (exports) {
  7. 'use strict';
  8. /*! #__NO_SIDE_EFFECTS__ */
  9. // @__NO_SIDE_EFFECTS__
  10. function makeMap(str, expectsLowerCase) {
  11. const set = new Set(str.split(","));
  12. return expectsLowerCase ? (val) => set.has(val.toLowerCase()) : (val) => set.has(val);
  13. }
  14. const EMPTY_OBJ = Object.freeze({}) ;
  15. const NOOP = () => {
  16. };
  17. const NO = () => false;
  18. const isOn = (key) => key.charCodeAt(0) === 111 && key.charCodeAt(1) === 110 && // uppercase letter
  19. (key.charCodeAt(2) > 122 || key.charCodeAt(2) < 97);
  20. const extend = Object.assign;
  21. const isArray = Array.isArray;
  22. const isString = (val) => typeof val === "string";
  23. const isSymbol = (val) => typeof val === "symbol";
  24. const isObject = (val) => val !== null && typeof val === "object";
  25. const isReservedProp = /* @__PURE__ */ makeMap(
  26. // the leading comma is intentional so empty string "" is also included
  27. ",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"
  28. );
  29. const isBuiltInDirective = /* @__PURE__ */ makeMap(
  30. "bind,cloak,else-if,else,for,html,if,model,on,once,pre,show,slot,text,memo"
  31. );
  32. const cacheStringFunction = (fn) => {
  33. const cache = /* @__PURE__ */ Object.create(null);
  34. return (str) => {
  35. const hit = cache[str];
  36. return hit || (cache[str] = fn(str));
  37. };
  38. };
  39. const camelizeRE = /-(\w)/g;
  40. const camelize = cacheStringFunction((str) => {
  41. return str.replace(camelizeRE, (_, c) => c ? c.toUpperCase() : "");
  42. });
  43. const capitalize = cacheStringFunction((str) => {
  44. return str.charAt(0).toUpperCase() + str.slice(1);
  45. });
  46. const toHandlerKey = cacheStringFunction((str) => {
  47. const s = str ? `on${capitalize(str)}` : ``;
  48. return s;
  49. });
  50. const PatchFlagNames = {
  51. [1]: `TEXT`,
  52. [2]: `CLASS`,
  53. [4]: `STYLE`,
  54. [8]: `PROPS`,
  55. [16]: `FULL_PROPS`,
  56. [32]: `NEED_HYDRATION`,
  57. [64]: `STABLE_FRAGMENT`,
  58. [128]: `KEYED_FRAGMENT`,
  59. [256]: `UNKEYED_FRAGMENT`,
  60. [512]: `NEED_PATCH`,
  61. [1024]: `DYNAMIC_SLOTS`,
  62. [2048]: `DEV_ROOT_FRAGMENT`,
  63. [-1]: `HOISTED`,
  64. [-2]: `BAIL`
  65. };
  66. const slotFlagsText = {
  67. [1]: "STABLE",
  68. [2]: "DYNAMIC",
  69. [3]: "FORWARDED"
  70. };
  71. const range = 2;
  72. function generateCodeFrame(source, start = 0, end = source.length) {
  73. let lines = source.split(/(\r?\n)/);
  74. const newlineSequences = lines.filter((_, idx) => idx % 2 === 1);
  75. lines = lines.filter((_, idx) => idx % 2 === 0);
  76. let count = 0;
  77. const res = [];
  78. for (let i = 0; i < lines.length; i++) {
  79. count += lines[i].length + (newlineSequences[i] && newlineSequences[i].length || 0);
  80. if (count >= start) {
  81. for (let j = i - range; j <= i + range || end > count; j++) {
  82. if (j < 0 || j >= lines.length)
  83. continue;
  84. const line = j + 1;
  85. res.push(
  86. `${line}${" ".repeat(Math.max(3 - String(line).length, 0))}| ${lines[j]}`
  87. );
  88. const lineLength = lines[j].length;
  89. const newLineSeqLength = newlineSequences[j] && newlineSequences[j].length || 0;
  90. if (j === i) {
  91. const pad = start - (count - (lineLength + newLineSeqLength));
  92. const length = Math.max(
  93. 1,
  94. end > count ? lineLength - pad : end - start
  95. );
  96. res.push(` | ` + " ".repeat(pad) + "^".repeat(length));
  97. } else if (j > i) {
  98. if (end > count) {
  99. const length = Math.max(Math.min(end - count, lineLength), 1);
  100. res.push(` | ` + "^".repeat(length));
  101. }
  102. count += lineLength + newLineSeqLength;
  103. }
  104. }
  105. break;
  106. }
  107. }
  108. return res.join("\n");
  109. }
  110. const listDelimiterRE = /;(?![^(]*\))/g;
  111. const propertyDelimiterRE = /:([^]+)/;
  112. const styleCommentRE = /\/\*[^]*?\*\//g;
  113. function parseStringStyle(cssText) {
  114. const ret = {};
  115. cssText.replace(styleCommentRE, "").split(listDelimiterRE).forEach((item) => {
  116. if (item) {
  117. const tmp = item.split(propertyDelimiterRE);
  118. tmp.length > 1 && (ret[tmp[0].trim()] = tmp[1].trim());
  119. }
  120. });
  121. return ret;
  122. }
  123. const HTML_TAGS = "html,body,base,head,link,meta,style,title,address,article,aside,footer,header,hgroup,h1,h2,h3,h4,h5,h6,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,summary,template,blockquote,iframe,tfoot";
  124. const SVG_TAGS = "svg,animate,animateMotion,animateTransform,circle,clipPath,color-profile,defs,desc,discard,ellipse,feBlend,feColorMatrix,feComponentTransfer,feComposite,feConvolveMatrix,feDiffuseLighting,feDisplacementMap,feDistantLight,feDropShadow,feFlood,feFuncA,feFuncB,feFuncG,feFuncR,feGaussianBlur,feImage,feMerge,feMergeNode,feMorphology,feOffset,fePointLight,feSpecularLighting,feSpotLight,feTile,feTurbulence,filter,foreignObject,g,hatch,hatchpath,image,line,linearGradient,marker,mask,mesh,meshgradient,meshpatch,meshrow,metadata,mpath,path,pattern,polygon,polyline,radialGradient,rect,set,solidcolor,stop,switch,symbol,text,textPath,title,tspan,unknown,use,view";
  125. const MATH_TAGS = "annotation,annotation-xml,maction,maligngroup,malignmark,math,menclose,merror,mfenced,mfrac,mfraction,mglyph,mi,mlabeledtr,mlongdiv,mmultiscripts,mn,mo,mover,mpadded,mphantom,mprescripts,mroot,mrow,ms,mscarries,mscarry,msgroup,msline,mspace,msqrt,msrow,mstack,mstyle,msub,msubsup,msup,mtable,mtd,mtext,mtr,munder,munderover,none,semantics";
  126. const VOID_TAGS = "area,base,br,col,embed,hr,img,input,link,meta,param,source,track,wbr";
  127. const isHTMLTag = /* @__PURE__ */ makeMap(HTML_TAGS);
  128. const isSVGTag = /* @__PURE__ */ makeMap(SVG_TAGS);
  129. const isMathMLTag = /* @__PURE__ */ makeMap(MATH_TAGS);
  130. const isVoidTag = /* @__PURE__ */ makeMap(VOID_TAGS);
  131. const FRAGMENT = Symbol(`Fragment` );
  132. const TELEPORT = Symbol(`Teleport` );
  133. const SUSPENSE = Symbol(`Suspense` );
  134. const KEEP_ALIVE = Symbol(`KeepAlive` );
  135. const BASE_TRANSITION = Symbol(`BaseTransition` );
  136. const OPEN_BLOCK = Symbol(`openBlock` );
  137. const CREATE_BLOCK = Symbol(`createBlock` );
  138. const CREATE_ELEMENT_BLOCK = Symbol(`createElementBlock` );
  139. const CREATE_VNODE = Symbol(`createVNode` );
  140. const CREATE_ELEMENT_VNODE = Symbol(`createElementVNode` );
  141. const CREATE_COMMENT = Symbol(`createCommentVNode` );
  142. const CREATE_TEXT = Symbol(`createTextVNode` );
  143. const CREATE_STATIC = Symbol(`createStaticVNode` );
  144. const RESOLVE_COMPONENT = Symbol(`resolveComponent` );
  145. const RESOLVE_DYNAMIC_COMPONENT = Symbol(
  146. `resolveDynamicComponent`
  147. );
  148. const RESOLVE_DIRECTIVE = Symbol(`resolveDirective` );
  149. const RESOLVE_FILTER = Symbol(`resolveFilter` );
  150. const WITH_DIRECTIVES = Symbol(`withDirectives` );
  151. const RENDER_LIST = Symbol(`renderList` );
  152. const RENDER_SLOT = Symbol(`renderSlot` );
  153. const CREATE_SLOTS = Symbol(`createSlots` );
  154. const TO_DISPLAY_STRING = Symbol(`toDisplayString` );
  155. const MERGE_PROPS = Symbol(`mergeProps` );
  156. const NORMALIZE_CLASS = Symbol(`normalizeClass` );
  157. const NORMALIZE_STYLE = Symbol(`normalizeStyle` );
  158. const NORMALIZE_PROPS = Symbol(`normalizeProps` );
  159. const GUARD_REACTIVE_PROPS = Symbol(`guardReactiveProps` );
  160. const TO_HANDLERS = Symbol(`toHandlers` );
  161. const CAMELIZE = Symbol(`camelize` );
  162. const CAPITALIZE = Symbol(`capitalize` );
  163. const TO_HANDLER_KEY = Symbol(`toHandlerKey` );
  164. const SET_BLOCK_TRACKING = Symbol(`setBlockTracking` );
  165. const PUSH_SCOPE_ID = Symbol(`pushScopeId` );
  166. const POP_SCOPE_ID = Symbol(`popScopeId` );
  167. const WITH_CTX = Symbol(`withCtx` );
  168. const UNREF = Symbol(`unref` );
  169. const IS_REF = Symbol(`isRef` );
  170. const WITH_MEMO = Symbol(`withMemo` );
  171. const IS_MEMO_SAME = Symbol(`isMemoSame` );
  172. const helperNameMap = {
  173. [FRAGMENT]: `Fragment`,
  174. [TELEPORT]: `Teleport`,
  175. [SUSPENSE]: `Suspense`,
  176. [KEEP_ALIVE]: `KeepAlive`,
  177. [BASE_TRANSITION]: `BaseTransition`,
  178. [OPEN_BLOCK]: `openBlock`,
  179. [CREATE_BLOCK]: `createBlock`,
  180. [CREATE_ELEMENT_BLOCK]: `createElementBlock`,
  181. [CREATE_VNODE]: `createVNode`,
  182. [CREATE_ELEMENT_VNODE]: `createElementVNode`,
  183. [CREATE_COMMENT]: `createCommentVNode`,
  184. [CREATE_TEXT]: `createTextVNode`,
  185. [CREATE_STATIC]: `createStaticVNode`,
  186. [RESOLVE_COMPONENT]: `resolveComponent`,
  187. [RESOLVE_DYNAMIC_COMPONENT]: `resolveDynamicComponent`,
  188. [RESOLVE_DIRECTIVE]: `resolveDirective`,
  189. [RESOLVE_FILTER]: `resolveFilter`,
  190. [WITH_DIRECTIVES]: `withDirectives`,
  191. [RENDER_LIST]: `renderList`,
  192. [RENDER_SLOT]: `renderSlot`,
  193. [CREATE_SLOTS]: `createSlots`,
  194. [TO_DISPLAY_STRING]: `toDisplayString`,
  195. [MERGE_PROPS]: `mergeProps`,
  196. [NORMALIZE_CLASS]: `normalizeClass`,
  197. [NORMALIZE_STYLE]: `normalizeStyle`,
  198. [NORMALIZE_PROPS]: `normalizeProps`,
  199. [GUARD_REACTIVE_PROPS]: `guardReactiveProps`,
  200. [TO_HANDLERS]: `toHandlers`,
  201. [CAMELIZE]: `camelize`,
  202. [CAPITALIZE]: `capitalize`,
  203. [TO_HANDLER_KEY]: `toHandlerKey`,
  204. [SET_BLOCK_TRACKING]: `setBlockTracking`,
  205. [PUSH_SCOPE_ID]: `pushScopeId`,
  206. [POP_SCOPE_ID]: `popScopeId`,
  207. [WITH_CTX]: `withCtx`,
  208. [UNREF]: `unref`,
  209. [IS_REF]: `isRef`,
  210. [WITH_MEMO]: `withMemo`,
  211. [IS_MEMO_SAME]: `isMemoSame`
  212. };
  213. function registerRuntimeHelpers(helpers) {
  214. Object.getOwnPropertySymbols(helpers).forEach((s) => {
  215. helperNameMap[s] = helpers[s];
  216. });
  217. }
  218. const Namespaces = {
  219. "HTML": 0,
  220. "0": "HTML",
  221. "SVG": 1,
  222. "1": "SVG",
  223. "MATH_ML": 2,
  224. "2": "MATH_ML"
  225. };
  226. const NodeTypes = {
  227. "ROOT": 0,
  228. "0": "ROOT",
  229. "ELEMENT": 1,
  230. "1": "ELEMENT",
  231. "TEXT": 2,
  232. "2": "TEXT",
  233. "COMMENT": 3,
  234. "3": "COMMENT",
  235. "SIMPLE_EXPRESSION": 4,
  236. "4": "SIMPLE_EXPRESSION",
  237. "INTERPOLATION": 5,
  238. "5": "INTERPOLATION",
  239. "ATTRIBUTE": 6,
  240. "6": "ATTRIBUTE",
  241. "DIRECTIVE": 7,
  242. "7": "DIRECTIVE",
  243. "COMPOUND_EXPRESSION": 8,
  244. "8": "COMPOUND_EXPRESSION",
  245. "IF": 9,
  246. "9": "IF",
  247. "IF_BRANCH": 10,
  248. "10": "IF_BRANCH",
  249. "FOR": 11,
  250. "11": "FOR",
  251. "TEXT_CALL": 12,
  252. "12": "TEXT_CALL",
  253. "VNODE_CALL": 13,
  254. "13": "VNODE_CALL",
  255. "JS_CALL_EXPRESSION": 14,
  256. "14": "JS_CALL_EXPRESSION",
  257. "JS_OBJECT_EXPRESSION": 15,
  258. "15": "JS_OBJECT_EXPRESSION",
  259. "JS_PROPERTY": 16,
  260. "16": "JS_PROPERTY",
  261. "JS_ARRAY_EXPRESSION": 17,
  262. "17": "JS_ARRAY_EXPRESSION",
  263. "JS_FUNCTION_EXPRESSION": 18,
  264. "18": "JS_FUNCTION_EXPRESSION",
  265. "JS_CONDITIONAL_EXPRESSION": 19,
  266. "19": "JS_CONDITIONAL_EXPRESSION",
  267. "JS_CACHE_EXPRESSION": 20,
  268. "20": "JS_CACHE_EXPRESSION",
  269. "JS_BLOCK_STATEMENT": 21,
  270. "21": "JS_BLOCK_STATEMENT",
  271. "JS_TEMPLATE_LITERAL": 22,
  272. "22": "JS_TEMPLATE_LITERAL",
  273. "JS_IF_STATEMENT": 23,
  274. "23": "JS_IF_STATEMENT",
  275. "JS_ASSIGNMENT_EXPRESSION": 24,
  276. "24": "JS_ASSIGNMENT_EXPRESSION",
  277. "JS_SEQUENCE_EXPRESSION": 25,
  278. "25": "JS_SEQUENCE_EXPRESSION",
  279. "JS_RETURN_STATEMENT": 26,
  280. "26": "JS_RETURN_STATEMENT"
  281. };
  282. const ElementTypes = {
  283. "ELEMENT": 0,
  284. "0": "ELEMENT",
  285. "COMPONENT": 1,
  286. "1": "COMPONENT",
  287. "SLOT": 2,
  288. "2": "SLOT",
  289. "TEMPLATE": 3,
  290. "3": "TEMPLATE"
  291. };
  292. const ConstantTypes = {
  293. "NOT_CONSTANT": 0,
  294. "0": "NOT_CONSTANT",
  295. "CAN_SKIP_PATCH": 1,
  296. "1": "CAN_SKIP_PATCH",
  297. "CAN_HOIST": 2,
  298. "2": "CAN_HOIST",
  299. "CAN_STRINGIFY": 3,
  300. "3": "CAN_STRINGIFY"
  301. };
  302. const locStub = {
  303. start: { line: 1, column: 1, offset: 0 },
  304. end: { line: 1, column: 1, offset: 0 },
  305. source: ""
  306. };
  307. function createRoot(children, source = "") {
  308. return {
  309. type: 0,
  310. source,
  311. children,
  312. helpers: /* @__PURE__ */ new Set(),
  313. components: [],
  314. directives: [],
  315. hoists: [],
  316. imports: [],
  317. cached: 0,
  318. temps: 0,
  319. codegenNode: void 0,
  320. loc: locStub
  321. };
  322. }
  323. function createVNodeCall(context, tag, props, children, patchFlag, dynamicProps, directives, isBlock = false, disableTracking = false, isComponent = false, loc = locStub) {
  324. if (context) {
  325. if (isBlock) {
  326. context.helper(OPEN_BLOCK);
  327. context.helper(getVNodeBlockHelper(context.inSSR, isComponent));
  328. } else {
  329. context.helper(getVNodeHelper(context.inSSR, isComponent));
  330. }
  331. if (directives) {
  332. context.helper(WITH_DIRECTIVES);
  333. }
  334. }
  335. return {
  336. type: 13,
  337. tag,
  338. props,
  339. children,
  340. patchFlag,
  341. dynamicProps,
  342. directives,
  343. isBlock,
  344. disableTracking,
  345. isComponent,
  346. loc
  347. };
  348. }
  349. function createArrayExpression(elements, loc = locStub) {
  350. return {
  351. type: 17,
  352. loc,
  353. elements
  354. };
  355. }
  356. function createObjectExpression(properties, loc = locStub) {
  357. return {
  358. type: 15,
  359. loc,
  360. properties
  361. };
  362. }
  363. function createObjectProperty(key, value) {
  364. return {
  365. type: 16,
  366. loc: locStub,
  367. key: isString(key) ? createSimpleExpression(key, true) : key,
  368. value
  369. };
  370. }
  371. function createSimpleExpression(content, isStatic = false, loc = locStub, constType = 0) {
  372. return {
  373. type: 4,
  374. loc,
  375. content,
  376. isStatic,
  377. constType: isStatic ? 3 : constType
  378. };
  379. }
  380. function createInterpolation(content, loc) {
  381. return {
  382. type: 5,
  383. loc,
  384. content: isString(content) ? createSimpleExpression(content, false, loc) : content
  385. };
  386. }
  387. function createCompoundExpression(children, loc = locStub) {
  388. return {
  389. type: 8,
  390. loc,
  391. children
  392. };
  393. }
  394. function createCallExpression(callee, args = [], loc = locStub) {
  395. return {
  396. type: 14,
  397. loc,
  398. callee,
  399. arguments: args
  400. };
  401. }
  402. function createFunctionExpression(params, returns = void 0, newline = false, isSlot = false, loc = locStub) {
  403. return {
  404. type: 18,
  405. params,
  406. returns,
  407. newline,
  408. isSlot,
  409. loc
  410. };
  411. }
  412. function createConditionalExpression(test, consequent, alternate, newline = true) {
  413. return {
  414. type: 19,
  415. test,
  416. consequent,
  417. alternate,
  418. newline,
  419. loc: locStub
  420. };
  421. }
  422. function createCacheExpression(index, value, isVNode = false) {
  423. return {
  424. type: 20,
  425. index,
  426. value,
  427. isVNode,
  428. loc: locStub
  429. };
  430. }
  431. function createBlockStatement(body) {
  432. return {
  433. type: 21,
  434. body,
  435. loc: locStub
  436. };
  437. }
  438. function createTemplateLiteral(elements) {
  439. return {
  440. type: 22,
  441. elements,
  442. loc: locStub
  443. };
  444. }
  445. function createIfStatement(test, consequent, alternate) {
  446. return {
  447. type: 23,
  448. test,
  449. consequent,
  450. alternate,
  451. loc: locStub
  452. };
  453. }
  454. function createAssignmentExpression(left, right) {
  455. return {
  456. type: 24,
  457. left,
  458. right,
  459. loc: locStub
  460. };
  461. }
  462. function createSequenceExpression(expressions) {
  463. return {
  464. type: 25,
  465. expressions,
  466. loc: locStub
  467. };
  468. }
  469. function createReturnStatement(returns) {
  470. return {
  471. type: 26,
  472. returns,
  473. loc: locStub
  474. };
  475. }
  476. function getVNodeHelper(ssr, isComponent) {
  477. return ssr || isComponent ? CREATE_VNODE : CREATE_ELEMENT_VNODE;
  478. }
  479. function getVNodeBlockHelper(ssr, isComponent) {
  480. return ssr || isComponent ? CREATE_BLOCK : CREATE_ELEMENT_BLOCK;
  481. }
  482. function convertToBlock(node, { helper, removeHelper, inSSR }) {
  483. if (!node.isBlock) {
  484. node.isBlock = true;
  485. removeHelper(getVNodeHelper(inSSR, node.isComponent));
  486. helper(OPEN_BLOCK);
  487. helper(getVNodeBlockHelper(inSSR, node.isComponent));
  488. }
  489. }
  490. const defaultDelimitersOpen = new Uint8Array([123, 123]);
  491. const defaultDelimitersClose = new Uint8Array([125, 125]);
  492. function isTagStartChar(c) {
  493. return c >= 97 && c <= 122 || c >= 65 && c <= 90;
  494. }
  495. function isWhitespace(c) {
  496. return c === 32 || c === 10 || c === 9 || c === 12 || c === 13;
  497. }
  498. function isEndOfTagSection(c) {
  499. return c === 47 || c === 62 || isWhitespace(c);
  500. }
  501. function toCharCodes(str) {
  502. const ret = new Uint8Array(str.length);
  503. for (let i = 0; i < str.length; i++) {
  504. ret[i] = str.charCodeAt(i);
  505. }
  506. return ret;
  507. }
  508. const Sequences = {
  509. Cdata: new Uint8Array([67, 68, 65, 84, 65, 91]),
  510. // CDATA[
  511. CdataEnd: new Uint8Array([93, 93, 62]),
  512. // ]]>
  513. CommentEnd: new Uint8Array([45, 45, 62]),
  514. // `-->`
  515. ScriptEnd: new Uint8Array([60, 47, 115, 99, 114, 105, 112, 116]),
  516. // `<\/script`
  517. StyleEnd: new Uint8Array([60, 47, 115, 116, 121, 108, 101]),
  518. // `</style`
  519. TitleEnd: new Uint8Array([60, 47, 116, 105, 116, 108, 101]),
  520. // `</title`
  521. TextareaEnd: new Uint8Array([
  522. 60,
  523. 47,
  524. 116,
  525. 101,
  526. 120,
  527. 116,
  528. 97,
  529. 114,
  530. 101,
  531. 97
  532. ])
  533. // `</textarea
  534. };
  535. class Tokenizer {
  536. constructor(stack, cbs) {
  537. this.stack = stack;
  538. this.cbs = cbs;
  539. /** The current state the tokenizer is in. */
  540. this.state = 1;
  541. /** The read buffer. */
  542. this.buffer = "";
  543. /** The beginning of the section that is currently being read. */
  544. this.sectionStart = 0;
  545. /** The index within the buffer that we are currently looking at. */
  546. this.index = 0;
  547. /** The start of the last entity. */
  548. this.entityStart = 0;
  549. /** Some behavior, eg. when decoding entities, is done while we are in another state. This keeps track of the other state type. */
  550. this.baseState = 1;
  551. /** For special parsing behavior inside of script and style tags. */
  552. this.inRCDATA = false;
  553. /** For disabling RCDATA tags handling */
  554. this.inXML = false;
  555. /** For disabling interpolation parsing in v-pre */
  556. this.inVPre = false;
  557. /** Record newline positions for fast line / column calculation */
  558. this.newlines = [];
  559. this.mode = 0;
  560. this.delimiterOpen = defaultDelimitersOpen;
  561. this.delimiterClose = defaultDelimitersClose;
  562. this.delimiterIndex = -1;
  563. this.currentSequence = void 0;
  564. this.sequenceIndex = 0;
  565. }
  566. get inSFCRoot() {
  567. return this.mode === 2 && this.stack.length === 0;
  568. }
  569. reset() {
  570. this.state = 1;
  571. this.mode = 0;
  572. this.buffer = "";
  573. this.sectionStart = 0;
  574. this.index = 0;
  575. this.baseState = 1;
  576. this.inRCDATA = false;
  577. this.currentSequence = void 0;
  578. this.newlines.length = 0;
  579. this.delimiterOpen = defaultDelimitersOpen;
  580. this.delimiterClose = defaultDelimitersClose;
  581. }
  582. /**
  583. * Generate Position object with line / column information using recorded
  584. * newline positions. We know the index is always going to be an already
  585. * processed index, so all the newlines up to this index should have been
  586. * recorded.
  587. */
  588. getPos(index) {
  589. let line = 1;
  590. let column = index + 1;
  591. for (let i = this.newlines.length - 1; i >= 0; i--) {
  592. const newlineIndex = this.newlines[i];
  593. if (index > newlineIndex) {
  594. line = i + 2;
  595. column = index - newlineIndex;
  596. break;
  597. }
  598. }
  599. return {
  600. column,
  601. line,
  602. offset: index
  603. };
  604. }
  605. peek() {
  606. return this.buffer.charCodeAt(this.index + 1);
  607. }
  608. stateText(c) {
  609. if (c === 60) {
  610. if (this.index > this.sectionStart) {
  611. this.cbs.ontext(this.sectionStart, this.index);
  612. }
  613. this.state = 5;
  614. this.sectionStart = this.index;
  615. } else if (!this.inVPre && c === this.delimiterOpen[0]) {
  616. this.state = 2;
  617. this.delimiterIndex = 0;
  618. this.stateInterpolationOpen(c);
  619. }
  620. }
  621. stateInterpolationOpen(c) {
  622. if (c === this.delimiterOpen[this.delimiterIndex]) {
  623. if (this.delimiterIndex === this.delimiterOpen.length - 1) {
  624. const start = this.index + 1 - this.delimiterOpen.length;
  625. if (start > this.sectionStart) {
  626. this.cbs.ontext(this.sectionStart, start);
  627. }
  628. this.state = 3;
  629. this.sectionStart = start;
  630. } else {
  631. this.delimiterIndex++;
  632. }
  633. } else if (this.inRCDATA) {
  634. this.state = 32;
  635. this.stateInRCDATA(c);
  636. } else {
  637. this.state = 1;
  638. this.stateText(c);
  639. }
  640. }
  641. stateInterpolation(c) {
  642. if (c === this.delimiterClose[0]) {
  643. this.state = 4;
  644. this.delimiterIndex = 0;
  645. this.stateInterpolationClose(c);
  646. }
  647. }
  648. stateInterpolationClose(c) {
  649. if (c === this.delimiterClose[this.delimiterIndex]) {
  650. if (this.delimiterIndex === this.delimiterClose.length - 1) {
  651. this.cbs.oninterpolation(this.sectionStart, this.index + 1);
  652. if (this.inRCDATA) {
  653. this.state = 32;
  654. } else {
  655. this.state = 1;
  656. }
  657. this.sectionStart = this.index + 1;
  658. } else {
  659. this.delimiterIndex++;
  660. }
  661. } else {
  662. this.state = 3;
  663. this.stateInterpolation(c);
  664. }
  665. }
  666. stateSpecialStartSequence(c) {
  667. const isEnd = this.sequenceIndex === this.currentSequence.length;
  668. const isMatch = isEnd ? (
  669. // If we are at the end of the sequence, make sure the tag name has ended
  670. isEndOfTagSection(c)
  671. ) : (
  672. // Otherwise, do a case-insensitive comparison
  673. (c | 32) === this.currentSequence[this.sequenceIndex]
  674. );
  675. if (!isMatch) {
  676. this.inRCDATA = false;
  677. } else if (!isEnd) {
  678. this.sequenceIndex++;
  679. return;
  680. }
  681. this.sequenceIndex = 0;
  682. this.state = 6;
  683. this.stateInTagName(c);
  684. }
  685. /** Look for an end tag. For <title> and <textarea>, also decode entities. */
  686. stateInRCDATA(c) {
  687. if (this.sequenceIndex === this.currentSequence.length) {
  688. if (c === 62 || isWhitespace(c)) {
  689. const endOfText = this.index - this.currentSequence.length;
  690. if (this.sectionStart < endOfText) {
  691. const actualIndex = this.index;
  692. this.index = endOfText;
  693. this.cbs.ontext(this.sectionStart, endOfText);
  694. this.index = actualIndex;
  695. }
  696. this.sectionStart = endOfText + 2;
  697. this.stateInClosingTagName(c);
  698. this.inRCDATA = false;
  699. return;
  700. }
  701. this.sequenceIndex = 0;
  702. }
  703. if ((c | 32) === this.currentSequence[this.sequenceIndex]) {
  704. this.sequenceIndex += 1;
  705. } else if (this.sequenceIndex === 0) {
  706. if (this.currentSequence === Sequences.TitleEnd || this.currentSequence === Sequences.TextareaEnd && !this.inSFCRoot) {
  707. if (c === this.delimiterOpen[0]) {
  708. this.state = 2;
  709. this.delimiterIndex = 0;
  710. this.stateInterpolationOpen(c);
  711. }
  712. } else if (this.fastForwardTo(60)) {
  713. this.sequenceIndex = 1;
  714. }
  715. } else {
  716. this.sequenceIndex = Number(c === 60);
  717. }
  718. }
  719. stateCDATASequence(c) {
  720. if (c === Sequences.Cdata[this.sequenceIndex]) {
  721. if (++this.sequenceIndex === Sequences.Cdata.length) {
  722. this.state = 28;
  723. this.currentSequence = Sequences.CdataEnd;
  724. this.sequenceIndex = 0;
  725. this.sectionStart = this.index + 1;
  726. }
  727. } else {
  728. this.sequenceIndex = 0;
  729. this.state = 23;
  730. this.stateInDeclaration(c);
  731. }
  732. }
  733. /**
  734. * When we wait for one specific character, we can speed things up
  735. * by skipping through the buffer until we find it.
  736. *
  737. * @returns Whether the character was found.
  738. */
  739. fastForwardTo(c) {
  740. while (++this.index < this.buffer.length) {
  741. const cc = this.buffer.charCodeAt(this.index);
  742. if (cc === 10) {
  743. this.newlines.push(this.index);
  744. }
  745. if (cc === c) {
  746. return true;
  747. }
  748. }
  749. this.index = this.buffer.length - 1;
  750. return false;
  751. }
  752. /**
  753. * Comments and CDATA end with `-->` and `]]>`.
  754. *
  755. * Their common qualities are:
  756. * - Their end sequences have a distinct character they start with.
  757. * - That character is then repeated, so we have to check multiple repeats.
  758. * - All characters but the start character of the sequence can be skipped.
  759. */
  760. stateInCommentLike(c) {
  761. if (c === this.currentSequence[this.sequenceIndex]) {
  762. if (++this.sequenceIndex === this.currentSequence.length) {
  763. if (this.currentSequence === Sequences.CdataEnd) {
  764. this.cbs.oncdata(this.sectionStart, this.index - 2);
  765. } else {
  766. this.cbs.oncomment(this.sectionStart, this.index - 2);
  767. }
  768. this.sequenceIndex = 0;
  769. this.sectionStart = this.index + 1;
  770. this.state = 1;
  771. }
  772. } else if (this.sequenceIndex === 0) {
  773. if (this.fastForwardTo(this.currentSequence[0])) {
  774. this.sequenceIndex = 1;
  775. }
  776. } else if (c !== this.currentSequence[this.sequenceIndex - 1]) {
  777. this.sequenceIndex = 0;
  778. }
  779. }
  780. startSpecial(sequence, offset) {
  781. this.enterRCDATA(sequence, offset);
  782. this.state = 31;
  783. }
  784. enterRCDATA(sequence, offset) {
  785. this.inRCDATA = true;
  786. this.currentSequence = sequence;
  787. this.sequenceIndex = offset;
  788. }
  789. stateBeforeTagName(c) {
  790. if (c === 33) {
  791. this.state = 22;
  792. this.sectionStart = this.index + 1;
  793. } else if (c === 63) {
  794. this.state = 24;
  795. this.sectionStart = this.index + 1;
  796. } else if (isTagStartChar(c)) {
  797. this.sectionStart = this.index;
  798. if (this.mode === 0) {
  799. this.state = 6;
  800. } else if (this.inSFCRoot) {
  801. this.state = 34;
  802. } else if (!this.inXML) {
  803. if (c === 116) {
  804. this.state = 30;
  805. } else {
  806. this.state = c === 115 ? 29 : 6;
  807. }
  808. } else {
  809. this.state = 6;
  810. }
  811. } else if (c === 47) {
  812. this.state = 8;
  813. } else {
  814. this.state = 1;
  815. this.stateText(c);
  816. }
  817. }
  818. stateInTagName(c) {
  819. if (isEndOfTagSection(c)) {
  820. this.handleTagName(c);
  821. }
  822. }
  823. stateInSFCRootTagName(c) {
  824. if (isEndOfTagSection(c)) {
  825. const tag = this.buffer.slice(this.sectionStart, this.index);
  826. if (tag !== "template") {
  827. this.enterRCDATA(toCharCodes(`</` + tag), 0);
  828. }
  829. this.handleTagName(c);
  830. }
  831. }
  832. handleTagName(c) {
  833. this.cbs.onopentagname(this.sectionStart, this.index);
  834. this.sectionStart = -1;
  835. this.state = 11;
  836. this.stateBeforeAttrName(c);
  837. }
  838. stateBeforeClosingTagName(c) {
  839. if (isWhitespace(c)) ; else if (c === 62) {
  840. {
  841. this.cbs.onerr(14, this.index);
  842. }
  843. this.state = 1;
  844. this.sectionStart = this.index + 1;
  845. } else {
  846. this.state = isTagStartChar(c) ? 9 : 27;
  847. this.sectionStart = this.index;
  848. }
  849. }
  850. stateInClosingTagName(c) {
  851. if (c === 62 || isWhitespace(c)) {
  852. this.cbs.onclosetag(this.sectionStart, this.index);
  853. this.sectionStart = -1;
  854. this.state = 10;
  855. this.stateAfterClosingTagName(c);
  856. }
  857. }
  858. stateAfterClosingTagName(c) {
  859. if (c === 62) {
  860. this.state = 1;
  861. this.sectionStart = this.index + 1;
  862. }
  863. }
  864. stateBeforeAttrName(c) {
  865. if (c === 62) {
  866. this.cbs.onopentagend(this.index);
  867. if (this.inRCDATA) {
  868. this.state = 32;
  869. } else {
  870. this.state = 1;
  871. }
  872. this.sectionStart = this.index + 1;
  873. } else if (c === 47) {
  874. this.state = 7;
  875. if (this.peek() !== 62) {
  876. this.cbs.onerr(22, this.index);
  877. }
  878. } else if (c === 60 && this.peek() === 47) {
  879. this.cbs.onopentagend(this.index);
  880. this.state = 5;
  881. this.sectionStart = this.index;
  882. } else if (!isWhitespace(c)) {
  883. if (c === 61) {
  884. this.cbs.onerr(
  885. 19,
  886. this.index
  887. );
  888. }
  889. this.handleAttrStart(c);
  890. }
  891. }
  892. handleAttrStart(c) {
  893. if (c === 118 && this.peek() === 45) {
  894. this.state = 13;
  895. this.sectionStart = this.index;
  896. } else if (c === 46 || c === 58 || c === 64 || c === 35) {
  897. this.cbs.ondirname(this.index, this.index + 1);
  898. this.state = 14;
  899. this.sectionStart = this.index + 1;
  900. } else {
  901. this.state = 12;
  902. this.sectionStart = this.index;
  903. }
  904. }
  905. stateInSelfClosingTag(c) {
  906. if (c === 62) {
  907. this.cbs.onselfclosingtag(this.index);
  908. this.state = 1;
  909. this.sectionStart = this.index + 1;
  910. this.inRCDATA = false;
  911. } else if (!isWhitespace(c)) {
  912. this.state = 11;
  913. this.stateBeforeAttrName(c);
  914. }
  915. }
  916. stateInAttrName(c) {
  917. if (c === 61 || isEndOfTagSection(c)) {
  918. this.cbs.onattribname(this.sectionStart, this.index);
  919. this.handleAttrNameEnd(c);
  920. } else if (c === 34 || c === 39 || c === 60) {
  921. this.cbs.onerr(
  922. 17,
  923. this.index
  924. );
  925. }
  926. }
  927. stateInDirName(c) {
  928. if (c === 61 || isEndOfTagSection(c)) {
  929. this.cbs.ondirname(this.sectionStart, this.index);
  930. this.handleAttrNameEnd(c);
  931. } else if (c === 58) {
  932. this.cbs.ondirname(this.sectionStart, this.index);
  933. this.state = 14;
  934. this.sectionStart = this.index + 1;
  935. } else if (c === 46) {
  936. this.cbs.ondirname(this.sectionStart, this.index);
  937. this.state = 16;
  938. this.sectionStart = this.index + 1;
  939. }
  940. }
  941. stateInDirArg(c) {
  942. if (c === 61 || isEndOfTagSection(c)) {
  943. this.cbs.ondirarg(this.sectionStart, this.index);
  944. this.handleAttrNameEnd(c);
  945. } else if (c === 91) {
  946. this.state = 15;
  947. } else if (c === 46) {
  948. this.cbs.ondirarg(this.sectionStart, this.index);
  949. this.state = 16;
  950. this.sectionStart = this.index + 1;
  951. }
  952. }
  953. stateInDynamicDirArg(c) {
  954. if (c === 93) {
  955. this.state = 14;
  956. } else if (c === 61 || isEndOfTagSection(c)) {
  957. this.cbs.ondirarg(this.sectionStart, this.index + 1);
  958. this.handleAttrNameEnd(c);
  959. {
  960. this.cbs.onerr(
  961. 27,
  962. this.index
  963. );
  964. }
  965. }
  966. }
  967. stateInDirModifier(c) {
  968. if (c === 61 || isEndOfTagSection(c)) {
  969. this.cbs.ondirmodifier(this.sectionStart, this.index);
  970. this.handleAttrNameEnd(c);
  971. } else if (c === 46) {
  972. this.cbs.ondirmodifier(this.sectionStart, this.index);
  973. this.sectionStart = this.index + 1;
  974. }
  975. }
  976. handleAttrNameEnd(c) {
  977. this.sectionStart = this.index;
  978. this.state = 17;
  979. this.cbs.onattribnameend(this.index);
  980. this.stateAfterAttrName(c);
  981. }
  982. stateAfterAttrName(c) {
  983. if (c === 61) {
  984. this.state = 18;
  985. } else if (c === 47 || c === 62) {
  986. this.cbs.onattribend(0, this.sectionStart);
  987. this.sectionStart = -1;
  988. this.state = 11;
  989. this.stateBeforeAttrName(c);
  990. } else if (!isWhitespace(c)) {
  991. this.cbs.onattribend(0, this.sectionStart);
  992. this.handleAttrStart(c);
  993. }
  994. }
  995. stateBeforeAttrValue(c) {
  996. if (c === 34) {
  997. this.state = 19;
  998. this.sectionStart = this.index + 1;
  999. } else if (c === 39) {
  1000. this.state = 20;
  1001. this.sectionStart = this.index + 1;
  1002. } else if (!isWhitespace(c)) {
  1003. this.sectionStart = this.index;
  1004. this.state = 21;
  1005. this.stateInAttrValueNoQuotes(c);
  1006. }
  1007. }
  1008. handleInAttrValue(c, quote) {
  1009. if (c === quote || this.fastForwardTo(quote)) {
  1010. this.cbs.onattribdata(this.sectionStart, this.index);
  1011. this.sectionStart = -1;
  1012. this.cbs.onattribend(
  1013. quote === 34 ? 3 : 2,
  1014. this.index + 1
  1015. );
  1016. this.state = 11;
  1017. }
  1018. }
  1019. stateInAttrValueDoubleQuotes(c) {
  1020. this.handleInAttrValue(c, 34);
  1021. }
  1022. stateInAttrValueSingleQuotes(c) {
  1023. this.handleInAttrValue(c, 39);
  1024. }
  1025. stateInAttrValueNoQuotes(c) {
  1026. if (isWhitespace(c) || c === 62) {
  1027. this.cbs.onattribdata(this.sectionStart, this.index);
  1028. this.sectionStart = -1;
  1029. this.cbs.onattribend(1, this.index);
  1030. this.state = 11;
  1031. this.stateBeforeAttrName(c);
  1032. } else if (c === 34 || c === 39 || c === 60 || c === 61 || c === 96) {
  1033. this.cbs.onerr(
  1034. 18,
  1035. this.index
  1036. );
  1037. } else ;
  1038. }
  1039. stateBeforeDeclaration(c) {
  1040. if (c === 91) {
  1041. this.state = 26;
  1042. this.sequenceIndex = 0;
  1043. } else {
  1044. this.state = c === 45 ? 25 : 23;
  1045. }
  1046. }
  1047. stateInDeclaration(c) {
  1048. if (c === 62 || this.fastForwardTo(62)) {
  1049. this.state = 1;
  1050. this.sectionStart = this.index + 1;
  1051. }
  1052. }
  1053. stateInProcessingInstruction(c) {
  1054. if (c === 62 || this.fastForwardTo(62)) {
  1055. this.cbs.onprocessinginstruction(this.sectionStart, this.index);
  1056. this.state = 1;
  1057. this.sectionStart = this.index + 1;
  1058. }
  1059. }
  1060. stateBeforeComment(c) {
  1061. if (c === 45) {
  1062. this.state = 28;
  1063. this.currentSequence = Sequences.CommentEnd;
  1064. this.sequenceIndex = 2;
  1065. this.sectionStart = this.index + 1;
  1066. } else {
  1067. this.state = 23;
  1068. }
  1069. }
  1070. stateInSpecialComment(c) {
  1071. if (c === 62 || this.fastForwardTo(62)) {
  1072. this.cbs.oncomment(this.sectionStart, this.index);
  1073. this.state = 1;
  1074. this.sectionStart = this.index + 1;
  1075. }
  1076. }
  1077. stateBeforeSpecialS(c) {
  1078. if (c === Sequences.ScriptEnd[3]) {
  1079. this.startSpecial(Sequences.ScriptEnd, 4);
  1080. } else if (c === Sequences.StyleEnd[3]) {
  1081. this.startSpecial(Sequences.StyleEnd, 4);
  1082. } else {
  1083. this.state = 6;
  1084. this.stateInTagName(c);
  1085. }
  1086. }
  1087. stateBeforeSpecialT(c) {
  1088. if (c === Sequences.TitleEnd[3]) {
  1089. this.startSpecial(Sequences.TitleEnd, 4);
  1090. } else if (c === Sequences.TextareaEnd[3]) {
  1091. this.startSpecial(Sequences.TextareaEnd, 4);
  1092. } else {
  1093. this.state = 6;
  1094. this.stateInTagName(c);
  1095. }
  1096. }
  1097. startEntity() {
  1098. }
  1099. stateInEntity() {
  1100. }
  1101. /**
  1102. * Iterates through the buffer, calling the function corresponding to the current state.
  1103. *
  1104. * States that are more likely to be hit are higher up, as a performance improvement.
  1105. */
  1106. parse(input) {
  1107. this.buffer = input;
  1108. while (this.index < this.buffer.length) {
  1109. const c = this.buffer.charCodeAt(this.index);
  1110. if (c === 10) {
  1111. this.newlines.push(this.index);
  1112. }
  1113. switch (this.state) {
  1114. case 1: {
  1115. this.stateText(c);
  1116. break;
  1117. }
  1118. case 2: {
  1119. this.stateInterpolationOpen(c);
  1120. break;
  1121. }
  1122. case 3: {
  1123. this.stateInterpolation(c);
  1124. break;
  1125. }
  1126. case 4: {
  1127. this.stateInterpolationClose(c);
  1128. break;
  1129. }
  1130. case 31: {
  1131. this.stateSpecialStartSequence(c);
  1132. break;
  1133. }
  1134. case 32: {
  1135. this.stateInRCDATA(c);
  1136. break;
  1137. }
  1138. case 26: {
  1139. this.stateCDATASequence(c);
  1140. break;
  1141. }
  1142. case 19: {
  1143. this.stateInAttrValueDoubleQuotes(c);
  1144. break;
  1145. }
  1146. case 12: {
  1147. this.stateInAttrName(c);
  1148. break;
  1149. }
  1150. case 13: {
  1151. this.stateInDirName(c);
  1152. break;
  1153. }
  1154. case 14: {
  1155. this.stateInDirArg(c);
  1156. break;
  1157. }
  1158. case 15: {
  1159. this.stateInDynamicDirArg(c);
  1160. break;
  1161. }
  1162. case 16: {
  1163. this.stateInDirModifier(c);
  1164. break;
  1165. }
  1166. case 28: {
  1167. this.stateInCommentLike(c);
  1168. break;
  1169. }
  1170. case 27: {
  1171. this.stateInSpecialComment(c);
  1172. break;
  1173. }
  1174. case 11: {
  1175. this.stateBeforeAttrName(c);
  1176. break;
  1177. }
  1178. case 6: {
  1179. this.stateInTagName(c);
  1180. break;
  1181. }
  1182. case 34: {
  1183. this.stateInSFCRootTagName(c);
  1184. break;
  1185. }
  1186. case 9: {
  1187. this.stateInClosingTagName(c);
  1188. break;
  1189. }
  1190. case 5: {
  1191. this.stateBeforeTagName(c);
  1192. break;
  1193. }
  1194. case 17: {
  1195. this.stateAfterAttrName(c);
  1196. break;
  1197. }
  1198. case 20: {
  1199. this.stateInAttrValueSingleQuotes(c);
  1200. break;
  1201. }
  1202. case 18: {
  1203. this.stateBeforeAttrValue(c);
  1204. break;
  1205. }
  1206. case 8: {
  1207. this.stateBeforeClosingTagName(c);
  1208. break;
  1209. }
  1210. case 10: {
  1211. this.stateAfterClosingTagName(c);
  1212. break;
  1213. }
  1214. case 29: {
  1215. this.stateBeforeSpecialS(c);
  1216. break;
  1217. }
  1218. case 30: {
  1219. this.stateBeforeSpecialT(c);
  1220. break;
  1221. }
  1222. case 21: {
  1223. this.stateInAttrValueNoQuotes(c);
  1224. break;
  1225. }
  1226. case 7: {
  1227. this.stateInSelfClosingTag(c);
  1228. break;
  1229. }
  1230. case 23: {
  1231. this.stateInDeclaration(c);
  1232. break;
  1233. }
  1234. case 22: {
  1235. this.stateBeforeDeclaration(c);
  1236. break;
  1237. }
  1238. case 25: {
  1239. this.stateBeforeComment(c);
  1240. break;
  1241. }
  1242. case 24: {
  1243. this.stateInProcessingInstruction(c);
  1244. break;
  1245. }
  1246. case 33: {
  1247. this.stateInEntity();
  1248. break;
  1249. }
  1250. }
  1251. this.index++;
  1252. }
  1253. this.cleanup();
  1254. this.finish();
  1255. }
  1256. /**
  1257. * Remove data that has already been consumed from the buffer.
  1258. */
  1259. cleanup() {
  1260. if (this.sectionStart !== this.index) {
  1261. if (this.state === 1 || this.state === 32 && this.sequenceIndex === 0) {
  1262. this.cbs.ontext(this.sectionStart, this.index);
  1263. this.sectionStart = this.index;
  1264. } else if (this.state === 19 || this.state === 20 || this.state === 21) {
  1265. this.cbs.onattribdata(this.sectionStart, this.index);
  1266. this.sectionStart = this.index;
  1267. }
  1268. }
  1269. }
  1270. finish() {
  1271. this.handleTrailingData();
  1272. this.cbs.onend();
  1273. }
  1274. /** Handle any trailing data. */
  1275. handleTrailingData() {
  1276. const endIndex = this.buffer.length;
  1277. if (this.sectionStart >= endIndex) {
  1278. return;
  1279. }
  1280. if (this.state === 28) {
  1281. if (this.currentSequence === Sequences.CdataEnd) {
  1282. this.cbs.oncdata(this.sectionStart, endIndex);
  1283. } else {
  1284. this.cbs.oncomment(this.sectionStart, endIndex);
  1285. }
  1286. } else if (this.state === 6 || this.state === 11 || this.state === 18 || this.state === 17 || this.state === 12 || this.state === 13 || this.state === 14 || this.state === 15 || this.state === 16 || this.state === 20 || this.state === 19 || this.state === 21 || this.state === 9) ; else {
  1287. this.cbs.ontext(this.sectionStart, endIndex);
  1288. }
  1289. }
  1290. emitCodePoint(cp, consumed) {
  1291. }
  1292. }
  1293. const CompilerDeprecationTypes = {
  1294. "COMPILER_IS_ON_ELEMENT": "COMPILER_IS_ON_ELEMENT",
  1295. "COMPILER_V_BIND_SYNC": "COMPILER_V_BIND_SYNC",
  1296. "COMPILER_V_BIND_OBJECT_ORDER": "COMPILER_V_BIND_OBJECT_ORDER",
  1297. "COMPILER_V_ON_NATIVE": "COMPILER_V_ON_NATIVE",
  1298. "COMPILER_V_IF_V_FOR_PRECEDENCE": "COMPILER_V_IF_V_FOR_PRECEDENCE",
  1299. "COMPILER_NATIVE_TEMPLATE": "COMPILER_NATIVE_TEMPLATE",
  1300. "COMPILER_INLINE_TEMPLATE": "COMPILER_INLINE_TEMPLATE",
  1301. "COMPILER_FILTERS": "COMPILER_FILTERS"
  1302. };
  1303. const deprecationData = {
  1304. ["COMPILER_IS_ON_ELEMENT"]: {
  1305. message: `Platform-native elements with "is" prop will no longer be treated as components in Vue 3 unless the "is" value is explicitly prefixed with "vue:".`,
  1306. link: `https://v3-migration.vuejs.org/breaking-changes/custom-elements-interop.html`
  1307. },
  1308. ["COMPILER_V_BIND_SYNC"]: {
  1309. message: (key) => `.sync modifier for v-bind has been removed. Use v-model with argument instead. \`v-bind:${key}.sync\` should be changed to \`v-model:${key}\`.`,
  1310. link: `https://v3-migration.vuejs.org/breaking-changes/v-model.html`
  1311. },
  1312. ["COMPILER_V_BIND_OBJECT_ORDER"]: {
  1313. message: `v-bind="obj" usage is now order sensitive and behaves like JavaScript object spread: it will now overwrite an existing non-mergeable attribute that appears before v-bind in the case of conflict. To retain 2.x behavior, move v-bind to make it the first attribute. You can also suppress this warning if the usage is intended.`,
  1314. link: `https://v3-migration.vuejs.org/breaking-changes/v-bind.html`
  1315. },
  1316. ["COMPILER_V_ON_NATIVE"]: {
  1317. message: `.native modifier for v-on has been removed as is no longer necessary.`,
  1318. link: `https://v3-migration.vuejs.org/breaking-changes/v-on-native-modifier-removed.html`
  1319. },
  1320. ["COMPILER_V_IF_V_FOR_PRECEDENCE"]: {
  1321. message: `v-if / v-for precedence when used on the same element has changed in Vue 3: v-if now takes higher precedence and will no longer have access to v-for scope variables. It is best to avoid the ambiguity with <template> tags or use a computed property that filters v-for data source.`,
  1322. link: `https://v3-migration.vuejs.org/breaking-changes/v-if-v-for.html`
  1323. },
  1324. ["COMPILER_NATIVE_TEMPLATE"]: {
  1325. message: `<template> with no special directives will render as a native template element instead of its inner content in Vue 3.`
  1326. },
  1327. ["COMPILER_INLINE_TEMPLATE"]: {
  1328. message: `"inline-template" has been removed in Vue 3.`,
  1329. link: `https://v3-migration.vuejs.org/breaking-changes/inline-template-attribute.html`
  1330. },
  1331. ["COMPILER_FILTERS"]: {
  1332. message: `filters have been removed in Vue 3. The "|" symbol will be treated as native JavaScript bitwise OR operator. Use method calls or computed properties instead.`,
  1333. link: `https://v3-migration.vuejs.org/breaking-changes/filters.html`
  1334. }
  1335. };
  1336. function getCompatValue(key, { compatConfig }) {
  1337. const value = compatConfig && compatConfig[key];
  1338. if (key === "MODE") {
  1339. return value || 3;
  1340. } else {
  1341. return value;
  1342. }
  1343. }
  1344. function isCompatEnabled(key, context) {
  1345. const mode = getCompatValue("MODE", context);
  1346. const value = getCompatValue(key, context);
  1347. return mode === 3 ? value === true : value !== false;
  1348. }
  1349. function checkCompatEnabled(key, context, loc, ...args) {
  1350. const enabled = isCompatEnabled(key, context);
  1351. if (enabled) {
  1352. warnDeprecation(key, context, loc, ...args);
  1353. }
  1354. return enabled;
  1355. }
  1356. function warnDeprecation(key, context, loc, ...args) {
  1357. const val = getCompatValue(key, context);
  1358. if (val === "suppress-warning") {
  1359. return;
  1360. }
  1361. const { message, link } = deprecationData[key];
  1362. const msg = `(deprecation ${key}) ${typeof message === "function" ? message(...args) : message}${link ? `
  1363. Details: ${link}` : ``}`;
  1364. const err = new SyntaxError(msg);
  1365. err.code = key;
  1366. if (loc)
  1367. err.loc = loc;
  1368. context.onWarn(err);
  1369. }
  1370. function defaultOnError(error) {
  1371. throw error;
  1372. }
  1373. function defaultOnWarn(msg) {
  1374. console.warn(`[Vue warn] ${msg.message}`);
  1375. }
  1376. function createCompilerError(code, loc, messages, additionalMessage) {
  1377. const msg = (messages || errorMessages)[code] + (additionalMessage || ``) ;
  1378. const error = new SyntaxError(String(msg));
  1379. error.code = code;
  1380. error.loc = loc;
  1381. return error;
  1382. }
  1383. const ErrorCodes = {
  1384. "ABRUPT_CLOSING_OF_EMPTY_COMMENT": 0,
  1385. "0": "ABRUPT_CLOSING_OF_EMPTY_COMMENT",
  1386. "CDATA_IN_HTML_CONTENT": 1,
  1387. "1": "CDATA_IN_HTML_CONTENT",
  1388. "DUPLICATE_ATTRIBUTE": 2,
  1389. "2": "DUPLICATE_ATTRIBUTE",
  1390. "END_TAG_WITH_ATTRIBUTES": 3,
  1391. "3": "END_TAG_WITH_ATTRIBUTES",
  1392. "END_TAG_WITH_TRAILING_SOLIDUS": 4,
  1393. "4": "END_TAG_WITH_TRAILING_SOLIDUS",
  1394. "EOF_BEFORE_TAG_NAME": 5,
  1395. "5": "EOF_BEFORE_TAG_NAME",
  1396. "EOF_IN_CDATA": 6,
  1397. "6": "EOF_IN_CDATA",
  1398. "EOF_IN_COMMENT": 7,
  1399. "7": "EOF_IN_COMMENT",
  1400. "EOF_IN_SCRIPT_HTML_COMMENT_LIKE_TEXT": 8,
  1401. "8": "EOF_IN_SCRIPT_HTML_COMMENT_LIKE_TEXT",
  1402. "EOF_IN_TAG": 9,
  1403. "9": "EOF_IN_TAG",
  1404. "INCORRECTLY_CLOSED_COMMENT": 10,
  1405. "10": "INCORRECTLY_CLOSED_COMMENT",
  1406. "INCORRECTLY_OPENED_COMMENT": 11,
  1407. "11": "INCORRECTLY_OPENED_COMMENT",
  1408. "INVALID_FIRST_CHARACTER_OF_TAG_NAME": 12,
  1409. "12": "INVALID_FIRST_CHARACTER_OF_TAG_NAME",
  1410. "MISSING_ATTRIBUTE_VALUE": 13,
  1411. "13": "MISSING_ATTRIBUTE_VALUE",
  1412. "MISSING_END_TAG_NAME": 14,
  1413. "14": "MISSING_END_TAG_NAME",
  1414. "MISSING_WHITESPACE_BETWEEN_ATTRIBUTES": 15,
  1415. "15": "MISSING_WHITESPACE_BETWEEN_ATTRIBUTES",
  1416. "NESTED_COMMENT": 16,
  1417. "16": "NESTED_COMMENT",
  1418. "UNEXPECTED_CHARACTER_IN_ATTRIBUTE_NAME": 17,
  1419. "17": "UNEXPECTED_CHARACTER_IN_ATTRIBUTE_NAME",
  1420. "UNEXPECTED_CHARACTER_IN_UNQUOTED_ATTRIBUTE_VALUE": 18,
  1421. "18": "UNEXPECTED_CHARACTER_IN_UNQUOTED_ATTRIBUTE_VALUE",
  1422. "UNEXPECTED_EQUALS_SIGN_BEFORE_ATTRIBUTE_NAME": 19,
  1423. "19": "UNEXPECTED_EQUALS_SIGN_BEFORE_ATTRIBUTE_NAME",
  1424. "UNEXPECTED_NULL_CHARACTER": 20,
  1425. "20": "UNEXPECTED_NULL_CHARACTER",
  1426. "UNEXPECTED_QUESTION_MARK_INSTEAD_OF_TAG_NAME": 21,
  1427. "21": "UNEXPECTED_QUESTION_MARK_INSTEAD_OF_TAG_NAME",
  1428. "UNEXPECTED_SOLIDUS_IN_TAG": 22,
  1429. "22": "UNEXPECTED_SOLIDUS_IN_TAG",
  1430. "X_INVALID_END_TAG": 23,
  1431. "23": "X_INVALID_END_TAG",
  1432. "X_MISSING_END_TAG": 24,
  1433. "24": "X_MISSING_END_TAG",
  1434. "X_MISSING_INTERPOLATION_END": 25,
  1435. "25": "X_MISSING_INTERPOLATION_END",
  1436. "X_MISSING_DIRECTIVE_NAME": 26,
  1437. "26": "X_MISSING_DIRECTIVE_NAME",
  1438. "X_MISSING_DYNAMIC_DIRECTIVE_ARGUMENT_END": 27,
  1439. "27": "X_MISSING_DYNAMIC_DIRECTIVE_ARGUMENT_END",
  1440. "X_V_IF_NO_EXPRESSION": 28,
  1441. "28": "X_V_IF_NO_EXPRESSION",
  1442. "X_V_IF_SAME_KEY": 29,
  1443. "29": "X_V_IF_SAME_KEY",
  1444. "X_V_ELSE_NO_ADJACENT_IF": 30,
  1445. "30": "X_V_ELSE_NO_ADJACENT_IF",
  1446. "X_V_FOR_NO_EXPRESSION": 31,
  1447. "31": "X_V_FOR_NO_EXPRESSION",
  1448. "X_V_FOR_MALFORMED_EXPRESSION": 32,
  1449. "32": "X_V_FOR_MALFORMED_EXPRESSION",
  1450. "X_V_FOR_TEMPLATE_KEY_PLACEMENT": 33,
  1451. "33": "X_V_FOR_TEMPLATE_KEY_PLACEMENT",
  1452. "X_V_BIND_NO_EXPRESSION": 34,
  1453. "34": "X_V_BIND_NO_EXPRESSION",
  1454. "X_V_ON_NO_EXPRESSION": 35,
  1455. "35": "X_V_ON_NO_EXPRESSION",
  1456. "X_V_SLOT_UNEXPECTED_DIRECTIVE_ON_SLOT_OUTLET": 36,
  1457. "36": "X_V_SLOT_UNEXPECTED_DIRECTIVE_ON_SLOT_OUTLET",
  1458. "X_V_SLOT_MIXED_SLOT_USAGE": 37,
  1459. "37": "X_V_SLOT_MIXED_SLOT_USAGE",
  1460. "X_V_SLOT_DUPLICATE_SLOT_NAMES": 38,
  1461. "38": "X_V_SLOT_DUPLICATE_SLOT_NAMES",
  1462. "X_V_SLOT_EXTRANEOUS_DEFAULT_SLOT_CHILDREN": 39,
  1463. "39": "X_V_SLOT_EXTRANEOUS_DEFAULT_SLOT_CHILDREN",
  1464. "X_V_SLOT_MISPLACED": 40,
  1465. "40": "X_V_SLOT_MISPLACED",
  1466. "X_V_MODEL_NO_EXPRESSION": 41,
  1467. "41": "X_V_MODEL_NO_EXPRESSION",
  1468. "X_V_MODEL_MALFORMED_EXPRESSION": 42,
  1469. "42": "X_V_MODEL_MALFORMED_EXPRESSION",
  1470. "X_V_MODEL_ON_SCOPE_VARIABLE": 43,
  1471. "43": "X_V_MODEL_ON_SCOPE_VARIABLE",
  1472. "X_V_MODEL_ON_PROPS": 44,
  1473. "44": "X_V_MODEL_ON_PROPS",
  1474. "X_INVALID_EXPRESSION": 45,
  1475. "45": "X_INVALID_EXPRESSION",
  1476. "X_KEEP_ALIVE_INVALID_CHILDREN": 46,
  1477. "46": "X_KEEP_ALIVE_INVALID_CHILDREN",
  1478. "X_PREFIX_ID_NOT_SUPPORTED": 47,
  1479. "47": "X_PREFIX_ID_NOT_SUPPORTED",
  1480. "X_MODULE_MODE_NOT_SUPPORTED": 48,
  1481. "48": "X_MODULE_MODE_NOT_SUPPORTED",
  1482. "X_CACHE_HANDLER_NOT_SUPPORTED": 49,
  1483. "49": "X_CACHE_HANDLER_NOT_SUPPORTED",
  1484. "X_SCOPE_ID_NOT_SUPPORTED": 50,
  1485. "50": "X_SCOPE_ID_NOT_SUPPORTED",
  1486. "X_VNODE_HOOKS": 51,
  1487. "51": "X_VNODE_HOOKS",
  1488. "X_V_BIND_INVALID_SAME_NAME_ARGUMENT": 52,
  1489. "52": "X_V_BIND_INVALID_SAME_NAME_ARGUMENT",
  1490. "__EXTEND_POINT__": 53,
  1491. "53": "__EXTEND_POINT__"
  1492. };
  1493. const errorMessages = {
  1494. // parse errors
  1495. [0]: "Illegal comment.",
  1496. [1]: "CDATA section is allowed only in XML context.",
  1497. [2]: "Duplicate attribute.",
  1498. [3]: "End tag cannot have attributes.",
  1499. [4]: "Illegal '/' in tags.",
  1500. [5]: "Unexpected EOF in tag.",
  1501. [6]: "Unexpected EOF in CDATA section.",
  1502. [7]: "Unexpected EOF in comment.",
  1503. [8]: "Unexpected EOF in script.",
  1504. [9]: "Unexpected EOF in tag.",
  1505. [10]: "Incorrectly closed comment.",
  1506. [11]: "Incorrectly opened comment.",
  1507. [12]: "Illegal tag name. Use '&lt;' to print '<'.",
  1508. [13]: "Attribute value was expected.",
  1509. [14]: "End tag name was expected.",
  1510. [15]: "Whitespace was expected.",
  1511. [16]: "Unexpected '<!--' in comment.",
  1512. [17]: `Attribute name cannot contain U+0022 ("), U+0027 ('), and U+003C (<).`,
  1513. [18]: "Unquoted attribute value cannot contain U+0022 (\"), U+0027 ('), U+003C (<), U+003D (=), and U+0060 (`).",
  1514. [19]: "Attribute name cannot start with '='.",
  1515. [21]: "'<?' is allowed only in XML context.",
  1516. [20]: `Unexpected null character.`,
  1517. [22]: "Illegal '/' in tags.",
  1518. // Vue-specific parse errors
  1519. [23]: "Invalid end tag.",
  1520. [24]: "Element is missing end tag.",
  1521. [25]: "Interpolation end sign was not found.",
  1522. [27]: "End bracket for dynamic directive argument was not found. Note that dynamic directive argument cannot contain spaces.",
  1523. [26]: "Legal directive name was expected.",
  1524. // transform errors
  1525. [28]: `v-if/v-else-if is missing expression.`,
  1526. [29]: `v-if/else branches must use unique keys.`,
  1527. [30]: `v-else/v-else-if has no adjacent v-if or v-else-if.`,
  1528. [31]: `v-for is missing expression.`,
  1529. [32]: `v-for has invalid expression.`,
  1530. [33]: `<template v-for> key should be placed on the <template> tag.`,
  1531. [34]: `v-bind is missing expression.`,
  1532. [52]: `v-bind with same-name shorthand only allows static argument.`,
  1533. [35]: `v-on is missing expression.`,
  1534. [36]: `Unexpected custom directive on <slot> outlet.`,
  1535. [37]: `Mixed v-slot usage on both the component and nested <template>. When there are multiple named slots, all slots should use <template> syntax to avoid scope ambiguity.`,
  1536. [38]: `Duplicate slot names found. `,
  1537. [39]: `Extraneous children found when component already has explicitly named default slot. These children will be ignored.`,
  1538. [40]: `v-slot can only be used on components or <template> tags.`,
  1539. [41]: `v-model is missing expression.`,
  1540. [42]: `v-model value must be a valid JavaScript member expression.`,
  1541. [43]: `v-model cannot be used on v-for or v-slot scope variables because they are not writable.`,
  1542. [44]: `v-model cannot be used on a prop, because local prop bindings are not writable.
  1543. Use a v-bind binding combined with a v-on listener that emits update:x event instead.`,
  1544. [45]: `Error parsing JavaScript expression: `,
  1545. [46]: `<KeepAlive> expects exactly one child component.`,
  1546. [51]: `@vnode-* hooks in templates are no longer supported. Use the vue: prefix instead. For example, @vnode-mounted should be changed to @vue:mounted. @vnode-* hooks support has been removed in 3.4.`,
  1547. // generic errors
  1548. [47]: `"prefixIdentifiers" option is not supported in this build of compiler.`,
  1549. [48]: `ES module mode is not supported in this build of compiler.`,
  1550. [49]: `"cacheHandlers" option is only supported when the "prefixIdentifiers" option is enabled.`,
  1551. [50]: `"scopeId" option is only supported in module mode.`,
  1552. // just to fulfill types
  1553. [53]: ``
  1554. };
  1555. function walkIdentifiers(root, onIdentifier, includeAll = false, parentStack = [], knownIds = /* @__PURE__ */ Object.create(null)) {
  1556. {
  1557. return;
  1558. }
  1559. }
  1560. function isReferencedIdentifier(id, parent, parentStack) {
  1561. {
  1562. return false;
  1563. }
  1564. }
  1565. function isInDestructureAssignment(parent, parentStack) {
  1566. if (parent && (parent.type === "ObjectProperty" || parent.type === "ArrayPattern")) {
  1567. let i = parentStack.length;
  1568. while (i--) {
  1569. const p = parentStack[i];
  1570. if (p.type === "AssignmentExpression") {
  1571. return true;
  1572. } else if (p.type !== "ObjectProperty" && !p.type.endsWith("Pattern")) {
  1573. break;
  1574. }
  1575. }
  1576. }
  1577. return false;
  1578. }
  1579. function isInNewExpression(parentStack) {
  1580. let i = parentStack.length;
  1581. while (i--) {
  1582. const p = parentStack[i];
  1583. if (p.type === "NewExpression") {
  1584. return true;
  1585. } else if (p.type !== "MemberExpression") {
  1586. break;
  1587. }
  1588. }
  1589. return false;
  1590. }
  1591. function walkFunctionParams(node, onIdent) {
  1592. for (const p of node.params) {
  1593. for (const id of extractIdentifiers(p)) {
  1594. onIdent(id);
  1595. }
  1596. }
  1597. }
  1598. function walkBlockDeclarations(block, onIdent) {
  1599. for (const stmt of block.body) {
  1600. if (stmt.type === "VariableDeclaration") {
  1601. if (stmt.declare)
  1602. continue;
  1603. for (const decl of stmt.declarations) {
  1604. for (const id of extractIdentifiers(decl.id)) {
  1605. onIdent(id);
  1606. }
  1607. }
  1608. } else if (stmt.type === "FunctionDeclaration" || stmt.type === "ClassDeclaration") {
  1609. if (stmt.declare || !stmt.id)
  1610. continue;
  1611. onIdent(stmt.id);
  1612. } else if (stmt.type === "ForOfStatement" || stmt.type === "ForInStatement" || stmt.type === "ForStatement") {
  1613. const variable = stmt.type === "ForStatement" ? stmt.init : stmt.left;
  1614. if (variable && variable.type === "VariableDeclaration") {
  1615. for (const decl of variable.declarations) {
  1616. for (const id of extractIdentifiers(decl.id)) {
  1617. onIdent(id);
  1618. }
  1619. }
  1620. }
  1621. }
  1622. }
  1623. }
  1624. function extractIdentifiers(param, nodes = []) {
  1625. switch (param.type) {
  1626. case "Identifier":
  1627. nodes.push(param);
  1628. break;
  1629. case "MemberExpression":
  1630. let object = param;
  1631. while (object.type === "MemberExpression") {
  1632. object = object.object;
  1633. }
  1634. nodes.push(object);
  1635. break;
  1636. case "ObjectPattern":
  1637. for (const prop of param.properties) {
  1638. if (prop.type === "RestElement") {
  1639. extractIdentifiers(prop.argument, nodes);
  1640. } else {
  1641. extractIdentifiers(prop.value, nodes);
  1642. }
  1643. }
  1644. break;
  1645. case "ArrayPattern":
  1646. param.elements.forEach((element) => {
  1647. if (element)
  1648. extractIdentifiers(element, nodes);
  1649. });
  1650. break;
  1651. case "RestElement":
  1652. extractIdentifiers(param.argument, nodes);
  1653. break;
  1654. case "AssignmentPattern":
  1655. extractIdentifiers(param.left, nodes);
  1656. break;
  1657. }
  1658. return nodes;
  1659. }
  1660. const isFunctionType = (node) => {
  1661. return /Function(?:Expression|Declaration)$|Method$/.test(node.type);
  1662. };
  1663. const isStaticProperty = (node) => node && (node.type === "ObjectProperty" || node.type === "ObjectMethod") && !node.computed;
  1664. const isStaticPropertyKey = (node, parent) => isStaticProperty(parent) && parent.key === node;
  1665. const TS_NODE_TYPES = [
  1666. "TSAsExpression",
  1667. // foo as number
  1668. "TSTypeAssertion",
  1669. // (<number>foo)
  1670. "TSNonNullExpression",
  1671. // foo!
  1672. "TSInstantiationExpression",
  1673. // foo<string>
  1674. "TSSatisfiesExpression"
  1675. // foo satisfies T
  1676. ];
  1677. function unwrapTSNode(node) {
  1678. if (TS_NODE_TYPES.includes(node.type)) {
  1679. return unwrapTSNode(node.expression);
  1680. } else {
  1681. return node;
  1682. }
  1683. }
  1684. const isStaticExp = (p) => p.type === 4 && p.isStatic;
  1685. function isCoreComponent(tag) {
  1686. switch (tag) {
  1687. case "Teleport":
  1688. case "teleport":
  1689. return TELEPORT;
  1690. case "Suspense":
  1691. case "suspense":
  1692. return SUSPENSE;
  1693. case "KeepAlive":
  1694. case "keep-alive":
  1695. return KEEP_ALIVE;
  1696. case "BaseTransition":
  1697. case "base-transition":
  1698. return BASE_TRANSITION;
  1699. }
  1700. }
  1701. const nonIdentifierRE = /^\d|[^\$\w]/;
  1702. const isSimpleIdentifier = (name) => !nonIdentifierRE.test(name);
  1703. const validFirstIdentCharRE = /[A-Za-z_$\xA0-\uFFFF]/;
  1704. const validIdentCharRE = /[\.\?\w$\xA0-\uFFFF]/;
  1705. const whitespaceRE = /\s+[.[]\s*|\s*[.[]\s+/g;
  1706. const isMemberExpressionBrowser = (path) => {
  1707. path = path.trim().replace(whitespaceRE, (s) => s.trim());
  1708. let state = 0 /* inMemberExp */;
  1709. let stateStack = [];
  1710. let currentOpenBracketCount = 0;
  1711. let currentOpenParensCount = 0;
  1712. let currentStringType = null;
  1713. for (let i = 0; i < path.length; i++) {
  1714. const char = path.charAt(i);
  1715. switch (state) {
  1716. case 0 /* inMemberExp */:
  1717. if (char === "[") {
  1718. stateStack.push(state);
  1719. state = 1 /* inBrackets */;
  1720. currentOpenBracketCount++;
  1721. } else if (char === "(") {
  1722. stateStack.push(state);
  1723. state = 2 /* inParens */;
  1724. currentOpenParensCount++;
  1725. } else if (!(i === 0 ? validFirstIdentCharRE : validIdentCharRE).test(char)) {
  1726. return false;
  1727. }
  1728. break;
  1729. case 1 /* inBrackets */:
  1730. if (char === `'` || char === `"` || char === "`") {
  1731. stateStack.push(state);
  1732. state = 3 /* inString */;
  1733. currentStringType = char;
  1734. } else if (char === `[`) {
  1735. currentOpenBracketCount++;
  1736. } else if (char === `]`) {
  1737. if (!--currentOpenBracketCount) {
  1738. state = stateStack.pop();
  1739. }
  1740. }
  1741. break;
  1742. case 2 /* inParens */:
  1743. if (char === `'` || char === `"` || char === "`") {
  1744. stateStack.push(state);
  1745. state = 3 /* inString */;
  1746. currentStringType = char;
  1747. } else if (char === `(`) {
  1748. currentOpenParensCount++;
  1749. } else if (char === `)`) {
  1750. if (i === path.length - 1) {
  1751. return false;
  1752. }
  1753. if (!--currentOpenParensCount) {
  1754. state = stateStack.pop();
  1755. }
  1756. }
  1757. break;
  1758. case 3 /* inString */:
  1759. if (char === currentStringType) {
  1760. state = stateStack.pop();
  1761. currentStringType = null;
  1762. }
  1763. break;
  1764. }
  1765. }
  1766. return !currentOpenBracketCount && !currentOpenParensCount;
  1767. };
  1768. const isMemberExpressionNode = NOOP ;
  1769. const isMemberExpression = isMemberExpressionBrowser ;
  1770. function advancePositionWithClone(pos, source, numberOfCharacters = source.length) {
  1771. return advancePositionWithMutation(
  1772. {
  1773. offset: pos.offset,
  1774. line: pos.line,
  1775. column: pos.column
  1776. },
  1777. source,
  1778. numberOfCharacters
  1779. );
  1780. }
  1781. function advancePositionWithMutation(pos, source, numberOfCharacters = source.length) {
  1782. let linesCount = 0;
  1783. let lastNewLinePos = -1;
  1784. for (let i = 0; i < numberOfCharacters; i++) {
  1785. if (source.charCodeAt(i) === 10) {
  1786. linesCount++;
  1787. lastNewLinePos = i;
  1788. }
  1789. }
  1790. pos.offset += numberOfCharacters;
  1791. pos.line += linesCount;
  1792. pos.column = lastNewLinePos === -1 ? pos.column + numberOfCharacters : numberOfCharacters - lastNewLinePos;
  1793. return pos;
  1794. }
  1795. function assert(condition, msg) {
  1796. if (!condition) {
  1797. throw new Error(msg || `unexpected compiler condition`);
  1798. }
  1799. }
  1800. function findDir(node, name, allowEmpty = false) {
  1801. for (let i = 0; i < node.props.length; i++) {
  1802. const p = node.props[i];
  1803. if (p.type === 7 && (allowEmpty || p.exp) && (isString(name) ? p.name === name : name.test(p.name))) {
  1804. return p;
  1805. }
  1806. }
  1807. }
  1808. function findProp(node, name, dynamicOnly = false, allowEmpty = false) {
  1809. for (let i = 0; i < node.props.length; i++) {
  1810. const p = node.props[i];
  1811. if (p.type === 6) {
  1812. if (dynamicOnly)
  1813. continue;
  1814. if (p.name === name && (p.value || allowEmpty)) {
  1815. return p;
  1816. }
  1817. } else if (p.name === "bind" && (p.exp || allowEmpty) && isStaticArgOf(p.arg, name)) {
  1818. return p;
  1819. }
  1820. }
  1821. }
  1822. function isStaticArgOf(arg, name) {
  1823. return !!(arg && isStaticExp(arg) && arg.content === name);
  1824. }
  1825. function hasDynamicKeyVBind(node) {
  1826. return node.props.some(
  1827. (p) => p.type === 7 && p.name === "bind" && (!p.arg || // v-bind="obj"
  1828. p.arg.type !== 4 || // v-bind:[_ctx.foo]
  1829. !p.arg.isStatic)
  1830. // v-bind:[foo]
  1831. );
  1832. }
  1833. function isText$1(node) {
  1834. return node.type === 5 || node.type === 2;
  1835. }
  1836. function isVSlot(p) {
  1837. return p.type === 7 && p.name === "slot";
  1838. }
  1839. function isTemplateNode(node) {
  1840. return node.type === 1 && node.tagType === 3;
  1841. }
  1842. function isSlotOutlet(node) {
  1843. return node.type === 1 && node.tagType === 2;
  1844. }
  1845. const propsHelperSet = /* @__PURE__ */ new Set([NORMALIZE_PROPS, GUARD_REACTIVE_PROPS]);
  1846. function getUnnormalizedProps(props, callPath = []) {
  1847. if (props && !isString(props) && props.type === 14) {
  1848. const callee = props.callee;
  1849. if (!isString(callee) && propsHelperSet.has(callee)) {
  1850. return getUnnormalizedProps(
  1851. props.arguments[0],
  1852. callPath.concat(props)
  1853. );
  1854. }
  1855. }
  1856. return [props, callPath];
  1857. }
  1858. function injectProp(node, prop, context) {
  1859. let propsWithInjection;
  1860. let props = node.type === 13 ? node.props : node.arguments[2];
  1861. let callPath = [];
  1862. let parentCall;
  1863. if (props && !isString(props) && props.type === 14) {
  1864. const ret = getUnnormalizedProps(props);
  1865. props = ret[0];
  1866. callPath = ret[1];
  1867. parentCall = callPath[callPath.length - 1];
  1868. }
  1869. if (props == null || isString(props)) {
  1870. propsWithInjection = createObjectExpression([prop]);
  1871. } else if (props.type === 14) {
  1872. const first = props.arguments[0];
  1873. if (!isString(first) && first.type === 15) {
  1874. if (!hasProp(prop, first)) {
  1875. first.properties.unshift(prop);
  1876. }
  1877. } else {
  1878. if (props.callee === TO_HANDLERS) {
  1879. propsWithInjection = createCallExpression(context.helper(MERGE_PROPS), [
  1880. createObjectExpression([prop]),
  1881. props
  1882. ]);
  1883. } else {
  1884. props.arguments.unshift(createObjectExpression([prop]));
  1885. }
  1886. }
  1887. !propsWithInjection && (propsWithInjection = props);
  1888. } else if (props.type === 15) {
  1889. if (!hasProp(prop, props)) {
  1890. props.properties.unshift(prop);
  1891. }
  1892. propsWithInjection = props;
  1893. } else {
  1894. propsWithInjection = createCallExpression(context.helper(MERGE_PROPS), [
  1895. createObjectExpression([prop]),
  1896. props
  1897. ]);
  1898. if (parentCall && parentCall.callee === GUARD_REACTIVE_PROPS) {
  1899. parentCall = callPath[callPath.length - 2];
  1900. }
  1901. }
  1902. if (node.type === 13) {
  1903. if (parentCall) {
  1904. parentCall.arguments[0] = propsWithInjection;
  1905. } else {
  1906. node.props = propsWithInjection;
  1907. }
  1908. } else {
  1909. if (parentCall) {
  1910. parentCall.arguments[0] = propsWithInjection;
  1911. } else {
  1912. node.arguments[2] = propsWithInjection;
  1913. }
  1914. }
  1915. }
  1916. function hasProp(prop, props) {
  1917. let result = false;
  1918. if (prop.key.type === 4) {
  1919. const propKeyName = prop.key.content;
  1920. result = props.properties.some(
  1921. (p) => p.key.type === 4 && p.key.content === propKeyName
  1922. );
  1923. }
  1924. return result;
  1925. }
  1926. function toValidAssetId(name, type) {
  1927. return `_${type}_${name.replace(/[^\w]/g, (searchValue, replaceValue) => {
  1928. return searchValue === "-" ? "_" : name.charCodeAt(replaceValue).toString();
  1929. })}`;
  1930. }
  1931. function hasScopeRef(node, ids) {
  1932. if (!node || Object.keys(ids).length === 0) {
  1933. return false;
  1934. }
  1935. switch (node.type) {
  1936. case 1:
  1937. for (let i = 0; i < node.props.length; i++) {
  1938. const p = node.props[i];
  1939. if (p.type === 7 && (hasScopeRef(p.arg, ids) || hasScopeRef(p.exp, ids))) {
  1940. return true;
  1941. }
  1942. }
  1943. return node.children.some((c) => hasScopeRef(c, ids));
  1944. case 11:
  1945. if (hasScopeRef(node.source, ids)) {
  1946. return true;
  1947. }
  1948. return node.children.some((c) => hasScopeRef(c, ids));
  1949. case 9:
  1950. return node.branches.some((b) => hasScopeRef(b, ids));
  1951. case 10:
  1952. if (hasScopeRef(node.condition, ids)) {
  1953. return true;
  1954. }
  1955. return node.children.some((c) => hasScopeRef(c, ids));
  1956. case 4:
  1957. return !node.isStatic && isSimpleIdentifier(node.content) && !!ids[node.content];
  1958. case 8:
  1959. return node.children.some((c) => isObject(c) && hasScopeRef(c, ids));
  1960. case 5:
  1961. case 12:
  1962. return hasScopeRef(node.content, ids);
  1963. case 2:
  1964. case 3:
  1965. return false;
  1966. default:
  1967. return false;
  1968. }
  1969. }
  1970. function getMemoedVNodeCall(node) {
  1971. if (node.type === 14 && node.callee === WITH_MEMO) {
  1972. return node.arguments[1].returns;
  1973. } else {
  1974. return node;
  1975. }
  1976. }
  1977. const forAliasRE = /([\s\S]*?)\s+(?:in|of)\s+([\s\S]*)/;
  1978. const defaultParserOptions = {
  1979. parseMode: "base",
  1980. ns: 0,
  1981. delimiters: [`{{`, `}}`],
  1982. getNamespace: () => 0,
  1983. isVoidTag: NO,
  1984. isPreTag: NO,
  1985. isCustomElement: NO,
  1986. onError: defaultOnError,
  1987. onWarn: defaultOnWarn,
  1988. comments: true,
  1989. prefixIdentifiers: false
  1990. };
  1991. let currentOptions = defaultParserOptions;
  1992. let currentRoot = null;
  1993. let currentInput = "";
  1994. let currentOpenTag = null;
  1995. let currentProp = null;
  1996. let currentAttrValue = "";
  1997. let currentAttrStartIndex = -1;
  1998. let currentAttrEndIndex = -1;
  1999. let inPre = 0;
  2000. let inVPre = false;
  2001. let currentVPreBoundary = null;
  2002. const stack = [];
  2003. const tokenizer = new Tokenizer(stack, {
  2004. onerr: emitError,
  2005. ontext(start, end) {
  2006. onText(getSlice(start, end), start, end);
  2007. },
  2008. ontextentity(char, start, end) {
  2009. onText(char, start, end);
  2010. },
  2011. oninterpolation(start, end) {
  2012. if (inVPre) {
  2013. return onText(getSlice(start, end), start, end);
  2014. }
  2015. let innerStart = start + tokenizer.delimiterOpen.length;
  2016. let innerEnd = end - tokenizer.delimiterClose.length;
  2017. while (isWhitespace(currentInput.charCodeAt(innerStart))) {
  2018. innerStart++;
  2019. }
  2020. while (isWhitespace(currentInput.charCodeAt(innerEnd - 1))) {
  2021. innerEnd--;
  2022. }
  2023. let exp = getSlice(innerStart, innerEnd);
  2024. if (exp.includes("&")) {
  2025. {
  2026. exp = currentOptions.decodeEntities(exp, false);
  2027. }
  2028. }
  2029. addNode({
  2030. type: 5,
  2031. content: createExp(exp, false, getLoc(innerStart, innerEnd)),
  2032. loc: getLoc(start, end)
  2033. });
  2034. },
  2035. onopentagname(start, end) {
  2036. const name = getSlice(start, end);
  2037. currentOpenTag = {
  2038. type: 1,
  2039. tag: name,
  2040. ns: currentOptions.getNamespace(name, stack[0], currentOptions.ns),
  2041. tagType: 0,
  2042. // will be refined on tag close
  2043. props: [],
  2044. children: [],
  2045. loc: getLoc(start - 1, end),
  2046. codegenNode: void 0
  2047. };
  2048. },
  2049. onopentagend(end) {
  2050. endOpenTag(end);
  2051. },
  2052. onclosetag(start, end) {
  2053. const name = getSlice(start, end);
  2054. if (!currentOptions.isVoidTag(name)) {
  2055. let found = false;
  2056. for (let i = 0; i < stack.length; i++) {
  2057. const e = stack[i];
  2058. if (e.tag.toLowerCase() === name.toLowerCase()) {
  2059. found = true;
  2060. if (i > 0) {
  2061. emitError(24, stack[0].loc.start.offset);
  2062. }
  2063. for (let j = 0; j <= i; j++) {
  2064. const el = stack.shift();
  2065. onCloseTag(el, end, j < i);
  2066. }
  2067. break;
  2068. }
  2069. }
  2070. if (!found) {
  2071. emitError(23, backTrack(start, 60));
  2072. }
  2073. }
  2074. },
  2075. onselfclosingtag(end) {
  2076. const name = currentOpenTag.tag;
  2077. currentOpenTag.isSelfClosing = true;
  2078. endOpenTag(end);
  2079. if (stack[0] && stack[0].tag === name) {
  2080. onCloseTag(stack.shift(), end);
  2081. }
  2082. },
  2083. onattribname(start, end) {
  2084. currentProp = {
  2085. type: 6,
  2086. name: getSlice(start, end),
  2087. nameLoc: getLoc(start, end),
  2088. value: void 0,
  2089. loc: getLoc(start)
  2090. };
  2091. },
  2092. ondirname(start, end) {
  2093. const raw = getSlice(start, end);
  2094. const name = raw === "." || raw === ":" ? "bind" : raw === "@" ? "on" : raw === "#" ? "slot" : raw.slice(2);
  2095. if (!inVPre && name === "") {
  2096. emitError(26, start);
  2097. }
  2098. if (inVPre || name === "") {
  2099. currentProp = {
  2100. type: 6,
  2101. name: raw,
  2102. nameLoc: getLoc(start, end),
  2103. value: void 0,
  2104. loc: getLoc(start)
  2105. };
  2106. } else {
  2107. currentProp = {
  2108. type: 7,
  2109. name,
  2110. rawName: raw,
  2111. exp: void 0,
  2112. arg: void 0,
  2113. modifiers: raw === "." ? ["prop"] : [],
  2114. loc: getLoc(start)
  2115. };
  2116. if (name === "pre") {
  2117. inVPre = tokenizer.inVPre = true;
  2118. currentVPreBoundary = currentOpenTag;
  2119. const props = currentOpenTag.props;
  2120. for (let i = 0; i < props.length; i++) {
  2121. if (props[i].type === 7) {
  2122. props[i] = dirToAttr(props[i]);
  2123. }
  2124. }
  2125. }
  2126. }
  2127. },
  2128. ondirarg(start, end) {
  2129. if (start === end)
  2130. return;
  2131. const arg = getSlice(start, end);
  2132. if (inVPre) {
  2133. currentProp.name += arg;
  2134. setLocEnd(currentProp.nameLoc, end);
  2135. } else {
  2136. const isStatic = arg[0] !== `[`;
  2137. currentProp.arg = createExp(
  2138. isStatic ? arg : arg.slice(1, -1),
  2139. isStatic,
  2140. getLoc(start, end),
  2141. isStatic ? 3 : 0
  2142. );
  2143. }
  2144. },
  2145. ondirmodifier(start, end) {
  2146. const mod = getSlice(start, end);
  2147. if (inVPre) {
  2148. currentProp.name += "." + mod;
  2149. setLocEnd(currentProp.nameLoc, end);
  2150. } else if (currentProp.name === "slot") {
  2151. const arg = currentProp.arg;
  2152. if (arg) {
  2153. arg.content += "." + mod;
  2154. setLocEnd(arg.loc, end);
  2155. }
  2156. } else {
  2157. currentProp.modifiers.push(mod);
  2158. }
  2159. },
  2160. onattribdata(start, end) {
  2161. currentAttrValue += getSlice(start, end);
  2162. if (currentAttrStartIndex < 0)
  2163. currentAttrStartIndex = start;
  2164. currentAttrEndIndex = end;
  2165. },
  2166. onattribentity(char, start, end) {
  2167. currentAttrValue += char;
  2168. if (currentAttrStartIndex < 0)
  2169. currentAttrStartIndex = start;
  2170. currentAttrEndIndex = end;
  2171. },
  2172. onattribnameend(end) {
  2173. const start = currentProp.loc.start.offset;
  2174. const name = getSlice(start, end);
  2175. if (currentProp.type === 7) {
  2176. currentProp.rawName = name;
  2177. }
  2178. if (currentOpenTag.props.some(
  2179. (p) => (p.type === 7 ? p.rawName : p.name) === name
  2180. )) {
  2181. emitError(2, start);
  2182. }
  2183. },
  2184. onattribend(quote, end) {
  2185. if (currentOpenTag && currentProp) {
  2186. setLocEnd(currentProp.loc, end);
  2187. if (quote !== 0) {
  2188. if (currentAttrValue.includes("&")) {
  2189. currentAttrValue = currentOptions.decodeEntities(
  2190. currentAttrValue,
  2191. true
  2192. );
  2193. }
  2194. if (currentProp.type === 6) {
  2195. if (currentProp.name === "class") {
  2196. currentAttrValue = condense(currentAttrValue).trim();
  2197. }
  2198. if (quote === 1 && !currentAttrValue) {
  2199. emitError(13, end);
  2200. }
  2201. currentProp.value = {
  2202. type: 2,
  2203. content: currentAttrValue,
  2204. loc: quote === 1 ? getLoc(currentAttrStartIndex, currentAttrEndIndex) : getLoc(currentAttrStartIndex - 1, currentAttrEndIndex + 1)
  2205. };
  2206. if (tokenizer.inSFCRoot && currentOpenTag.tag === "template" && currentProp.name === "lang" && currentAttrValue && currentAttrValue !== "html") {
  2207. tokenizer.enterRCDATA(toCharCodes(`</template`), 0);
  2208. }
  2209. } else {
  2210. let expParseMode = 0 /* Normal */;
  2211. currentProp.exp = createExp(
  2212. currentAttrValue,
  2213. false,
  2214. getLoc(currentAttrStartIndex, currentAttrEndIndex),
  2215. 0,
  2216. expParseMode
  2217. );
  2218. if (currentProp.name === "for") {
  2219. currentProp.forParseResult = parseForExpression(currentProp.exp);
  2220. }
  2221. let syncIndex = -1;
  2222. if (currentProp.name === "bind" && (syncIndex = currentProp.modifiers.indexOf("sync")) > -1 && checkCompatEnabled(
  2223. "COMPILER_V_BIND_SYNC",
  2224. currentOptions,
  2225. currentProp.loc,
  2226. currentProp.rawName
  2227. )) {
  2228. currentProp.name = "model";
  2229. currentProp.modifiers.splice(syncIndex, 1);
  2230. }
  2231. }
  2232. }
  2233. if (currentProp.type !== 7 || currentProp.name !== "pre") {
  2234. currentOpenTag.props.push(currentProp);
  2235. }
  2236. }
  2237. currentAttrValue = "";
  2238. currentAttrStartIndex = currentAttrEndIndex = -1;
  2239. },
  2240. oncomment(start, end) {
  2241. if (currentOptions.comments) {
  2242. addNode({
  2243. type: 3,
  2244. content: getSlice(start, end),
  2245. loc: getLoc(start - 4, end + 3)
  2246. });
  2247. }
  2248. },
  2249. onend() {
  2250. const end = currentInput.length;
  2251. if (tokenizer.state !== 1) {
  2252. switch (tokenizer.state) {
  2253. case 5:
  2254. case 8:
  2255. emitError(5, end);
  2256. break;
  2257. case 3:
  2258. case 4:
  2259. emitError(
  2260. 25,
  2261. tokenizer.sectionStart
  2262. );
  2263. break;
  2264. case 28:
  2265. if (tokenizer.currentSequence === Sequences.CdataEnd) {
  2266. emitError(6, end);
  2267. } else {
  2268. emitError(7, end);
  2269. }
  2270. break;
  2271. case 6:
  2272. case 7:
  2273. case 9:
  2274. case 11:
  2275. case 12:
  2276. case 13:
  2277. case 14:
  2278. case 15:
  2279. case 16:
  2280. case 17:
  2281. case 18:
  2282. case 19:
  2283. case 20:
  2284. case 21:
  2285. emitError(9, end);
  2286. break;
  2287. }
  2288. }
  2289. for (let index = 0; index < stack.length; index++) {
  2290. onCloseTag(stack[index], end - 1);
  2291. emitError(24, stack[index].loc.start.offset);
  2292. }
  2293. },
  2294. oncdata(start, end) {
  2295. if (stack[0].ns !== 0) {
  2296. onText(getSlice(start, end), start, end);
  2297. } else {
  2298. emitError(1, start - 9);
  2299. }
  2300. },
  2301. onprocessinginstruction(start) {
  2302. if ((stack[0] ? stack[0].ns : currentOptions.ns) === 0) {
  2303. emitError(
  2304. 21,
  2305. start - 1
  2306. );
  2307. }
  2308. }
  2309. });
  2310. const forIteratorRE = /,([^,\}\]]*)(?:,([^,\}\]]*))?$/;
  2311. const stripParensRE = /^\(|\)$/g;
  2312. function parseForExpression(input) {
  2313. const loc = input.loc;
  2314. const exp = input.content;
  2315. const inMatch = exp.match(forAliasRE);
  2316. if (!inMatch)
  2317. return;
  2318. const [, LHS, RHS] = inMatch;
  2319. const createAliasExpression = (content, offset, asParam = false) => {
  2320. const start = loc.start.offset + offset;
  2321. const end = start + content.length;
  2322. return createExp(
  2323. content,
  2324. false,
  2325. getLoc(start, end),
  2326. 0,
  2327. asParam ? 1 /* Params */ : 0 /* Normal */
  2328. );
  2329. };
  2330. const result = {
  2331. source: createAliasExpression(RHS.trim(), exp.indexOf(RHS, LHS.length)),
  2332. value: void 0,
  2333. key: void 0,
  2334. index: void 0,
  2335. finalized: false
  2336. };
  2337. let valueContent = LHS.trim().replace(stripParensRE, "").trim();
  2338. const trimmedOffset = LHS.indexOf(valueContent);
  2339. const iteratorMatch = valueContent.match(forIteratorRE);
  2340. if (iteratorMatch) {
  2341. valueContent = valueContent.replace(forIteratorRE, "").trim();
  2342. const keyContent = iteratorMatch[1].trim();
  2343. let keyOffset;
  2344. if (keyContent) {
  2345. keyOffset = exp.indexOf(keyContent, trimmedOffset + valueContent.length);
  2346. result.key = createAliasExpression(keyContent, keyOffset, true);
  2347. }
  2348. if (iteratorMatch[2]) {
  2349. const indexContent = iteratorMatch[2].trim();
  2350. if (indexContent) {
  2351. result.index = createAliasExpression(
  2352. indexContent,
  2353. exp.indexOf(
  2354. indexContent,
  2355. result.key ? keyOffset + keyContent.length : trimmedOffset + valueContent.length
  2356. ),
  2357. true
  2358. );
  2359. }
  2360. }
  2361. }
  2362. if (valueContent) {
  2363. result.value = createAliasExpression(valueContent, trimmedOffset, true);
  2364. }
  2365. return result;
  2366. }
  2367. function getSlice(start, end) {
  2368. return currentInput.slice(start, end);
  2369. }
  2370. function endOpenTag(end) {
  2371. if (tokenizer.inSFCRoot) {
  2372. currentOpenTag.innerLoc = getLoc(end + 1, end + 1);
  2373. }
  2374. addNode(currentOpenTag);
  2375. const { tag, ns } = currentOpenTag;
  2376. if (ns === 0 && currentOptions.isPreTag(tag)) {
  2377. inPre++;
  2378. }
  2379. if (currentOptions.isVoidTag(tag)) {
  2380. onCloseTag(currentOpenTag, end);
  2381. } else {
  2382. stack.unshift(currentOpenTag);
  2383. if (ns === 1 || ns === 2) {
  2384. tokenizer.inXML = true;
  2385. }
  2386. }
  2387. currentOpenTag = null;
  2388. }
  2389. function onText(content, start, end) {
  2390. {
  2391. const tag = stack[0] && stack[0].tag;
  2392. if (tag !== "script" && tag !== "style" && content.includes("&")) {
  2393. content = currentOptions.decodeEntities(content, false);
  2394. }
  2395. }
  2396. const parent = stack[0] || currentRoot;
  2397. const lastNode = parent.children[parent.children.length - 1];
  2398. if (lastNode && lastNode.type === 2) {
  2399. lastNode.content += content;
  2400. setLocEnd(lastNode.loc, end);
  2401. } else {
  2402. parent.children.push({
  2403. type: 2,
  2404. content,
  2405. loc: getLoc(start, end)
  2406. });
  2407. }
  2408. }
  2409. function onCloseTag(el, end, isImplied = false) {
  2410. if (isImplied) {
  2411. setLocEnd(el.loc, backTrack(end, 60));
  2412. } else {
  2413. setLocEnd(el.loc, lookAhead(end, 62) + 1);
  2414. }
  2415. if (tokenizer.inSFCRoot) {
  2416. if (el.children.length) {
  2417. el.innerLoc.end = extend({}, el.children[el.children.length - 1].loc.end);
  2418. } else {
  2419. el.innerLoc.end = extend({}, el.innerLoc.start);
  2420. }
  2421. el.innerLoc.source = getSlice(
  2422. el.innerLoc.start.offset,
  2423. el.innerLoc.end.offset
  2424. );
  2425. }
  2426. const { tag, ns } = el;
  2427. if (!inVPre) {
  2428. if (tag === "slot") {
  2429. el.tagType = 2;
  2430. } else if (isFragmentTemplate(el)) {
  2431. el.tagType = 3;
  2432. } else if (isComponent(el)) {
  2433. el.tagType = 1;
  2434. }
  2435. }
  2436. if (!tokenizer.inRCDATA) {
  2437. el.children = condenseWhitespace(el.children, el.tag);
  2438. }
  2439. if (ns === 0 && currentOptions.isPreTag(tag)) {
  2440. inPre--;
  2441. }
  2442. if (currentVPreBoundary === el) {
  2443. inVPre = tokenizer.inVPre = false;
  2444. currentVPreBoundary = null;
  2445. }
  2446. if (tokenizer.inXML && (stack[0] ? stack[0].ns : currentOptions.ns) === 0) {
  2447. tokenizer.inXML = false;
  2448. }
  2449. {
  2450. const props = el.props;
  2451. if (isCompatEnabled(
  2452. "COMPILER_V_IF_V_FOR_PRECEDENCE",
  2453. currentOptions
  2454. )) {
  2455. let hasIf = false;
  2456. let hasFor = false;
  2457. for (let i = 0; i < props.length; i++) {
  2458. const p = props[i];
  2459. if (p.type === 7) {
  2460. if (p.name === "if") {
  2461. hasIf = true;
  2462. } else if (p.name === "for") {
  2463. hasFor = true;
  2464. }
  2465. }
  2466. if (hasIf && hasFor) {
  2467. warnDeprecation(
  2468. "COMPILER_V_IF_V_FOR_PRECEDENCE",
  2469. currentOptions,
  2470. el.loc
  2471. );
  2472. break;
  2473. }
  2474. }
  2475. }
  2476. if (!tokenizer.inSFCRoot && isCompatEnabled(
  2477. "COMPILER_NATIVE_TEMPLATE",
  2478. currentOptions
  2479. ) && el.tag === "template" && !isFragmentTemplate(el)) {
  2480. warnDeprecation(
  2481. "COMPILER_NATIVE_TEMPLATE",
  2482. currentOptions,
  2483. el.loc
  2484. );
  2485. const parent = stack[0] || currentRoot;
  2486. const index = parent.children.indexOf(el);
  2487. parent.children.splice(index, 1, ...el.children);
  2488. }
  2489. const inlineTemplateProp = props.find(
  2490. (p) => p.type === 6 && p.name === "inline-template"
  2491. );
  2492. if (inlineTemplateProp && checkCompatEnabled(
  2493. "COMPILER_INLINE_TEMPLATE",
  2494. currentOptions,
  2495. inlineTemplateProp.loc
  2496. ) && el.children.length) {
  2497. inlineTemplateProp.value = {
  2498. type: 2,
  2499. content: getSlice(
  2500. el.children[0].loc.start.offset,
  2501. el.children[el.children.length - 1].loc.end.offset
  2502. ),
  2503. loc: inlineTemplateProp.loc
  2504. };
  2505. }
  2506. }
  2507. }
  2508. function lookAhead(index, c) {
  2509. let i = index;
  2510. while (currentInput.charCodeAt(i) !== c && i < currentInput.length - 1)
  2511. i++;
  2512. return i;
  2513. }
  2514. function backTrack(index, c) {
  2515. let i = index;
  2516. while (currentInput.charCodeAt(i) !== c && i >= 0)
  2517. i--;
  2518. return i;
  2519. }
  2520. const specialTemplateDir = /* @__PURE__ */ new Set(["if", "else", "else-if", "for", "slot"]);
  2521. function isFragmentTemplate({ tag, props }) {
  2522. if (tag === "template") {
  2523. for (let i = 0; i < props.length; i++) {
  2524. if (props[i].type === 7 && specialTemplateDir.has(props[i].name)) {
  2525. return true;
  2526. }
  2527. }
  2528. }
  2529. return false;
  2530. }
  2531. function isComponent({ tag, props }) {
  2532. if (currentOptions.isCustomElement(tag)) {
  2533. return false;
  2534. }
  2535. if (tag === "component" || isUpperCase(tag.charCodeAt(0)) || isCoreComponent(tag) || currentOptions.isBuiltInComponent && currentOptions.isBuiltInComponent(tag) || currentOptions.isNativeTag && !currentOptions.isNativeTag(tag)) {
  2536. return true;
  2537. }
  2538. for (let i = 0; i < props.length; i++) {
  2539. const p = props[i];
  2540. if (p.type === 6) {
  2541. if (p.name === "is" && p.value) {
  2542. if (p.value.content.startsWith("vue:")) {
  2543. return true;
  2544. } else if (checkCompatEnabled(
  2545. "COMPILER_IS_ON_ELEMENT",
  2546. currentOptions,
  2547. p.loc
  2548. )) {
  2549. return true;
  2550. }
  2551. }
  2552. } else if (// :is on plain element - only treat as component in compat mode
  2553. p.name === "bind" && isStaticArgOf(p.arg, "is") && checkCompatEnabled(
  2554. "COMPILER_IS_ON_ELEMENT",
  2555. currentOptions,
  2556. p.loc
  2557. )) {
  2558. return true;
  2559. }
  2560. }
  2561. return false;
  2562. }
  2563. function isUpperCase(c) {
  2564. return c > 64 && c < 91;
  2565. }
  2566. const windowsNewlineRE = /\r\n/g;
  2567. function condenseWhitespace(nodes, tag) {
  2568. const shouldCondense = currentOptions.whitespace !== "preserve";
  2569. let removedWhitespace = false;
  2570. for (let i = 0; i < nodes.length; i++) {
  2571. const node = nodes[i];
  2572. if (node.type === 2) {
  2573. if (!inPre) {
  2574. if (isAllWhitespace(node.content)) {
  2575. const prev = nodes[i - 1] && nodes[i - 1].type;
  2576. const next = nodes[i + 1] && nodes[i + 1].type;
  2577. if (!prev || !next || shouldCondense && (prev === 3 && (next === 3 || next === 1) || prev === 1 && (next === 3 || next === 1 && hasNewlineChar(node.content)))) {
  2578. removedWhitespace = true;
  2579. nodes[i] = null;
  2580. } else {
  2581. node.content = " ";
  2582. }
  2583. } else if (shouldCondense) {
  2584. node.content = condense(node.content);
  2585. }
  2586. } else {
  2587. node.content = node.content.replace(windowsNewlineRE, "\n");
  2588. }
  2589. }
  2590. }
  2591. if (inPre && tag && currentOptions.isPreTag(tag)) {
  2592. const first = nodes[0];
  2593. if (first && first.type === 2) {
  2594. first.content = first.content.replace(/^\r?\n/, "");
  2595. }
  2596. }
  2597. return removedWhitespace ? nodes.filter(Boolean) : nodes;
  2598. }
  2599. function isAllWhitespace(str) {
  2600. for (let i = 0; i < str.length; i++) {
  2601. if (!isWhitespace(str.charCodeAt(i))) {
  2602. return false;
  2603. }
  2604. }
  2605. return true;
  2606. }
  2607. function hasNewlineChar(str) {
  2608. for (let i = 0; i < str.length; i++) {
  2609. const c = str.charCodeAt(i);
  2610. if (c === 10 || c === 13) {
  2611. return true;
  2612. }
  2613. }
  2614. return false;
  2615. }
  2616. function condense(str) {
  2617. let ret = "";
  2618. let prevCharIsWhitespace = false;
  2619. for (let i = 0; i < str.length; i++) {
  2620. if (isWhitespace(str.charCodeAt(i))) {
  2621. if (!prevCharIsWhitespace) {
  2622. ret += " ";
  2623. prevCharIsWhitespace = true;
  2624. }
  2625. } else {
  2626. ret += str[i];
  2627. prevCharIsWhitespace = false;
  2628. }
  2629. }
  2630. return ret;
  2631. }
  2632. function addNode(node) {
  2633. (stack[0] || currentRoot).children.push(node);
  2634. }
  2635. function getLoc(start, end) {
  2636. return {
  2637. start: tokenizer.getPos(start),
  2638. // @ts-expect-error allow late attachment
  2639. end: end == null ? end : tokenizer.getPos(end),
  2640. // @ts-expect-error allow late attachment
  2641. source: end == null ? end : getSlice(start, end)
  2642. };
  2643. }
  2644. function setLocEnd(loc, end) {
  2645. loc.end = tokenizer.getPos(end);
  2646. loc.source = getSlice(loc.start.offset, end);
  2647. }
  2648. function dirToAttr(dir) {
  2649. const attr = {
  2650. type: 6,
  2651. name: dir.rawName,
  2652. nameLoc: getLoc(
  2653. dir.loc.start.offset,
  2654. dir.loc.start.offset + dir.rawName.length
  2655. ),
  2656. value: void 0,
  2657. loc: dir.loc
  2658. };
  2659. if (dir.exp) {
  2660. const loc = dir.exp.loc;
  2661. if (loc.end.offset < dir.loc.end.offset) {
  2662. loc.start.offset--;
  2663. loc.start.column--;
  2664. loc.end.offset++;
  2665. loc.end.column++;
  2666. }
  2667. attr.value = {
  2668. type: 2,
  2669. content: dir.exp.content,
  2670. loc
  2671. };
  2672. }
  2673. return attr;
  2674. }
  2675. function createExp(content, isStatic = false, loc, constType = 0, parseMode = 0 /* Normal */) {
  2676. const exp = createSimpleExpression(content, isStatic, loc, constType);
  2677. return exp;
  2678. }
  2679. function emitError(code, index, message) {
  2680. currentOptions.onError(
  2681. createCompilerError(code, getLoc(index, index), void 0, message)
  2682. );
  2683. }
  2684. function reset() {
  2685. tokenizer.reset();
  2686. currentOpenTag = null;
  2687. currentProp = null;
  2688. currentAttrValue = "";
  2689. currentAttrStartIndex = -1;
  2690. currentAttrEndIndex = -1;
  2691. stack.length = 0;
  2692. }
  2693. function baseParse(input, options) {
  2694. reset();
  2695. currentInput = input;
  2696. currentOptions = extend({}, defaultParserOptions);
  2697. if (options) {
  2698. let key;
  2699. for (key in options) {
  2700. if (options[key] != null) {
  2701. currentOptions[key] = options[key];
  2702. }
  2703. }
  2704. }
  2705. {
  2706. if (!currentOptions.decodeEntities) {
  2707. throw new Error(
  2708. `[@vue/compiler-core] decodeEntities option is required in browser builds.`
  2709. );
  2710. }
  2711. }
  2712. tokenizer.mode = currentOptions.parseMode === "html" ? 1 : currentOptions.parseMode === "sfc" ? 2 : 0;
  2713. tokenizer.inXML = currentOptions.ns === 1 || currentOptions.ns === 2;
  2714. const delimiters = options && options.delimiters;
  2715. if (delimiters) {
  2716. tokenizer.delimiterOpen = toCharCodes(delimiters[0]);
  2717. tokenizer.delimiterClose = toCharCodes(delimiters[1]);
  2718. }
  2719. const root = currentRoot = createRoot([], input);
  2720. tokenizer.parse(currentInput);
  2721. root.loc = getLoc(0, input.length);
  2722. root.children = condenseWhitespace(root.children);
  2723. currentRoot = null;
  2724. return root;
  2725. }
  2726. function hoistStatic(root, context) {
  2727. walk(
  2728. root,
  2729. context,
  2730. // Root node is unfortunately non-hoistable due to potential parent
  2731. // fallthrough attributes.
  2732. isSingleElementRoot(root, root.children[0])
  2733. );
  2734. }
  2735. function isSingleElementRoot(root, child) {
  2736. const { children } = root;
  2737. return children.length === 1 && child.type === 1 && !isSlotOutlet(child);
  2738. }
  2739. function walk(node, context, doNotHoistNode = false) {
  2740. const { children } = node;
  2741. const originalCount = children.length;
  2742. let hoistedCount = 0;
  2743. for (let i = 0; i < children.length; i++) {
  2744. const child = children[i];
  2745. if (child.type === 1 && child.tagType === 0) {
  2746. const constantType = doNotHoistNode ? 0 : getConstantType(child, context);
  2747. if (constantType > 0) {
  2748. if (constantType >= 2) {
  2749. child.codegenNode.patchFlag = -1 + (` /* HOISTED */` );
  2750. child.codegenNode = context.hoist(child.codegenNode);
  2751. hoistedCount++;
  2752. continue;
  2753. }
  2754. } else {
  2755. const codegenNode = child.codegenNode;
  2756. if (codegenNode.type === 13) {
  2757. const flag = getPatchFlag(codegenNode);
  2758. if ((!flag || flag === 512 || flag === 1) && getGeneratedPropsConstantType(child, context) >= 2) {
  2759. const props = getNodeProps(child);
  2760. if (props) {
  2761. codegenNode.props = context.hoist(props);
  2762. }
  2763. }
  2764. if (codegenNode.dynamicProps) {
  2765. codegenNode.dynamicProps = context.hoist(codegenNode.dynamicProps);
  2766. }
  2767. }
  2768. }
  2769. }
  2770. if (child.type === 1) {
  2771. const isComponent = child.tagType === 1;
  2772. if (isComponent) {
  2773. context.scopes.vSlot++;
  2774. }
  2775. walk(child, context);
  2776. if (isComponent) {
  2777. context.scopes.vSlot--;
  2778. }
  2779. } else if (child.type === 11) {
  2780. walk(child, context, child.children.length === 1);
  2781. } else if (child.type === 9) {
  2782. for (let i2 = 0; i2 < child.branches.length; i2++) {
  2783. walk(
  2784. child.branches[i2],
  2785. context,
  2786. child.branches[i2].children.length === 1
  2787. );
  2788. }
  2789. }
  2790. }
  2791. if (hoistedCount && context.transformHoist) {
  2792. context.transformHoist(children, context, node);
  2793. }
  2794. if (hoistedCount && hoistedCount === originalCount && node.type === 1 && node.tagType === 0 && node.codegenNode && node.codegenNode.type === 13 && isArray(node.codegenNode.children)) {
  2795. const hoisted = context.hoist(
  2796. createArrayExpression(node.codegenNode.children)
  2797. );
  2798. if (context.hmr) {
  2799. hoisted.content = `[...${hoisted.content}]`;
  2800. }
  2801. node.codegenNode.children = hoisted;
  2802. }
  2803. }
  2804. function getConstantType(node, context) {
  2805. const { constantCache } = context;
  2806. switch (node.type) {
  2807. case 1:
  2808. if (node.tagType !== 0) {
  2809. return 0;
  2810. }
  2811. const cached = constantCache.get(node);
  2812. if (cached !== void 0) {
  2813. return cached;
  2814. }
  2815. const codegenNode = node.codegenNode;
  2816. if (codegenNode.type !== 13) {
  2817. return 0;
  2818. }
  2819. if (codegenNode.isBlock && node.tag !== "svg" && node.tag !== "foreignObject") {
  2820. return 0;
  2821. }
  2822. const flag = getPatchFlag(codegenNode);
  2823. if (!flag) {
  2824. let returnType2 = 3;
  2825. const generatedPropsType = getGeneratedPropsConstantType(node, context);
  2826. if (generatedPropsType === 0) {
  2827. constantCache.set(node, 0);
  2828. return 0;
  2829. }
  2830. if (generatedPropsType < returnType2) {
  2831. returnType2 = generatedPropsType;
  2832. }
  2833. for (let i = 0; i < node.children.length; i++) {
  2834. const childType = getConstantType(node.children[i], context);
  2835. if (childType === 0) {
  2836. constantCache.set(node, 0);
  2837. return 0;
  2838. }
  2839. if (childType < returnType2) {
  2840. returnType2 = childType;
  2841. }
  2842. }
  2843. if (returnType2 > 1) {
  2844. for (let i = 0; i < node.props.length; i++) {
  2845. const p = node.props[i];
  2846. if (p.type === 7 && p.name === "bind" && p.exp) {
  2847. const expType = getConstantType(p.exp, context);
  2848. if (expType === 0) {
  2849. constantCache.set(node, 0);
  2850. return 0;
  2851. }
  2852. if (expType < returnType2) {
  2853. returnType2 = expType;
  2854. }
  2855. }
  2856. }
  2857. }
  2858. if (codegenNode.isBlock) {
  2859. for (let i = 0; i < node.props.length; i++) {
  2860. const p = node.props[i];
  2861. if (p.type === 7) {
  2862. constantCache.set(node, 0);
  2863. return 0;
  2864. }
  2865. }
  2866. context.removeHelper(OPEN_BLOCK);
  2867. context.removeHelper(
  2868. getVNodeBlockHelper(context.inSSR, codegenNode.isComponent)
  2869. );
  2870. codegenNode.isBlock = false;
  2871. context.helper(getVNodeHelper(context.inSSR, codegenNode.isComponent));
  2872. }
  2873. constantCache.set(node, returnType2);
  2874. return returnType2;
  2875. } else {
  2876. constantCache.set(node, 0);
  2877. return 0;
  2878. }
  2879. case 2:
  2880. case 3:
  2881. return 3;
  2882. case 9:
  2883. case 11:
  2884. case 10:
  2885. return 0;
  2886. case 5:
  2887. case 12:
  2888. return getConstantType(node.content, context);
  2889. case 4:
  2890. return node.constType;
  2891. case 8:
  2892. let returnType = 3;
  2893. for (let i = 0; i < node.children.length; i++) {
  2894. const child = node.children[i];
  2895. if (isString(child) || isSymbol(child)) {
  2896. continue;
  2897. }
  2898. const childType = getConstantType(child, context);
  2899. if (childType === 0) {
  2900. return 0;
  2901. } else if (childType < returnType) {
  2902. returnType = childType;
  2903. }
  2904. }
  2905. return returnType;
  2906. default:
  2907. return 0;
  2908. }
  2909. }
  2910. const allowHoistedHelperSet = /* @__PURE__ */ new Set([
  2911. NORMALIZE_CLASS,
  2912. NORMALIZE_STYLE,
  2913. NORMALIZE_PROPS,
  2914. GUARD_REACTIVE_PROPS
  2915. ]);
  2916. function getConstantTypeOfHelperCall(value, context) {
  2917. if (value.type === 14 && !isString(value.callee) && allowHoistedHelperSet.has(value.callee)) {
  2918. const arg = value.arguments[0];
  2919. if (arg.type === 4) {
  2920. return getConstantType(arg, context);
  2921. } else if (arg.type === 14) {
  2922. return getConstantTypeOfHelperCall(arg, context);
  2923. }
  2924. }
  2925. return 0;
  2926. }
  2927. function getGeneratedPropsConstantType(node, context) {
  2928. let returnType = 3;
  2929. const props = getNodeProps(node);
  2930. if (props && props.type === 15) {
  2931. const { properties } = props;
  2932. for (let i = 0; i < properties.length; i++) {
  2933. const { key, value } = properties[i];
  2934. const keyType = getConstantType(key, context);
  2935. if (keyType === 0) {
  2936. return keyType;
  2937. }
  2938. if (keyType < returnType) {
  2939. returnType = keyType;
  2940. }
  2941. let valueType;
  2942. if (value.type === 4) {
  2943. valueType = getConstantType(value, context);
  2944. } else if (value.type === 14) {
  2945. valueType = getConstantTypeOfHelperCall(value, context);
  2946. } else {
  2947. valueType = 0;
  2948. }
  2949. if (valueType === 0) {
  2950. return valueType;
  2951. }
  2952. if (valueType < returnType) {
  2953. returnType = valueType;
  2954. }
  2955. }
  2956. }
  2957. return returnType;
  2958. }
  2959. function getNodeProps(node) {
  2960. const codegenNode = node.codegenNode;
  2961. if (codegenNode.type === 13) {
  2962. return codegenNode.props;
  2963. }
  2964. }
  2965. function getPatchFlag(node) {
  2966. const flag = node.patchFlag;
  2967. return flag ? parseInt(flag, 10) : void 0;
  2968. }
  2969. function createTransformContext(root, {
  2970. filename = "",
  2971. prefixIdentifiers = false,
  2972. hoistStatic: hoistStatic2 = false,
  2973. hmr = false,
  2974. cacheHandlers = false,
  2975. nodeTransforms = [],
  2976. directiveTransforms = {},
  2977. transformHoist = null,
  2978. isBuiltInComponent = NOOP,
  2979. isCustomElement = NOOP,
  2980. expressionPlugins = [],
  2981. scopeId = null,
  2982. slotted = true,
  2983. ssr = false,
  2984. inSSR = false,
  2985. ssrCssVars = ``,
  2986. bindingMetadata = EMPTY_OBJ,
  2987. inline = false,
  2988. isTS = false,
  2989. onError = defaultOnError,
  2990. onWarn = defaultOnWarn,
  2991. compatConfig
  2992. }) {
  2993. const nameMatch = filename.replace(/\?.*$/, "").match(/([^/\\]+)\.\w+$/);
  2994. const context = {
  2995. // options
  2996. filename,
  2997. selfName: nameMatch && capitalize(camelize(nameMatch[1])),
  2998. prefixIdentifiers,
  2999. hoistStatic: hoistStatic2,
  3000. hmr,
  3001. cacheHandlers,
  3002. nodeTransforms,
  3003. directiveTransforms,
  3004. transformHoist,
  3005. isBuiltInComponent,
  3006. isCustomElement,
  3007. expressionPlugins,
  3008. scopeId,
  3009. slotted,
  3010. ssr,
  3011. inSSR,
  3012. ssrCssVars,
  3013. bindingMetadata,
  3014. inline,
  3015. isTS,
  3016. onError,
  3017. onWarn,
  3018. compatConfig,
  3019. // state
  3020. root,
  3021. helpers: /* @__PURE__ */ new Map(),
  3022. components: /* @__PURE__ */ new Set(),
  3023. directives: /* @__PURE__ */ new Set(),
  3024. hoists: [],
  3025. imports: [],
  3026. constantCache: /* @__PURE__ */ new WeakMap(),
  3027. temps: 0,
  3028. cached: 0,
  3029. identifiers: /* @__PURE__ */ Object.create(null),
  3030. scopes: {
  3031. vFor: 0,
  3032. vSlot: 0,
  3033. vPre: 0,
  3034. vOnce: 0
  3035. },
  3036. parent: null,
  3037. grandParent: null,
  3038. currentNode: root,
  3039. childIndex: 0,
  3040. inVOnce: false,
  3041. // methods
  3042. helper(name) {
  3043. const count = context.helpers.get(name) || 0;
  3044. context.helpers.set(name, count + 1);
  3045. return name;
  3046. },
  3047. removeHelper(name) {
  3048. const count = context.helpers.get(name);
  3049. if (count) {
  3050. const currentCount = count - 1;
  3051. if (!currentCount) {
  3052. context.helpers.delete(name);
  3053. } else {
  3054. context.helpers.set(name, currentCount);
  3055. }
  3056. }
  3057. },
  3058. helperString(name) {
  3059. return `_${helperNameMap[context.helper(name)]}`;
  3060. },
  3061. replaceNode(node) {
  3062. {
  3063. if (!context.currentNode) {
  3064. throw new Error(`Node being replaced is already removed.`);
  3065. }
  3066. if (!context.parent) {
  3067. throw new Error(`Cannot replace root node.`);
  3068. }
  3069. }
  3070. context.parent.children[context.childIndex] = context.currentNode = node;
  3071. },
  3072. removeNode(node) {
  3073. if (!context.parent) {
  3074. throw new Error(`Cannot remove root node.`);
  3075. }
  3076. const list = context.parent.children;
  3077. const removalIndex = node ? list.indexOf(node) : context.currentNode ? context.childIndex : -1;
  3078. if (removalIndex < 0) {
  3079. throw new Error(`node being removed is not a child of current parent`);
  3080. }
  3081. if (!node || node === context.currentNode) {
  3082. context.currentNode = null;
  3083. context.onNodeRemoved();
  3084. } else {
  3085. if (context.childIndex > removalIndex) {
  3086. context.childIndex--;
  3087. context.onNodeRemoved();
  3088. }
  3089. }
  3090. context.parent.children.splice(removalIndex, 1);
  3091. },
  3092. onNodeRemoved: NOOP,
  3093. addIdentifiers(exp) {
  3094. },
  3095. removeIdentifiers(exp) {
  3096. },
  3097. hoist(exp) {
  3098. if (isString(exp))
  3099. exp = createSimpleExpression(exp);
  3100. context.hoists.push(exp);
  3101. const identifier = createSimpleExpression(
  3102. `_hoisted_${context.hoists.length}`,
  3103. false,
  3104. exp.loc,
  3105. 2
  3106. );
  3107. identifier.hoisted = exp;
  3108. return identifier;
  3109. },
  3110. cache(exp, isVNode = false) {
  3111. return createCacheExpression(context.cached++, exp, isVNode);
  3112. }
  3113. };
  3114. {
  3115. context.filters = /* @__PURE__ */ new Set();
  3116. }
  3117. return context;
  3118. }
  3119. function transform(root, options) {
  3120. const context = createTransformContext(root, options);
  3121. traverseNode(root, context);
  3122. if (options.hoistStatic) {
  3123. hoistStatic(root, context);
  3124. }
  3125. if (!options.ssr) {
  3126. createRootCodegen(root, context);
  3127. }
  3128. root.helpers = /* @__PURE__ */ new Set([...context.helpers.keys()]);
  3129. root.components = [...context.components];
  3130. root.directives = [...context.directives];
  3131. root.imports = context.imports;
  3132. root.hoists = context.hoists;
  3133. root.temps = context.temps;
  3134. root.cached = context.cached;
  3135. root.transformed = true;
  3136. {
  3137. root.filters = [...context.filters];
  3138. }
  3139. }
  3140. function createRootCodegen(root, context) {
  3141. const { helper } = context;
  3142. const { children } = root;
  3143. if (children.length === 1) {
  3144. const child = children[0];
  3145. if (isSingleElementRoot(root, child) && child.codegenNode) {
  3146. const codegenNode = child.codegenNode;
  3147. if (codegenNode.type === 13) {
  3148. convertToBlock(codegenNode, context);
  3149. }
  3150. root.codegenNode = codegenNode;
  3151. } else {
  3152. root.codegenNode = child;
  3153. }
  3154. } else if (children.length > 1) {
  3155. let patchFlag = 64;
  3156. let patchFlagText = PatchFlagNames[64];
  3157. if (children.filter((c) => c.type !== 3).length === 1) {
  3158. patchFlag |= 2048;
  3159. patchFlagText += `, ${PatchFlagNames[2048]}`;
  3160. }
  3161. root.codegenNode = createVNodeCall(
  3162. context,
  3163. helper(FRAGMENT),
  3164. void 0,
  3165. root.children,
  3166. patchFlag + (` /* ${patchFlagText} */` ),
  3167. void 0,
  3168. void 0,
  3169. true,
  3170. void 0,
  3171. false
  3172. );
  3173. } else ;
  3174. }
  3175. function traverseChildren(parent, context) {
  3176. let i = 0;
  3177. const nodeRemoved = () => {
  3178. i--;
  3179. };
  3180. for (; i < parent.children.length; i++) {
  3181. const child = parent.children[i];
  3182. if (isString(child))
  3183. continue;
  3184. context.grandParent = context.parent;
  3185. context.parent = parent;
  3186. context.childIndex = i;
  3187. context.onNodeRemoved = nodeRemoved;
  3188. traverseNode(child, context);
  3189. }
  3190. }
  3191. function traverseNode(node, context) {
  3192. context.currentNode = node;
  3193. const { nodeTransforms } = context;
  3194. const exitFns = [];
  3195. for (let i2 = 0; i2 < nodeTransforms.length; i2++) {
  3196. const onExit = nodeTransforms[i2](node, context);
  3197. if (onExit) {
  3198. if (isArray(onExit)) {
  3199. exitFns.push(...onExit);
  3200. } else {
  3201. exitFns.push(onExit);
  3202. }
  3203. }
  3204. if (!context.currentNode) {
  3205. return;
  3206. } else {
  3207. node = context.currentNode;
  3208. }
  3209. }
  3210. switch (node.type) {
  3211. case 3:
  3212. if (!context.ssr) {
  3213. context.helper(CREATE_COMMENT);
  3214. }
  3215. break;
  3216. case 5:
  3217. if (!context.ssr) {
  3218. context.helper(TO_DISPLAY_STRING);
  3219. }
  3220. break;
  3221. case 9:
  3222. for (let i2 = 0; i2 < node.branches.length; i2++) {
  3223. traverseNode(node.branches[i2], context);
  3224. }
  3225. break;
  3226. case 10:
  3227. case 11:
  3228. case 1:
  3229. case 0:
  3230. traverseChildren(node, context);
  3231. break;
  3232. }
  3233. context.currentNode = node;
  3234. let i = exitFns.length;
  3235. while (i--) {
  3236. exitFns[i]();
  3237. }
  3238. }
  3239. function createStructuralDirectiveTransform(name, fn) {
  3240. const matches = isString(name) ? (n) => n === name : (n) => name.test(n);
  3241. return (node, context) => {
  3242. if (node.type === 1) {
  3243. const { props } = node;
  3244. if (node.tagType === 3 && props.some(isVSlot)) {
  3245. return;
  3246. }
  3247. const exitFns = [];
  3248. for (let i = 0; i < props.length; i++) {
  3249. const prop = props[i];
  3250. if (prop.type === 7 && matches(prop.name)) {
  3251. props.splice(i, 1);
  3252. i--;
  3253. const onExit = fn(node, prop, context);
  3254. if (onExit)
  3255. exitFns.push(onExit);
  3256. }
  3257. }
  3258. return exitFns;
  3259. }
  3260. };
  3261. }
  3262. const PURE_ANNOTATION = `/*#__PURE__*/`;
  3263. const aliasHelper = (s) => `${helperNameMap[s]}: _${helperNameMap[s]}`;
  3264. function createCodegenContext(ast, {
  3265. mode = "function",
  3266. prefixIdentifiers = mode === "module",
  3267. sourceMap = false,
  3268. filename = `template.vue.html`,
  3269. scopeId = null,
  3270. optimizeImports = false,
  3271. runtimeGlobalName = `Vue`,
  3272. runtimeModuleName = `vue`,
  3273. ssrRuntimeModuleName = "vue/server-renderer",
  3274. ssr = false,
  3275. isTS = false,
  3276. inSSR = false
  3277. }) {
  3278. const context = {
  3279. mode,
  3280. prefixIdentifiers,
  3281. sourceMap,
  3282. filename,
  3283. scopeId,
  3284. optimizeImports,
  3285. runtimeGlobalName,
  3286. runtimeModuleName,
  3287. ssrRuntimeModuleName,
  3288. ssr,
  3289. isTS,
  3290. inSSR,
  3291. source: ast.source,
  3292. code: ``,
  3293. column: 1,
  3294. line: 1,
  3295. offset: 0,
  3296. indentLevel: 0,
  3297. pure: false,
  3298. map: void 0,
  3299. helper(key) {
  3300. return `_${helperNameMap[key]}`;
  3301. },
  3302. push(code, newlineIndex = -2 /* None */, node) {
  3303. context.code += code;
  3304. },
  3305. indent() {
  3306. newline(++context.indentLevel);
  3307. },
  3308. deindent(withoutNewLine = false) {
  3309. if (withoutNewLine) {
  3310. --context.indentLevel;
  3311. } else {
  3312. newline(--context.indentLevel);
  3313. }
  3314. },
  3315. newline() {
  3316. newline(context.indentLevel);
  3317. }
  3318. };
  3319. function newline(n) {
  3320. context.push("\n" + ` `.repeat(n), 0 /* Start */);
  3321. }
  3322. return context;
  3323. }
  3324. function generate(ast, options = {}) {
  3325. const context = createCodegenContext(ast, options);
  3326. if (options.onContextCreated)
  3327. options.onContextCreated(context);
  3328. const {
  3329. mode,
  3330. push,
  3331. prefixIdentifiers,
  3332. indent,
  3333. deindent,
  3334. newline,
  3335. scopeId,
  3336. ssr
  3337. } = context;
  3338. const helpers = Array.from(ast.helpers);
  3339. const hasHelpers = helpers.length > 0;
  3340. const useWithBlock = !prefixIdentifiers && mode !== "module";
  3341. const preambleContext = context;
  3342. {
  3343. genFunctionPreamble(ast, preambleContext);
  3344. }
  3345. const functionName = ssr ? `ssrRender` : `render`;
  3346. const args = ssr ? ["_ctx", "_push", "_parent", "_attrs"] : ["_ctx", "_cache"];
  3347. const signature = args.join(", ");
  3348. {
  3349. push(`function ${functionName}(${signature}) {`);
  3350. }
  3351. indent();
  3352. if (useWithBlock) {
  3353. push(`with (_ctx) {`);
  3354. indent();
  3355. if (hasHelpers) {
  3356. push(
  3357. `const { ${helpers.map(aliasHelper).join(", ")} } = _Vue
  3358. `,
  3359. -1 /* End */
  3360. );
  3361. newline();
  3362. }
  3363. }
  3364. if (ast.components.length) {
  3365. genAssets(ast.components, "component", context);
  3366. if (ast.directives.length || ast.temps > 0) {
  3367. newline();
  3368. }
  3369. }
  3370. if (ast.directives.length) {
  3371. genAssets(ast.directives, "directive", context);
  3372. if (ast.temps > 0) {
  3373. newline();
  3374. }
  3375. }
  3376. if (ast.filters && ast.filters.length) {
  3377. newline();
  3378. genAssets(ast.filters, "filter", context);
  3379. newline();
  3380. }
  3381. if (ast.temps > 0) {
  3382. push(`let `);
  3383. for (let i = 0; i < ast.temps; i++) {
  3384. push(`${i > 0 ? `, ` : ``}_temp${i}`);
  3385. }
  3386. }
  3387. if (ast.components.length || ast.directives.length || ast.temps) {
  3388. push(`
  3389. `, 0 /* Start */);
  3390. newline();
  3391. }
  3392. if (!ssr) {
  3393. push(`return `);
  3394. }
  3395. if (ast.codegenNode) {
  3396. genNode(ast.codegenNode, context);
  3397. } else {
  3398. push(`null`);
  3399. }
  3400. if (useWithBlock) {
  3401. deindent();
  3402. push(`}`);
  3403. }
  3404. deindent();
  3405. push(`}`);
  3406. return {
  3407. ast,
  3408. code: context.code,
  3409. preamble: ``,
  3410. map: context.map ? context.map.toJSON() : void 0
  3411. };
  3412. }
  3413. function genFunctionPreamble(ast, context) {
  3414. const {
  3415. ssr,
  3416. prefixIdentifiers,
  3417. push,
  3418. newline,
  3419. runtimeModuleName,
  3420. runtimeGlobalName,
  3421. ssrRuntimeModuleName
  3422. } = context;
  3423. const VueBinding = runtimeGlobalName;
  3424. const helpers = Array.from(ast.helpers);
  3425. if (helpers.length > 0) {
  3426. {
  3427. push(`const _Vue = ${VueBinding}
  3428. `, -1 /* End */);
  3429. if (ast.hoists.length) {
  3430. const staticHelpers = [
  3431. CREATE_VNODE,
  3432. CREATE_ELEMENT_VNODE,
  3433. CREATE_COMMENT,
  3434. CREATE_TEXT,
  3435. CREATE_STATIC
  3436. ].filter((helper) => helpers.includes(helper)).map(aliasHelper).join(", ");
  3437. push(`const { ${staticHelpers} } = _Vue
  3438. `, -1 /* End */);
  3439. }
  3440. }
  3441. }
  3442. genHoists(ast.hoists, context);
  3443. newline();
  3444. push(`return `);
  3445. }
  3446. function genAssets(assets, type, { helper, push, newline, isTS }) {
  3447. const resolver = helper(
  3448. type === "filter" ? RESOLVE_FILTER : type === "component" ? RESOLVE_COMPONENT : RESOLVE_DIRECTIVE
  3449. );
  3450. for (let i = 0; i < assets.length; i++) {
  3451. let id = assets[i];
  3452. const maybeSelfReference = id.endsWith("__self");
  3453. if (maybeSelfReference) {
  3454. id = id.slice(0, -6);
  3455. }
  3456. push(
  3457. `const ${toValidAssetId(id, type)} = ${resolver}(${JSON.stringify(id)}${maybeSelfReference ? `, true` : ``})${isTS ? `!` : ``}`
  3458. );
  3459. if (i < assets.length - 1) {
  3460. newline();
  3461. }
  3462. }
  3463. }
  3464. function genHoists(hoists, context) {
  3465. if (!hoists.length) {
  3466. return;
  3467. }
  3468. context.pure = true;
  3469. const { push, newline, helper, scopeId, mode } = context;
  3470. newline();
  3471. for (let i = 0; i < hoists.length; i++) {
  3472. const exp = hoists[i];
  3473. if (exp) {
  3474. push(
  3475. `const _hoisted_${i + 1} = ${``}`
  3476. );
  3477. genNode(exp, context);
  3478. newline();
  3479. }
  3480. }
  3481. context.pure = false;
  3482. }
  3483. function isText(n) {
  3484. return isString(n) || n.type === 4 || n.type === 2 || n.type === 5 || n.type === 8;
  3485. }
  3486. function genNodeListAsArray(nodes, context) {
  3487. const multilines = nodes.length > 3 || nodes.some((n) => isArray(n) || !isText(n));
  3488. context.push(`[`);
  3489. multilines && context.indent();
  3490. genNodeList(nodes, context, multilines);
  3491. multilines && context.deindent();
  3492. context.push(`]`);
  3493. }
  3494. function genNodeList(nodes, context, multilines = false, comma = true) {
  3495. const { push, newline } = context;
  3496. for (let i = 0; i < nodes.length; i++) {
  3497. const node = nodes[i];
  3498. if (isString(node)) {
  3499. push(node, -3 /* Unknown */);
  3500. } else if (isArray(node)) {
  3501. genNodeListAsArray(node, context);
  3502. } else {
  3503. genNode(node, context);
  3504. }
  3505. if (i < nodes.length - 1) {
  3506. if (multilines) {
  3507. comma && push(",");
  3508. newline();
  3509. } else {
  3510. comma && push(", ");
  3511. }
  3512. }
  3513. }
  3514. }
  3515. function genNode(node, context) {
  3516. if (isString(node)) {
  3517. context.push(node, -3 /* Unknown */);
  3518. return;
  3519. }
  3520. if (isSymbol(node)) {
  3521. context.push(context.helper(node));
  3522. return;
  3523. }
  3524. switch (node.type) {
  3525. case 1:
  3526. case 9:
  3527. case 11:
  3528. assert(
  3529. node.codegenNode != null,
  3530. `Codegen node is missing for element/if/for node. Apply appropriate transforms first.`
  3531. );
  3532. genNode(node.codegenNode, context);
  3533. break;
  3534. case 2:
  3535. genText(node, context);
  3536. break;
  3537. case 4:
  3538. genExpression(node, context);
  3539. break;
  3540. case 5:
  3541. genInterpolation(node, context);
  3542. break;
  3543. case 12:
  3544. genNode(node.codegenNode, context);
  3545. break;
  3546. case 8:
  3547. genCompoundExpression(node, context);
  3548. break;
  3549. case 3:
  3550. genComment(node, context);
  3551. break;
  3552. case 13:
  3553. genVNodeCall(node, context);
  3554. break;
  3555. case 14:
  3556. genCallExpression(node, context);
  3557. break;
  3558. case 15:
  3559. genObjectExpression(node, context);
  3560. break;
  3561. case 17:
  3562. genArrayExpression(node, context);
  3563. break;
  3564. case 18:
  3565. genFunctionExpression(node, context);
  3566. break;
  3567. case 19:
  3568. genConditionalExpression(node, context);
  3569. break;
  3570. case 20:
  3571. genCacheExpression(node, context);
  3572. break;
  3573. case 21:
  3574. genNodeList(node.body, context, true, false);
  3575. break;
  3576. case 22:
  3577. break;
  3578. case 23:
  3579. break;
  3580. case 24:
  3581. break;
  3582. case 25:
  3583. break;
  3584. case 26:
  3585. break;
  3586. case 10:
  3587. break;
  3588. default:
  3589. {
  3590. assert(false, `unhandled codegen node type: ${node.type}`);
  3591. const exhaustiveCheck = node;
  3592. return exhaustiveCheck;
  3593. }
  3594. }
  3595. }
  3596. function genText(node, context) {
  3597. context.push(JSON.stringify(node.content), -3 /* Unknown */, node);
  3598. }
  3599. function genExpression(node, context) {
  3600. const { content, isStatic } = node;
  3601. context.push(
  3602. isStatic ? JSON.stringify(content) : content,
  3603. -3 /* Unknown */,
  3604. node
  3605. );
  3606. }
  3607. function genInterpolation(node, context) {
  3608. const { push, helper, pure } = context;
  3609. if (pure)
  3610. push(PURE_ANNOTATION);
  3611. push(`${helper(TO_DISPLAY_STRING)}(`);
  3612. genNode(node.content, context);
  3613. push(`)`);
  3614. }
  3615. function genCompoundExpression(node, context) {
  3616. for (let i = 0; i < node.children.length; i++) {
  3617. const child = node.children[i];
  3618. if (isString(child)) {
  3619. context.push(child, -3 /* Unknown */);
  3620. } else {
  3621. genNode(child, context);
  3622. }
  3623. }
  3624. }
  3625. function genExpressionAsPropertyKey(node, context) {
  3626. const { push } = context;
  3627. if (node.type === 8) {
  3628. push(`[`);
  3629. genCompoundExpression(node, context);
  3630. push(`]`);
  3631. } else if (node.isStatic) {
  3632. const text = isSimpleIdentifier(node.content) ? node.content : JSON.stringify(node.content);
  3633. push(text, -2 /* None */, node);
  3634. } else {
  3635. push(`[${node.content}]`, -3 /* Unknown */, node);
  3636. }
  3637. }
  3638. function genComment(node, context) {
  3639. const { push, helper, pure } = context;
  3640. if (pure) {
  3641. push(PURE_ANNOTATION);
  3642. }
  3643. push(
  3644. `${helper(CREATE_COMMENT)}(${JSON.stringify(node.content)})`,
  3645. -3 /* Unknown */,
  3646. node
  3647. );
  3648. }
  3649. function genVNodeCall(node, context) {
  3650. const { push, helper, pure } = context;
  3651. const {
  3652. tag,
  3653. props,
  3654. children,
  3655. patchFlag,
  3656. dynamicProps,
  3657. directives,
  3658. isBlock,
  3659. disableTracking,
  3660. isComponent
  3661. } = node;
  3662. if (directives) {
  3663. push(helper(WITH_DIRECTIVES) + `(`);
  3664. }
  3665. if (isBlock) {
  3666. push(`(${helper(OPEN_BLOCK)}(${disableTracking ? `true` : ``}), `);
  3667. }
  3668. if (pure) {
  3669. push(PURE_ANNOTATION);
  3670. }
  3671. const callHelper = isBlock ? getVNodeBlockHelper(context.inSSR, isComponent) : getVNodeHelper(context.inSSR, isComponent);
  3672. push(helper(callHelper) + `(`, -2 /* None */, node);
  3673. genNodeList(
  3674. genNullableArgs([tag, props, children, patchFlag, dynamicProps]),
  3675. context
  3676. );
  3677. push(`)`);
  3678. if (isBlock) {
  3679. push(`)`);
  3680. }
  3681. if (directives) {
  3682. push(`, `);
  3683. genNode(directives, context);
  3684. push(`)`);
  3685. }
  3686. }
  3687. function genNullableArgs(args) {
  3688. let i = args.length;
  3689. while (i--) {
  3690. if (args[i] != null)
  3691. break;
  3692. }
  3693. return args.slice(0, i + 1).map((arg) => arg || `null`);
  3694. }
  3695. function genCallExpression(node, context) {
  3696. const { push, helper, pure } = context;
  3697. const callee = isString(node.callee) ? node.callee : helper(node.callee);
  3698. if (pure) {
  3699. push(PURE_ANNOTATION);
  3700. }
  3701. push(callee + `(`, -2 /* None */, node);
  3702. genNodeList(node.arguments, context);
  3703. push(`)`);
  3704. }
  3705. function genObjectExpression(node, context) {
  3706. const { push, indent, deindent, newline } = context;
  3707. const { properties } = node;
  3708. if (!properties.length) {
  3709. push(`{}`, -2 /* None */, node);
  3710. return;
  3711. }
  3712. const multilines = properties.length > 1 || properties.some((p) => p.value.type !== 4);
  3713. push(multilines ? `{` : `{ `);
  3714. multilines && indent();
  3715. for (let i = 0; i < properties.length; i++) {
  3716. const { key, value } = properties[i];
  3717. genExpressionAsPropertyKey(key, context);
  3718. push(`: `);
  3719. genNode(value, context);
  3720. if (i < properties.length - 1) {
  3721. push(`,`);
  3722. newline();
  3723. }
  3724. }
  3725. multilines && deindent();
  3726. push(multilines ? `}` : ` }`);
  3727. }
  3728. function genArrayExpression(node, context) {
  3729. genNodeListAsArray(node.elements, context);
  3730. }
  3731. function genFunctionExpression(node, context) {
  3732. const { push, indent, deindent } = context;
  3733. const { params, returns, body, newline, isSlot } = node;
  3734. if (isSlot) {
  3735. push(`_${helperNameMap[WITH_CTX]}(`);
  3736. }
  3737. push(`(`, -2 /* None */, node);
  3738. if (isArray(params)) {
  3739. genNodeList(params, context);
  3740. } else if (params) {
  3741. genNode(params, context);
  3742. }
  3743. push(`) => `);
  3744. if (newline || body) {
  3745. push(`{`);
  3746. indent();
  3747. }
  3748. if (returns) {
  3749. if (newline) {
  3750. push(`return `);
  3751. }
  3752. if (isArray(returns)) {
  3753. genNodeListAsArray(returns, context);
  3754. } else {
  3755. genNode(returns, context);
  3756. }
  3757. } else if (body) {
  3758. genNode(body, context);
  3759. }
  3760. if (newline || body) {
  3761. deindent();
  3762. push(`}`);
  3763. }
  3764. if (isSlot) {
  3765. if (node.isNonScopedSlot) {
  3766. push(`, undefined, true`);
  3767. }
  3768. push(`)`);
  3769. }
  3770. }
  3771. function genConditionalExpression(node, context) {
  3772. const { test, consequent, alternate, newline: needNewline } = node;
  3773. const { push, indent, deindent, newline } = context;
  3774. if (test.type === 4) {
  3775. const needsParens = !isSimpleIdentifier(test.content);
  3776. needsParens && push(`(`);
  3777. genExpression(test, context);
  3778. needsParens && push(`)`);
  3779. } else {
  3780. push(`(`);
  3781. genNode(test, context);
  3782. push(`)`);
  3783. }
  3784. needNewline && indent();
  3785. context.indentLevel++;
  3786. needNewline || push(` `);
  3787. push(`? `);
  3788. genNode(consequent, context);
  3789. context.indentLevel--;
  3790. needNewline && newline();
  3791. needNewline || push(` `);
  3792. push(`: `);
  3793. const isNested = alternate.type === 19;
  3794. if (!isNested) {
  3795. context.indentLevel++;
  3796. }
  3797. genNode(alternate, context);
  3798. if (!isNested) {
  3799. context.indentLevel--;
  3800. }
  3801. needNewline && deindent(
  3802. true
  3803. /* without newline */
  3804. );
  3805. }
  3806. function genCacheExpression(node, context) {
  3807. const { push, helper, indent, deindent, newline } = context;
  3808. push(`_cache[${node.index}] || (`);
  3809. if (node.isVNode) {
  3810. indent();
  3811. push(`${helper(SET_BLOCK_TRACKING)}(-1),`);
  3812. newline();
  3813. }
  3814. push(`_cache[${node.index}] = `);
  3815. genNode(node.value, context);
  3816. if (node.isVNode) {
  3817. push(`,`);
  3818. newline();
  3819. push(`${helper(SET_BLOCK_TRACKING)}(1),`);
  3820. newline();
  3821. push(`_cache[${node.index}]`);
  3822. deindent();
  3823. }
  3824. push(`)`);
  3825. }
  3826. const prohibitedKeywordRE = new RegExp(
  3827. "\\b" + "arguments,await,break,case,catch,class,const,continue,debugger,default,delete,do,else,export,extends,finally,for,function,if,import,let,new,return,super,switch,throw,try,var,void,while,with,yield".split(",").join("\\b|\\b") + "\\b"
  3828. );
  3829. const stripStringRE = /'(?:[^'\\]|\\.)*'|"(?:[^"\\]|\\.)*"|`(?:[^`\\]|\\.)*\$\{|\}(?:[^`\\]|\\.)*`|`(?:[^`\\]|\\.)*`/g;
  3830. function validateBrowserExpression(node, context, asParams = false, asRawStatements = false) {
  3831. const exp = node.content;
  3832. if (!exp.trim()) {
  3833. return;
  3834. }
  3835. try {
  3836. new Function(
  3837. asRawStatements ? ` ${exp} ` : `return ${asParams ? `(${exp}) => {}` : `(${exp})`}`
  3838. );
  3839. } catch (e) {
  3840. let message = e.message;
  3841. const keywordMatch = exp.replace(stripStringRE, "").match(prohibitedKeywordRE);
  3842. if (keywordMatch) {
  3843. message = `avoid using JavaScript keyword as property name: "${keywordMatch[0]}"`;
  3844. }
  3845. context.onError(
  3846. createCompilerError(
  3847. 45,
  3848. node.loc,
  3849. void 0,
  3850. message
  3851. )
  3852. );
  3853. }
  3854. }
  3855. const transformExpression = (node, context) => {
  3856. if (node.type === 5) {
  3857. node.content = processExpression(
  3858. node.content,
  3859. context
  3860. );
  3861. } else if (node.type === 1) {
  3862. for (let i = 0; i < node.props.length; i++) {
  3863. const dir = node.props[i];
  3864. if (dir.type === 7 && dir.name !== "for") {
  3865. const exp = dir.exp;
  3866. const arg = dir.arg;
  3867. if (exp && exp.type === 4 && !(dir.name === "on" && arg)) {
  3868. dir.exp = processExpression(
  3869. exp,
  3870. context,
  3871. // slot args must be processed as function params
  3872. dir.name === "slot"
  3873. );
  3874. }
  3875. if (arg && arg.type === 4 && !arg.isStatic) {
  3876. dir.arg = processExpression(arg, context);
  3877. }
  3878. }
  3879. }
  3880. }
  3881. };
  3882. function processExpression(node, context, asParams = false, asRawStatements = false, localVars = Object.create(context.identifiers)) {
  3883. {
  3884. {
  3885. validateBrowserExpression(node, context, asParams, asRawStatements);
  3886. }
  3887. return node;
  3888. }
  3889. }
  3890. function stringifyExpression(exp) {
  3891. if (isString(exp)) {
  3892. return exp;
  3893. } else if (exp.type === 4) {
  3894. return exp.content;
  3895. } else {
  3896. return exp.children.map(stringifyExpression).join("");
  3897. }
  3898. }
  3899. const transformIf = createStructuralDirectiveTransform(
  3900. /^(if|else|else-if)$/,
  3901. (node, dir, context) => {
  3902. return processIf(node, dir, context, (ifNode, branch, isRoot) => {
  3903. const siblings = context.parent.children;
  3904. let i = siblings.indexOf(ifNode);
  3905. let key = 0;
  3906. while (i-- >= 0) {
  3907. const sibling = siblings[i];
  3908. if (sibling && sibling.type === 9) {
  3909. key += sibling.branches.length;
  3910. }
  3911. }
  3912. return () => {
  3913. if (isRoot) {
  3914. ifNode.codegenNode = createCodegenNodeForBranch(
  3915. branch,
  3916. key,
  3917. context
  3918. );
  3919. } else {
  3920. const parentCondition = getParentCondition(ifNode.codegenNode);
  3921. parentCondition.alternate = createCodegenNodeForBranch(
  3922. branch,
  3923. key + ifNode.branches.length - 1,
  3924. context
  3925. );
  3926. }
  3927. };
  3928. });
  3929. }
  3930. );
  3931. function processIf(node, dir, context, processCodegen) {
  3932. if (dir.name !== "else" && (!dir.exp || !dir.exp.content.trim())) {
  3933. const loc = dir.exp ? dir.exp.loc : node.loc;
  3934. context.onError(
  3935. createCompilerError(28, dir.loc)
  3936. );
  3937. dir.exp = createSimpleExpression(`true`, false, loc);
  3938. }
  3939. if (dir.exp) {
  3940. validateBrowserExpression(dir.exp, context);
  3941. }
  3942. if (dir.name === "if") {
  3943. const branch = createIfBranch(node, dir);
  3944. const ifNode = {
  3945. type: 9,
  3946. loc: node.loc,
  3947. branches: [branch]
  3948. };
  3949. context.replaceNode(ifNode);
  3950. if (processCodegen) {
  3951. return processCodegen(ifNode, branch, true);
  3952. }
  3953. } else {
  3954. const siblings = context.parent.children;
  3955. const comments = [];
  3956. let i = siblings.indexOf(node);
  3957. while (i-- >= -1) {
  3958. const sibling = siblings[i];
  3959. if (sibling && sibling.type === 3) {
  3960. context.removeNode(sibling);
  3961. comments.unshift(sibling);
  3962. continue;
  3963. }
  3964. if (sibling && sibling.type === 2 && !sibling.content.trim().length) {
  3965. context.removeNode(sibling);
  3966. continue;
  3967. }
  3968. if (sibling && sibling.type === 9) {
  3969. if (dir.name === "else-if" && sibling.branches[sibling.branches.length - 1].condition === void 0) {
  3970. context.onError(
  3971. createCompilerError(30, node.loc)
  3972. );
  3973. }
  3974. context.removeNode();
  3975. const branch = createIfBranch(node, dir);
  3976. if (comments.length && // #3619 ignore comments if the v-if is direct child of <transition>
  3977. !(context.parent && context.parent.type === 1 && (context.parent.tag === "transition" || context.parent.tag === "Transition"))) {
  3978. branch.children = [...comments, ...branch.children];
  3979. }
  3980. {
  3981. const key = branch.userKey;
  3982. if (key) {
  3983. sibling.branches.forEach(({ userKey }) => {
  3984. if (isSameKey(userKey, key)) {
  3985. context.onError(
  3986. createCompilerError(
  3987. 29,
  3988. branch.userKey.loc
  3989. )
  3990. );
  3991. }
  3992. });
  3993. }
  3994. }
  3995. sibling.branches.push(branch);
  3996. const onExit = processCodegen && processCodegen(sibling, branch, false);
  3997. traverseNode(branch, context);
  3998. if (onExit)
  3999. onExit();
  4000. context.currentNode = null;
  4001. } else {
  4002. context.onError(
  4003. createCompilerError(30, node.loc)
  4004. );
  4005. }
  4006. break;
  4007. }
  4008. }
  4009. }
  4010. function createIfBranch(node, dir) {
  4011. const isTemplateIf = node.tagType === 3;
  4012. return {
  4013. type: 10,
  4014. loc: node.loc,
  4015. condition: dir.name === "else" ? void 0 : dir.exp,
  4016. children: isTemplateIf && !findDir(node, "for") ? node.children : [node],
  4017. userKey: findProp(node, `key`),
  4018. isTemplateIf
  4019. };
  4020. }
  4021. function createCodegenNodeForBranch(branch, keyIndex, context) {
  4022. if (branch.condition) {
  4023. return createConditionalExpression(
  4024. branch.condition,
  4025. createChildrenCodegenNode(branch, keyIndex, context),
  4026. // make sure to pass in asBlock: true so that the comment node call
  4027. // closes the current block.
  4028. createCallExpression(context.helper(CREATE_COMMENT), [
  4029. '"v-if"' ,
  4030. "true"
  4031. ])
  4032. );
  4033. } else {
  4034. return createChildrenCodegenNode(branch, keyIndex, context);
  4035. }
  4036. }
  4037. function createChildrenCodegenNode(branch, keyIndex, context) {
  4038. const { helper } = context;
  4039. const keyProperty = createObjectProperty(
  4040. `key`,
  4041. createSimpleExpression(
  4042. `${keyIndex}`,
  4043. false,
  4044. locStub,
  4045. 2
  4046. )
  4047. );
  4048. const { children } = branch;
  4049. const firstChild = children[0];
  4050. const needFragmentWrapper = children.length !== 1 || firstChild.type !== 1;
  4051. if (needFragmentWrapper) {
  4052. if (children.length === 1 && firstChild.type === 11) {
  4053. const vnodeCall = firstChild.codegenNode;
  4054. injectProp(vnodeCall, keyProperty, context);
  4055. return vnodeCall;
  4056. } else {
  4057. let patchFlag = 64;
  4058. let patchFlagText = PatchFlagNames[64];
  4059. if (!branch.isTemplateIf && children.filter((c) => c.type !== 3).length === 1) {
  4060. patchFlag |= 2048;
  4061. patchFlagText += `, ${PatchFlagNames[2048]}`;
  4062. }
  4063. return createVNodeCall(
  4064. context,
  4065. helper(FRAGMENT),
  4066. createObjectExpression([keyProperty]),
  4067. children,
  4068. patchFlag + (` /* ${patchFlagText} */` ),
  4069. void 0,
  4070. void 0,
  4071. true,
  4072. false,
  4073. false,
  4074. branch.loc
  4075. );
  4076. }
  4077. } else {
  4078. const ret = firstChild.codegenNode;
  4079. const vnodeCall = getMemoedVNodeCall(ret);
  4080. if (vnodeCall.type === 13) {
  4081. convertToBlock(vnodeCall, context);
  4082. }
  4083. injectProp(vnodeCall, keyProperty, context);
  4084. return ret;
  4085. }
  4086. }
  4087. function isSameKey(a, b) {
  4088. if (!a || a.type !== b.type) {
  4089. return false;
  4090. }
  4091. if (a.type === 6) {
  4092. if (a.value.content !== b.value.content) {
  4093. return false;
  4094. }
  4095. } else {
  4096. const exp = a.exp;
  4097. const branchExp = b.exp;
  4098. if (exp.type !== branchExp.type) {
  4099. return false;
  4100. }
  4101. if (exp.type !== 4 || exp.isStatic !== branchExp.isStatic || exp.content !== branchExp.content) {
  4102. return false;
  4103. }
  4104. }
  4105. return true;
  4106. }
  4107. function getParentCondition(node) {
  4108. while (true) {
  4109. if (node.type === 19) {
  4110. if (node.alternate.type === 19) {
  4111. node = node.alternate;
  4112. } else {
  4113. return node;
  4114. }
  4115. } else if (node.type === 20) {
  4116. node = node.value;
  4117. }
  4118. }
  4119. }
  4120. const transformFor = createStructuralDirectiveTransform(
  4121. "for",
  4122. (node, dir, context) => {
  4123. const { helper, removeHelper } = context;
  4124. return processFor(node, dir, context, (forNode) => {
  4125. const renderExp = createCallExpression(helper(RENDER_LIST), [
  4126. forNode.source
  4127. ]);
  4128. const isTemplate = isTemplateNode(node);
  4129. const memo = findDir(node, "memo");
  4130. const keyProp = findProp(node, `key`);
  4131. const keyExp = keyProp && (keyProp.type === 6 ? createSimpleExpression(keyProp.value.content, true) : keyProp.exp);
  4132. const keyProperty = keyProp ? createObjectProperty(`key`, keyExp) : null;
  4133. const isStableFragment = forNode.source.type === 4 && forNode.source.constType > 0;
  4134. const fragmentFlag = isStableFragment ? 64 : keyProp ? 128 : 256;
  4135. forNode.codegenNode = createVNodeCall(
  4136. context,
  4137. helper(FRAGMENT),
  4138. void 0,
  4139. renderExp,
  4140. fragmentFlag + (` /* ${PatchFlagNames[fragmentFlag]} */` ),
  4141. void 0,
  4142. void 0,
  4143. true,
  4144. !isStableFragment,
  4145. false,
  4146. node.loc
  4147. );
  4148. return () => {
  4149. let childBlock;
  4150. const { children } = forNode;
  4151. if (isTemplate) {
  4152. node.children.some((c) => {
  4153. if (c.type === 1) {
  4154. const key = findProp(c, "key");
  4155. if (key) {
  4156. context.onError(
  4157. createCompilerError(
  4158. 33,
  4159. key.loc
  4160. )
  4161. );
  4162. return true;
  4163. }
  4164. }
  4165. });
  4166. }
  4167. const needFragmentWrapper = children.length !== 1 || children[0].type !== 1;
  4168. const slotOutlet = isSlotOutlet(node) ? node : isTemplate && node.children.length === 1 && isSlotOutlet(node.children[0]) ? node.children[0] : null;
  4169. if (slotOutlet) {
  4170. childBlock = slotOutlet.codegenNode;
  4171. if (isTemplate && keyProperty) {
  4172. injectProp(childBlock, keyProperty, context);
  4173. }
  4174. } else if (needFragmentWrapper) {
  4175. childBlock = createVNodeCall(
  4176. context,
  4177. helper(FRAGMENT),
  4178. keyProperty ? createObjectExpression([keyProperty]) : void 0,
  4179. node.children,
  4180. 64 + (` /* ${PatchFlagNames[64]} */` ),
  4181. void 0,
  4182. void 0,
  4183. true,
  4184. void 0,
  4185. false
  4186. );
  4187. } else {
  4188. childBlock = children[0].codegenNode;
  4189. if (isTemplate && keyProperty) {
  4190. injectProp(childBlock, keyProperty, context);
  4191. }
  4192. if (childBlock.isBlock !== !isStableFragment) {
  4193. if (childBlock.isBlock) {
  4194. removeHelper(OPEN_BLOCK);
  4195. removeHelper(
  4196. getVNodeBlockHelper(context.inSSR, childBlock.isComponent)
  4197. );
  4198. } else {
  4199. removeHelper(
  4200. getVNodeHelper(context.inSSR, childBlock.isComponent)
  4201. );
  4202. }
  4203. }
  4204. childBlock.isBlock = !isStableFragment;
  4205. if (childBlock.isBlock) {
  4206. helper(OPEN_BLOCK);
  4207. helper(getVNodeBlockHelper(context.inSSR, childBlock.isComponent));
  4208. } else {
  4209. helper(getVNodeHelper(context.inSSR, childBlock.isComponent));
  4210. }
  4211. }
  4212. if (memo) {
  4213. const loop = createFunctionExpression(
  4214. createForLoopParams(forNode.parseResult, [
  4215. createSimpleExpression(`_cached`)
  4216. ])
  4217. );
  4218. loop.body = createBlockStatement([
  4219. createCompoundExpression([`const _memo = (`, memo.exp, `)`]),
  4220. createCompoundExpression([
  4221. `if (_cached`,
  4222. ...keyExp ? [` && _cached.key === `, keyExp] : [],
  4223. ` && ${context.helperString(
  4224. IS_MEMO_SAME
  4225. )}(_cached, _memo)) return _cached`
  4226. ]),
  4227. createCompoundExpression([`const _item = `, childBlock]),
  4228. createSimpleExpression(`_item.memo = _memo`),
  4229. createSimpleExpression(`return _item`)
  4230. ]);
  4231. renderExp.arguments.push(
  4232. loop,
  4233. createSimpleExpression(`_cache`),
  4234. createSimpleExpression(String(context.cached++))
  4235. );
  4236. } else {
  4237. renderExp.arguments.push(
  4238. createFunctionExpression(
  4239. createForLoopParams(forNode.parseResult),
  4240. childBlock,
  4241. true
  4242. )
  4243. );
  4244. }
  4245. };
  4246. });
  4247. }
  4248. );
  4249. function processFor(node, dir, context, processCodegen) {
  4250. if (!dir.exp) {
  4251. context.onError(
  4252. createCompilerError(31, dir.loc)
  4253. );
  4254. return;
  4255. }
  4256. const parseResult = dir.forParseResult;
  4257. if (!parseResult) {
  4258. context.onError(
  4259. createCompilerError(32, dir.loc)
  4260. );
  4261. return;
  4262. }
  4263. finalizeForParseResult(parseResult, context);
  4264. const { addIdentifiers, removeIdentifiers, scopes } = context;
  4265. const { source, value, key, index } = parseResult;
  4266. const forNode = {
  4267. type: 11,
  4268. loc: dir.loc,
  4269. source,
  4270. valueAlias: value,
  4271. keyAlias: key,
  4272. objectIndexAlias: index,
  4273. parseResult,
  4274. children: isTemplateNode(node) ? node.children : [node]
  4275. };
  4276. context.replaceNode(forNode);
  4277. scopes.vFor++;
  4278. const onExit = processCodegen && processCodegen(forNode);
  4279. return () => {
  4280. scopes.vFor--;
  4281. if (onExit)
  4282. onExit();
  4283. };
  4284. }
  4285. function finalizeForParseResult(result, context) {
  4286. if (result.finalized)
  4287. return;
  4288. {
  4289. validateBrowserExpression(result.source, context);
  4290. if (result.key) {
  4291. validateBrowserExpression(
  4292. result.key,
  4293. context,
  4294. true
  4295. );
  4296. }
  4297. if (result.index) {
  4298. validateBrowserExpression(
  4299. result.index,
  4300. context,
  4301. true
  4302. );
  4303. }
  4304. if (result.value) {
  4305. validateBrowserExpression(
  4306. result.value,
  4307. context,
  4308. true
  4309. );
  4310. }
  4311. }
  4312. result.finalized = true;
  4313. }
  4314. function createForLoopParams({ value, key, index }, memoArgs = []) {
  4315. return createParamsList([value, key, index, ...memoArgs]);
  4316. }
  4317. function createParamsList(args) {
  4318. let i = args.length;
  4319. while (i--) {
  4320. if (args[i])
  4321. break;
  4322. }
  4323. return args.slice(0, i + 1).map((arg, i2) => arg || createSimpleExpression(`_`.repeat(i2 + 1), false));
  4324. }
  4325. const defaultFallback = createSimpleExpression(`undefined`, false);
  4326. const trackSlotScopes = (node, context) => {
  4327. if (node.type === 1 && (node.tagType === 1 || node.tagType === 3)) {
  4328. const vSlot = findDir(node, "slot");
  4329. if (vSlot) {
  4330. vSlot.exp;
  4331. context.scopes.vSlot++;
  4332. return () => {
  4333. context.scopes.vSlot--;
  4334. };
  4335. }
  4336. }
  4337. };
  4338. const trackVForSlotScopes = (node, context) => {
  4339. let vFor;
  4340. if (isTemplateNode(node) && node.props.some(isVSlot) && (vFor = findDir(node, "for"))) {
  4341. const result = vFor.forParseResult;
  4342. if (result) {
  4343. finalizeForParseResult(result, context);
  4344. const { value, key, index } = result;
  4345. const { addIdentifiers, removeIdentifiers } = context;
  4346. value && addIdentifiers(value);
  4347. key && addIdentifiers(key);
  4348. index && addIdentifiers(index);
  4349. return () => {
  4350. value && removeIdentifiers(value);
  4351. key && removeIdentifiers(key);
  4352. index && removeIdentifiers(index);
  4353. };
  4354. }
  4355. }
  4356. };
  4357. const buildClientSlotFn = (props, _vForExp, children, loc) => createFunctionExpression(
  4358. props,
  4359. children,
  4360. false,
  4361. true,
  4362. children.length ? children[0].loc : loc
  4363. );
  4364. function buildSlots(node, context, buildSlotFn = buildClientSlotFn) {
  4365. context.helper(WITH_CTX);
  4366. const { children, loc } = node;
  4367. const slotsProperties = [];
  4368. const dynamicSlots = [];
  4369. let hasDynamicSlots = context.scopes.vSlot > 0 || context.scopes.vFor > 0;
  4370. const onComponentSlot = findDir(node, "slot", true);
  4371. if (onComponentSlot) {
  4372. const { arg, exp } = onComponentSlot;
  4373. if (arg && !isStaticExp(arg)) {
  4374. hasDynamicSlots = true;
  4375. }
  4376. slotsProperties.push(
  4377. createObjectProperty(
  4378. arg || createSimpleExpression("default", true),
  4379. buildSlotFn(exp, void 0, children, loc)
  4380. )
  4381. );
  4382. }
  4383. let hasTemplateSlots = false;
  4384. let hasNamedDefaultSlot = false;
  4385. const implicitDefaultChildren = [];
  4386. const seenSlotNames = /* @__PURE__ */ new Set();
  4387. let conditionalBranchIndex = 0;
  4388. for (let i = 0; i < children.length; i++) {
  4389. const slotElement = children[i];
  4390. let slotDir;
  4391. if (!isTemplateNode(slotElement) || !(slotDir = findDir(slotElement, "slot", true))) {
  4392. if (slotElement.type !== 3) {
  4393. implicitDefaultChildren.push(slotElement);
  4394. }
  4395. continue;
  4396. }
  4397. if (onComponentSlot) {
  4398. context.onError(
  4399. createCompilerError(37, slotDir.loc)
  4400. );
  4401. break;
  4402. }
  4403. hasTemplateSlots = true;
  4404. const { children: slotChildren, loc: slotLoc } = slotElement;
  4405. const {
  4406. arg: slotName = createSimpleExpression(`default`, true),
  4407. exp: slotProps,
  4408. loc: dirLoc
  4409. } = slotDir;
  4410. let staticSlotName;
  4411. if (isStaticExp(slotName)) {
  4412. staticSlotName = slotName ? slotName.content : `default`;
  4413. } else {
  4414. hasDynamicSlots = true;
  4415. }
  4416. const vFor = findDir(slotElement, "for");
  4417. const slotFunction = buildSlotFn(slotProps, vFor, slotChildren, slotLoc);
  4418. let vIf;
  4419. let vElse;
  4420. if (vIf = findDir(slotElement, "if")) {
  4421. hasDynamicSlots = true;
  4422. dynamicSlots.push(
  4423. createConditionalExpression(
  4424. vIf.exp,
  4425. buildDynamicSlot(slotName, slotFunction, conditionalBranchIndex++),
  4426. defaultFallback
  4427. )
  4428. );
  4429. } else if (vElse = findDir(
  4430. slotElement,
  4431. /^else(-if)?$/,
  4432. true
  4433. /* allowEmpty */
  4434. )) {
  4435. let j = i;
  4436. let prev;
  4437. while (j--) {
  4438. prev = children[j];
  4439. if (prev.type !== 3) {
  4440. break;
  4441. }
  4442. }
  4443. if (prev && isTemplateNode(prev) && findDir(prev, "if")) {
  4444. children.splice(i, 1);
  4445. i--;
  4446. let conditional = dynamicSlots[dynamicSlots.length - 1];
  4447. while (conditional.alternate.type === 19) {
  4448. conditional = conditional.alternate;
  4449. }
  4450. conditional.alternate = vElse.exp ? createConditionalExpression(
  4451. vElse.exp,
  4452. buildDynamicSlot(
  4453. slotName,
  4454. slotFunction,
  4455. conditionalBranchIndex++
  4456. ),
  4457. defaultFallback
  4458. ) : buildDynamicSlot(slotName, slotFunction, conditionalBranchIndex++);
  4459. } else {
  4460. context.onError(
  4461. createCompilerError(30, vElse.loc)
  4462. );
  4463. }
  4464. } else if (vFor) {
  4465. hasDynamicSlots = true;
  4466. const parseResult = vFor.forParseResult;
  4467. if (parseResult) {
  4468. finalizeForParseResult(parseResult, context);
  4469. dynamicSlots.push(
  4470. createCallExpression(context.helper(RENDER_LIST), [
  4471. parseResult.source,
  4472. createFunctionExpression(
  4473. createForLoopParams(parseResult),
  4474. buildDynamicSlot(slotName, slotFunction),
  4475. true
  4476. )
  4477. ])
  4478. );
  4479. } else {
  4480. context.onError(
  4481. createCompilerError(
  4482. 32,
  4483. vFor.loc
  4484. )
  4485. );
  4486. }
  4487. } else {
  4488. if (staticSlotName) {
  4489. if (seenSlotNames.has(staticSlotName)) {
  4490. context.onError(
  4491. createCompilerError(
  4492. 38,
  4493. dirLoc
  4494. )
  4495. );
  4496. continue;
  4497. }
  4498. seenSlotNames.add(staticSlotName);
  4499. if (staticSlotName === "default") {
  4500. hasNamedDefaultSlot = true;
  4501. }
  4502. }
  4503. slotsProperties.push(createObjectProperty(slotName, slotFunction));
  4504. }
  4505. }
  4506. if (!onComponentSlot) {
  4507. const buildDefaultSlotProperty = (props, children2) => {
  4508. const fn = buildSlotFn(props, void 0, children2, loc);
  4509. if (context.compatConfig) {
  4510. fn.isNonScopedSlot = true;
  4511. }
  4512. return createObjectProperty(`default`, fn);
  4513. };
  4514. if (!hasTemplateSlots) {
  4515. slotsProperties.push(buildDefaultSlotProperty(void 0, children));
  4516. } else if (implicitDefaultChildren.length && // #3766
  4517. // with whitespace: 'preserve', whitespaces between slots will end up in
  4518. // implicitDefaultChildren. Ignore if all implicit children are whitespaces.
  4519. implicitDefaultChildren.some((node2) => isNonWhitespaceContent(node2))) {
  4520. if (hasNamedDefaultSlot) {
  4521. context.onError(
  4522. createCompilerError(
  4523. 39,
  4524. implicitDefaultChildren[0].loc
  4525. )
  4526. );
  4527. } else {
  4528. slotsProperties.push(
  4529. buildDefaultSlotProperty(void 0, implicitDefaultChildren)
  4530. );
  4531. }
  4532. }
  4533. }
  4534. const slotFlag = hasDynamicSlots ? 2 : hasForwardedSlots(node.children) ? 3 : 1;
  4535. let slots = createObjectExpression(
  4536. slotsProperties.concat(
  4537. createObjectProperty(
  4538. `_`,
  4539. // 2 = compiled but dynamic = can skip normalization, but must run diff
  4540. // 1 = compiled and static = can skip normalization AND diff as optimized
  4541. createSimpleExpression(
  4542. slotFlag + (` /* ${slotFlagsText[slotFlag]} */` ),
  4543. false
  4544. )
  4545. )
  4546. ),
  4547. loc
  4548. );
  4549. if (dynamicSlots.length) {
  4550. slots = createCallExpression(context.helper(CREATE_SLOTS), [
  4551. slots,
  4552. createArrayExpression(dynamicSlots)
  4553. ]);
  4554. }
  4555. return {
  4556. slots,
  4557. hasDynamicSlots
  4558. };
  4559. }
  4560. function buildDynamicSlot(name, fn, index) {
  4561. const props = [
  4562. createObjectProperty(`name`, name),
  4563. createObjectProperty(`fn`, fn)
  4564. ];
  4565. if (index != null) {
  4566. props.push(
  4567. createObjectProperty(`key`, createSimpleExpression(String(index), true))
  4568. );
  4569. }
  4570. return createObjectExpression(props);
  4571. }
  4572. function hasForwardedSlots(children) {
  4573. for (let i = 0; i < children.length; i++) {
  4574. const child = children[i];
  4575. switch (child.type) {
  4576. case 1:
  4577. if (child.tagType === 2 || hasForwardedSlots(child.children)) {
  4578. return true;
  4579. }
  4580. break;
  4581. case 9:
  4582. if (hasForwardedSlots(child.branches))
  4583. return true;
  4584. break;
  4585. case 10:
  4586. case 11:
  4587. if (hasForwardedSlots(child.children))
  4588. return true;
  4589. break;
  4590. }
  4591. }
  4592. return false;
  4593. }
  4594. function isNonWhitespaceContent(node) {
  4595. if (node.type !== 2 && node.type !== 12)
  4596. return true;
  4597. return node.type === 2 ? !!node.content.trim() : isNonWhitespaceContent(node.content);
  4598. }
  4599. const directiveImportMap = /* @__PURE__ */ new WeakMap();
  4600. const transformElement = (node, context) => {
  4601. return function postTransformElement() {
  4602. node = context.currentNode;
  4603. if (!(node.type === 1 && (node.tagType === 0 || node.tagType === 1))) {
  4604. return;
  4605. }
  4606. const { tag, props } = node;
  4607. const isComponent = node.tagType === 1;
  4608. let vnodeTag = isComponent ? resolveComponentType(node, context) : `"${tag}"`;
  4609. const isDynamicComponent = isObject(vnodeTag) && vnodeTag.callee === RESOLVE_DYNAMIC_COMPONENT;
  4610. let vnodeProps;
  4611. let vnodeChildren;
  4612. let vnodePatchFlag;
  4613. let patchFlag = 0;
  4614. let vnodeDynamicProps;
  4615. let dynamicPropNames;
  4616. let vnodeDirectives;
  4617. let shouldUseBlock = (
  4618. // dynamic component may resolve to plain elements
  4619. isDynamicComponent || vnodeTag === TELEPORT || vnodeTag === SUSPENSE || !isComponent && // <svg> and <foreignObject> must be forced into blocks so that block
  4620. // updates inside get proper isSVG flag at runtime. (#639, #643)
  4621. // This is technically web-specific, but splitting the logic out of core
  4622. // leads to too much unnecessary complexity.
  4623. (tag === "svg" || tag === "foreignObject")
  4624. );
  4625. if (props.length > 0) {
  4626. const propsBuildResult = buildProps(
  4627. node,
  4628. context,
  4629. void 0,
  4630. isComponent,
  4631. isDynamicComponent
  4632. );
  4633. vnodeProps = propsBuildResult.props;
  4634. patchFlag = propsBuildResult.patchFlag;
  4635. dynamicPropNames = propsBuildResult.dynamicPropNames;
  4636. const directives = propsBuildResult.directives;
  4637. vnodeDirectives = directives && directives.length ? createArrayExpression(
  4638. directives.map((dir) => buildDirectiveArgs(dir, context))
  4639. ) : void 0;
  4640. if (propsBuildResult.shouldUseBlock) {
  4641. shouldUseBlock = true;
  4642. }
  4643. }
  4644. if (node.children.length > 0) {
  4645. if (vnodeTag === KEEP_ALIVE) {
  4646. shouldUseBlock = true;
  4647. patchFlag |= 1024;
  4648. if (node.children.length > 1) {
  4649. context.onError(
  4650. createCompilerError(46, {
  4651. start: node.children[0].loc.start,
  4652. end: node.children[node.children.length - 1].loc.end,
  4653. source: ""
  4654. })
  4655. );
  4656. }
  4657. }
  4658. const shouldBuildAsSlots = isComponent && // Teleport is not a real component and has dedicated runtime handling
  4659. vnodeTag !== TELEPORT && // explained above.
  4660. vnodeTag !== KEEP_ALIVE;
  4661. if (shouldBuildAsSlots) {
  4662. const { slots, hasDynamicSlots } = buildSlots(node, context);
  4663. vnodeChildren = slots;
  4664. if (hasDynamicSlots) {
  4665. patchFlag |= 1024;
  4666. }
  4667. } else if (node.children.length === 1 && vnodeTag !== TELEPORT) {
  4668. const child = node.children[0];
  4669. const type = child.type;
  4670. const hasDynamicTextChild = type === 5 || type === 8;
  4671. if (hasDynamicTextChild && getConstantType(child, context) === 0) {
  4672. patchFlag |= 1;
  4673. }
  4674. if (hasDynamicTextChild || type === 2) {
  4675. vnodeChildren = child;
  4676. } else {
  4677. vnodeChildren = node.children;
  4678. }
  4679. } else {
  4680. vnodeChildren = node.children;
  4681. }
  4682. }
  4683. if (patchFlag !== 0) {
  4684. {
  4685. if (patchFlag < 0) {
  4686. vnodePatchFlag = patchFlag + ` /* ${PatchFlagNames[patchFlag]} */`;
  4687. } else {
  4688. const flagNames = Object.keys(PatchFlagNames).map(Number).filter((n) => n > 0 && patchFlag & n).map((n) => PatchFlagNames[n]).join(`, `);
  4689. vnodePatchFlag = patchFlag + ` /* ${flagNames} */`;
  4690. }
  4691. }
  4692. if (dynamicPropNames && dynamicPropNames.length) {
  4693. vnodeDynamicProps = stringifyDynamicPropNames(dynamicPropNames);
  4694. }
  4695. }
  4696. node.codegenNode = createVNodeCall(
  4697. context,
  4698. vnodeTag,
  4699. vnodeProps,
  4700. vnodeChildren,
  4701. vnodePatchFlag,
  4702. vnodeDynamicProps,
  4703. vnodeDirectives,
  4704. !!shouldUseBlock,
  4705. false,
  4706. isComponent,
  4707. node.loc
  4708. );
  4709. };
  4710. };
  4711. function resolveComponentType(node, context, ssr = false) {
  4712. let { tag } = node;
  4713. const isExplicitDynamic = isComponentTag(tag);
  4714. const isProp = findProp(
  4715. node,
  4716. "is",
  4717. false,
  4718. true
  4719. /* allow empty */
  4720. );
  4721. if (isProp) {
  4722. if (isExplicitDynamic || isCompatEnabled(
  4723. "COMPILER_IS_ON_ELEMENT",
  4724. context
  4725. )) {
  4726. let exp;
  4727. if (isProp.type === 6) {
  4728. exp = isProp.value && createSimpleExpression(isProp.value.content, true);
  4729. } else {
  4730. exp = isProp.exp;
  4731. if (!exp) {
  4732. exp = createSimpleExpression(`is`, false, isProp.loc);
  4733. }
  4734. }
  4735. if (exp) {
  4736. return createCallExpression(context.helper(RESOLVE_DYNAMIC_COMPONENT), [
  4737. exp
  4738. ]);
  4739. }
  4740. } else if (isProp.type === 6 && isProp.value.content.startsWith("vue:")) {
  4741. tag = isProp.value.content.slice(4);
  4742. }
  4743. }
  4744. const builtIn = isCoreComponent(tag) || context.isBuiltInComponent(tag);
  4745. if (builtIn) {
  4746. if (!ssr)
  4747. context.helper(builtIn);
  4748. return builtIn;
  4749. }
  4750. context.helper(RESOLVE_COMPONENT);
  4751. context.components.add(tag);
  4752. return toValidAssetId(tag, `component`);
  4753. }
  4754. function buildProps(node, context, props = node.props, isComponent, isDynamicComponent, ssr = false) {
  4755. const { tag, loc: elementLoc, children } = node;
  4756. let properties = [];
  4757. const mergeArgs = [];
  4758. const runtimeDirectives = [];
  4759. const hasChildren = children.length > 0;
  4760. let shouldUseBlock = false;
  4761. let patchFlag = 0;
  4762. let hasRef = false;
  4763. let hasClassBinding = false;
  4764. let hasStyleBinding = false;
  4765. let hasHydrationEventBinding = false;
  4766. let hasDynamicKeys = false;
  4767. let hasVnodeHook = false;
  4768. const dynamicPropNames = [];
  4769. const pushMergeArg = (arg) => {
  4770. if (properties.length) {
  4771. mergeArgs.push(
  4772. createObjectExpression(dedupeProperties(properties), elementLoc)
  4773. );
  4774. properties = [];
  4775. }
  4776. if (arg)
  4777. mergeArgs.push(arg);
  4778. };
  4779. const pushRefVForMarker = () => {
  4780. if (context.scopes.vFor > 0) {
  4781. properties.push(
  4782. createObjectProperty(
  4783. createSimpleExpression("ref_for", true),
  4784. createSimpleExpression("true")
  4785. )
  4786. );
  4787. }
  4788. };
  4789. const analyzePatchFlag = ({ key, value }) => {
  4790. if (isStaticExp(key)) {
  4791. const name = key.content;
  4792. const isEventHandler = isOn(name);
  4793. if (isEventHandler && (!isComponent || isDynamicComponent) && // omit the flag for click handlers because hydration gives click
  4794. // dedicated fast path.
  4795. name.toLowerCase() !== "onclick" && // omit v-model handlers
  4796. name !== "onUpdate:modelValue" && // omit onVnodeXXX hooks
  4797. !isReservedProp(name)) {
  4798. hasHydrationEventBinding = true;
  4799. }
  4800. if (isEventHandler && isReservedProp(name)) {
  4801. hasVnodeHook = true;
  4802. }
  4803. if (isEventHandler && value.type === 14) {
  4804. value = value.arguments[0];
  4805. }
  4806. if (value.type === 20 || (value.type === 4 || value.type === 8) && getConstantType(value, context) > 0) {
  4807. return;
  4808. }
  4809. if (name === "ref") {
  4810. hasRef = true;
  4811. } else if (name === "class") {
  4812. hasClassBinding = true;
  4813. } else if (name === "style") {
  4814. hasStyleBinding = true;
  4815. } else if (name !== "key" && !dynamicPropNames.includes(name)) {
  4816. dynamicPropNames.push(name);
  4817. }
  4818. if (isComponent && (name === "class" || name === "style") && !dynamicPropNames.includes(name)) {
  4819. dynamicPropNames.push(name);
  4820. }
  4821. } else {
  4822. hasDynamicKeys = true;
  4823. }
  4824. };
  4825. for (let i = 0; i < props.length; i++) {
  4826. const prop = props[i];
  4827. if (prop.type === 6) {
  4828. const { loc, name, nameLoc, value } = prop;
  4829. let isStatic = true;
  4830. if (name === "ref") {
  4831. hasRef = true;
  4832. pushRefVForMarker();
  4833. }
  4834. if (name === "is" && (isComponentTag(tag) || value && value.content.startsWith("vue:") || isCompatEnabled(
  4835. "COMPILER_IS_ON_ELEMENT",
  4836. context
  4837. ))) {
  4838. continue;
  4839. }
  4840. properties.push(
  4841. createObjectProperty(
  4842. createSimpleExpression(name, true, nameLoc),
  4843. createSimpleExpression(
  4844. value ? value.content : "",
  4845. isStatic,
  4846. value ? value.loc : loc
  4847. )
  4848. )
  4849. );
  4850. } else {
  4851. const { name, arg, exp, loc, modifiers } = prop;
  4852. const isVBind = name === "bind";
  4853. const isVOn = name === "on";
  4854. if (name === "slot") {
  4855. if (!isComponent) {
  4856. context.onError(
  4857. createCompilerError(40, loc)
  4858. );
  4859. }
  4860. continue;
  4861. }
  4862. if (name === "once" || name === "memo") {
  4863. continue;
  4864. }
  4865. if (name === "is" || isVBind && isStaticArgOf(arg, "is") && (isComponentTag(tag) || isCompatEnabled(
  4866. "COMPILER_IS_ON_ELEMENT",
  4867. context
  4868. ))) {
  4869. continue;
  4870. }
  4871. if (isVOn && ssr) {
  4872. continue;
  4873. }
  4874. if (
  4875. // #938: elements with dynamic keys should be forced into blocks
  4876. isVBind && isStaticArgOf(arg, "key") || // inline before-update hooks need to force block so that it is invoked
  4877. // before children
  4878. isVOn && hasChildren && isStaticArgOf(arg, "vue:before-update")
  4879. ) {
  4880. shouldUseBlock = true;
  4881. }
  4882. if (isVBind && isStaticArgOf(arg, "ref")) {
  4883. pushRefVForMarker();
  4884. }
  4885. if (!arg && (isVBind || isVOn)) {
  4886. hasDynamicKeys = true;
  4887. if (exp) {
  4888. if (isVBind) {
  4889. pushRefVForMarker();
  4890. pushMergeArg();
  4891. {
  4892. {
  4893. const hasOverridableKeys = mergeArgs.some((arg2) => {
  4894. if (arg2.type === 15) {
  4895. return arg2.properties.some(({ key }) => {
  4896. if (key.type !== 4 || !key.isStatic) {
  4897. return true;
  4898. }
  4899. return key.content !== "class" && key.content !== "style" && !isOn(key.content);
  4900. });
  4901. } else {
  4902. return true;
  4903. }
  4904. });
  4905. if (hasOverridableKeys) {
  4906. checkCompatEnabled(
  4907. "COMPILER_V_BIND_OBJECT_ORDER",
  4908. context,
  4909. loc
  4910. );
  4911. }
  4912. }
  4913. if (isCompatEnabled(
  4914. "COMPILER_V_BIND_OBJECT_ORDER",
  4915. context
  4916. )) {
  4917. mergeArgs.unshift(exp);
  4918. continue;
  4919. }
  4920. }
  4921. mergeArgs.push(exp);
  4922. } else {
  4923. pushMergeArg({
  4924. type: 14,
  4925. loc,
  4926. callee: context.helper(TO_HANDLERS),
  4927. arguments: isComponent ? [exp] : [exp, `true`]
  4928. });
  4929. }
  4930. } else {
  4931. context.onError(
  4932. createCompilerError(
  4933. isVBind ? 34 : 35,
  4934. loc
  4935. )
  4936. );
  4937. }
  4938. continue;
  4939. }
  4940. if (isVBind && modifiers.includes("prop")) {
  4941. patchFlag |= 32;
  4942. }
  4943. const directiveTransform = context.directiveTransforms[name];
  4944. if (directiveTransform) {
  4945. const { props: props2, needRuntime } = directiveTransform(prop, node, context);
  4946. !ssr && props2.forEach(analyzePatchFlag);
  4947. if (isVOn && arg && !isStaticExp(arg)) {
  4948. pushMergeArg(createObjectExpression(props2, elementLoc));
  4949. } else {
  4950. properties.push(...props2);
  4951. }
  4952. if (needRuntime) {
  4953. runtimeDirectives.push(prop);
  4954. if (isSymbol(needRuntime)) {
  4955. directiveImportMap.set(prop, needRuntime);
  4956. }
  4957. }
  4958. } else if (!isBuiltInDirective(name)) {
  4959. runtimeDirectives.push(prop);
  4960. if (hasChildren) {
  4961. shouldUseBlock = true;
  4962. }
  4963. }
  4964. }
  4965. }
  4966. let propsExpression = void 0;
  4967. if (mergeArgs.length) {
  4968. pushMergeArg();
  4969. if (mergeArgs.length > 1) {
  4970. propsExpression = createCallExpression(
  4971. context.helper(MERGE_PROPS),
  4972. mergeArgs,
  4973. elementLoc
  4974. );
  4975. } else {
  4976. propsExpression = mergeArgs[0];
  4977. }
  4978. } else if (properties.length) {
  4979. propsExpression = createObjectExpression(
  4980. dedupeProperties(properties),
  4981. elementLoc
  4982. );
  4983. }
  4984. if (hasDynamicKeys) {
  4985. patchFlag |= 16;
  4986. } else {
  4987. if (hasClassBinding && !isComponent) {
  4988. patchFlag |= 2;
  4989. }
  4990. if (hasStyleBinding && !isComponent) {
  4991. patchFlag |= 4;
  4992. }
  4993. if (dynamicPropNames.length) {
  4994. patchFlag |= 8;
  4995. }
  4996. if (hasHydrationEventBinding) {
  4997. patchFlag |= 32;
  4998. }
  4999. }
  5000. if (!shouldUseBlock && (patchFlag === 0 || patchFlag === 32) && (hasRef || hasVnodeHook || runtimeDirectives.length > 0)) {
  5001. patchFlag |= 512;
  5002. }
  5003. if (!context.inSSR && propsExpression) {
  5004. switch (propsExpression.type) {
  5005. case 15:
  5006. let classKeyIndex = -1;
  5007. let styleKeyIndex = -1;
  5008. let hasDynamicKey = false;
  5009. for (let i = 0; i < propsExpression.properties.length; i++) {
  5010. const key = propsExpression.properties[i].key;
  5011. if (isStaticExp(key)) {
  5012. if (key.content === "class") {
  5013. classKeyIndex = i;
  5014. } else if (key.content === "style") {
  5015. styleKeyIndex = i;
  5016. }
  5017. } else if (!key.isHandlerKey) {
  5018. hasDynamicKey = true;
  5019. }
  5020. }
  5021. const classProp = propsExpression.properties[classKeyIndex];
  5022. const styleProp = propsExpression.properties[styleKeyIndex];
  5023. if (!hasDynamicKey) {
  5024. if (classProp && !isStaticExp(classProp.value)) {
  5025. classProp.value = createCallExpression(
  5026. context.helper(NORMALIZE_CLASS),
  5027. [classProp.value]
  5028. );
  5029. }
  5030. if (styleProp && // the static style is compiled into an object,
  5031. // so use `hasStyleBinding` to ensure that it is a dynamic style binding
  5032. (hasStyleBinding || styleProp.value.type === 4 && styleProp.value.content.trim()[0] === `[` || // v-bind:style and style both exist,
  5033. // v-bind:style with static literal object
  5034. styleProp.value.type === 17)) {
  5035. styleProp.value = createCallExpression(
  5036. context.helper(NORMALIZE_STYLE),
  5037. [styleProp.value]
  5038. );
  5039. }
  5040. } else {
  5041. propsExpression = createCallExpression(
  5042. context.helper(NORMALIZE_PROPS),
  5043. [propsExpression]
  5044. );
  5045. }
  5046. break;
  5047. case 14:
  5048. break;
  5049. default:
  5050. propsExpression = createCallExpression(
  5051. context.helper(NORMALIZE_PROPS),
  5052. [
  5053. createCallExpression(context.helper(GUARD_REACTIVE_PROPS), [
  5054. propsExpression
  5055. ])
  5056. ]
  5057. );
  5058. break;
  5059. }
  5060. }
  5061. return {
  5062. props: propsExpression,
  5063. directives: runtimeDirectives,
  5064. patchFlag,
  5065. dynamicPropNames,
  5066. shouldUseBlock
  5067. };
  5068. }
  5069. function dedupeProperties(properties) {
  5070. const knownProps = /* @__PURE__ */ new Map();
  5071. const deduped = [];
  5072. for (let i = 0; i < properties.length; i++) {
  5073. const prop = properties[i];
  5074. if (prop.key.type === 8 || !prop.key.isStatic) {
  5075. deduped.push(prop);
  5076. continue;
  5077. }
  5078. const name = prop.key.content;
  5079. const existing = knownProps.get(name);
  5080. if (existing) {
  5081. if (name === "style" || name === "class" || isOn(name)) {
  5082. mergeAsArray(existing, prop);
  5083. }
  5084. } else {
  5085. knownProps.set(name, prop);
  5086. deduped.push(prop);
  5087. }
  5088. }
  5089. return deduped;
  5090. }
  5091. function mergeAsArray(existing, incoming) {
  5092. if (existing.value.type === 17) {
  5093. existing.value.elements.push(incoming.value);
  5094. } else {
  5095. existing.value = createArrayExpression(
  5096. [existing.value, incoming.value],
  5097. existing.loc
  5098. );
  5099. }
  5100. }
  5101. function buildDirectiveArgs(dir, context) {
  5102. const dirArgs = [];
  5103. const runtime = directiveImportMap.get(dir);
  5104. if (runtime) {
  5105. dirArgs.push(context.helperString(runtime));
  5106. } else {
  5107. {
  5108. context.helper(RESOLVE_DIRECTIVE);
  5109. context.directives.add(dir.name);
  5110. dirArgs.push(toValidAssetId(dir.name, `directive`));
  5111. }
  5112. }
  5113. const { loc } = dir;
  5114. if (dir.exp)
  5115. dirArgs.push(dir.exp);
  5116. if (dir.arg) {
  5117. if (!dir.exp) {
  5118. dirArgs.push(`void 0`);
  5119. }
  5120. dirArgs.push(dir.arg);
  5121. }
  5122. if (Object.keys(dir.modifiers).length) {
  5123. if (!dir.arg) {
  5124. if (!dir.exp) {
  5125. dirArgs.push(`void 0`);
  5126. }
  5127. dirArgs.push(`void 0`);
  5128. }
  5129. const trueExpression = createSimpleExpression(`true`, false, loc);
  5130. dirArgs.push(
  5131. createObjectExpression(
  5132. dir.modifiers.map(
  5133. (modifier) => createObjectProperty(modifier, trueExpression)
  5134. ),
  5135. loc
  5136. )
  5137. );
  5138. }
  5139. return createArrayExpression(dirArgs, dir.loc);
  5140. }
  5141. function stringifyDynamicPropNames(props) {
  5142. let propsNamesString = `[`;
  5143. for (let i = 0, l = props.length; i < l; i++) {
  5144. propsNamesString += JSON.stringify(props[i]);
  5145. if (i < l - 1)
  5146. propsNamesString += ", ";
  5147. }
  5148. return propsNamesString + `]`;
  5149. }
  5150. function isComponentTag(tag) {
  5151. return tag === "component" || tag === "Component";
  5152. }
  5153. const transformSlotOutlet = (node, context) => {
  5154. if (isSlotOutlet(node)) {
  5155. const { children, loc } = node;
  5156. const { slotName, slotProps } = processSlotOutlet(node, context);
  5157. const slotArgs = [
  5158. context.prefixIdentifiers ? `_ctx.$slots` : `$slots`,
  5159. slotName,
  5160. "{}",
  5161. "undefined",
  5162. "true"
  5163. ];
  5164. let expectedLen = 2;
  5165. if (slotProps) {
  5166. slotArgs[2] = slotProps;
  5167. expectedLen = 3;
  5168. }
  5169. if (children.length) {
  5170. slotArgs[3] = createFunctionExpression([], children, false, false, loc);
  5171. expectedLen = 4;
  5172. }
  5173. if (context.scopeId && !context.slotted) {
  5174. expectedLen = 5;
  5175. }
  5176. slotArgs.splice(expectedLen);
  5177. node.codegenNode = createCallExpression(
  5178. context.helper(RENDER_SLOT),
  5179. slotArgs,
  5180. loc
  5181. );
  5182. }
  5183. };
  5184. function processSlotOutlet(node, context) {
  5185. let slotName = `"default"`;
  5186. let slotProps = void 0;
  5187. const nonNameProps = [];
  5188. for (let i = 0; i < node.props.length; i++) {
  5189. const p = node.props[i];
  5190. if (p.type === 6) {
  5191. if (p.value) {
  5192. if (p.name === "name") {
  5193. slotName = JSON.stringify(p.value.content);
  5194. } else {
  5195. p.name = camelize(p.name);
  5196. nonNameProps.push(p);
  5197. }
  5198. }
  5199. } else {
  5200. if (p.name === "bind" && isStaticArgOf(p.arg, "name")) {
  5201. if (p.exp) {
  5202. slotName = p.exp;
  5203. } else if (p.arg && p.arg.type === 4) {
  5204. const name = camelize(p.arg.content);
  5205. slotName = p.exp = createSimpleExpression(name, false, p.arg.loc);
  5206. }
  5207. } else {
  5208. if (p.name === "bind" && p.arg && isStaticExp(p.arg)) {
  5209. p.arg.content = camelize(p.arg.content);
  5210. }
  5211. nonNameProps.push(p);
  5212. }
  5213. }
  5214. }
  5215. if (nonNameProps.length > 0) {
  5216. const { props, directives } = buildProps(
  5217. node,
  5218. context,
  5219. nonNameProps,
  5220. false,
  5221. false
  5222. );
  5223. slotProps = props;
  5224. if (directives.length) {
  5225. context.onError(
  5226. createCompilerError(
  5227. 36,
  5228. directives[0].loc
  5229. )
  5230. );
  5231. }
  5232. }
  5233. return {
  5234. slotName,
  5235. slotProps
  5236. };
  5237. }
  5238. const fnExpRE = /^\s*(async\s*)?(\([^)]*?\)|[\w$_]+)\s*(:[^=]+)?=>|^\s*(async\s+)?function(?:\s+[\w$]+)?\s*\(/;
  5239. const transformOn$1 = (dir, node, context, augmentor) => {
  5240. const { loc, modifiers, arg } = dir;
  5241. if (!dir.exp && !modifiers.length) {
  5242. context.onError(createCompilerError(35, loc));
  5243. }
  5244. let eventName;
  5245. if (arg.type === 4) {
  5246. if (arg.isStatic) {
  5247. let rawName = arg.content;
  5248. if (rawName.startsWith("vnode")) {
  5249. context.onError(createCompilerError(51, arg.loc));
  5250. }
  5251. if (rawName.startsWith("vue:")) {
  5252. rawName = `vnode-${rawName.slice(4)}`;
  5253. }
  5254. const eventString = node.tagType !== 0 || rawName.startsWith("vnode") || !/[A-Z]/.test(rawName) ? (
  5255. // for non-element and vnode lifecycle event listeners, auto convert
  5256. // it to camelCase. See issue #2249
  5257. toHandlerKey(camelize(rawName))
  5258. ) : (
  5259. // preserve case for plain element listeners that have uppercase
  5260. // letters, as these may be custom elements' custom events
  5261. `on:${rawName}`
  5262. );
  5263. eventName = createSimpleExpression(eventString, true, arg.loc);
  5264. } else {
  5265. eventName = createCompoundExpression([
  5266. `${context.helperString(TO_HANDLER_KEY)}(`,
  5267. arg,
  5268. `)`
  5269. ]);
  5270. }
  5271. } else {
  5272. eventName = arg;
  5273. eventName.children.unshift(`${context.helperString(TO_HANDLER_KEY)}(`);
  5274. eventName.children.push(`)`);
  5275. }
  5276. let exp = dir.exp;
  5277. if (exp && !exp.content.trim()) {
  5278. exp = void 0;
  5279. }
  5280. let shouldCache = context.cacheHandlers && !exp && !context.inVOnce;
  5281. if (exp) {
  5282. const isMemberExp = isMemberExpression(exp.content);
  5283. const isInlineStatement = !(isMemberExp || fnExpRE.test(exp.content));
  5284. const hasMultipleStatements = exp.content.includes(`;`);
  5285. {
  5286. validateBrowserExpression(
  5287. exp,
  5288. context,
  5289. false,
  5290. hasMultipleStatements
  5291. );
  5292. }
  5293. if (isInlineStatement || shouldCache && isMemberExp) {
  5294. exp = createCompoundExpression([
  5295. `${isInlineStatement ? `$event` : `${``}(...args)`} => ${hasMultipleStatements ? `{` : `(`}`,
  5296. exp,
  5297. hasMultipleStatements ? `}` : `)`
  5298. ]);
  5299. }
  5300. }
  5301. let ret = {
  5302. props: [
  5303. createObjectProperty(
  5304. eventName,
  5305. exp || createSimpleExpression(`() => {}`, false, loc)
  5306. )
  5307. ]
  5308. };
  5309. if (augmentor) {
  5310. ret = augmentor(ret);
  5311. }
  5312. if (shouldCache) {
  5313. ret.props[0].value = context.cache(ret.props[0].value);
  5314. }
  5315. ret.props.forEach((p) => p.key.isHandlerKey = true);
  5316. return ret;
  5317. };
  5318. const transformBind = (dir, _node, context) => {
  5319. const { modifiers, loc } = dir;
  5320. const arg = dir.arg;
  5321. let { exp } = dir;
  5322. if (exp && exp.type === 4 && !exp.content.trim()) {
  5323. {
  5324. exp = void 0;
  5325. }
  5326. }
  5327. if (!exp) {
  5328. if (arg.type !== 4 || !arg.isStatic) {
  5329. context.onError(
  5330. createCompilerError(
  5331. 52,
  5332. arg.loc
  5333. )
  5334. );
  5335. return {
  5336. props: [
  5337. createObjectProperty(arg, createSimpleExpression("", true, loc))
  5338. ]
  5339. };
  5340. }
  5341. const propName = camelize(arg.content);
  5342. exp = dir.exp = createSimpleExpression(propName, false, arg.loc);
  5343. }
  5344. if (arg.type !== 4) {
  5345. arg.children.unshift(`(`);
  5346. arg.children.push(`) || ""`);
  5347. } else if (!arg.isStatic) {
  5348. arg.content = `${arg.content} || ""`;
  5349. }
  5350. if (modifiers.includes("camel")) {
  5351. if (arg.type === 4) {
  5352. if (arg.isStatic) {
  5353. arg.content = camelize(arg.content);
  5354. } else {
  5355. arg.content = `${context.helperString(CAMELIZE)}(${arg.content})`;
  5356. }
  5357. } else {
  5358. arg.children.unshift(`${context.helperString(CAMELIZE)}(`);
  5359. arg.children.push(`)`);
  5360. }
  5361. }
  5362. if (!context.inSSR) {
  5363. if (modifiers.includes("prop")) {
  5364. injectPrefix(arg, ".");
  5365. }
  5366. if (modifiers.includes("attr")) {
  5367. injectPrefix(arg, "^");
  5368. }
  5369. }
  5370. return {
  5371. props: [createObjectProperty(arg, exp)]
  5372. };
  5373. };
  5374. const injectPrefix = (arg, prefix) => {
  5375. if (arg.type === 4) {
  5376. if (arg.isStatic) {
  5377. arg.content = prefix + arg.content;
  5378. } else {
  5379. arg.content = `\`${prefix}\${${arg.content}}\``;
  5380. }
  5381. } else {
  5382. arg.children.unshift(`'${prefix}' + (`);
  5383. arg.children.push(`)`);
  5384. }
  5385. };
  5386. const transformText = (node, context) => {
  5387. if (node.type === 0 || node.type === 1 || node.type === 11 || node.type === 10) {
  5388. return () => {
  5389. const children = node.children;
  5390. let currentContainer = void 0;
  5391. let hasText = false;
  5392. for (let i = 0; i < children.length; i++) {
  5393. const child = children[i];
  5394. if (isText$1(child)) {
  5395. hasText = true;
  5396. for (let j = i + 1; j < children.length; j++) {
  5397. const next = children[j];
  5398. if (isText$1(next)) {
  5399. if (!currentContainer) {
  5400. currentContainer = children[i] = createCompoundExpression(
  5401. [child],
  5402. child.loc
  5403. );
  5404. }
  5405. currentContainer.children.push(` + `, next);
  5406. children.splice(j, 1);
  5407. j--;
  5408. } else {
  5409. currentContainer = void 0;
  5410. break;
  5411. }
  5412. }
  5413. }
  5414. }
  5415. if (!hasText || // if this is a plain element with a single text child, leave it
  5416. // as-is since the runtime has dedicated fast path for this by directly
  5417. // setting textContent of the element.
  5418. // for component root it's always normalized anyway.
  5419. children.length === 1 && (node.type === 0 || node.type === 1 && node.tagType === 0 && // #3756
  5420. // custom directives can potentially add DOM elements arbitrarily,
  5421. // we need to avoid setting textContent of the element at runtime
  5422. // to avoid accidentally overwriting the DOM elements added
  5423. // by the user through custom directives.
  5424. !node.props.find(
  5425. (p) => p.type === 7 && !context.directiveTransforms[p.name]
  5426. ) && // in compat mode, <template> tags with no special directives
  5427. // will be rendered as a fragment so its children must be
  5428. // converted into vnodes.
  5429. !(node.tag === "template"))) {
  5430. return;
  5431. }
  5432. for (let i = 0; i < children.length; i++) {
  5433. const child = children[i];
  5434. if (isText$1(child) || child.type === 8) {
  5435. const callArgs = [];
  5436. if (child.type !== 2 || child.content !== " ") {
  5437. callArgs.push(child);
  5438. }
  5439. if (!context.ssr && getConstantType(child, context) === 0) {
  5440. callArgs.push(
  5441. 1 + (` /* ${PatchFlagNames[1]} */` )
  5442. );
  5443. }
  5444. children[i] = {
  5445. type: 12,
  5446. content: child,
  5447. loc: child.loc,
  5448. codegenNode: createCallExpression(
  5449. context.helper(CREATE_TEXT),
  5450. callArgs
  5451. )
  5452. };
  5453. }
  5454. }
  5455. };
  5456. }
  5457. };
  5458. const seen$1 = /* @__PURE__ */ new WeakSet();
  5459. const transformOnce = (node, context) => {
  5460. if (node.type === 1 && findDir(node, "once", true)) {
  5461. if (seen$1.has(node) || context.inVOnce || context.inSSR) {
  5462. return;
  5463. }
  5464. seen$1.add(node);
  5465. context.inVOnce = true;
  5466. context.helper(SET_BLOCK_TRACKING);
  5467. return () => {
  5468. context.inVOnce = false;
  5469. const cur = context.currentNode;
  5470. if (cur.codegenNode) {
  5471. cur.codegenNode = context.cache(
  5472. cur.codegenNode,
  5473. true
  5474. /* isVNode */
  5475. );
  5476. }
  5477. };
  5478. }
  5479. };
  5480. const transformModel$1 = (dir, node, context) => {
  5481. const { exp, arg } = dir;
  5482. if (!exp) {
  5483. context.onError(
  5484. createCompilerError(41, dir.loc)
  5485. );
  5486. return createTransformProps();
  5487. }
  5488. const rawExp = exp.loc.source;
  5489. const expString = exp.type === 4 ? exp.content : rawExp;
  5490. const bindingType = context.bindingMetadata[rawExp];
  5491. if (bindingType === "props" || bindingType === "props-aliased") {
  5492. context.onError(createCompilerError(44, exp.loc));
  5493. return createTransformProps();
  5494. }
  5495. const maybeRef = false;
  5496. if (!expString.trim() || !isMemberExpression(expString) && !maybeRef) {
  5497. context.onError(
  5498. createCompilerError(42, exp.loc)
  5499. );
  5500. return createTransformProps();
  5501. }
  5502. const propName = arg ? arg : createSimpleExpression("modelValue", true);
  5503. const eventName = arg ? isStaticExp(arg) ? `onUpdate:${camelize(arg.content)}` : createCompoundExpression(['"onUpdate:" + ', arg]) : `onUpdate:modelValue`;
  5504. let assignmentExp;
  5505. const eventArg = context.isTS ? `($event: any)` : `$event`;
  5506. {
  5507. assignmentExp = createCompoundExpression([
  5508. `${eventArg} => ((`,
  5509. exp,
  5510. `) = $event)`
  5511. ]);
  5512. }
  5513. const props = [
  5514. // modelValue: foo
  5515. createObjectProperty(propName, dir.exp),
  5516. // "onUpdate:modelValue": $event => (foo = $event)
  5517. createObjectProperty(eventName, assignmentExp)
  5518. ];
  5519. if (dir.modifiers.length && node.tagType === 1) {
  5520. const modifiers = dir.modifiers.map((m) => (isSimpleIdentifier(m) ? m : JSON.stringify(m)) + `: true`).join(`, `);
  5521. const modifiersKey = arg ? isStaticExp(arg) ? `${arg.content}Modifiers` : createCompoundExpression([arg, ' + "Modifiers"']) : `modelModifiers`;
  5522. props.push(
  5523. createObjectProperty(
  5524. modifiersKey,
  5525. createSimpleExpression(
  5526. `{ ${modifiers} }`,
  5527. false,
  5528. dir.loc,
  5529. 2
  5530. )
  5531. )
  5532. );
  5533. }
  5534. return createTransformProps(props);
  5535. };
  5536. function createTransformProps(props = []) {
  5537. return { props };
  5538. }
  5539. const validDivisionCharRE = /[\w).+\-_$\]]/;
  5540. const transformFilter = (node, context) => {
  5541. if (!isCompatEnabled("COMPILER_FILTERS", context)) {
  5542. return;
  5543. }
  5544. if (node.type === 5) {
  5545. rewriteFilter(node.content, context);
  5546. }
  5547. if (node.type === 1) {
  5548. node.props.forEach((prop) => {
  5549. if (prop.type === 7 && prop.name !== "for" && prop.exp) {
  5550. rewriteFilter(prop.exp, context);
  5551. }
  5552. });
  5553. }
  5554. };
  5555. function rewriteFilter(node, context) {
  5556. if (node.type === 4) {
  5557. parseFilter(node, context);
  5558. } else {
  5559. for (let i = 0; i < node.children.length; i++) {
  5560. const child = node.children[i];
  5561. if (typeof child !== "object")
  5562. continue;
  5563. if (child.type === 4) {
  5564. parseFilter(child, context);
  5565. } else if (child.type === 8) {
  5566. rewriteFilter(node, context);
  5567. } else if (child.type === 5) {
  5568. rewriteFilter(child.content, context);
  5569. }
  5570. }
  5571. }
  5572. }
  5573. function parseFilter(node, context) {
  5574. const exp = node.content;
  5575. let inSingle = false;
  5576. let inDouble = false;
  5577. let inTemplateString = false;
  5578. let inRegex = false;
  5579. let curly = 0;
  5580. let square = 0;
  5581. let paren = 0;
  5582. let lastFilterIndex = 0;
  5583. let c, prev, i, expression, filters = [];
  5584. for (i = 0; i < exp.length; i++) {
  5585. prev = c;
  5586. c = exp.charCodeAt(i);
  5587. if (inSingle) {
  5588. if (c === 39 && prev !== 92)
  5589. inSingle = false;
  5590. } else if (inDouble) {
  5591. if (c === 34 && prev !== 92)
  5592. inDouble = false;
  5593. } else if (inTemplateString) {
  5594. if (c === 96 && prev !== 92)
  5595. inTemplateString = false;
  5596. } else if (inRegex) {
  5597. if (c === 47 && prev !== 92)
  5598. inRegex = false;
  5599. } else if (c === 124 && // pipe
  5600. exp.charCodeAt(i + 1) !== 124 && exp.charCodeAt(i - 1) !== 124 && !curly && !square && !paren) {
  5601. if (expression === void 0) {
  5602. lastFilterIndex = i + 1;
  5603. expression = exp.slice(0, i).trim();
  5604. } else {
  5605. pushFilter();
  5606. }
  5607. } else {
  5608. switch (c) {
  5609. case 34:
  5610. inDouble = true;
  5611. break;
  5612. case 39:
  5613. inSingle = true;
  5614. break;
  5615. case 96:
  5616. inTemplateString = true;
  5617. break;
  5618. case 40:
  5619. paren++;
  5620. break;
  5621. case 41:
  5622. paren--;
  5623. break;
  5624. case 91:
  5625. square++;
  5626. break;
  5627. case 93:
  5628. square--;
  5629. break;
  5630. case 123:
  5631. curly++;
  5632. break;
  5633. case 125:
  5634. curly--;
  5635. break;
  5636. }
  5637. if (c === 47) {
  5638. let j = i - 1;
  5639. let p;
  5640. for (; j >= 0; j--) {
  5641. p = exp.charAt(j);
  5642. if (p !== " ")
  5643. break;
  5644. }
  5645. if (!p || !validDivisionCharRE.test(p)) {
  5646. inRegex = true;
  5647. }
  5648. }
  5649. }
  5650. }
  5651. if (expression === void 0) {
  5652. expression = exp.slice(0, i).trim();
  5653. } else if (lastFilterIndex !== 0) {
  5654. pushFilter();
  5655. }
  5656. function pushFilter() {
  5657. filters.push(exp.slice(lastFilterIndex, i).trim());
  5658. lastFilterIndex = i + 1;
  5659. }
  5660. if (filters.length) {
  5661. warnDeprecation(
  5662. "COMPILER_FILTERS",
  5663. context,
  5664. node.loc
  5665. );
  5666. for (i = 0; i < filters.length; i++) {
  5667. expression = wrapFilter(expression, filters[i], context);
  5668. }
  5669. node.content = expression;
  5670. }
  5671. }
  5672. function wrapFilter(exp, filter, context) {
  5673. context.helper(RESOLVE_FILTER);
  5674. const i = filter.indexOf("(");
  5675. if (i < 0) {
  5676. context.filters.add(filter);
  5677. return `${toValidAssetId(filter, "filter")}(${exp})`;
  5678. } else {
  5679. const name = filter.slice(0, i);
  5680. const args = filter.slice(i + 1);
  5681. context.filters.add(name);
  5682. return `${toValidAssetId(name, "filter")}(${exp}${args !== ")" ? "," + args : args}`;
  5683. }
  5684. }
  5685. const seen = /* @__PURE__ */ new WeakSet();
  5686. const transformMemo = (node, context) => {
  5687. if (node.type === 1) {
  5688. const dir = findDir(node, "memo");
  5689. if (!dir || seen.has(node)) {
  5690. return;
  5691. }
  5692. seen.add(node);
  5693. return () => {
  5694. const codegenNode = node.codegenNode || context.currentNode.codegenNode;
  5695. if (codegenNode && codegenNode.type === 13) {
  5696. if (node.tagType !== 1) {
  5697. convertToBlock(codegenNode, context);
  5698. }
  5699. node.codegenNode = createCallExpression(context.helper(WITH_MEMO), [
  5700. dir.exp,
  5701. createFunctionExpression(void 0, codegenNode),
  5702. `_cache`,
  5703. String(context.cached++)
  5704. ]);
  5705. }
  5706. };
  5707. }
  5708. };
  5709. function getBaseTransformPreset(prefixIdentifiers) {
  5710. return [
  5711. [
  5712. transformOnce,
  5713. transformIf,
  5714. transformMemo,
  5715. transformFor,
  5716. ...[transformFilter] ,
  5717. ...[transformExpression] ,
  5718. transformSlotOutlet,
  5719. transformElement,
  5720. trackSlotScopes,
  5721. transformText
  5722. ],
  5723. {
  5724. on: transformOn$1,
  5725. bind: transformBind,
  5726. model: transformModel$1
  5727. }
  5728. ];
  5729. }
  5730. function baseCompile(source, options = {}) {
  5731. const onError = options.onError || defaultOnError;
  5732. const isModuleMode = options.mode === "module";
  5733. {
  5734. if (options.prefixIdentifiers === true) {
  5735. onError(createCompilerError(47));
  5736. } else if (isModuleMode) {
  5737. onError(createCompilerError(48));
  5738. }
  5739. }
  5740. const prefixIdentifiers = false;
  5741. if (options.cacheHandlers) {
  5742. onError(createCompilerError(49));
  5743. }
  5744. if (options.scopeId && !isModuleMode) {
  5745. onError(createCompilerError(50));
  5746. }
  5747. const resolvedOptions = extend({}, options, {
  5748. prefixIdentifiers
  5749. });
  5750. const ast = isString(source) ? baseParse(source, resolvedOptions) : source;
  5751. const [nodeTransforms, directiveTransforms] = getBaseTransformPreset();
  5752. transform(
  5753. ast,
  5754. extend({}, resolvedOptions, {
  5755. nodeTransforms: [
  5756. ...nodeTransforms,
  5757. ...options.nodeTransforms || []
  5758. // user transforms
  5759. ],
  5760. directiveTransforms: extend(
  5761. {},
  5762. directiveTransforms,
  5763. options.directiveTransforms || {}
  5764. // user transforms
  5765. )
  5766. })
  5767. );
  5768. return generate(ast, resolvedOptions);
  5769. }
  5770. const BindingTypes = {
  5771. "DATA": "data",
  5772. "PROPS": "props",
  5773. "PROPS_ALIASED": "props-aliased",
  5774. "SETUP_LET": "setup-let",
  5775. "SETUP_CONST": "setup-const",
  5776. "SETUP_REACTIVE_CONST": "setup-reactive-const",
  5777. "SETUP_MAYBE_REF": "setup-maybe-ref",
  5778. "SETUP_REF": "setup-ref",
  5779. "OPTIONS": "options",
  5780. "LITERAL_CONST": "literal-const"
  5781. };
  5782. const noopDirectiveTransform = () => ({ props: [] });
  5783. const V_MODEL_RADIO = Symbol(`vModelRadio` );
  5784. const V_MODEL_CHECKBOX = Symbol(`vModelCheckbox` );
  5785. const V_MODEL_TEXT = Symbol(`vModelText` );
  5786. const V_MODEL_SELECT = Symbol(`vModelSelect` );
  5787. const V_MODEL_DYNAMIC = Symbol(`vModelDynamic` );
  5788. const V_ON_WITH_MODIFIERS = Symbol(`vOnModifiersGuard` );
  5789. const V_ON_WITH_KEYS = Symbol(`vOnKeysGuard` );
  5790. const V_SHOW = Symbol(`vShow` );
  5791. const TRANSITION = Symbol(`Transition` );
  5792. const TRANSITION_GROUP = Symbol(`TransitionGroup` );
  5793. registerRuntimeHelpers({
  5794. [V_MODEL_RADIO]: `vModelRadio`,
  5795. [V_MODEL_CHECKBOX]: `vModelCheckbox`,
  5796. [V_MODEL_TEXT]: `vModelText`,
  5797. [V_MODEL_SELECT]: `vModelSelect`,
  5798. [V_MODEL_DYNAMIC]: `vModelDynamic`,
  5799. [V_ON_WITH_MODIFIERS]: `withModifiers`,
  5800. [V_ON_WITH_KEYS]: `withKeys`,
  5801. [V_SHOW]: `vShow`,
  5802. [TRANSITION]: `Transition`,
  5803. [TRANSITION_GROUP]: `TransitionGroup`
  5804. });
  5805. let decoder;
  5806. function decodeHtmlBrowser(raw, asAttr = false) {
  5807. if (!decoder) {
  5808. decoder = document.createElement("div");
  5809. }
  5810. if (asAttr) {
  5811. decoder.innerHTML = `<div foo="${raw.replace(/"/g, "&quot;")}">`;
  5812. return decoder.children[0].getAttribute("foo");
  5813. } else {
  5814. decoder.innerHTML = raw;
  5815. return decoder.textContent;
  5816. }
  5817. }
  5818. const parserOptions = {
  5819. parseMode: "html",
  5820. isVoidTag,
  5821. isNativeTag: (tag) => isHTMLTag(tag) || isSVGTag(tag) || isMathMLTag(tag),
  5822. isPreTag: (tag) => tag === "pre",
  5823. decodeEntities: decodeHtmlBrowser ,
  5824. isBuiltInComponent: (tag) => {
  5825. if (tag === "Transition" || tag === "transition") {
  5826. return TRANSITION;
  5827. } else if (tag === "TransitionGroup" || tag === "transition-group") {
  5828. return TRANSITION_GROUP;
  5829. }
  5830. },
  5831. // https://html.spec.whatwg.org/multipage/parsing.html#tree-construction-dispatcher
  5832. getNamespace(tag, parent, rootNamespace) {
  5833. let ns = parent ? parent.ns : rootNamespace;
  5834. if (parent && ns === 2) {
  5835. if (parent.tag === "annotation-xml") {
  5836. if (tag === "svg") {
  5837. return 1;
  5838. }
  5839. if (parent.props.some(
  5840. (a) => a.type === 6 && a.name === "encoding" && a.value != null && (a.value.content === "text/html" || a.value.content === "application/xhtml+xml")
  5841. )) {
  5842. ns = 0;
  5843. }
  5844. } else if (/^m(?:[ions]|text)$/.test(parent.tag) && tag !== "mglyph" && tag !== "malignmark") {
  5845. ns = 0;
  5846. }
  5847. } else if (parent && ns === 1) {
  5848. if (parent.tag === "foreignObject" || parent.tag === "desc" || parent.tag === "title") {
  5849. ns = 0;
  5850. }
  5851. }
  5852. if (ns === 0) {
  5853. if (tag === "svg") {
  5854. return 1;
  5855. }
  5856. if (tag === "math") {
  5857. return 2;
  5858. }
  5859. }
  5860. return ns;
  5861. }
  5862. };
  5863. const transformStyle = (node) => {
  5864. if (node.type === 1) {
  5865. node.props.forEach((p, i) => {
  5866. if (p.type === 6 && p.name === "style" && p.value) {
  5867. node.props[i] = {
  5868. type: 7,
  5869. name: `bind`,
  5870. arg: createSimpleExpression(`style`, true, p.loc),
  5871. exp: parseInlineCSS(p.value.content, p.loc),
  5872. modifiers: [],
  5873. loc: p.loc
  5874. };
  5875. }
  5876. });
  5877. }
  5878. };
  5879. const parseInlineCSS = (cssText, loc) => {
  5880. const normalized = parseStringStyle(cssText);
  5881. return createSimpleExpression(
  5882. JSON.stringify(normalized),
  5883. false,
  5884. loc,
  5885. 3
  5886. );
  5887. };
  5888. function createDOMCompilerError(code, loc) {
  5889. return createCompilerError(
  5890. code,
  5891. loc,
  5892. DOMErrorMessages
  5893. );
  5894. }
  5895. const DOMErrorCodes = {
  5896. "X_V_HTML_NO_EXPRESSION": 53,
  5897. "53": "X_V_HTML_NO_EXPRESSION",
  5898. "X_V_HTML_WITH_CHILDREN": 54,
  5899. "54": "X_V_HTML_WITH_CHILDREN",
  5900. "X_V_TEXT_NO_EXPRESSION": 55,
  5901. "55": "X_V_TEXT_NO_EXPRESSION",
  5902. "X_V_TEXT_WITH_CHILDREN": 56,
  5903. "56": "X_V_TEXT_WITH_CHILDREN",
  5904. "X_V_MODEL_ON_INVALID_ELEMENT": 57,
  5905. "57": "X_V_MODEL_ON_INVALID_ELEMENT",
  5906. "X_V_MODEL_ARG_ON_ELEMENT": 58,
  5907. "58": "X_V_MODEL_ARG_ON_ELEMENT",
  5908. "X_V_MODEL_ON_FILE_INPUT_ELEMENT": 59,
  5909. "59": "X_V_MODEL_ON_FILE_INPUT_ELEMENT",
  5910. "X_V_MODEL_UNNECESSARY_VALUE": 60,
  5911. "60": "X_V_MODEL_UNNECESSARY_VALUE",
  5912. "X_V_SHOW_NO_EXPRESSION": 61,
  5913. "61": "X_V_SHOW_NO_EXPRESSION",
  5914. "X_TRANSITION_INVALID_CHILDREN": 62,
  5915. "62": "X_TRANSITION_INVALID_CHILDREN",
  5916. "X_IGNORED_SIDE_EFFECT_TAG": 63,
  5917. "63": "X_IGNORED_SIDE_EFFECT_TAG",
  5918. "__EXTEND_POINT__": 64,
  5919. "64": "__EXTEND_POINT__"
  5920. };
  5921. const DOMErrorMessages = {
  5922. [53]: `v-html is missing expression.`,
  5923. [54]: `v-html will override element children.`,
  5924. [55]: `v-text is missing expression.`,
  5925. [56]: `v-text will override element children.`,
  5926. [57]: `v-model can only be used on <input>, <textarea> and <select> elements.`,
  5927. [58]: `v-model argument is not supported on plain elements.`,
  5928. [59]: `v-model cannot be used on file inputs since they are read-only. Use a v-on:change listener instead.`,
  5929. [60]: `Unnecessary value binding used alongside v-model. It will interfere with v-model's behavior.`,
  5930. [61]: `v-show is missing expression.`,
  5931. [62]: `<Transition> expects exactly one child element or component.`,
  5932. [63]: `Tags with side effect (<script> and <style>) are ignored in client component templates.`
  5933. };
  5934. const transformVHtml = (dir, node, context) => {
  5935. const { exp, loc } = dir;
  5936. if (!exp) {
  5937. context.onError(
  5938. createDOMCompilerError(53, loc)
  5939. );
  5940. }
  5941. if (node.children.length) {
  5942. context.onError(
  5943. createDOMCompilerError(54, loc)
  5944. );
  5945. node.children.length = 0;
  5946. }
  5947. return {
  5948. props: [
  5949. createObjectProperty(
  5950. createSimpleExpression(`innerHTML`, true, loc),
  5951. exp || createSimpleExpression("", true)
  5952. )
  5953. ]
  5954. };
  5955. };
  5956. const transformVText = (dir, node, context) => {
  5957. const { exp, loc } = dir;
  5958. if (!exp) {
  5959. context.onError(
  5960. createDOMCompilerError(55, loc)
  5961. );
  5962. }
  5963. if (node.children.length) {
  5964. context.onError(
  5965. createDOMCompilerError(56, loc)
  5966. );
  5967. node.children.length = 0;
  5968. }
  5969. return {
  5970. props: [
  5971. createObjectProperty(
  5972. createSimpleExpression(`textContent`, true),
  5973. exp ? getConstantType(exp, context) > 0 ? exp : createCallExpression(
  5974. context.helperString(TO_DISPLAY_STRING),
  5975. [exp],
  5976. loc
  5977. ) : createSimpleExpression("", true)
  5978. )
  5979. ]
  5980. };
  5981. };
  5982. const transformModel = (dir, node, context) => {
  5983. const baseResult = transformModel$1(dir, node, context);
  5984. if (!baseResult.props.length || node.tagType === 1) {
  5985. return baseResult;
  5986. }
  5987. if (dir.arg) {
  5988. context.onError(
  5989. createDOMCompilerError(
  5990. 58,
  5991. dir.arg.loc
  5992. )
  5993. );
  5994. }
  5995. function checkDuplicatedValue() {
  5996. const value = findDir(node, "bind");
  5997. if (value && isStaticArgOf(value.arg, "value")) {
  5998. context.onError(
  5999. createDOMCompilerError(
  6000. 60,
  6001. value.loc
  6002. )
  6003. );
  6004. }
  6005. }
  6006. const { tag } = node;
  6007. const isCustomElement = context.isCustomElement(tag);
  6008. if (tag === "input" || tag === "textarea" || tag === "select" || isCustomElement) {
  6009. let directiveToUse = V_MODEL_TEXT;
  6010. let isInvalidType = false;
  6011. if (tag === "input" || isCustomElement) {
  6012. const type = findProp(node, `type`);
  6013. if (type) {
  6014. if (type.type === 7) {
  6015. directiveToUse = V_MODEL_DYNAMIC;
  6016. } else if (type.value) {
  6017. switch (type.value.content) {
  6018. case "radio":
  6019. directiveToUse = V_MODEL_RADIO;
  6020. break;
  6021. case "checkbox":
  6022. directiveToUse = V_MODEL_CHECKBOX;
  6023. break;
  6024. case "file":
  6025. isInvalidType = true;
  6026. context.onError(
  6027. createDOMCompilerError(
  6028. 59,
  6029. dir.loc
  6030. )
  6031. );
  6032. break;
  6033. default:
  6034. checkDuplicatedValue();
  6035. break;
  6036. }
  6037. }
  6038. } else if (hasDynamicKeyVBind(node)) {
  6039. directiveToUse = V_MODEL_DYNAMIC;
  6040. } else {
  6041. checkDuplicatedValue();
  6042. }
  6043. } else if (tag === "select") {
  6044. directiveToUse = V_MODEL_SELECT;
  6045. } else {
  6046. checkDuplicatedValue();
  6047. }
  6048. if (!isInvalidType) {
  6049. baseResult.needRuntime = context.helper(directiveToUse);
  6050. }
  6051. } else {
  6052. context.onError(
  6053. createDOMCompilerError(
  6054. 57,
  6055. dir.loc
  6056. )
  6057. );
  6058. }
  6059. baseResult.props = baseResult.props.filter(
  6060. (p) => !(p.key.type === 4 && p.key.content === "modelValue")
  6061. );
  6062. return baseResult;
  6063. };
  6064. const isEventOptionModifier = /* @__PURE__ */ makeMap(`passive,once,capture`);
  6065. const isNonKeyModifier = /* @__PURE__ */ makeMap(
  6066. // event propagation management
  6067. `stop,prevent,self,ctrl,shift,alt,meta,exact,middle`
  6068. );
  6069. const maybeKeyModifier = /* @__PURE__ */ makeMap("left,right");
  6070. const isKeyboardEvent = /* @__PURE__ */ makeMap(
  6071. `onkeyup,onkeydown,onkeypress`,
  6072. true
  6073. );
  6074. const resolveModifiers = (key, modifiers, context, loc) => {
  6075. const keyModifiers = [];
  6076. const nonKeyModifiers = [];
  6077. const eventOptionModifiers = [];
  6078. for (let i = 0; i < modifiers.length; i++) {
  6079. const modifier = modifiers[i];
  6080. if (modifier === "native" && checkCompatEnabled(
  6081. "COMPILER_V_ON_NATIVE",
  6082. context,
  6083. loc
  6084. )) {
  6085. eventOptionModifiers.push(modifier);
  6086. } else if (isEventOptionModifier(modifier)) {
  6087. eventOptionModifiers.push(modifier);
  6088. } else {
  6089. if (maybeKeyModifier(modifier)) {
  6090. if (isStaticExp(key)) {
  6091. if (isKeyboardEvent(key.content)) {
  6092. keyModifiers.push(modifier);
  6093. } else {
  6094. nonKeyModifiers.push(modifier);
  6095. }
  6096. } else {
  6097. keyModifiers.push(modifier);
  6098. nonKeyModifiers.push(modifier);
  6099. }
  6100. } else {
  6101. if (isNonKeyModifier(modifier)) {
  6102. nonKeyModifiers.push(modifier);
  6103. } else {
  6104. keyModifiers.push(modifier);
  6105. }
  6106. }
  6107. }
  6108. }
  6109. return {
  6110. keyModifiers,
  6111. nonKeyModifiers,
  6112. eventOptionModifiers
  6113. };
  6114. };
  6115. const transformClick = (key, event) => {
  6116. const isStaticClick = isStaticExp(key) && key.content.toLowerCase() === "onclick";
  6117. return isStaticClick ? createSimpleExpression(event, true) : key.type !== 4 ? createCompoundExpression([
  6118. `(`,
  6119. key,
  6120. `) === "onClick" ? "${event}" : (`,
  6121. key,
  6122. `)`
  6123. ]) : key;
  6124. };
  6125. const transformOn = (dir, node, context) => {
  6126. return transformOn$1(dir, node, context, (baseResult) => {
  6127. const { modifiers } = dir;
  6128. if (!modifiers.length)
  6129. return baseResult;
  6130. let { key, value: handlerExp } = baseResult.props[0];
  6131. const { keyModifiers, nonKeyModifiers, eventOptionModifiers } = resolveModifiers(key, modifiers, context, dir.loc);
  6132. if (nonKeyModifiers.includes("right")) {
  6133. key = transformClick(key, `onContextmenu`);
  6134. }
  6135. if (nonKeyModifiers.includes("middle")) {
  6136. key = transformClick(key, `onMouseup`);
  6137. }
  6138. if (nonKeyModifiers.length) {
  6139. handlerExp = createCallExpression(context.helper(V_ON_WITH_MODIFIERS), [
  6140. handlerExp,
  6141. JSON.stringify(nonKeyModifiers)
  6142. ]);
  6143. }
  6144. if (keyModifiers.length && // if event name is dynamic, always wrap with keys guard
  6145. (!isStaticExp(key) || isKeyboardEvent(key.content))) {
  6146. handlerExp = createCallExpression(context.helper(V_ON_WITH_KEYS), [
  6147. handlerExp,
  6148. JSON.stringify(keyModifiers)
  6149. ]);
  6150. }
  6151. if (eventOptionModifiers.length) {
  6152. const modifierPostfix = eventOptionModifiers.map(capitalize).join("");
  6153. key = isStaticExp(key) ? createSimpleExpression(`${key.content}${modifierPostfix}`, true) : createCompoundExpression([`(`, key, `) + "${modifierPostfix}"`]);
  6154. }
  6155. return {
  6156. props: [createObjectProperty(key, handlerExp)]
  6157. };
  6158. });
  6159. };
  6160. const transformShow = (dir, node, context) => {
  6161. const { exp, loc } = dir;
  6162. if (!exp) {
  6163. context.onError(
  6164. createDOMCompilerError(61, loc)
  6165. );
  6166. }
  6167. return {
  6168. props: [],
  6169. needRuntime: context.helper(V_SHOW)
  6170. };
  6171. };
  6172. const transformTransition = (node, context) => {
  6173. if (node.type === 1 && node.tagType === 1) {
  6174. const component = context.isBuiltInComponent(node.tag);
  6175. if (component === TRANSITION) {
  6176. return () => {
  6177. if (!node.children.length) {
  6178. return;
  6179. }
  6180. if (hasMultipleChildren(node)) {
  6181. context.onError(
  6182. createDOMCompilerError(
  6183. 62,
  6184. {
  6185. start: node.children[0].loc.start,
  6186. end: node.children[node.children.length - 1].loc.end,
  6187. source: ""
  6188. }
  6189. )
  6190. );
  6191. }
  6192. const child = node.children[0];
  6193. if (child.type === 1) {
  6194. for (const p of child.props) {
  6195. if (p.type === 7 && p.name === "show") {
  6196. node.props.push({
  6197. type: 6,
  6198. name: "persisted",
  6199. nameLoc: node.loc,
  6200. value: void 0,
  6201. loc: node.loc
  6202. });
  6203. }
  6204. }
  6205. }
  6206. };
  6207. }
  6208. }
  6209. };
  6210. function hasMultipleChildren(node) {
  6211. const children = node.children = node.children.filter(
  6212. (c) => c.type !== 3 && !(c.type === 2 && !c.content.trim())
  6213. );
  6214. const child = children[0];
  6215. return children.length !== 1 || child.type === 11 || child.type === 9 && child.branches.some(hasMultipleChildren);
  6216. }
  6217. const ignoreSideEffectTags = (node, context) => {
  6218. if (node.type === 1 && node.tagType === 0 && (node.tag === "script" || node.tag === "style")) {
  6219. context.onError(
  6220. createDOMCompilerError(
  6221. 63,
  6222. node.loc
  6223. )
  6224. );
  6225. context.removeNode();
  6226. }
  6227. };
  6228. const DOMNodeTransforms = [
  6229. transformStyle,
  6230. ...[transformTransition]
  6231. ];
  6232. const DOMDirectiveTransforms = {
  6233. cloak: noopDirectiveTransform,
  6234. html: transformVHtml,
  6235. text: transformVText,
  6236. model: transformModel,
  6237. // override compiler-core
  6238. on: transformOn,
  6239. // override compiler-core
  6240. show: transformShow
  6241. };
  6242. function compile(src, options = {}) {
  6243. return baseCompile(
  6244. src,
  6245. extend({}, parserOptions, options, {
  6246. nodeTransforms: [
  6247. // ignore <script> and <tag>
  6248. // this is not put inside DOMNodeTransforms because that list is used
  6249. // by compiler-ssr to generate vnode fallback branches
  6250. ignoreSideEffectTags,
  6251. ...DOMNodeTransforms,
  6252. ...options.nodeTransforms || []
  6253. ],
  6254. directiveTransforms: extend(
  6255. {},
  6256. DOMDirectiveTransforms,
  6257. options.directiveTransforms || {}
  6258. ),
  6259. transformHoist: null
  6260. })
  6261. );
  6262. }
  6263. function parse(template, options = {}) {
  6264. return baseParse(template, extend({}, parserOptions, options));
  6265. }
  6266. exports.BASE_TRANSITION = BASE_TRANSITION;
  6267. exports.BindingTypes = BindingTypes;
  6268. exports.CAMELIZE = CAMELIZE;
  6269. exports.CAPITALIZE = CAPITALIZE;
  6270. exports.CREATE_BLOCK = CREATE_BLOCK;
  6271. exports.CREATE_COMMENT = CREATE_COMMENT;
  6272. exports.CREATE_ELEMENT_BLOCK = CREATE_ELEMENT_BLOCK;
  6273. exports.CREATE_ELEMENT_VNODE = CREATE_ELEMENT_VNODE;
  6274. exports.CREATE_SLOTS = CREATE_SLOTS;
  6275. exports.CREATE_STATIC = CREATE_STATIC;
  6276. exports.CREATE_TEXT = CREATE_TEXT;
  6277. exports.CREATE_VNODE = CREATE_VNODE;
  6278. exports.CompilerDeprecationTypes = CompilerDeprecationTypes;
  6279. exports.ConstantTypes = ConstantTypes;
  6280. exports.DOMDirectiveTransforms = DOMDirectiveTransforms;
  6281. exports.DOMErrorCodes = DOMErrorCodes;
  6282. exports.DOMErrorMessages = DOMErrorMessages;
  6283. exports.DOMNodeTransforms = DOMNodeTransforms;
  6284. exports.ElementTypes = ElementTypes;
  6285. exports.ErrorCodes = ErrorCodes;
  6286. exports.FRAGMENT = FRAGMENT;
  6287. exports.GUARD_REACTIVE_PROPS = GUARD_REACTIVE_PROPS;
  6288. exports.IS_MEMO_SAME = IS_MEMO_SAME;
  6289. exports.IS_REF = IS_REF;
  6290. exports.KEEP_ALIVE = KEEP_ALIVE;
  6291. exports.MERGE_PROPS = MERGE_PROPS;
  6292. exports.NORMALIZE_CLASS = NORMALIZE_CLASS;
  6293. exports.NORMALIZE_PROPS = NORMALIZE_PROPS;
  6294. exports.NORMALIZE_STYLE = NORMALIZE_STYLE;
  6295. exports.Namespaces = Namespaces;
  6296. exports.NodeTypes = NodeTypes;
  6297. exports.OPEN_BLOCK = OPEN_BLOCK;
  6298. exports.POP_SCOPE_ID = POP_SCOPE_ID;
  6299. exports.PUSH_SCOPE_ID = PUSH_SCOPE_ID;
  6300. exports.RENDER_LIST = RENDER_LIST;
  6301. exports.RENDER_SLOT = RENDER_SLOT;
  6302. exports.RESOLVE_COMPONENT = RESOLVE_COMPONENT;
  6303. exports.RESOLVE_DIRECTIVE = RESOLVE_DIRECTIVE;
  6304. exports.RESOLVE_DYNAMIC_COMPONENT = RESOLVE_DYNAMIC_COMPONENT;
  6305. exports.RESOLVE_FILTER = RESOLVE_FILTER;
  6306. exports.SET_BLOCK_TRACKING = SET_BLOCK_TRACKING;
  6307. exports.SUSPENSE = SUSPENSE;
  6308. exports.TELEPORT = TELEPORT;
  6309. exports.TO_DISPLAY_STRING = TO_DISPLAY_STRING;
  6310. exports.TO_HANDLERS = TO_HANDLERS;
  6311. exports.TO_HANDLER_KEY = TO_HANDLER_KEY;
  6312. exports.TRANSITION = TRANSITION;
  6313. exports.TRANSITION_GROUP = TRANSITION_GROUP;
  6314. exports.TS_NODE_TYPES = TS_NODE_TYPES;
  6315. exports.UNREF = UNREF;
  6316. exports.V_MODEL_CHECKBOX = V_MODEL_CHECKBOX;
  6317. exports.V_MODEL_DYNAMIC = V_MODEL_DYNAMIC;
  6318. exports.V_MODEL_RADIO = V_MODEL_RADIO;
  6319. exports.V_MODEL_SELECT = V_MODEL_SELECT;
  6320. exports.V_MODEL_TEXT = V_MODEL_TEXT;
  6321. exports.V_ON_WITH_KEYS = V_ON_WITH_KEYS;
  6322. exports.V_ON_WITH_MODIFIERS = V_ON_WITH_MODIFIERS;
  6323. exports.V_SHOW = V_SHOW;
  6324. exports.WITH_CTX = WITH_CTX;
  6325. exports.WITH_DIRECTIVES = WITH_DIRECTIVES;
  6326. exports.WITH_MEMO = WITH_MEMO;
  6327. exports.advancePositionWithClone = advancePositionWithClone;
  6328. exports.advancePositionWithMutation = advancePositionWithMutation;
  6329. exports.assert = assert;
  6330. exports.baseCompile = baseCompile;
  6331. exports.baseParse = baseParse;
  6332. exports.buildDirectiveArgs = buildDirectiveArgs;
  6333. exports.buildProps = buildProps;
  6334. exports.buildSlots = buildSlots;
  6335. exports.checkCompatEnabled = checkCompatEnabled;
  6336. exports.compile = compile;
  6337. exports.convertToBlock = convertToBlock;
  6338. exports.createArrayExpression = createArrayExpression;
  6339. exports.createAssignmentExpression = createAssignmentExpression;
  6340. exports.createBlockStatement = createBlockStatement;
  6341. exports.createCacheExpression = createCacheExpression;
  6342. exports.createCallExpression = createCallExpression;
  6343. exports.createCompilerError = createCompilerError;
  6344. exports.createCompoundExpression = createCompoundExpression;
  6345. exports.createConditionalExpression = createConditionalExpression;
  6346. exports.createDOMCompilerError = createDOMCompilerError;
  6347. exports.createForLoopParams = createForLoopParams;
  6348. exports.createFunctionExpression = createFunctionExpression;
  6349. exports.createIfStatement = createIfStatement;
  6350. exports.createInterpolation = createInterpolation;
  6351. exports.createObjectExpression = createObjectExpression;
  6352. exports.createObjectProperty = createObjectProperty;
  6353. exports.createReturnStatement = createReturnStatement;
  6354. exports.createRoot = createRoot;
  6355. exports.createSequenceExpression = createSequenceExpression;
  6356. exports.createSimpleExpression = createSimpleExpression;
  6357. exports.createStructuralDirectiveTransform = createStructuralDirectiveTransform;
  6358. exports.createTemplateLiteral = createTemplateLiteral;
  6359. exports.createTransformContext = createTransformContext;
  6360. exports.createVNodeCall = createVNodeCall;
  6361. exports.errorMessages = errorMessages;
  6362. exports.extractIdentifiers = extractIdentifiers;
  6363. exports.findDir = findDir;
  6364. exports.findProp = findProp;
  6365. exports.forAliasRE = forAliasRE;
  6366. exports.generate = generate;
  6367. exports.generateCodeFrame = generateCodeFrame;
  6368. exports.getBaseTransformPreset = getBaseTransformPreset;
  6369. exports.getConstantType = getConstantType;
  6370. exports.getMemoedVNodeCall = getMemoedVNodeCall;
  6371. exports.getVNodeBlockHelper = getVNodeBlockHelper;
  6372. exports.getVNodeHelper = getVNodeHelper;
  6373. exports.hasDynamicKeyVBind = hasDynamicKeyVBind;
  6374. exports.hasScopeRef = hasScopeRef;
  6375. exports.helperNameMap = helperNameMap;
  6376. exports.injectProp = injectProp;
  6377. exports.isCoreComponent = isCoreComponent;
  6378. exports.isFunctionType = isFunctionType;
  6379. exports.isInDestructureAssignment = isInDestructureAssignment;
  6380. exports.isInNewExpression = isInNewExpression;
  6381. exports.isMemberExpression = isMemberExpression;
  6382. exports.isMemberExpressionBrowser = isMemberExpressionBrowser;
  6383. exports.isMemberExpressionNode = isMemberExpressionNode;
  6384. exports.isReferencedIdentifier = isReferencedIdentifier;
  6385. exports.isSimpleIdentifier = isSimpleIdentifier;
  6386. exports.isSlotOutlet = isSlotOutlet;
  6387. exports.isStaticArgOf = isStaticArgOf;
  6388. exports.isStaticExp = isStaticExp;
  6389. exports.isStaticProperty = isStaticProperty;
  6390. exports.isStaticPropertyKey = isStaticPropertyKey;
  6391. exports.isTemplateNode = isTemplateNode;
  6392. exports.isText = isText$1;
  6393. exports.isVSlot = isVSlot;
  6394. exports.locStub = locStub;
  6395. exports.noopDirectiveTransform = noopDirectiveTransform;
  6396. exports.parse = parse;
  6397. exports.parserOptions = parserOptions;
  6398. exports.processExpression = processExpression;
  6399. exports.processFor = processFor;
  6400. exports.processIf = processIf;
  6401. exports.processSlotOutlet = processSlotOutlet;
  6402. exports.registerRuntimeHelpers = registerRuntimeHelpers;
  6403. exports.resolveComponentType = resolveComponentType;
  6404. exports.stringifyExpression = stringifyExpression;
  6405. exports.toValidAssetId = toValidAssetId;
  6406. exports.trackSlotScopes = trackSlotScopes;
  6407. exports.trackVForSlotScopes = trackVForSlotScopes;
  6408. exports.transform = transform;
  6409. exports.transformBind = transformBind;
  6410. exports.transformElement = transformElement;
  6411. exports.transformExpression = transformExpression;
  6412. exports.transformModel = transformModel$1;
  6413. exports.transformOn = transformOn$1;
  6414. exports.transformStyle = transformStyle;
  6415. exports.traverseNode = traverseNode;
  6416. exports.unwrapTSNode = unwrapTSNode;
  6417. exports.walkBlockDeclarations = walkBlockDeclarations;
  6418. exports.walkFunctionParams = walkFunctionParams;
  6419. exports.walkIdentifiers = walkIdentifiers;
  6420. exports.warnDeprecation = warnDeprecation;
  6421. return exports;
  6422. })({});