parser_tests.lua 207 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318
  1. local global_helpers = require('test.helpers')
  2. local REMOVE_THIS = global_helpers.REMOVE_THIS
  3. return function(itp, _check_parsing, hl, fmtn)
  4. local function check_parsing(...)
  5. return _check_parsing({flags={0, 1, 2, 3}, funcname='check_parsing'}, ...)
  6. end
  7. local function check_asgn_parsing(...)
  8. return _check_parsing({
  9. flags={4, 5, 6, 7},
  10. funcname='check_asgn_parsing',
  11. }, ...)
  12. end
  13. itp('works with + and @a', function()
  14. check_parsing('@a', {
  15. ast = {
  16. 'Register(name=a):0:0:@a',
  17. },
  18. }, {
  19. hl('Register', '@a'),
  20. })
  21. check_parsing('+@a', {
  22. ast = {
  23. {
  24. 'UnaryPlus:0:0:+',
  25. children = {
  26. 'Register(name=a):0:1:@a',
  27. },
  28. },
  29. },
  30. }, {
  31. hl('UnaryPlus', '+'),
  32. hl('Register', '@a'),
  33. })
  34. check_parsing('@a+@b', {
  35. ast = {
  36. {
  37. 'BinaryPlus:0:2:+',
  38. children = {
  39. 'Register(name=a):0:0:@a',
  40. 'Register(name=b):0:3:@b',
  41. },
  42. },
  43. },
  44. }, {
  45. hl('Register', '@a'),
  46. hl('BinaryPlus', '+'),
  47. hl('Register', '@b'),
  48. })
  49. check_parsing('@a+@b+@c', {
  50. ast = {
  51. {
  52. 'BinaryPlus:0:5:+',
  53. children = {
  54. {
  55. 'BinaryPlus:0:2:+',
  56. children = {
  57. 'Register(name=a):0:0:@a',
  58. 'Register(name=b):0:3:@b',
  59. },
  60. },
  61. 'Register(name=c):0:6:@c',
  62. },
  63. },
  64. },
  65. }, {
  66. hl('Register', '@a'),
  67. hl('BinaryPlus', '+'),
  68. hl('Register', '@b'),
  69. hl('BinaryPlus', '+'),
  70. hl('Register', '@c'),
  71. })
  72. check_parsing('+@a+@b', {
  73. ast = {
  74. {
  75. 'BinaryPlus:0:3:+',
  76. children = {
  77. {
  78. 'UnaryPlus:0:0:+',
  79. children = {
  80. 'Register(name=a):0:1:@a',
  81. },
  82. },
  83. 'Register(name=b):0:4:@b',
  84. },
  85. },
  86. },
  87. }, {
  88. hl('UnaryPlus', '+'),
  89. hl('Register', '@a'),
  90. hl('BinaryPlus', '+'),
  91. hl('Register', '@b'),
  92. })
  93. check_parsing('+@a++@b', {
  94. ast = {
  95. {
  96. 'BinaryPlus:0:3:+',
  97. children = {
  98. {
  99. 'UnaryPlus:0:0:+',
  100. children = {
  101. 'Register(name=a):0:1:@a',
  102. },
  103. },
  104. {
  105. 'UnaryPlus:0:4:+',
  106. children = {
  107. 'Register(name=b):0:5:@b',
  108. },
  109. },
  110. },
  111. },
  112. },
  113. }, {
  114. hl('UnaryPlus', '+'),
  115. hl('Register', '@a'),
  116. hl('BinaryPlus', '+'),
  117. hl('UnaryPlus', '+'),
  118. hl('Register', '@b'),
  119. })
  120. check_parsing('@a@b', {
  121. ast = {
  122. {
  123. 'OpMissing:0:2:',
  124. children = {
  125. 'Register(name=a):0:0:@a',
  126. 'Register(name=b):0:2:@b',
  127. },
  128. },
  129. },
  130. err = {
  131. arg = '@b',
  132. msg = 'E15: Missing operator: %.*s',
  133. },
  134. }, {
  135. hl('Register', '@a'),
  136. hl('InvalidRegister', '@b'),
  137. }, {
  138. [1] = {
  139. ast = {
  140. len = 2,
  141. err = REMOVE_THIS,
  142. ast = {
  143. 'Register(name=a):0:0:@a'
  144. },
  145. },
  146. hl_fs = {
  147. [2] = REMOVE_THIS,
  148. },
  149. },
  150. })
  151. check_parsing(' @a \t @b', {
  152. ast = {
  153. {
  154. 'OpMissing:0:3:',
  155. children = {
  156. 'Register(name=a):0:0: @a',
  157. 'Register(name=b):0:3: \t @b',
  158. },
  159. },
  160. },
  161. err = {
  162. arg = '@b',
  163. msg = 'E15: Missing operator: %.*s',
  164. },
  165. }, {
  166. hl('Register', '@a', 1),
  167. hl('InvalidSpacing', ' \t '),
  168. hl('Register', '@b'),
  169. }, {
  170. [1] = {
  171. ast = {
  172. len = 6,
  173. err = REMOVE_THIS,
  174. ast = {
  175. 'Register(name=a):0:0: @a'
  176. },
  177. },
  178. hl_fs = {
  179. [2] = REMOVE_THIS,
  180. [3] = REMOVE_THIS,
  181. },
  182. },
  183. })
  184. check_parsing('+', {
  185. ast = {
  186. 'UnaryPlus:0:0:+',
  187. },
  188. err = {
  189. arg = '',
  190. msg = 'E15: Expected value, got EOC: %.*s',
  191. },
  192. }, {
  193. hl('UnaryPlus', '+'),
  194. })
  195. check_parsing(' +', {
  196. ast = {
  197. 'UnaryPlus:0:0: +',
  198. },
  199. err = {
  200. arg = '',
  201. msg = 'E15: Expected value, got EOC: %.*s',
  202. },
  203. }, {
  204. hl('UnaryPlus', '+', 1),
  205. })
  206. check_parsing('@a+ ', {
  207. ast = {
  208. {
  209. 'BinaryPlus:0:2:+',
  210. children = {
  211. 'Register(name=a):0:0:@a',
  212. },
  213. },
  214. },
  215. err = {
  216. arg = '',
  217. msg = 'E15: Expected value, got EOC: %.*s',
  218. },
  219. }, {
  220. hl('Register', '@a'),
  221. hl('BinaryPlus', '+'),
  222. })
  223. end)
  224. itp('works with @a, + and parenthesis', function()
  225. check_parsing('(@a)', {
  226. ast = {
  227. {
  228. 'Nested:0:0:(',
  229. children = {
  230. 'Register(name=a):0:1:@a',
  231. },
  232. },
  233. },
  234. }, {
  235. hl('NestingParenthesis', '('),
  236. hl('Register', '@a'),
  237. hl('NestingParenthesis', ')'),
  238. })
  239. check_parsing('()', {
  240. ast = {
  241. {
  242. 'Nested:0:0:(',
  243. children = {
  244. 'Missing:0:1:',
  245. },
  246. },
  247. },
  248. err = {
  249. arg = ')',
  250. msg = 'E15: Expected value, got parenthesis: %.*s',
  251. },
  252. }, {
  253. hl('NestingParenthesis', '('),
  254. hl('InvalidNestingParenthesis', ')'),
  255. })
  256. check_parsing(')', {
  257. ast = {
  258. {
  259. 'Nested:0:0:',
  260. children = {
  261. 'Missing:0:0:',
  262. },
  263. },
  264. },
  265. err = {
  266. arg = ')',
  267. msg = 'E15: Expected value, got parenthesis: %.*s',
  268. },
  269. }, {
  270. hl('InvalidNestingParenthesis', ')'),
  271. })
  272. check_parsing('+)', {
  273. ast = {
  274. {
  275. 'Nested:0:1:',
  276. children = {
  277. {
  278. 'UnaryPlus:0:0:+',
  279. children = {
  280. 'Missing:0:1:',
  281. },
  282. },
  283. },
  284. },
  285. },
  286. err = {
  287. arg = ')',
  288. msg = 'E15: Expected value, got parenthesis: %.*s',
  289. },
  290. }, {
  291. hl('UnaryPlus', '+'),
  292. hl('InvalidNestingParenthesis', ')'),
  293. })
  294. check_parsing('+@a(@b)', {
  295. ast = {
  296. {
  297. 'UnaryPlus:0:0:+',
  298. children = {
  299. {
  300. 'Call:0:3:(',
  301. children = {
  302. 'Register(name=a):0:1:@a',
  303. 'Register(name=b):0:4:@b',
  304. },
  305. },
  306. },
  307. },
  308. },
  309. }, {
  310. hl('UnaryPlus', '+'),
  311. hl('Register', '@a'),
  312. hl('CallingParenthesis', '('),
  313. hl('Register', '@b'),
  314. hl('CallingParenthesis', ')'),
  315. })
  316. check_parsing('@a+@b(@c)', {
  317. ast = {
  318. {
  319. 'BinaryPlus:0:2:+',
  320. children = {
  321. 'Register(name=a):0:0:@a',
  322. {
  323. 'Call:0:5:(',
  324. children = {
  325. 'Register(name=b):0:3:@b',
  326. 'Register(name=c):0:6:@c',
  327. },
  328. },
  329. },
  330. },
  331. },
  332. }, {
  333. hl('Register', '@a'),
  334. hl('BinaryPlus', '+'),
  335. hl('Register', '@b'),
  336. hl('CallingParenthesis', '('),
  337. hl('Register', '@c'),
  338. hl('CallingParenthesis', ')'),
  339. })
  340. check_parsing('@a()', {
  341. ast = {
  342. {
  343. 'Call:0:2:(',
  344. children = {
  345. 'Register(name=a):0:0:@a',
  346. },
  347. },
  348. },
  349. }, {
  350. hl('Register', '@a'),
  351. hl('CallingParenthesis', '('),
  352. hl('CallingParenthesis', ')'),
  353. })
  354. check_parsing('@a ()', {
  355. ast = {
  356. {
  357. 'OpMissing:0:2:',
  358. children = {
  359. 'Register(name=a):0:0:@a',
  360. {
  361. 'Nested:0:2: (',
  362. children = {
  363. 'Missing:0:4:',
  364. },
  365. },
  366. },
  367. },
  368. },
  369. err = {
  370. arg = '()',
  371. msg = 'E15: Missing operator: %.*s',
  372. },
  373. }, {
  374. hl('Register', '@a'),
  375. hl('InvalidSpacing', ' '),
  376. hl('NestingParenthesis', '('),
  377. hl('InvalidNestingParenthesis', ')'),
  378. }, {
  379. [1] = {
  380. ast = {
  381. len = 3,
  382. err = REMOVE_THIS,
  383. ast = {
  384. 'Register(name=a):0:0:@a',
  385. },
  386. },
  387. hl_fs = {
  388. [2] = REMOVE_THIS,
  389. [3] = REMOVE_THIS,
  390. [4] = REMOVE_THIS,
  391. },
  392. },
  393. })
  394. check_parsing('@a + (@b)', {
  395. ast = {
  396. {
  397. 'BinaryPlus:0:2: +',
  398. children = {
  399. 'Register(name=a):0:0:@a',
  400. {
  401. 'Nested:0:4: (',
  402. children = {
  403. 'Register(name=b):0:6:@b',
  404. },
  405. },
  406. },
  407. },
  408. },
  409. }, {
  410. hl('Register', '@a'),
  411. hl('BinaryPlus', '+', 1),
  412. hl('NestingParenthesis', '(', 1),
  413. hl('Register', '@b'),
  414. hl('NestingParenthesis', ')'),
  415. })
  416. check_parsing('@a + (+@b)', {
  417. ast = {
  418. {
  419. 'BinaryPlus:0:2: +',
  420. children = {
  421. 'Register(name=a):0:0:@a',
  422. {
  423. 'Nested:0:4: (',
  424. children = {
  425. {
  426. 'UnaryPlus:0:6:+',
  427. children = {
  428. 'Register(name=b):0:7:@b',
  429. },
  430. },
  431. },
  432. },
  433. },
  434. },
  435. },
  436. }, {
  437. hl('Register', '@a'),
  438. hl('BinaryPlus', '+', 1),
  439. hl('NestingParenthesis', '(', 1),
  440. hl('UnaryPlus', '+'),
  441. hl('Register', '@b'),
  442. hl('NestingParenthesis', ')'),
  443. })
  444. check_parsing('@a + (@b + @c)', {
  445. ast = {
  446. {
  447. 'BinaryPlus:0:2: +',
  448. children = {
  449. 'Register(name=a):0:0:@a',
  450. {
  451. 'Nested:0:4: (',
  452. children = {
  453. {
  454. 'BinaryPlus:0:8: +',
  455. children = {
  456. 'Register(name=b):0:6:@b',
  457. 'Register(name=c):0:10: @c',
  458. },
  459. },
  460. },
  461. },
  462. },
  463. },
  464. },
  465. }, {
  466. hl('Register', '@a'),
  467. hl('BinaryPlus', '+', 1),
  468. hl('NestingParenthesis', '(', 1),
  469. hl('Register', '@b'),
  470. hl('BinaryPlus', '+', 1),
  471. hl('Register', '@c', 1),
  472. hl('NestingParenthesis', ')'),
  473. })
  474. check_parsing('(@a)+@b', {
  475. ast = {
  476. {
  477. 'BinaryPlus:0:4:+',
  478. children = {
  479. {
  480. 'Nested:0:0:(',
  481. children = {
  482. 'Register(name=a):0:1:@a',
  483. },
  484. },
  485. 'Register(name=b):0:5:@b',
  486. },
  487. },
  488. },
  489. }, {
  490. hl('NestingParenthesis', '('),
  491. hl('Register', '@a'),
  492. hl('NestingParenthesis', ')'),
  493. hl('BinaryPlus', '+'),
  494. hl('Register', '@b'),
  495. })
  496. check_parsing('@a+(@b)(@c)', {
  497. -- 01234567890
  498. ast = {
  499. {
  500. 'BinaryPlus:0:2:+',
  501. children = {
  502. 'Register(name=a):0:0:@a',
  503. {
  504. 'Call:0:7:(',
  505. children = {
  506. {
  507. 'Nested:0:3:(',
  508. children = { 'Register(name=b):0:4:@b' },
  509. },
  510. 'Register(name=c):0:8:@c',
  511. },
  512. },
  513. },
  514. },
  515. },
  516. }, {
  517. hl('Register', '@a'),
  518. hl('BinaryPlus', '+'),
  519. hl('NestingParenthesis', '('),
  520. hl('Register', '@b'),
  521. hl('NestingParenthesis', ')'),
  522. hl('CallingParenthesis', '('),
  523. hl('Register', '@c'),
  524. hl('CallingParenthesis', ')'),
  525. })
  526. check_parsing('@a+((@b))(@c)', {
  527. -- 01234567890123456890123456789
  528. -- 0 1 2
  529. ast = {
  530. {
  531. 'BinaryPlus:0:2:+',
  532. children = {
  533. 'Register(name=a):0:0:@a',
  534. {
  535. 'Call:0:9:(',
  536. children = {
  537. {
  538. 'Nested:0:3:(',
  539. children = {
  540. {
  541. 'Nested:0:4:(',
  542. children = { 'Register(name=b):0:5:@b' }
  543. },
  544. },
  545. },
  546. 'Register(name=c):0:10:@c',
  547. },
  548. },
  549. },
  550. },
  551. },
  552. }, {
  553. hl('Register', '@a'),
  554. hl('BinaryPlus', '+'),
  555. hl('NestingParenthesis', '('),
  556. hl('NestingParenthesis', '('),
  557. hl('Register', '@b'),
  558. hl('NestingParenthesis', ')'),
  559. hl('NestingParenthesis', ')'),
  560. hl('CallingParenthesis', '('),
  561. hl('Register', '@c'),
  562. hl('CallingParenthesis', ')'),
  563. })
  564. check_parsing('@a+((@b))+@c', {
  565. -- 01234567890123456890123456789
  566. -- 0 1 2
  567. ast = {
  568. {
  569. 'BinaryPlus:0:9:+',
  570. children = {
  571. {
  572. 'BinaryPlus:0:2:+',
  573. children = {
  574. 'Register(name=a):0:0:@a',
  575. {
  576. 'Nested:0:3:(',
  577. children = {
  578. {
  579. 'Nested:0:4:(',
  580. children = { 'Register(name=b):0:5:@b' }
  581. },
  582. },
  583. },
  584. },
  585. },
  586. 'Register(name=c):0:10:@c',
  587. },
  588. },
  589. },
  590. }, {
  591. hl('Register', '@a'),
  592. hl('BinaryPlus', '+'),
  593. hl('NestingParenthesis', '('),
  594. hl('NestingParenthesis', '('),
  595. hl('Register', '@b'),
  596. hl('NestingParenthesis', ')'),
  597. hl('NestingParenthesis', ')'),
  598. hl('BinaryPlus', '+'),
  599. hl('Register', '@c'),
  600. })
  601. check_parsing(
  602. '@a + (@b + @c) + @d(@e) + (+@f) + ((+@g(@h))(@j)(@k))(@l)', {--[[
  603. | | | | | | | | || | | || | | ||| || || || ||
  604. 000000000011111111112222222222333333333344444444445555555
  605. 012345678901234567890123456789012345678901234567890123456
  606. ]]
  607. ast = {{
  608. 'BinaryPlus:0:31: +',
  609. children = {
  610. {
  611. 'BinaryPlus:0:23: +',
  612. children = {
  613. {
  614. 'BinaryPlus:0:14: +',
  615. children = {
  616. {
  617. 'BinaryPlus:0:2: +',
  618. children = {
  619. 'Register(name=a):0:0:@a',
  620. {
  621. 'Nested:0:4: (',
  622. children = {
  623. {
  624. 'BinaryPlus:0:8: +',
  625. children = {
  626. 'Register(name=b):0:6:@b',
  627. 'Register(name=c):0:10: @c',
  628. },
  629. },
  630. },
  631. },
  632. },
  633. },
  634. {
  635. 'Call:0:19:(',
  636. children = {
  637. 'Register(name=d):0:16: @d',
  638. 'Register(name=e):0:20:@e',
  639. },
  640. },
  641. },
  642. },
  643. {
  644. 'Nested:0:25: (',
  645. children = {
  646. {
  647. 'UnaryPlus:0:27:+',
  648. children = {
  649. 'Register(name=f):0:28:@f',
  650. },
  651. },
  652. },
  653. },
  654. },
  655. },
  656. {
  657. 'Call:0:53:(',
  658. children = {
  659. {
  660. 'Nested:0:33: (',
  661. children = {
  662. {
  663. 'Call:0:48:(',
  664. children = {
  665. {
  666. 'Call:0:44:(',
  667. children = {
  668. {
  669. 'Nested:0:35:(',
  670. children = {
  671. {
  672. 'UnaryPlus:0:36:+',
  673. children = {
  674. {
  675. 'Call:0:39:(',
  676. children = {
  677. 'Register(name=g):0:37:@g',
  678. 'Register(name=h):0:40:@h',
  679. },
  680. },
  681. },
  682. },
  683. },
  684. },
  685. 'Register(name=j):0:45:@j',
  686. },
  687. },
  688. 'Register(name=k):0:49:@k',
  689. },
  690. },
  691. },
  692. },
  693. 'Register(name=l):0:54:@l',
  694. },
  695. },
  696. },
  697. }},
  698. }, {
  699. hl('Register', '@a'),
  700. hl('BinaryPlus', '+', 1),
  701. hl('NestingParenthesis', '(', 1),
  702. hl('Register', '@b'),
  703. hl('BinaryPlus', '+', 1),
  704. hl('Register', '@c', 1),
  705. hl('NestingParenthesis', ')'),
  706. hl('BinaryPlus', '+', 1),
  707. hl('Register', '@d', 1),
  708. hl('CallingParenthesis', '('),
  709. hl('Register', '@e'),
  710. hl('CallingParenthesis', ')'),
  711. hl('BinaryPlus', '+', 1),
  712. hl('NestingParenthesis', '(', 1),
  713. hl('UnaryPlus', '+'),
  714. hl('Register', '@f'),
  715. hl('NestingParenthesis', ')'),
  716. hl('BinaryPlus', '+', 1),
  717. hl('NestingParenthesis', '(', 1),
  718. hl('NestingParenthesis', '('),
  719. hl('UnaryPlus', '+'),
  720. hl('Register', '@g'),
  721. hl('CallingParenthesis', '('),
  722. hl('Register', '@h'),
  723. hl('CallingParenthesis', ')'),
  724. hl('NestingParenthesis', ')'),
  725. hl('CallingParenthesis', '('),
  726. hl('Register', '@j'),
  727. hl('CallingParenthesis', ')'),
  728. hl('CallingParenthesis', '('),
  729. hl('Register', '@k'),
  730. hl('CallingParenthesis', ')'),
  731. hl('NestingParenthesis', ')'),
  732. hl('CallingParenthesis', '('),
  733. hl('Register', '@l'),
  734. hl('CallingParenthesis', ')'),
  735. })
  736. check_parsing('@a)', {
  737. -- 012
  738. ast = {
  739. {
  740. 'Nested:0:2:',
  741. children = {
  742. 'Register(name=a):0:0:@a',
  743. },
  744. },
  745. },
  746. err = {
  747. arg = ')',
  748. msg = 'E15: Unexpected closing parenthesis: %.*s',
  749. },
  750. }, {
  751. hl('Register', '@a'),
  752. hl('InvalidNestingParenthesis', ')'),
  753. })
  754. check_parsing('(@a', {
  755. -- 012
  756. ast = {
  757. {
  758. 'Nested:0:0:(',
  759. children = {
  760. 'Register(name=a):0:1:@a',
  761. },
  762. },
  763. },
  764. err = {
  765. arg = '(@a',
  766. msg = 'E110: Missing closing parenthesis for nested expression: %.*s',
  767. },
  768. }, {
  769. hl('NestingParenthesis', '('),
  770. hl('Register', '@a'),
  771. })
  772. check_parsing('@a(@b', {
  773. -- 01234
  774. ast = {
  775. {
  776. 'Call:0:2:(',
  777. children = {
  778. 'Register(name=a):0:0:@a',
  779. 'Register(name=b):0:3:@b',
  780. },
  781. },
  782. },
  783. err = {
  784. arg = '(@b',
  785. msg = 'E116: Missing closing parenthesis for function call: %.*s',
  786. },
  787. }, {
  788. hl('Register', '@a'),
  789. hl('CallingParenthesis', '('),
  790. hl('Register', '@b'),
  791. })
  792. check_parsing('@a(@b, @c, @d, @e)', {
  793. -- 012345678901234567
  794. -- 0 1
  795. ast = {
  796. {
  797. 'Call:0:2:(',
  798. children = {
  799. 'Register(name=a):0:0:@a',
  800. {
  801. 'Comma:0:5:,',
  802. children = {
  803. 'Register(name=b):0:3:@b',
  804. {
  805. 'Comma:0:9:,',
  806. children = {
  807. 'Register(name=c):0:6: @c',
  808. {
  809. 'Comma:0:13:,',
  810. children = {
  811. 'Register(name=d):0:10: @d',
  812. 'Register(name=e):0:14: @e',
  813. },
  814. },
  815. },
  816. },
  817. },
  818. },
  819. },
  820. },
  821. },
  822. }, {
  823. hl('Register', '@a'),
  824. hl('CallingParenthesis', '('),
  825. hl('Register', '@b'),
  826. hl('Comma', ','),
  827. hl('Register', '@c', 1),
  828. hl('Comma', ','),
  829. hl('Register', '@d', 1),
  830. hl('Comma', ','),
  831. hl('Register', '@e', 1),
  832. hl('CallingParenthesis', ')'),
  833. })
  834. check_parsing('@a(@b(@c))', {
  835. -- 01234567890123456789012345678901234567
  836. -- 0 1 2 3
  837. ast = {
  838. {
  839. 'Call:0:2:(',
  840. children = {
  841. 'Register(name=a):0:0:@a',
  842. {
  843. 'Call:0:5:(',
  844. children = {
  845. 'Register(name=b):0:3:@b',
  846. 'Register(name=c):0:6:@c',
  847. },
  848. },
  849. },
  850. },
  851. },
  852. }, {
  853. hl('Register', '@a'),
  854. hl('CallingParenthesis', '('),
  855. hl('Register', '@b'),
  856. hl('CallingParenthesis', '('),
  857. hl('Register', '@c'),
  858. hl('CallingParenthesis', ')'),
  859. hl('CallingParenthesis', ')'),
  860. })
  861. check_parsing('@a(@b(@c(@d(@e), @f(@g(@h), @i(@j)))))', {
  862. -- 01234567890123456789012345678901234567
  863. -- 0 1 2 3
  864. ast = {
  865. {
  866. 'Call:0:2:(',
  867. children = {
  868. 'Register(name=a):0:0:@a',
  869. {
  870. 'Call:0:5:(',
  871. children = {
  872. 'Register(name=b):0:3:@b',
  873. {
  874. 'Call:0:8:(',
  875. children = {
  876. 'Register(name=c):0:6:@c',
  877. {
  878. 'Comma:0:15:,',
  879. children = {
  880. {
  881. 'Call:0:11:(',
  882. children = {
  883. 'Register(name=d):0:9:@d',
  884. 'Register(name=e):0:12:@e',
  885. },
  886. },
  887. {
  888. 'Call:0:19:(',
  889. children = {
  890. 'Register(name=f):0:16: @f',
  891. {
  892. 'Comma:0:26:,',
  893. children = {
  894. {
  895. 'Call:0:22:(',
  896. children = {
  897. 'Register(name=g):0:20:@g',
  898. 'Register(name=h):0:23:@h',
  899. },
  900. },
  901. {
  902. 'Call:0:30:(',
  903. children = {
  904. 'Register(name=i):0:27: @i',
  905. 'Register(name=j):0:31:@j',
  906. },
  907. },
  908. },
  909. },
  910. },
  911. },
  912. },
  913. },
  914. },
  915. },
  916. },
  917. },
  918. },
  919. },
  920. },
  921. }, {
  922. hl('Register', '@a'),
  923. hl('CallingParenthesis', '('),
  924. hl('Register', '@b'),
  925. hl('CallingParenthesis', '('),
  926. hl('Register', '@c'),
  927. hl('CallingParenthesis', '('),
  928. hl('Register', '@d'),
  929. hl('CallingParenthesis', '('),
  930. hl('Register', '@e'),
  931. hl('CallingParenthesis', ')'),
  932. hl('Comma', ','),
  933. hl('Register', '@f', 1),
  934. hl('CallingParenthesis', '('),
  935. hl('Register', '@g'),
  936. hl('CallingParenthesis', '('),
  937. hl('Register', '@h'),
  938. hl('CallingParenthesis', ')'),
  939. hl('Comma', ','),
  940. hl('Register', '@i', 1),
  941. hl('CallingParenthesis', '('),
  942. hl('Register', '@j'),
  943. hl('CallingParenthesis', ')'),
  944. hl('CallingParenthesis', ')'),
  945. hl('CallingParenthesis', ')'),
  946. hl('CallingParenthesis', ')'),
  947. hl('CallingParenthesis', ')'),
  948. })
  949. check_parsing('()()', {
  950. -- 0123
  951. ast = {
  952. {
  953. 'Call:0:2:(',
  954. children = {
  955. {
  956. 'Nested:0:0:(',
  957. children = {
  958. 'Missing:0:1:',
  959. },
  960. },
  961. },
  962. },
  963. },
  964. err = {
  965. arg = ')()',
  966. msg = 'E15: Expected value, got parenthesis: %.*s',
  967. },
  968. }, {
  969. hl('NestingParenthesis', '('),
  970. hl('InvalidNestingParenthesis', ')'),
  971. hl('CallingParenthesis', '('),
  972. hl('CallingParenthesis', ')'),
  973. })
  974. check_parsing('(@a)()', {
  975. -- 012345
  976. ast = {
  977. {
  978. 'Call:0:4:(',
  979. children = {
  980. {
  981. 'Nested:0:0:(',
  982. children = {
  983. 'Register(name=a):0:1:@a',
  984. },
  985. },
  986. },
  987. },
  988. },
  989. }, {
  990. hl('NestingParenthesis', '('),
  991. hl('Register', '@a'),
  992. hl('NestingParenthesis', ')'),
  993. hl('CallingParenthesis', '('),
  994. hl('CallingParenthesis', ')'),
  995. })
  996. check_parsing('(@a)(@b)', {
  997. -- 01234567
  998. ast = {
  999. {
  1000. 'Call:0:4:(',
  1001. children = {
  1002. {
  1003. 'Nested:0:0:(',
  1004. children = {
  1005. 'Register(name=a):0:1:@a',
  1006. },
  1007. },
  1008. 'Register(name=b):0:5:@b',
  1009. },
  1010. },
  1011. },
  1012. }, {
  1013. hl('NestingParenthesis', '('),
  1014. hl('Register', '@a'),
  1015. hl('NestingParenthesis', ')'),
  1016. hl('CallingParenthesis', '('),
  1017. hl('Register', '@b'),
  1018. hl('CallingParenthesis', ')'),
  1019. })
  1020. check_parsing('(@a) (@b)', {
  1021. -- 012345678
  1022. ast = {
  1023. {
  1024. 'OpMissing:0:4:',
  1025. children = {
  1026. {
  1027. 'Nested:0:0:(',
  1028. children = {
  1029. 'Register(name=a):0:1:@a',
  1030. },
  1031. },
  1032. {
  1033. 'Nested:0:4: (',
  1034. children = {
  1035. 'Register(name=b):0:6:@b',
  1036. },
  1037. },
  1038. },
  1039. },
  1040. },
  1041. err = {
  1042. arg = '(@b)',
  1043. msg = 'E15: Missing operator: %.*s',
  1044. },
  1045. }, {
  1046. hl('NestingParenthesis', '('),
  1047. hl('Register', '@a'),
  1048. hl('NestingParenthesis', ')'),
  1049. hl('InvalidSpacing', ' '),
  1050. hl('NestingParenthesis', '('),
  1051. hl('Register', '@b'),
  1052. hl('NestingParenthesis', ')'),
  1053. }, {
  1054. [1] = {
  1055. ast = {
  1056. len = 5,
  1057. ast = {
  1058. {
  1059. 'Nested:0:0:(',
  1060. children = {
  1061. 'Register(name=a):0:1:@a',
  1062. REMOVE_THIS,
  1063. },
  1064. },
  1065. },
  1066. err = REMOVE_THIS,
  1067. },
  1068. hl_fs = {
  1069. [4] = REMOVE_THIS,
  1070. [5] = REMOVE_THIS,
  1071. [6] = REMOVE_THIS,
  1072. [7] = REMOVE_THIS,
  1073. },
  1074. },
  1075. })
  1076. end)
  1077. itp('works with variable names, including curly braces ones', function()
  1078. check_parsing('var', {
  1079. ast = {
  1080. 'PlainIdentifier(scope=0,ident=var):0:0:var',
  1081. },
  1082. }, {
  1083. hl('IdentifierName', 'var'),
  1084. })
  1085. check_parsing('g:var', {
  1086. ast = {
  1087. 'PlainIdentifier(scope=g,ident=var):0:0:g:var',
  1088. },
  1089. }, {
  1090. hl('IdentifierScope', 'g'),
  1091. hl('IdentifierScopeDelimiter', ':'),
  1092. hl('IdentifierName', 'var'),
  1093. })
  1094. check_parsing('g:', {
  1095. ast = {
  1096. 'PlainIdentifier(scope=g,ident=):0:0:g:',
  1097. },
  1098. }, {
  1099. hl('IdentifierScope', 'g'),
  1100. hl('IdentifierScopeDelimiter', ':'),
  1101. })
  1102. check_parsing('{a}', {
  1103. -- 012
  1104. ast = {
  1105. {
  1106. fmtn('CurlyBracesIdentifier', '-di', ':0:0:{'),
  1107. children = {
  1108. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  1109. },
  1110. },
  1111. },
  1112. }, {
  1113. hl('Curly', '{'),
  1114. hl('IdentifierName', 'a'),
  1115. hl('Curly', '}'),
  1116. })
  1117. check_parsing('{a:b}', {
  1118. -- 012
  1119. ast = {
  1120. {
  1121. fmtn('CurlyBracesIdentifier', '-di', ':0:0:{'),
  1122. children = {
  1123. 'PlainIdentifier(scope=a,ident=b):0:1:a:b',
  1124. },
  1125. },
  1126. },
  1127. }, {
  1128. hl('Curly', '{'),
  1129. hl('IdentifierScope', 'a'),
  1130. hl('IdentifierScopeDelimiter', ':'),
  1131. hl('IdentifierName', 'b'),
  1132. hl('Curly', '}'),
  1133. })
  1134. check_parsing('{a:@b}', {
  1135. -- 012345
  1136. ast = {
  1137. {
  1138. fmtn('CurlyBracesIdentifier', '-di', ':0:0:{'),
  1139. children = {
  1140. {
  1141. 'OpMissing:0:3:',
  1142. children={
  1143. 'PlainIdentifier(scope=a,ident=):0:1:a:',
  1144. 'Register(name=b):0:3:@b',
  1145. },
  1146. },
  1147. },
  1148. },
  1149. },
  1150. err = {
  1151. arg = '@b}',
  1152. msg = 'E15: Missing operator: %.*s',
  1153. },
  1154. }, {
  1155. hl('Curly', '{'),
  1156. hl('IdentifierScope', 'a'),
  1157. hl('IdentifierScopeDelimiter', ':'),
  1158. hl('InvalidRegister', '@b'),
  1159. hl('Curly', '}'),
  1160. })
  1161. check_parsing('{@a}', {
  1162. ast = {
  1163. {
  1164. fmtn('CurlyBracesIdentifier', '-di', ':0:0:{'),
  1165. children = {
  1166. 'Register(name=a):0:1:@a',
  1167. },
  1168. },
  1169. },
  1170. }, {
  1171. hl('Curly', '{'),
  1172. hl('Register', '@a'),
  1173. hl('Curly', '}'),
  1174. })
  1175. check_parsing('{@a}{@b}', {
  1176. -- 01234567
  1177. ast = {
  1178. {
  1179. 'ComplexIdentifier:0:4:',
  1180. children = {
  1181. {
  1182. fmtn('CurlyBracesIdentifier', '-di', ':0:0:{'),
  1183. children = {
  1184. 'Register(name=a):0:1:@a',
  1185. },
  1186. },
  1187. {
  1188. fmtn('CurlyBracesIdentifier', '--i', ':0:4:{'),
  1189. children = {
  1190. 'Register(name=b):0:5:@b',
  1191. },
  1192. },
  1193. },
  1194. },
  1195. },
  1196. }, {
  1197. hl('Curly', '{'),
  1198. hl('Register', '@a'),
  1199. hl('Curly', '}'),
  1200. hl('Curly', '{'),
  1201. hl('Register', '@b'),
  1202. hl('Curly', '}'),
  1203. })
  1204. check_parsing('g:{@a}', {
  1205. -- 01234567
  1206. ast = {
  1207. {
  1208. 'ComplexIdentifier:0:2:',
  1209. children = {
  1210. 'PlainIdentifier(scope=g,ident=):0:0:g:',
  1211. {
  1212. fmtn('CurlyBracesIdentifier', '--i', ':0:2:{'),
  1213. children = {
  1214. 'Register(name=a):0:3:@a',
  1215. },
  1216. },
  1217. },
  1218. },
  1219. },
  1220. }, {
  1221. hl('IdentifierScope', 'g'),
  1222. hl('IdentifierScopeDelimiter', ':'),
  1223. hl('Curly', '{'),
  1224. hl('Register', '@a'),
  1225. hl('Curly', '}'),
  1226. })
  1227. check_parsing('{@a}_test', {
  1228. -- 012345678
  1229. ast = {
  1230. {
  1231. 'ComplexIdentifier:0:4:',
  1232. children = {
  1233. {
  1234. fmtn('CurlyBracesIdentifier', '-di', ':0:0:{'),
  1235. children = {
  1236. 'Register(name=a):0:1:@a',
  1237. },
  1238. },
  1239. 'PlainIdentifier(scope=0,ident=_test):0:4:_test',
  1240. },
  1241. },
  1242. },
  1243. }, {
  1244. hl('Curly', '{'),
  1245. hl('Register', '@a'),
  1246. hl('Curly', '}'),
  1247. hl('IdentifierName', '_test'),
  1248. })
  1249. check_parsing('g:{@a}_test', {
  1250. -- 01234567890
  1251. ast = {
  1252. {
  1253. 'ComplexIdentifier:0:2:',
  1254. children = {
  1255. 'PlainIdentifier(scope=g,ident=):0:0:g:',
  1256. {
  1257. 'ComplexIdentifier:0:6:',
  1258. children = {
  1259. {
  1260. fmtn('CurlyBracesIdentifier', '--i', ':0:2:{'),
  1261. children = {
  1262. 'Register(name=a):0:3:@a',
  1263. },
  1264. },
  1265. 'PlainIdentifier(scope=0,ident=_test):0:6:_test',
  1266. },
  1267. },
  1268. },
  1269. },
  1270. },
  1271. }, {
  1272. hl('IdentifierScope', 'g'),
  1273. hl('IdentifierScopeDelimiter', ':'),
  1274. hl('Curly', '{'),
  1275. hl('Register', '@a'),
  1276. hl('Curly', '}'),
  1277. hl('IdentifierName', '_test'),
  1278. })
  1279. check_parsing('g:{@a}_test()', {
  1280. -- 0123456789012
  1281. ast = {
  1282. {
  1283. 'Call:0:11:(',
  1284. children = {
  1285. {
  1286. 'ComplexIdentifier:0:2:',
  1287. children = {
  1288. 'PlainIdentifier(scope=g,ident=):0:0:g:',
  1289. {
  1290. 'ComplexIdentifier:0:6:',
  1291. children = {
  1292. {
  1293. fmtn('CurlyBracesIdentifier', '--i', ':0:2:{'),
  1294. children = {
  1295. 'Register(name=a):0:3:@a',
  1296. },
  1297. },
  1298. 'PlainIdentifier(scope=0,ident=_test):0:6:_test',
  1299. },
  1300. },
  1301. },
  1302. },
  1303. },
  1304. },
  1305. },
  1306. }, {
  1307. hl('IdentifierScope', 'g'),
  1308. hl('IdentifierScopeDelimiter', ':'),
  1309. hl('Curly', '{'),
  1310. hl('Register', '@a'),
  1311. hl('Curly', '}'),
  1312. hl('IdentifierName', '_test'),
  1313. hl('CallingParenthesis', '('),
  1314. hl('CallingParenthesis', ')'),
  1315. })
  1316. check_parsing('{@a} ()', {
  1317. -- 0123456789012
  1318. ast = {
  1319. {
  1320. 'Call:0:4: (',
  1321. children = {
  1322. {
  1323. fmtn('CurlyBracesIdentifier', '-di', ':0:0:{'),
  1324. children = {
  1325. 'Register(name=a):0:1:@a',
  1326. },
  1327. },
  1328. },
  1329. },
  1330. },
  1331. }, {
  1332. hl('Curly', '{'),
  1333. hl('Register', '@a'),
  1334. hl('Curly', '}'),
  1335. hl('CallingParenthesis', '(', 1),
  1336. hl('CallingParenthesis', ')'),
  1337. })
  1338. check_parsing('g:{@a} ()', {
  1339. -- 0123456789012
  1340. ast = {
  1341. {
  1342. 'Call:0:6: (',
  1343. children = {
  1344. {
  1345. 'ComplexIdentifier:0:2:',
  1346. children = {
  1347. 'PlainIdentifier(scope=g,ident=):0:0:g:',
  1348. {
  1349. fmtn('CurlyBracesIdentifier', '--i', ':0:2:{'),
  1350. children = {
  1351. 'Register(name=a):0:3:@a',
  1352. },
  1353. },
  1354. },
  1355. },
  1356. },
  1357. },
  1358. },
  1359. }, {
  1360. hl('IdentifierScope', 'g'),
  1361. hl('IdentifierScopeDelimiter', ':'),
  1362. hl('Curly', '{'),
  1363. hl('Register', '@a'),
  1364. hl('Curly', '}'),
  1365. hl('CallingParenthesis', '(', 1),
  1366. hl('CallingParenthesis', ')'),
  1367. })
  1368. check_parsing('{@a', {
  1369. -- 012
  1370. ast = {
  1371. {
  1372. fmtn('UnknownFigure', '-di', ':0:0:{'),
  1373. children = {
  1374. 'Register(name=a):0:1:@a',
  1375. },
  1376. },
  1377. },
  1378. err = {
  1379. arg = '{@a',
  1380. msg = 'E15: Missing closing figure brace: %.*s',
  1381. },
  1382. }, {
  1383. hl('FigureBrace', '{'),
  1384. hl('Register', '@a'),
  1385. })
  1386. check_parsing('a ()', {
  1387. -- 0123
  1388. ast = {
  1389. {
  1390. 'Call:0:1: (',
  1391. children = {
  1392. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  1393. },
  1394. },
  1395. },
  1396. }, {
  1397. hl('IdentifierName', 'a'),
  1398. hl('CallingParenthesis', '(', 1),
  1399. hl('CallingParenthesis', ')'),
  1400. })
  1401. end)
  1402. itp('works with lambdas and dictionaries', function()
  1403. check_parsing('{}', {
  1404. ast = {
  1405. fmtn('DictLiteral', '-di', ':0:0:{'),
  1406. },
  1407. }, {
  1408. hl('Dict', '{'),
  1409. hl('Dict', '}'),
  1410. })
  1411. check_parsing('{->@a}', {
  1412. ast = {
  1413. {
  1414. fmtn('Lambda', '\\di', ':0:0:{'),
  1415. children = {
  1416. {
  1417. 'Arrow:0:1:->',
  1418. children = {
  1419. 'Register(name=a):0:3:@a',
  1420. },
  1421. },
  1422. },
  1423. },
  1424. },
  1425. }, {
  1426. hl('Lambda', '{'),
  1427. hl('Arrow', '->'),
  1428. hl('Register', '@a'),
  1429. hl('Lambda', '}'),
  1430. })
  1431. check_parsing('{->@a+@b}', {
  1432. -- 012345678
  1433. ast = {
  1434. {
  1435. fmtn('Lambda', '\\di', ':0:0:{'),
  1436. children = {
  1437. {
  1438. 'Arrow:0:1:->',
  1439. children = {
  1440. {
  1441. 'BinaryPlus:0:5:+',
  1442. children = {
  1443. 'Register(name=a):0:3:@a',
  1444. 'Register(name=b):0:6:@b',
  1445. },
  1446. },
  1447. },
  1448. },
  1449. },
  1450. },
  1451. },
  1452. }, {
  1453. hl('Lambda', '{'),
  1454. hl('Arrow', '->'),
  1455. hl('Register', '@a'),
  1456. hl('BinaryPlus', '+'),
  1457. hl('Register', '@b'),
  1458. hl('Lambda', '}'),
  1459. })
  1460. check_parsing('{a->@a}', {
  1461. -- 012345678
  1462. ast = {
  1463. {
  1464. fmtn('Lambda', '\\di', ':0:0:{'),
  1465. children = {
  1466. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  1467. {
  1468. 'Arrow:0:2:->',
  1469. children = {
  1470. 'Register(name=a):0:4:@a',
  1471. },
  1472. },
  1473. },
  1474. },
  1475. },
  1476. }, {
  1477. hl('Lambda', '{'),
  1478. hl('IdentifierName', 'a'),
  1479. hl('Arrow', '->'),
  1480. hl('Register', '@a'),
  1481. hl('Lambda', '}'),
  1482. })
  1483. check_parsing('{a,b->@a}', {
  1484. -- 012345678
  1485. ast = {
  1486. {
  1487. fmtn('Lambda', '\\di', ':0:0:{'),
  1488. children = {
  1489. {
  1490. 'Comma:0:2:,',
  1491. children = {
  1492. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  1493. 'PlainIdentifier(scope=0,ident=b):0:3:b',
  1494. },
  1495. },
  1496. {
  1497. 'Arrow:0:4:->',
  1498. children = {
  1499. 'Register(name=a):0:6:@a',
  1500. },
  1501. },
  1502. },
  1503. },
  1504. },
  1505. }, {
  1506. hl('Lambda', '{'),
  1507. hl('IdentifierName', 'a'),
  1508. hl('Comma', ','),
  1509. hl('IdentifierName', 'b'),
  1510. hl('Arrow', '->'),
  1511. hl('Register', '@a'),
  1512. hl('Lambda', '}'),
  1513. })
  1514. check_parsing('{a,b,c->@a}', {
  1515. -- 01234567890
  1516. ast = {
  1517. {
  1518. fmtn('Lambda', '\\di', ':0:0:{'),
  1519. children = {
  1520. {
  1521. 'Comma:0:2:,',
  1522. children = {
  1523. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  1524. {
  1525. 'Comma:0:4:,',
  1526. children = {
  1527. 'PlainIdentifier(scope=0,ident=b):0:3:b',
  1528. 'PlainIdentifier(scope=0,ident=c):0:5:c',
  1529. },
  1530. },
  1531. },
  1532. },
  1533. {
  1534. 'Arrow:0:6:->',
  1535. children = {
  1536. 'Register(name=a):0:8:@a',
  1537. },
  1538. },
  1539. },
  1540. },
  1541. },
  1542. }, {
  1543. hl('Lambda', '{'),
  1544. hl('IdentifierName', 'a'),
  1545. hl('Comma', ','),
  1546. hl('IdentifierName', 'b'),
  1547. hl('Comma', ','),
  1548. hl('IdentifierName', 'c'),
  1549. hl('Arrow', '->'),
  1550. hl('Register', '@a'),
  1551. hl('Lambda', '}'),
  1552. })
  1553. check_parsing('{a,b,c,d->@a}', {
  1554. -- 0123456789012
  1555. ast = {
  1556. {
  1557. fmtn('Lambda', '\\di', ':0:0:{'),
  1558. children = {
  1559. {
  1560. 'Comma:0:2:,',
  1561. children = {
  1562. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  1563. {
  1564. 'Comma:0:4:,',
  1565. children = {
  1566. 'PlainIdentifier(scope=0,ident=b):0:3:b',
  1567. {
  1568. 'Comma:0:6:,',
  1569. children = {
  1570. 'PlainIdentifier(scope=0,ident=c):0:5:c',
  1571. 'PlainIdentifier(scope=0,ident=d):0:7:d',
  1572. },
  1573. },
  1574. },
  1575. },
  1576. },
  1577. },
  1578. {
  1579. 'Arrow:0:8:->',
  1580. children = {
  1581. 'Register(name=a):0:10:@a',
  1582. },
  1583. },
  1584. },
  1585. },
  1586. },
  1587. }, {
  1588. hl('Lambda', '{'),
  1589. hl('IdentifierName', 'a'),
  1590. hl('Comma', ','),
  1591. hl('IdentifierName', 'b'),
  1592. hl('Comma', ','),
  1593. hl('IdentifierName', 'c'),
  1594. hl('Comma', ','),
  1595. hl('IdentifierName', 'd'),
  1596. hl('Arrow', '->'),
  1597. hl('Register', '@a'),
  1598. hl('Lambda', '}'),
  1599. })
  1600. check_parsing('{a,b,c,d,->@a}', {
  1601. -- 01234567890123
  1602. ast = {
  1603. {
  1604. fmtn('Lambda', '\\di', ':0:0:{'),
  1605. children = {
  1606. {
  1607. 'Comma:0:2:,',
  1608. children = {
  1609. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  1610. {
  1611. 'Comma:0:4:,',
  1612. children = {
  1613. 'PlainIdentifier(scope=0,ident=b):0:3:b',
  1614. {
  1615. 'Comma:0:6:,',
  1616. children = {
  1617. 'PlainIdentifier(scope=0,ident=c):0:5:c',
  1618. {
  1619. 'Comma:0:8:,',
  1620. children = {
  1621. 'PlainIdentifier(scope=0,ident=d):0:7:d',
  1622. },
  1623. },
  1624. },
  1625. },
  1626. },
  1627. },
  1628. },
  1629. },
  1630. {
  1631. 'Arrow:0:9:->',
  1632. children = {
  1633. 'Register(name=a):0:11:@a',
  1634. },
  1635. },
  1636. },
  1637. },
  1638. },
  1639. }, {
  1640. hl('Lambda', '{'),
  1641. hl('IdentifierName', 'a'),
  1642. hl('Comma', ','),
  1643. hl('IdentifierName', 'b'),
  1644. hl('Comma', ','),
  1645. hl('IdentifierName', 'c'),
  1646. hl('Comma', ','),
  1647. hl('IdentifierName', 'd'),
  1648. hl('Comma', ','),
  1649. hl('Arrow', '->'),
  1650. hl('Register', '@a'),
  1651. hl('Lambda', '}'),
  1652. })
  1653. check_parsing('{a,b->{c,d->{e,f->@a}}}', {
  1654. -- 01234567890123456789012
  1655. -- 0 1 2
  1656. ast = {
  1657. {
  1658. fmtn('Lambda', '\\di', ':0:0:{'),
  1659. children = {
  1660. {
  1661. 'Comma:0:2:,',
  1662. children = {
  1663. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  1664. 'PlainIdentifier(scope=0,ident=b):0:3:b',
  1665. },
  1666. },
  1667. {
  1668. 'Arrow:0:4:->',
  1669. children = {
  1670. {
  1671. fmtn('Lambda', '\\di', ':0:6:{'),
  1672. children = {
  1673. {
  1674. 'Comma:0:8:,',
  1675. children = {
  1676. 'PlainIdentifier(scope=0,ident=c):0:7:c',
  1677. 'PlainIdentifier(scope=0,ident=d):0:9:d',
  1678. },
  1679. },
  1680. {
  1681. 'Arrow:0:10:->',
  1682. children = {
  1683. {
  1684. fmtn('Lambda', '\\di', ':0:12:{'),
  1685. children = {
  1686. {
  1687. 'Comma:0:14:,',
  1688. children = {
  1689. 'PlainIdentifier(scope=0,ident=e):0:13:e',
  1690. 'PlainIdentifier(scope=0,ident=f):0:15:f',
  1691. },
  1692. },
  1693. {
  1694. 'Arrow:0:16:->',
  1695. children = {
  1696. 'Register(name=a):0:18:@a',
  1697. },
  1698. },
  1699. },
  1700. },
  1701. },
  1702. },
  1703. },
  1704. },
  1705. },
  1706. },
  1707. },
  1708. },
  1709. },
  1710. }, {
  1711. hl('Lambda', '{'),
  1712. hl('IdentifierName', 'a'),
  1713. hl('Comma', ','),
  1714. hl('IdentifierName', 'b'),
  1715. hl('Arrow', '->'),
  1716. hl('Lambda', '{'),
  1717. hl('IdentifierName', 'c'),
  1718. hl('Comma', ','),
  1719. hl('IdentifierName', 'd'),
  1720. hl('Arrow', '->'),
  1721. hl('Lambda', '{'),
  1722. hl('IdentifierName', 'e'),
  1723. hl('Comma', ','),
  1724. hl('IdentifierName', 'f'),
  1725. hl('Arrow', '->'),
  1726. hl('Register', '@a'),
  1727. hl('Lambda', '}'),
  1728. hl('Lambda', '}'),
  1729. hl('Lambda', '}'),
  1730. })
  1731. check_parsing('{a,b->c,d}', {
  1732. -- 0123456789
  1733. ast = {
  1734. {
  1735. fmtn('Lambda', '\\di', ':0:0:{'),
  1736. children = {
  1737. {
  1738. 'Comma:0:2:,',
  1739. children = {
  1740. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  1741. 'PlainIdentifier(scope=0,ident=b):0:3:b',
  1742. },
  1743. },
  1744. {
  1745. 'Arrow:0:4:->',
  1746. children = {
  1747. {
  1748. 'Comma:0:7:,',
  1749. children = {
  1750. 'PlainIdentifier(scope=0,ident=c):0:6:c',
  1751. 'PlainIdentifier(scope=0,ident=d):0:8:d',
  1752. },
  1753. },
  1754. },
  1755. },
  1756. },
  1757. },
  1758. },
  1759. err = {
  1760. arg = ',d}',
  1761. msg = 'E15: Comma outside of call, lambda or literal: %.*s',
  1762. },
  1763. }, {
  1764. hl('Lambda', '{'),
  1765. hl('IdentifierName', 'a'),
  1766. hl('Comma', ','),
  1767. hl('IdentifierName', 'b'),
  1768. hl('Arrow', '->'),
  1769. hl('IdentifierName', 'c'),
  1770. hl('InvalidComma', ','),
  1771. hl('IdentifierName', 'd'),
  1772. hl('Lambda', '}'),
  1773. })
  1774. check_parsing('a,b,c,d', {
  1775. -- 0123456789
  1776. ast = {
  1777. {
  1778. 'Comma:0:1:,',
  1779. children = {
  1780. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  1781. {
  1782. 'Comma:0:3:,',
  1783. children = {
  1784. 'PlainIdentifier(scope=0,ident=b):0:2:b',
  1785. {
  1786. 'Comma:0:5:,',
  1787. children = {
  1788. 'PlainIdentifier(scope=0,ident=c):0:4:c',
  1789. 'PlainIdentifier(scope=0,ident=d):0:6:d',
  1790. },
  1791. },
  1792. },
  1793. },
  1794. },
  1795. },
  1796. },
  1797. err = {
  1798. arg = ',b,c,d',
  1799. msg = 'E15: Comma outside of call, lambda or literal: %.*s',
  1800. },
  1801. }, {
  1802. hl('IdentifierName', 'a'),
  1803. hl('InvalidComma', ','),
  1804. hl('IdentifierName', 'b'),
  1805. hl('InvalidComma', ','),
  1806. hl('IdentifierName', 'c'),
  1807. hl('InvalidComma', ','),
  1808. hl('IdentifierName', 'd'),
  1809. })
  1810. check_parsing('a,b,c,d,', {
  1811. -- 0123456789
  1812. ast = {
  1813. {
  1814. 'Comma:0:1:,',
  1815. children = {
  1816. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  1817. {
  1818. 'Comma:0:3:,',
  1819. children = {
  1820. 'PlainIdentifier(scope=0,ident=b):0:2:b',
  1821. {
  1822. 'Comma:0:5:,',
  1823. children = {
  1824. 'PlainIdentifier(scope=0,ident=c):0:4:c',
  1825. {
  1826. 'Comma:0:7:,',
  1827. children = {
  1828. 'PlainIdentifier(scope=0,ident=d):0:6:d',
  1829. },
  1830. },
  1831. },
  1832. },
  1833. },
  1834. },
  1835. },
  1836. },
  1837. },
  1838. err = {
  1839. arg = ',b,c,d,',
  1840. msg = 'E15: Comma outside of call, lambda or literal: %.*s',
  1841. },
  1842. }, {
  1843. hl('IdentifierName', 'a'),
  1844. hl('InvalidComma', ','),
  1845. hl('IdentifierName', 'b'),
  1846. hl('InvalidComma', ','),
  1847. hl('IdentifierName', 'c'),
  1848. hl('InvalidComma', ','),
  1849. hl('IdentifierName', 'd'),
  1850. hl('InvalidComma', ','),
  1851. })
  1852. check_parsing(',', {
  1853. -- 0123456789
  1854. ast = {
  1855. {
  1856. 'Comma:0:0:,',
  1857. children = {
  1858. 'Missing:0:0:',
  1859. },
  1860. },
  1861. },
  1862. err = {
  1863. arg = ',',
  1864. msg = 'E15: Expected value, got comma: %.*s',
  1865. },
  1866. }, {
  1867. hl('InvalidComma', ','),
  1868. })
  1869. check_parsing('{,a->@a}', {
  1870. -- 0123456789
  1871. ast = {
  1872. {
  1873. fmtn('CurlyBracesIdentifier', '-di', ':0:0:{'),
  1874. children = {
  1875. {
  1876. 'Arrow:0:3:->',
  1877. children = {
  1878. {
  1879. 'Comma:0:1:,',
  1880. children = {
  1881. 'Missing:0:1:',
  1882. 'PlainIdentifier(scope=0,ident=a):0:2:a',
  1883. },
  1884. },
  1885. 'Register(name=a):0:5:@a',
  1886. },
  1887. },
  1888. },
  1889. },
  1890. },
  1891. err = {
  1892. arg = ',a->@a}',
  1893. msg = 'E15: Expected value, got comma: %.*s',
  1894. },
  1895. }, {
  1896. hl('Curly', '{'),
  1897. hl('InvalidComma', ','),
  1898. hl('IdentifierName', 'a'),
  1899. hl('InvalidArrow', '->'),
  1900. hl('Register', '@a'),
  1901. hl('Curly', '}'),
  1902. })
  1903. check_parsing('}', {
  1904. -- 0123456789
  1905. ast = {
  1906. fmtn('UnknownFigure', '---', ':0:0:'),
  1907. },
  1908. err = {
  1909. arg = '}',
  1910. msg = 'E15: Unexpected closing figure brace: %.*s',
  1911. },
  1912. }, {
  1913. hl('InvalidFigureBrace', '}'),
  1914. })
  1915. check_parsing('{->}', {
  1916. -- 0123456789
  1917. ast = {
  1918. {
  1919. fmtn('Lambda', '\\di', ':0:0:{'),
  1920. children = {
  1921. 'Arrow:0:1:->',
  1922. },
  1923. },
  1924. },
  1925. err = {
  1926. arg = '}',
  1927. msg = 'E15: Expected value, got closing figure brace: %.*s',
  1928. },
  1929. }, {
  1930. hl('Lambda', '{'),
  1931. hl('Arrow', '->'),
  1932. hl('InvalidLambda', '}'),
  1933. })
  1934. check_parsing('{a,b}', {
  1935. -- 0123456789
  1936. ast = {
  1937. {
  1938. fmtn('Lambda', '-di', ':0:0:{'),
  1939. children = {
  1940. {
  1941. 'Comma:0:2:,',
  1942. children = {
  1943. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  1944. 'PlainIdentifier(scope=0,ident=b):0:3:b',
  1945. },
  1946. },
  1947. },
  1948. },
  1949. },
  1950. err = {
  1951. arg = '}',
  1952. msg = 'E15: Expected lambda arguments list or arrow: %.*s',
  1953. },
  1954. }, {
  1955. hl('Lambda', '{'),
  1956. hl('IdentifierName', 'a'),
  1957. hl('Comma', ','),
  1958. hl('IdentifierName', 'b'),
  1959. hl('InvalidLambda', '}'),
  1960. })
  1961. check_parsing('{a,}', {
  1962. -- 0123456789
  1963. ast = {
  1964. {
  1965. fmtn('Lambda', '-di', ':0:0:{'),
  1966. children = {
  1967. {
  1968. 'Comma:0:2:,',
  1969. children = {
  1970. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  1971. },
  1972. },
  1973. },
  1974. },
  1975. },
  1976. err = {
  1977. arg = '}',
  1978. msg = 'E15: Expected lambda arguments list or arrow: %.*s',
  1979. },
  1980. }, {
  1981. hl('Lambda', '{'),
  1982. hl('IdentifierName', 'a'),
  1983. hl('Comma', ','),
  1984. hl('InvalidLambda', '}'),
  1985. })
  1986. check_parsing('{@a:@b}', {
  1987. -- 0123456789
  1988. ast = {
  1989. {
  1990. fmtn('DictLiteral', '-di', ':0:0:{'),
  1991. children = {
  1992. {
  1993. 'Colon:0:3::',
  1994. children = {
  1995. 'Register(name=a):0:1:@a',
  1996. 'Register(name=b):0:4:@b',
  1997. },
  1998. },
  1999. },
  2000. },
  2001. },
  2002. }, {
  2003. hl('Dict', '{'),
  2004. hl('Register', '@a'),
  2005. hl('Colon', ':'),
  2006. hl('Register', '@b'),
  2007. hl('Dict', '}'),
  2008. })
  2009. check_parsing('{@a:@b,@c:@d}', {
  2010. -- 0123456789012
  2011. -- 0 1
  2012. ast = {
  2013. {
  2014. fmtn('DictLiteral', '-di', ':0:0:{'),
  2015. children = {
  2016. {
  2017. 'Comma:0:6:,',
  2018. children = {
  2019. {
  2020. 'Colon:0:3::',
  2021. children = {
  2022. 'Register(name=a):0:1:@a',
  2023. 'Register(name=b):0:4:@b',
  2024. },
  2025. },
  2026. {
  2027. 'Colon:0:9::',
  2028. children = {
  2029. 'Register(name=c):0:7:@c',
  2030. 'Register(name=d):0:10:@d',
  2031. },
  2032. },
  2033. },
  2034. },
  2035. },
  2036. },
  2037. },
  2038. }, {
  2039. hl('Dict', '{'),
  2040. hl('Register', '@a'),
  2041. hl('Colon', ':'),
  2042. hl('Register', '@b'),
  2043. hl('Comma', ','),
  2044. hl('Register', '@c'),
  2045. hl('Colon', ':'),
  2046. hl('Register', '@d'),
  2047. hl('Dict', '}'),
  2048. })
  2049. check_parsing('{@a:@b,@c:@d,@e:@f,}', {
  2050. -- 01234567890123456789
  2051. -- 0 1
  2052. ast = {
  2053. {
  2054. fmtn('DictLiteral', '-di', ':0:0:{'),
  2055. children = {
  2056. {
  2057. 'Comma:0:6:,',
  2058. children = {
  2059. {
  2060. 'Colon:0:3::',
  2061. children = {
  2062. 'Register(name=a):0:1:@a',
  2063. 'Register(name=b):0:4:@b',
  2064. },
  2065. },
  2066. {
  2067. 'Comma:0:12:,',
  2068. children = {
  2069. {
  2070. 'Colon:0:9::',
  2071. children = {
  2072. 'Register(name=c):0:7:@c',
  2073. 'Register(name=d):0:10:@d',
  2074. },
  2075. },
  2076. {
  2077. 'Comma:0:18:,',
  2078. children = {
  2079. {
  2080. 'Colon:0:15::',
  2081. children = {
  2082. 'Register(name=e):0:13:@e',
  2083. 'Register(name=f):0:16:@f',
  2084. },
  2085. },
  2086. },
  2087. },
  2088. },
  2089. },
  2090. },
  2091. },
  2092. },
  2093. },
  2094. },
  2095. }, {
  2096. hl('Dict', '{'),
  2097. hl('Register', '@a'),
  2098. hl('Colon', ':'),
  2099. hl('Register', '@b'),
  2100. hl('Comma', ','),
  2101. hl('Register', '@c'),
  2102. hl('Colon', ':'),
  2103. hl('Register', '@d'),
  2104. hl('Comma', ','),
  2105. hl('Register', '@e'),
  2106. hl('Colon', ':'),
  2107. hl('Register', '@f'),
  2108. hl('Comma', ','),
  2109. hl('Dict', '}'),
  2110. })
  2111. check_parsing('{@a:@b,@c:@d,@e:@f,@g:}', {
  2112. -- 01234567890123456789012
  2113. -- 0 1 2
  2114. ast = {
  2115. {
  2116. fmtn('DictLiteral', '-di', ':0:0:{'),
  2117. children = {
  2118. {
  2119. 'Comma:0:6:,',
  2120. children = {
  2121. {
  2122. 'Colon:0:3::',
  2123. children = {
  2124. 'Register(name=a):0:1:@a',
  2125. 'Register(name=b):0:4:@b',
  2126. },
  2127. },
  2128. {
  2129. 'Comma:0:12:,',
  2130. children = {
  2131. {
  2132. 'Colon:0:9::',
  2133. children = {
  2134. 'Register(name=c):0:7:@c',
  2135. 'Register(name=d):0:10:@d',
  2136. },
  2137. },
  2138. {
  2139. 'Comma:0:18:,',
  2140. children = {
  2141. {
  2142. 'Colon:0:15::',
  2143. children = {
  2144. 'Register(name=e):0:13:@e',
  2145. 'Register(name=f):0:16:@f',
  2146. },
  2147. },
  2148. {
  2149. 'Colon:0:21::',
  2150. children = {
  2151. 'Register(name=g):0:19:@g',
  2152. },
  2153. },
  2154. },
  2155. },
  2156. },
  2157. },
  2158. },
  2159. },
  2160. },
  2161. },
  2162. },
  2163. err = {
  2164. arg = '}',
  2165. msg = 'E15: Expected value, got closing figure brace: %.*s',
  2166. },
  2167. }, {
  2168. hl('Dict', '{'),
  2169. hl('Register', '@a'),
  2170. hl('Colon', ':'),
  2171. hl('Register', '@b'),
  2172. hl('Comma', ','),
  2173. hl('Register', '@c'),
  2174. hl('Colon', ':'),
  2175. hl('Register', '@d'),
  2176. hl('Comma', ','),
  2177. hl('Register', '@e'),
  2178. hl('Colon', ':'),
  2179. hl('Register', '@f'),
  2180. hl('Comma', ','),
  2181. hl('Register', '@g'),
  2182. hl('Colon', ':'),
  2183. hl('InvalidDict', '}'),
  2184. })
  2185. check_parsing('{@a:@b,}', {
  2186. -- 01234567890123
  2187. -- 0 1
  2188. ast = {
  2189. {
  2190. fmtn('DictLiteral', '-di', ':0:0:{'),
  2191. children = {
  2192. {
  2193. 'Comma:0:6:,',
  2194. children = {
  2195. {
  2196. 'Colon:0:3::',
  2197. children = {
  2198. 'Register(name=a):0:1:@a',
  2199. 'Register(name=b):0:4:@b',
  2200. },
  2201. },
  2202. },
  2203. },
  2204. },
  2205. },
  2206. },
  2207. }, {
  2208. hl('Dict', '{'),
  2209. hl('Register', '@a'),
  2210. hl('Colon', ':'),
  2211. hl('Register', '@b'),
  2212. hl('Comma', ','),
  2213. hl('Dict', '}'),
  2214. })
  2215. check_parsing('{({f -> g})(@h)(@i)}', {
  2216. -- 01234567890123456789
  2217. -- 0 1
  2218. ast = {
  2219. {
  2220. fmtn('CurlyBracesIdentifier', '-di', ':0:0:{'),
  2221. children = {
  2222. {
  2223. 'Call:0:15:(',
  2224. children = {
  2225. {
  2226. 'Call:0:11:(',
  2227. children = {
  2228. {
  2229. 'Nested:0:1:(',
  2230. children = {
  2231. {
  2232. fmtn('Lambda', '\\di', ':0:2:{'),
  2233. children = {
  2234. 'PlainIdentifier(scope=0,ident=f):0:3:f',
  2235. {
  2236. 'Arrow:0:4: ->',
  2237. children = {
  2238. 'PlainIdentifier(scope=0,ident=g):0:7: g',
  2239. },
  2240. },
  2241. },
  2242. },
  2243. },
  2244. },
  2245. 'Register(name=h):0:12:@h',
  2246. },
  2247. },
  2248. 'Register(name=i):0:16:@i',
  2249. },
  2250. },
  2251. },
  2252. },
  2253. },
  2254. }, {
  2255. hl('Curly', '{'),
  2256. hl('NestingParenthesis', '('),
  2257. hl('Lambda', '{'),
  2258. hl('IdentifierName', 'f'),
  2259. hl('Arrow', '->', 1),
  2260. hl('IdentifierName', 'g', 1),
  2261. hl('Lambda', '}'),
  2262. hl('NestingParenthesis', ')'),
  2263. hl('CallingParenthesis', '('),
  2264. hl('Register', '@h'),
  2265. hl('CallingParenthesis', ')'),
  2266. hl('CallingParenthesis', '('),
  2267. hl('Register', '@i'),
  2268. hl('CallingParenthesis', ')'),
  2269. hl('Curly', '}'),
  2270. })
  2271. check_parsing('a:{b()}c', {
  2272. -- 01234567
  2273. ast = {
  2274. {
  2275. 'ComplexIdentifier:0:2:',
  2276. children = {
  2277. 'PlainIdentifier(scope=a,ident=):0:0:a:',
  2278. {
  2279. 'ComplexIdentifier:0:7:',
  2280. children = {
  2281. {
  2282. fmtn('CurlyBracesIdentifier', '--i', ':0:2:{'),
  2283. children = {
  2284. {
  2285. 'Call:0:4:(',
  2286. children = {
  2287. 'PlainIdentifier(scope=0,ident=b):0:3:b',
  2288. },
  2289. },
  2290. },
  2291. },
  2292. 'PlainIdentifier(scope=0,ident=c):0:7:c',
  2293. },
  2294. },
  2295. },
  2296. },
  2297. },
  2298. }, {
  2299. hl('IdentifierScope', 'a'),
  2300. hl('IdentifierScopeDelimiter', ':'),
  2301. hl('Curly', '{'),
  2302. hl('IdentifierName', 'b'),
  2303. hl('CallingParenthesis', '('),
  2304. hl('CallingParenthesis', ')'),
  2305. hl('Curly', '}'),
  2306. hl('IdentifierName', 'c'),
  2307. })
  2308. check_parsing('a:{{b, c -> @d + @e + ({f -> g})(@h)}(@i)}j', {
  2309. -- 01234567890123456789012345678901234567890123456
  2310. -- 0 1 2 3 4
  2311. ast = {
  2312. {
  2313. 'ComplexIdentifier:0:2:',
  2314. children = {
  2315. 'PlainIdentifier(scope=a,ident=):0:0:a:',
  2316. {
  2317. 'ComplexIdentifier:0:42:',
  2318. children = {
  2319. {
  2320. fmtn('CurlyBracesIdentifier', '--i', ':0:2:{'),
  2321. children = {
  2322. {
  2323. 'Call:0:37:(',
  2324. children = {
  2325. {
  2326. fmtn('Lambda', '\\di', ':0:3:{'),
  2327. children = {
  2328. {
  2329. 'Comma:0:5:,',
  2330. children = {
  2331. 'PlainIdentifier(scope=0,ident=b):0:4:b',
  2332. 'PlainIdentifier(scope=0,ident=c):0:6: c',
  2333. },
  2334. },
  2335. {
  2336. 'Arrow:0:8: ->',
  2337. children = {
  2338. {
  2339. 'BinaryPlus:0:19: +',
  2340. children = {
  2341. {
  2342. 'BinaryPlus:0:14: +',
  2343. children = {
  2344. 'Register(name=d):0:11: @d',
  2345. 'Register(name=e):0:16: @e',
  2346. },
  2347. },
  2348. {
  2349. 'Call:0:32:(',
  2350. children = {
  2351. {
  2352. 'Nested:0:21: (',
  2353. children = {
  2354. {
  2355. fmtn('Lambda', '\\di', ':0:23:{'),
  2356. children = {
  2357. 'PlainIdentifier(scope=0,ident=f):0:24:f',
  2358. {
  2359. 'Arrow:0:25: ->',
  2360. children = {
  2361. 'PlainIdentifier(scope=0,ident=g):0:28: g',
  2362. },
  2363. },
  2364. },
  2365. },
  2366. },
  2367. },
  2368. 'Register(name=h):0:33:@h',
  2369. },
  2370. },
  2371. },
  2372. },
  2373. },
  2374. },
  2375. },
  2376. },
  2377. 'Register(name=i):0:38:@i',
  2378. },
  2379. },
  2380. },
  2381. },
  2382. 'PlainIdentifier(scope=0,ident=j):0:42:j',
  2383. },
  2384. },
  2385. },
  2386. },
  2387. },
  2388. }, {
  2389. hl('IdentifierScope', 'a'),
  2390. hl('IdentifierScopeDelimiter', ':'),
  2391. hl('Curly', '{'),
  2392. hl('Lambda', '{'),
  2393. hl('IdentifierName', 'b'),
  2394. hl('Comma', ','),
  2395. hl('IdentifierName', 'c', 1),
  2396. hl('Arrow', '->', 1),
  2397. hl('Register', '@d', 1),
  2398. hl('BinaryPlus', '+', 1),
  2399. hl('Register', '@e', 1),
  2400. hl('BinaryPlus', '+', 1),
  2401. hl('NestingParenthesis', '(', 1),
  2402. hl('Lambda', '{'),
  2403. hl('IdentifierName', 'f'),
  2404. hl('Arrow', '->', 1),
  2405. hl('IdentifierName', 'g', 1),
  2406. hl('Lambda', '}'),
  2407. hl('NestingParenthesis', ')'),
  2408. hl('CallingParenthesis', '('),
  2409. hl('Register', '@h'),
  2410. hl('CallingParenthesis', ')'),
  2411. hl('Lambda', '}'),
  2412. hl('CallingParenthesis', '('),
  2413. hl('Register', '@i'),
  2414. hl('CallingParenthesis', ')'),
  2415. hl('Curly', '}'),
  2416. hl('IdentifierName', 'j'),
  2417. })
  2418. check_parsing('{@a + @b : @c + @d, @e + @f : @g + @i}', {
  2419. -- 01234567890123456789012345678901234567
  2420. -- 0 1 2 3
  2421. ast = {
  2422. {
  2423. fmtn('DictLiteral', '-di', ':0:0:{'),
  2424. children = {
  2425. {
  2426. 'Comma:0:18:,',
  2427. children = {
  2428. {
  2429. 'Colon:0:8: :',
  2430. children = {
  2431. {
  2432. 'BinaryPlus:0:3: +',
  2433. children = {
  2434. 'Register(name=a):0:1:@a',
  2435. 'Register(name=b):0:5: @b',
  2436. },
  2437. },
  2438. {
  2439. 'BinaryPlus:0:13: +',
  2440. children = {
  2441. 'Register(name=c):0:10: @c',
  2442. 'Register(name=d):0:15: @d',
  2443. },
  2444. },
  2445. },
  2446. },
  2447. {
  2448. 'Colon:0:27: :',
  2449. children = {
  2450. {
  2451. 'BinaryPlus:0:22: +',
  2452. children = {
  2453. 'Register(name=e):0:19: @e',
  2454. 'Register(name=f):0:24: @f',
  2455. },
  2456. },
  2457. {
  2458. 'BinaryPlus:0:32: +',
  2459. children = {
  2460. 'Register(name=g):0:29: @g',
  2461. 'Register(name=i):0:34: @i',
  2462. },
  2463. },
  2464. },
  2465. },
  2466. },
  2467. },
  2468. },
  2469. },
  2470. },
  2471. }, {
  2472. hl('Dict', '{'),
  2473. hl('Register', '@a'),
  2474. hl('BinaryPlus', '+', 1),
  2475. hl('Register', '@b', 1),
  2476. hl('Colon', ':', 1),
  2477. hl('Register', '@c', 1),
  2478. hl('BinaryPlus', '+', 1),
  2479. hl('Register', '@d', 1),
  2480. hl('Comma', ','),
  2481. hl('Register', '@e', 1),
  2482. hl('BinaryPlus', '+', 1),
  2483. hl('Register', '@f', 1),
  2484. hl('Colon', ':', 1),
  2485. hl('Register', '@g', 1),
  2486. hl('BinaryPlus', '+', 1),
  2487. hl('Register', '@i', 1),
  2488. hl('Dict', '}'),
  2489. })
  2490. check_parsing('-> -> ->', {
  2491. -- 01234567
  2492. ast = {
  2493. {
  2494. 'Arrow:0:0:->',
  2495. children = {
  2496. 'Missing:0:0:',
  2497. {
  2498. 'Arrow:0:2: ->',
  2499. children = {
  2500. 'Missing:0:2:',
  2501. {
  2502. 'Arrow:0:5: ->',
  2503. children = {
  2504. 'Missing:0:5:',
  2505. },
  2506. },
  2507. },
  2508. },
  2509. },
  2510. },
  2511. },
  2512. err = {
  2513. arg = '-> -> ->',
  2514. msg = 'E15: Unexpected arrow: %.*s',
  2515. },
  2516. }, {
  2517. hl('InvalidArrow', '->'),
  2518. hl('InvalidArrow', '->', 1),
  2519. hl('InvalidArrow', '->', 1),
  2520. })
  2521. check_parsing('a -> b -> c -> d', {
  2522. -- 0123456789012345
  2523. -- 0 1
  2524. ast = {
  2525. {
  2526. 'Arrow:0:1: ->',
  2527. children = {
  2528. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  2529. {
  2530. 'Arrow:0:6: ->',
  2531. children = {
  2532. 'PlainIdentifier(scope=0,ident=b):0:4: b',
  2533. {
  2534. 'Arrow:0:11: ->',
  2535. children = {
  2536. 'PlainIdentifier(scope=0,ident=c):0:9: c',
  2537. 'PlainIdentifier(scope=0,ident=d):0:14: d',
  2538. },
  2539. },
  2540. },
  2541. },
  2542. },
  2543. },
  2544. },
  2545. err = {
  2546. arg = '-> b -> c -> d',
  2547. msg = 'E15: Arrow outside of lambda: %.*s',
  2548. },
  2549. }, {
  2550. hl('IdentifierName', 'a'),
  2551. hl('InvalidArrow', '->', 1),
  2552. hl('IdentifierName', 'b', 1),
  2553. hl('InvalidArrow', '->', 1),
  2554. hl('IdentifierName', 'c', 1),
  2555. hl('InvalidArrow', '->', 1),
  2556. hl('IdentifierName', 'd', 1),
  2557. })
  2558. check_parsing('{a -> b -> c}', {
  2559. -- 0123456789012
  2560. -- 0 1
  2561. ast = {
  2562. {
  2563. fmtn('Lambda', '\\di', ':0:0:{'),
  2564. children = {
  2565. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  2566. {
  2567. 'Arrow:0:2: ->',
  2568. children = {
  2569. {
  2570. 'Arrow:0:7: ->',
  2571. children = {
  2572. 'PlainIdentifier(scope=0,ident=b):0:5: b',
  2573. 'PlainIdentifier(scope=0,ident=c):0:10: c',
  2574. },
  2575. },
  2576. },
  2577. },
  2578. },
  2579. },
  2580. },
  2581. err = {
  2582. arg = '-> c}',
  2583. msg = 'E15: Arrow outside of lambda: %.*s',
  2584. },
  2585. }, {
  2586. hl('Lambda', '{'),
  2587. hl('IdentifierName', 'a'),
  2588. hl('Arrow', '->', 1),
  2589. hl('IdentifierName', 'b', 1),
  2590. hl('InvalidArrow', '->', 1),
  2591. hl('IdentifierName', 'c', 1),
  2592. hl('Lambda', '}'),
  2593. })
  2594. check_parsing('{a: -> b}', {
  2595. -- 012345678
  2596. ast = {
  2597. {
  2598. fmtn('CurlyBracesIdentifier', '-di', ':0:0:{'),
  2599. children = {
  2600. {
  2601. 'Arrow:0:3: ->',
  2602. children = {
  2603. 'PlainIdentifier(scope=a,ident=):0:1:a:',
  2604. 'PlainIdentifier(scope=0,ident=b):0:6: b',
  2605. },
  2606. },
  2607. },
  2608. },
  2609. },
  2610. err = {
  2611. arg = '-> b}',
  2612. msg = 'E15: Arrow outside of lambda: %.*s',
  2613. },
  2614. }, {
  2615. hl('Curly', '{'),
  2616. hl('IdentifierScope', 'a'),
  2617. hl('IdentifierScopeDelimiter', ':'),
  2618. hl('InvalidArrow', '->', 1),
  2619. hl('IdentifierName', 'b', 1),
  2620. hl('Curly', '}'),
  2621. })
  2622. check_parsing('{a:b -> b}', {
  2623. -- 0123456789
  2624. ast = {
  2625. {
  2626. fmtn('CurlyBracesIdentifier', '-di', ':0:0:{'),
  2627. children = {
  2628. {
  2629. 'Arrow:0:4: ->',
  2630. children = {
  2631. 'PlainIdentifier(scope=a,ident=b):0:1:a:b',
  2632. 'PlainIdentifier(scope=0,ident=b):0:7: b',
  2633. },
  2634. },
  2635. },
  2636. },
  2637. },
  2638. err = {
  2639. arg = '-> b}',
  2640. msg = 'E15: Arrow outside of lambda: %.*s',
  2641. },
  2642. }, {
  2643. hl('Curly', '{'),
  2644. hl('IdentifierScope', 'a'),
  2645. hl('IdentifierScopeDelimiter', ':'),
  2646. hl('IdentifierName', 'b'),
  2647. hl('InvalidArrow', '->', 1),
  2648. hl('IdentifierName', 'b', 1),
  2649. hl('Curly', '}'),
  2650. })
  2651. check_parsing('{a#b -> b}', {
  2652. -- 0123456789
  2653. ast = {
  2654. {
  2655. fmtn('CurlyBracesIdentifier', '-di', ':0:0:{'),
  2656. children = {
  2657. {
  2658. 'Arrow:0:4: ->',
  2659. children = {
  2660. 'PlainIdentifier(scope=0,ident=a#b):0:1:a#b',
  2661. 'PlainIdentifier(scope=0,ident=b):0:7: b',
  2662. },
  2663. },
  2664. },
  2665. },
  2666. },
  2667. err = {
  2668. arg = '-> b}',
  2669. msg = 'E15: Arrow outside of lambda: %.*s',
  2670. },
  2671. }, {
  2672. hl('Curly', '{'),
  2673. hl('IdentifierName', 'a#b'),
  2674. hl('InvalidArrow', '->', 1),
  2675. hl('IdentifierName', 'b', 1),
  2676. hl('Curly', '}'),
  2677. })
  2678. check_parsing('{a : b : c}', {
  2679. -- 01234567890
  2680. -- 0 1
  2681. ast = {
  2682. {
  2683. fmtn('DictLiteral', '-di', ':0:0:{'),
  2684. children = {
  2685. {
  2686. 'Colon:0:2: :',
  2687. children = {
  2688. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  2689. {
  2690. 'Colon:0:6: :',
  2691. children = {
  2692. 'PlainIdentifier(scope=0,ident=b):0:4: b',
  2693. 'PlainIdentifier(scope=0,ident=c):0:8: c',
  2694. },
  2695. },
  2696. },
  2697. },
  2698. },
  2699. },
  2700. },
  2701. err = {
  2702. arg = ': c}',
  2703. msg = 'E15: Colon outside of dictionary or ternary operator: %.*s',
  2704. },
  2705. }, {
  2706. hl('Dict', '{'),
  2707. hl('IdentifierName', 'a'),
  2708. hl('Colon', ':', 1),
  2709. hl('IdentifierName', 'b', 1),
  2710. hl('InvalidColon', ':', 1),
  2711. hl('IdentifierName', 'c', 1),
  2712. hl('Dict', '}'),
  2713. })
  2714. check_parsing('{', {
  2715. -- 0
  2716. ast = {
  2717. fmtn('UnknownFigure', '\\di', ':0:0:{'),
  2718. },
  2719. err = {
  2720. arg = '{',
  2721. msg = 'E15: Missing closing figure brace: %.*s',
  2722. },
  2723. }, {
  2724. hl('FigureBrace', '{'),
  2725. })
  2726. check_parsing('{a', {
  2727. -- 01
  2728. ast = {
  2729. {
  2730. fmtn('UnknownFigure', '\\di', ':0:0:{'),
  2731. children = {
  2732. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  2733. },
  2734. },
  2735. },
  2736. err = {
  2737. arg = '{a',
  2738. msg = 'E15: Missing closing figure brace: %.*s',
  2739. },
  2740. }, {
  2741. hl('FigureBrace', '{'),
  2742. hl('IdentifierName', 'a'),
  2743. })
  2744. check_parsing('{a,b', {
  2745. -- 0123
  2746. ast = {
  2747. {
  2748. fmtn('Lambda', '\\di', ':0:0:{'),
  2749. children = {
  2750. {
  2751. 'Comma:0:2:,',
  2752. children = {
  2753. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  2754. 'PlainIdentifier(scope=0,ident=b):0:3:b',
  2755. },
  2756. },
  2757. },
  2758. },
  2759. },
  2760. err = {
  2761. arg = '{a,b',
  2762. msg = 'E15: Missing closing figure brace for lambda: %.*s',
  2763. },
  2764. }, {
  2765. hl('Lambda', '{'),
  2766. hl('IdentifierName', 'a'),
  2767. hl('Comma', ','),
  2768. hl('IdentifierName', 'b'),
  2769. })
  2770. check_parsing('{a,b->', {
  2771. -- 012345
  2772. ast = {
  2773. {
  2774. fmtn('Lambda', '\\di', ':0:0:{'),
  2775. children = {
  2776. {
  2777. 'Comma:0:2:,',
  2778. children = {
  2779. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  2780. 'PlainIdentifier(scope=0,ident=b):0:3:b',
  2781. },
  2782. },
  2783. 'Arrow:0:4:->',
  2784. },
  2785. },
  2786. },
  2787. err = {
  2788. arg = '',
  2789. msg = 'E15: Expected value, got EOC: %.*s',
  2790. },
  2791. }, {
  2792. hl('Lambda', '{'),
  2793. hl('IdentifierName', 'a'),
  2794. hl('Comma', ','),
  2795. hl('IdentifierName', 'b'),
  2796. hl('Arrow', '->'),
  2797. })
  2798. check_parsing('{a,b->c', {
  2799. -- 0123456
  2800. ast = {
  2801. {
  2802. fmtn('Lambda', '\\di', ':0:0:{'),
  2803. children = {
  2804. {
  2805. 'Comma:0:2:,',
  2806. children = {
  2807. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  2808. 'PlainIdentifier(scope=0,ident=b):0:3:b',
  2809. },
  2810. },
  2811. {
  2812. 'Arrow:0:4:->',
  2813. children = {
  2814. 'PlainIdentifier(scope=0,ident=c):0:6:c',
  2815. },
  2816. },
  2817. },
  2818. },
  2819. },
  2820. err = {
  2821. arg = '{a,b->c',
  2822. msg = 'E15: Missing closing figure brace for lambda: %.*s',
  2823. },
  2824. }, {
  2825. hl('Lambda', '{'),
  2826. hl('IdentifierName', 'a'),
  2827. hl('Comma', ','),
  2828. hl('IdentifierName', 'b'),
  2829. hl('Arrow', '->'),
  2830. hl('IdentifierName', 'c'),
  2831. })
  2832. check_parsing('{a : b', {
  2833. -- 012345
  2834. ast = {
  2835. {
  2836. fmtn('DictLiteral', '-di', ':0:0:{'),
  2837. children = {
  2838. {
  2839. 'Colon:0:2: :',
  2840. children = {
  2841. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  2842. 'PlainIdentifier(scope=0,ident=b):0:4: b',
  2843. },
  2844. },
  2845. },
  2846. },
  2847. },
  2848. err = {
  2849. arg = '{a : b',
  2850. msg = 'E723: Missing end of Dictionary \'}\': %.*s',
  2851. },
  2852. }, {
  2853. hl('Dict', '{'),
  2854. hl('IdentifierName', 'a'),
  2855. hl('Colon', ':', 1),
  2856. hl('IdentifierName', 'b', 1),
  2857. })
  2858. check_parsing('{a : b,', {
  2859. -- 0123456
  2860. ast = {
  2861. {
  2862. fmtn('DictLiteral', '-di', ':0:0:{'),
  2863. children = {
  2864. {
  2865. 'Comma:0:6:,',
  2866. children = {
  2867. {
  2868. 'Colon:0:2: :',
  2869. children = {
  2870. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  2871. 'PlainIdentifier(scope=0,ident=b):0:4: b',
  2872. },
  2873. },
  2874. },
  2875. },
  2876. },
  2877. },
  2878. },
  2879. err = {
  2880. arg = '',
  2881. msg = 'E15: Expected value, got EOC: %.*s',
  2882. },
  2883. }, {
  2884. hl('Dict', '{'),
  2885. hl('IdentifierName', 'a'),
  2886. hl('Colon', ':', 1),
  2887. hl('IdentifierName', 'b', 1),
  2888. hl('Comma', ','),
  2889. })
  2890. end)
  2891. itp('works with ternary operator', function()
  2892. check_parsing('a ? b : c', {
  2893. -- 012345678
  2894. ast = {
  2895. {
  2896. 'Ternary:0:1: ?',
  2897. children = {
  2898. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  2899. {
  2900. 'TernaryValue:0:5: :',
  2901. children = {
  2902. 'PlainIdentifier(scope=0,ident=b):0:3: b',
  2903. 'PlainIdentifier(scope=0,ident=c):0:7: c',
  2904. },
  2905. },
  2906. },
  2907. },
  2908. },
  2909. }, {
  2910. hl('IdentifierName', 'a'),
  2911. hl('Ternary', '?', 1),
  2912. hl('IdentifierName', 'b', 1),
  2913. hl('TernaryColon', ':', 1),
  2914. hl('IdentifierName', 'c', 1),
  2915. })
  2916. check_parsing('@a?@b?@c:@d:@e', {
  2917. -- 01234567890123
  2918. -- 0 1
  2919. ast = {
  2920. {
  2921. 'Ternary:0:2:?',
  2922. children = {
  2923. 'Register(name=a):0:0:@a',
  2924. {
  2925. 'TernaryValue:0:11::',
  2926. children = {
  2927. {
  2928. 'Ternary:0:5:?',
  2929. children = {
  2930. 'Register(name=b):0:3:@b',
  2931. {
  2932. 'TernaryValue:0:8::',
  2933. children = {
  2934. 'Register(name=c):0:6:@c',
  2935. 'Register(name=d):0:9:@d',
  2936. },
  2937. },
  2938. },
  2939. },
  2940. 'Register(name=e):0:12:@e',
  2941. },
  2942. },
  2943. },
  2944. },
  2945. },
  2946. }, {
  2947. hl('Register', '@a'),
  2948. hl('Ternary', '?'),
  2949. hl('Register', '@b'),
  2950. hl('Ternary', '?'),
  2951. hl('Register', '@c'),
  2952. hl('TernaryColon', ':'),
  2953. hl('Register', '@d'),
  2954. hl('TernaryColon', ':'),
  2955. hl('Register', '@e'),
  2956. })
  2957. check_parsing('@a?@b:@c?@d:@e', {
  2958. -- 01234567890123
  2959. -- 0 1
  2960. ast = {
  2961. {
  2962. 'Ternary:0:2:?',
  2963. children = {
  2964. 'Register(name=a):0:0:@a',
  2965. {
  2966. 'TernaryValue:0:5::',
  2967. children = {
  2968. 'Register(name=b):0:3:@b',
  2969. {
  2970. 'Ternary:0:8:?',
  2971. children = {
  2972. 'Register(name=c):0:6:@c',
  2973. {
  2974. 'TernaryValue:0:11::',
  2975. children = {
  2976. 'Register(name=d):0:9:@d',
  2977. 'Register(name=e):0:12:@e',
  2978. },
  2979. },
  2980. },
  2981. },
  2982. },
  2983. },
  2984. },
  2985. },
  2986. },
  2987. }, {
  2988. hl('Register', '@a'),
  2989. hl('Ternary', '?'),
  2990. hl('Register', '@b'),
  2991. hl('TernaryColon', ':'),
  2992. hl('Register', '@c'),
  2993. hl('Ternary', '?'),
  2994. hl('Register', '@d'),
  2995. hl('TernaryColon', ':'),
  2996. hl('Register', '@e'),
  2997. })
  2998. check_parsing('@a?@b?@c?@d:@e?@f:@g:@h?@i:@j:@k', {
  2999. -- 01234567890123456789012345678901
  3000. -- 0 1 2 3
  3001. ast = {
  3002. {
  3003. 'Ternary:0:2:?',
  3004. children = {
  3005. 'Register(name=a):0:0:@a',
  3006. {
  3007. 'TernaryValue:0:29::',
  3008. children = {
  3009. {
  3010. 'Ternary:0:5:?',
  3011. children = {
  3012. 'Register(name=b):0:3:@b',
  3013. {
  3014. 'TernaryValue:0:20::',
  3015. children = {
  3016. {
  3017. 'Ternary:0:8:?',
  3018. children = {
  3019. 'Register(name=c):0:6:@c',
  3020. {
  3021. 'TernaryValue:0:11::',
  3022. children = {
  3023. 'Register(name=d):0:9:@d',
  3024. {
  3025. 'Ternary:0:14:?',
  3026. children = {
  3027. 'Register(name=e):0:12:@e',
  3028. {
  3029. 'TernaryValue:0:17::',
  3030. children = {
  3031. 'Register(name=f):0:15:@f',
  3032. 'Register(name=g):0:18:@g',
  3033. },
  3034. },
  3035. },
  3036. },
  3037. },
  3038. },
  3039. },
  3040. },
  3041. {
  3042. 'Ternary:0:23:?',
  3043. children = {
  3044. 'Register(name=h):0:21:@h',
  3045. {
  3046. 'TernaryValue:0:26::',
  3047. children = {
  3048. 'Register(name=i):0:24:@i',
  3049. 'Register(name=j):0:27:@j',
  3050. },
  3051. },
  3052. },
  3053. },
  3054. },
  3055. },
  3056. },
  3057. },
  3058. 'Register(name=k):0:30:@k',
  3059. },
  3060. },
  3061. },
  3062. },
  3063. },
  3064. }, {
  3065. hl('Register', '@a'),
  3066. hl('Ternary', '?'),
  3067. hl('Register', '@b'),
  3068. hl('Ternary', '?'),
  3069. hl('Register', '@c'),
  3070. hl('Ternary', '?'),
  3071. hl('Register', '@d'),
  3072. hl('TernaryColon', ':'),
  3073. hl('Register', '@e'),
  3074. hl('Ternary', '?'),
  3075. hl('Register', '@f'),
  3076. hl('TernaryColon', ':'),
  3077. hl('Register', '@g'),
  3078. hl('TernaryColon', ':'),
  3079. hl('Register', '@h'),
  3080. hl('Ternary', '?'),
  3081. hl('Register', '@i'),
  3082. hl('TernaryColon', ':'),
  3083. hl('Register', '@j'),
  3084. hl('TernaryColon', ':'),
  3085. hl('Register', '@k'),
  3086. })
  3087. check_parsing('?', {
  3088. -- 0
  3089. ast = {
  3090. {
  3091. 'Ternary:0:0:?',
  3092. children = {
  3093. 'Missing:0:0:',
  3094. 'TernaryValue:0:0:?',
  3095. },
  3096. },
  3097. },
  3098. err = {
  3099. arg = '?',
  3100. msg = 'E15: Expected value, got question mark: %.*s',
  3101. },
  3102. }, {
  3103. hl('InvalidTernary', '?'),
  3104. })
  3105. check_parsing('?:', {
  3106. -- 01
  3107. ast = {
  3108. {
  3109. 'Ternary:0:0:?',
  3110. children = {
  3111. 'Missing:0:0:',
  3112. {
  3113. 'TernaryValue:0:1::',
  3114. children = {
  3115. 'Missing:0:1:',
  3116. },
  3117. },
  3118. },
  3119. },
  3120. },
  3121. err = {
  3122. arg = '?:',
  3123. msg = 'E15: Expected value, got question mark: %.*s',
  3124. },
  3125. }, {
  3126. hl('InvalidTernary', '?'),
  3127. hl('InvalidTernaryColon', ':'),
  3128. })
  3129. check_parsing('?::', {
  3130. -- 012
  3131. ast = {
  3132. {
  3133. 'Colon:0:2::',
  3134. children = {
  3135. {
  3136. 'Ternary:0:0:?',
  3137. children = {
  3138. 'Missing:0:0:',
  3139. {
  3140. 'TernaryValue:0:1::',
  3141. children = {
  3142. 'Missing:0:1:',
  3143. 'Missing:0:2:',
  3144. },
  3145. },
  3146. },
  3147. },
  3148. },
  3149. },
  3150. },
  3151. err = {
  3152. arg = '?::',
  3153. msg = 'E15: Expected value, got question mark: %.*s',
  3154. },
  3155. }, {
  3156. hl('InvalidTernary', '?'),
  3157. hl('InvalidTernaryColon', ':'),
  3158. hl('InvalidColon', ':'),
  3159. })
  3160. check_parsing('a?b', {
  3161. -- 012
  3162. ast = {
  3163. {
  3164. 'Ternary:0:1:?',
  3165. children = {
  3166. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  3167. {
  3168. 'TernaryValue:0:1:?',
  3169. children = {
  3170. 'PlainIdentifier(scope=0,ident=b):0:2:b',
  3171. },
  3172. },
  3173. },
  3174. },
  3175. },
  3176. err = {
  3177. arg = '?b',
  3178. msg = 'E109: Missing \':\' after \'?\': %.*s',
  3179. },
  3180. }, {
  3181. hl('IdentifierName', 'a'),
  3182. hl('Ternary', '?'),
  3183. hl('IdentifierName', 'b'),
  3184. })
  3185. check_parsing('a?b:', {
  3186. -- 0123
  3187. ast = {
  3188. {
  3189. 'Ternary:0:1:?',
  3190. children = {
  3191. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  3192. {
  3193. 'TernaryValue:0:1:?',
  3194. children = {
  3195. 'PlainIdentifier(scope=b,ident=):0:2:b:',
  3196. },
  3197. },
  3198. },
  3199. },
  3200. },
  3201. err = {
  3202. arg = '?b:',
  3203. msg = 'E109: Missing \':\' after \'?\': %.*s',
  3204. },
  3205. }, {
  3206. hl('IdentifierName', 'a'),
  3207. hl('Ternary', '?'),
  3208. hl('IdentifierScope', 'b'),
  3209. hl('IdentifierScopeDelimiter', ':'),
  3210. })
  3211. check_parsing('a?b::c', {
  3212. -- 012345
  3213. ast = {
  3214. {
  3215. 'Ternary:0:1:?',
  3216. children = {
  3217. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  3218. {
  3219. 'TernaryValue:0:4::',
  3220. children = {
  3221. 'PlainIdentifier(scope=b,ident=):0:2:b:',
  3222. 'PlainIdentifier(scope=0,ident=c):0:5:c',
  3223. },
  3224. },
  3225. },
  3226. },
  3227. },
  3228. }, {
  3229. hl('IdentifierName', 'a'),
  3230. hl('Ternary', '?'),
  3231. hl('IdentifierScope', 'b'),
  3232. hl('IdentifierScopeDelimiter', ':'),
  3233. hl('TernaryColon', ':'),
  3234. hl('IdentifierName', 'c'),
  3235. })
  3236. check_parsing('a?b :', {
  3237. -- 01234
  3238. ast = {
  3239. {
  3240. 'Ternary:0:1:?',
  3241. children = {
  3242. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  3243. {
  3244. 'TernaryValue:0:3: :',
  3245. children = {
  3246. 'PlainIdentifier(scope=0,ident=b):0:2:b',
  3247. },
  3248. },
  3249. },
  3250. },
  3251. },
  3252. err = {
  3253. arg = '',
  3254. msg = 'E15: Expected value, got EOC: %.*s',
  3255. },
  3256. }, {
  3257. hl('IdentifierName', 'a'),
  3258. hl('Ternary', '?'),
  3259. hl('IdentifierName', 'b'),
  3260. hl('TernaryColon', ':', 1),
  3261. })
  3262. check_parsing('(@a?@b:@c)?@d:@e', {
  3263. -- 0123456789012345
  3264. -- 0 1
  3265. ast = {
  3266. {
  3267. 'Ternary:0:10:?',
  3268. children = {
  3269. {
  3270. 'Nested:0:0:(',
  3271. children = {
  3272. {
  3273. 'Ternary:0:3:?',
  3274. children = {
  3275. 'Register(name=a):0:1:@a',
  3276. {
  3277. 'TernaryValue:0:6::',
  3278. children = {
  3279. 'Register(name=b):0:4:@b',
  3280. 'Register(name=c):0:7:@c',
  3281. },
  3282. },
  3283. },
  3284. },
  3285. },
  3286. },
  3287. {
  3288. 'TernaryValue:0:13::',
  3289. children = {
  3290. 'Register(name=d):0:11:@d',
  3291. 'Register(name=e):0:14:@e',
  3292. },
  3293. },
  3294. },
  3295. },
  3296. },
  3297. }, {
  3298. hl('NestingParenthesis', '('),
  3299. hl('Register', '@a'),
  3300. hl('Ternary', '?'),
  3301. hl('Register', '@b'),
  3302. hl('TernaryColon', ':'),
  3303. hl('Register', '@c'),
  3304. hl('NestingParenthesis', ')'),
  3305. hl('Ternary', '?'),
  3306. hl('Register', '@d'),
  3307. hl('TernaryColon', ':'),
  3308. hl('Register', '@e'),
  3309. })
  3310. check_parsing('(@a?@b:@c)?(@d?@e:@f):(@g?@h:@i)', {
  3311. -- 01234567890123456789012345678901
  3312. -- 0 1 2 3
  3313. ast = {
  3314. {
  3315. 'Ternary:0:10:?',
  3316. children = {
  3317. {
  3318. 'Nested:0:0:(',
  3319. children = {
  3320. {
  3321. 'Ternary:0:3:?',
  3322. children = {
  3323. 'Register(name=a):0:1:@a',
  3324. {
  3325. 'TernaryValue:0:6::',
  3326. children = {
  3327. 'Register(name=b):0:4:@b',
  3328. 'Register(name=c):0:7:@c',
  3329. },
  3330. },
  3331. },
  3332. },
  3333. },
  3334. },
  3335. {
  3336. 'TernaryValue:0:21::',
  3337. children = {
  3338. {
  3339. 'Nested:0:11:(',
  3340. children = {
  3341. {
  3342. 'Ternary:0:14:?',
  3343. children = {
  3344. 'Register(name=d):0:12:@d',
  3345. {
  3346. 'TernaryValue:0:17::',
  3347. children = {
  3348. 'Register(name=e):0:15:@e',
  3349. 'Register(name=f):0:18:@f',
  3350. },
  3351. },
  3352. },
  3353. },
  3354. },
  3355. },
  3356. {
  3357. 'Nested:0:22:(',
  3358. children = {
  3359. {
  3360. 'Ternary:0:25:?',
  3361. children = {
  3362. 'Register(name=g):0:23:@g',
  3363. {
  3364. 'TernaryValue:0:28::',
  3365. children = {
  3366. 'Register(name=h):0:26:@h',
  3367. 'Register(name=i):0:29:@i',
  3368. },
  3369. },
  3370. },
  3371. },
  3372. },
  3373. },
  3374. },
  3375. },
  3376. },
  3377. },
  3378. },
  3379. }, {
  3380. hl('NestingParenthesis', '('),
  3381. hl('Register', '@a'),
  3382. hl('Ternary', '?'),
  3383. hl('Register', '@b'),
  3384. hl('TernaryColon', ':'),
  3385. hl('Register', '@c'),
  3386. hl('NestingParenthesis', ')'),
  3387. hl('Ternary', '?'),
  3388. hl('NestingParenthesis', '('),
  3389. hl('Register', '@d'),
  3390. hl('Ternary', '?'),
  3391. hl('Register', '@e'),
  3392. hl('TernaryColon', ':'),
  3393. hl('Register', '@f'),
  3394. hl('NestingParenthesis', ')'),
  3395. hl('TernaryColon', ':'),
  3396. hl('NestingParenthesis', '('),
  3397. hl('Register', '@g'),
  3398. hl('Ternary', '?'),
  3399. hl('Register', '@h'),
  3400. hl('TernaryColon', ':'),
  3401. hl('Register', '@i'),
  3402. hl('NestingParenthesis', ')'),
  3403. })
  3404. check_parsing('(@a?@b:@c)?@d?@e:@f:@g?@h:@i', {
  3405. -- 0123456789012345678901234567
  3406. -- 0 1 2
  3407. ast = {
  3408. {
  3409. 'Ternary:0:10:?',
  3410. children = {
  3411. {
  3412. 'Nested:0:0:(',
  3413. children = {
  3414. {
  3415. 'Ternary:0:3:?',
  3416. children = {
  3417. 'Register(name=a):0:1:@a',
  3418. {
  3419. 'TernaryValue:0:6::',
  3420. children = {
  3421. 'Register(name=b):0:4:@b',
  3422. 'Register(name=c):0:7:@c',
  3423. },
  3424. },
  3425. },
  3426. },
  3427. },
  3428. },
  3429. {
  3430. 'TernaryValue:0:19::',
  3431. children = {
  3432. {
  3433. 'Ternary:0:13:?',
  3434. children = {
  3435. 'Register(name=d):0:11:@d',
  3436. {
  3437. 'TernaryValue:0:16::',
  3438. children = {
  3439. 'Register(name=e):0:14:@e',
  3440. 'Register(name=f):0:17:@f',
  3441. },
  3442. },
  3443. },
  3444. },
  3445. {
  3446. 'Ternary:0:22:?',
  3447. children = {
  3448. 'Register(name=g):0:20:@g',
  3449. {
  3450. 'TernaryValue:0:25::',
  3451. children = {
  3452. 'Register(name=h):0:23:@h',
  3453. 'Register(name=i):0:26:@i',
  3454. },
  3455. },
  3456. },
  3457. },
  3458. },
  3459. },
  3460. },
  3461. },
  3462. },
  3463. }, {
  3464. hl('NestingParenthesis', '('),
  3465. hl('Register', '@a'),
  3466. hl('Ternary', '?'),
  3467. hl('Register', '@b'),
  3468. hl('TernaryColon', ':'),
  3469. hl('Register', '@c'),
  3470. hl('NestingParenthesis', ')'),
  3471. hl('Ternary', '?'),
  3472. hl('Register', '@d'),
  3473. hl('Ternary', '?'),
  3474. hl('Register', '@e'),
  3475. hl('TernaryColon', ':'),
  3476. hl('Register', '@f'),
  3477. hl('TernaryColon', ':'),
  3478. hl('Register', '@g'),
  3479. hl('Ternary', '?'),
  3480. hl('Register', '@h'),
  3481. hl('TernaryColon', ':'),
  3482. hl('Register', '@i'),
  3483. })
  3484. check_parsing('a?b{cdef}g:h', {
  3485. -- 012345678901
  3486. -- 0 1
  3487. ast = {
  3488. {
  3489. 'Ternary:0:1:?',
  3490. children = {
  3491. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  3492. {
  3493. 'TernaryValue:0:10::',
  3494. children = {
  3495. {
  3496. 'ComplexIdentifier:0:3:',
  3497. children = {
  3498. 'PlainIdentifier(scope=0,ident=b):0:2:b',
  3499. {
  3500. 'ComplexIdentifier:0:9:',
  3501. children = {
  3502. {
  3503. fmtn('CurlyBracesIdentifier', '--i', ':0:3:{'),
  3504. children = {
  3505. 'PlainIdentifier(scope=0,ident=cdef):0:4:cdef',
  3506. },
  3507. },
  3508. 'PlainIdentifier(scope=0,ident=g):0:9:g',
  3509. },
  3510. },
  3511. },
  3512. },
  3513. 'PlainIdentifier(scope=0,ident=h):0:11:h',
  3514. },
  3515. },
  3516. },
  3517. },
  3518. },
  3519. }, {
  3520. hl('IdentifierName', 'a'),
  3521. hl('Ternary', '?'),
  3522. hl('IdentifierName', 'b'),
  3523. hl('Curly', '{'),
  3524. hl('IdentifierName', 'cdef'),
  3525. hl('Curly', '}'),
  3526. hl('IdentifierName', 'g'),
  3527. hl('TernaryColon', ':'),
  3528. hl('IdentifierName', 'h'),
  3529. })
  3530. check_parsing('a ? b : c : d', {
  3531. -- 0123456789012
  3532. -- 0 1
  3533. ast = {
  3534. {
  3535. 'Colon:0:9: :',
  3536. children = {
  3537. {
  3538. 'Ternary:0:1: ?',
  3539. children = {
  3540. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  3541. {
  3542. 'TernaryValue:0:5: :',
  3543. children = {
  3544. 'PlainIdentifier(scope=0,ident=b):0:3: b',
  3545. 'PlainIdentifier(scope=0,ident=c):0:7: c',
  3546. },
  3547. },
  3548. },
  3549. },
  3550. 'PlainIdentifier(scope=0,ident=d):0:11: d',
  3551. },
  3552. },
  3553. },
  3554. err = {
  3555. arg = ': d',
  3556. msg = 'E15: Colon outside of dictionary or ternary operator: %.*s',
  3557. },
  3558. }, {
  3559. hl('IdentifierName', 'a'),
  3560. hl('Ternary', '?', 1),
  3561. hl('IdentifierName', 'b', 1),
  3562. hl('TernaryColon', ':', 1),
  3563. hl('IdentifierName', 'c', 1),
  3564. hl('InvalidColon', ':', 1),
  3565. hl('IdentifierName', 'd', 1),
  3566. })
  3567. end)
  3568. itp('works with comparison operators', function()
  3569. check_parsing('a == b', {
  3570. -- 012345
  3571. ast = {
  3572. {
  3573. 'Comparison(type=Equal,inv=0,ccs=UseOption):0:1: ==',
  3574. children = {
  3575. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  3576. 'PlainIdentifier(scope=0,ident=b):0:4: b',
  3577. },
  3578. },
  3579. },
  3580. }, {
  3581. hl('IdentifierName', 'a'),
  3582. hl('Comparison', '==', 1),
  3583. hl('IdentifierName', 'b', 1),
  3584. })
  3585. check_parsing('a ==? b', {
  3586. -- 0123456
  3587. ast = {
  3588. {
  3589. 'Comparison(type=Equal,inv=0,ccs=IgnoreCase):0:1: ==?',
  3590. children = {
  3591. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  3592. 'PlainIdentifier(scope=0,ident=b):0:5: b',
  3593. },
  3594. },
  3595. },
  3596. }, {
  3597. hl('IdentifierName', 'a'),
  3598. hl('Comparison', '==', 1),
  3599. hl('ComparisonModifier', '?'),
  3600. hl('IdentifierName', 'b', 1),
  3601. })
  3602. check_parsing('a ==# b', {
  3603. -- 0123456
  3604. ast = {
  3605. {
  3606. 'Comparison(type=Equal,inv=0,ccs=MatchCase):0:1: ==#',
  3607. children = {
  3608. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  3609. 'PlainIdentifier(scope=0,ident=b):0:5: b',
  3610. },
  3611. },
  3612. },
  3613. }, {
  3614. hl('IdentifierName', 'a'),
  3615. hl('Comparison', '==', 1),
  3616. hl('ComparisonModifier', '#'),
  3617. hl('IdentifierName', 'b', 1),
  3618. })
  3619. check_parsing('a !=# b', {
  3620. -- 0123456
  3621. ast = {
  3622. {
  3623. 'Comparison(type=Equal,inv=1,ccs=MatchCase):0:1: !=#',
  3624. children = {
  3625. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  3626. 'PlainIdentifier(scope=0,ident=b):0:5: b',
  3627. },
  3628. },
  3629. },
  3630. }, {
  3631. hl('IdentifierName', 'a'),
  3632. hl('Comparison', '!=', 1),
  3633. hl('ComparisonModifier', '#'),
  3634. hl('IdentifierName', 'b', 1),
  3635. })
  3636. check_parsing('a <=# b', {
  3637. -- 0123456
  3638. ast = {
  3639. {
  3640. 'Comparison(type=Greater,inv=1,ccs=MatchCase):0:1: <=#',
  3641. children = {
  3642. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  3643. 'PlainIdentifier(scope=0,ident=b):0:5: b',
  3644. },
  3645. },
  3646. },
  3647. }, {
  3648. hl('IdentifierName', 'a'),
  3649. hl('Comparison', '<=', 1),
  3650. hl('ComparisonModifier', '#'),
  3651. hl('IdentifierName', 'b', 1),
  3652. })
  3653. check_parsing('a >=# b', {
  3654. -- 0123456
  3655. ast = {
  3656. {
  3657. 'Comparison(type=GreaterOrEqual,inv=0,ccs=MatchCase):0:1: >=#',
  3658. children = {
  3659. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  3660. 'PlainIdentifier(scope=0,ident=b):0:5: b',
  3661. },
  3662. },
  3663. },
  3664. }, {
  3665. hl('IdentifierName', 'a'),
  3666. hl('Comparison', '>=', 1),
  3667. hl('ComparisonModifier', '#'),
  3668. hl('IdentifierName', 'b', 1),
  3669. })
  3670. check_parsing('a ># b', {
  3671. -- 012345
  3672. ast = {
  3673. {
  3674. 'Comparison(type=Greater,inv=0,ccs=MatchCase):0:1: >#',
  3675. children = {
  3676. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  3677. 'PlainIdentifier(scope=0,ident=b):0:4: b',
  3678. },
  3679. },
  3680. },
  3681. }, {
  3682. hl('IdentifierName', 'a'),
  3683. hl('Comparison', '>', 1),
  3684. hl('ComparisonModifier', '#'),
  3685. hl('IdentifierName', 'b', 1),
  3686. })
  3687. check_parsing('a <# b', {
  3688. -- 012345
  3689. ast = {
  3690. {
  3691. 'Comparison(type=GreaterOrEqual,inv=1,ccs=MatchCase):0:1: <#',
  3692. children = {
  3693. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  3694. 'PlainIdentifier(scope=0,ident=b):0:4: b',
  3695. },
  3696. },
  3697. },
  3698. }, {
  3699. hl('IdentifierName', 'a'),
  3700. hl('Comparison', '<', 1),
  3701. hl('ComparisonModifier', '#'),
  3702. hl('IdentifierName', 'b', 1),
  3703. })
  3704. check_parsing('a is#b', {
  3705. -- 012345
  3706. ast = {
  3707. {
  3708. 'Comparison(type=Identical,inv=0,ccs=MatchCase):0:1: is#',
  3709. children = {
  3710. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  3711. 'PlainIdentifier(scope=0,ident=b):0:5:b',
  3712. },
  3713. },
  3714. },
  3715. }, {
  3716. hl('IdentifierName', 'a'),
  3717. hl('Comparison', 'is', 1),
  3718. hl('ComparisonModifier', '#'),
  3719. hl('IdentifierName', 'b'),
  3720. })
  3721. check_parsing('a is?b', {
  3722. -- 012345
  3723. ast = {
  3724. {
  3725. 'Comparison(type=Identical,inv=0,ccs=IgnoreCase):0:1: is?',
  3726. children = {
  3727. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  3728. 'PlainIdentifier(scope=0,ident=b):0:5:b',
  3729. },
  3730. },
  3731. },
  3732. }, {
  3733. hl('IdentifierName', 'a'),
  3734. hl('Comparison', 'is', 1),
  3735. hl('ComparisonModifier', '?'),
  3736. hl('IdentifierName', 'b'),
  3737. })
  3738. check_parsing('a isnot b', {
  3739. -- 012345678
  3740. ast = {
  3741. {
  3742. 'Comparison(type=Identical,inv=1,ccs=UseOption):0:1: isnot',
  3743. children = {
  3744. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  3745. 'PlainIdentifier(scope=0,ident=b):0:7: b',
  3746. },
  3747. },
  3748. },
  3749. }, {
  3750. hl('IdentifierName', 'a'),
  3751. hl('Comparison', 'isnot', 1),
  3752. hl('IdentifierName', 'b', 1),
  3753. })
  3754. check_parsing('a < b < c', {
  3755. -- 012345678
  3756. ast = {
  3757. {
  3758. 'Comparison(type=GreaterOrEqual,inv=1,ccs=UseOption):0:1: <',
  3759. children = {
  3760. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  3761. {
  3762. 'Comparison(type=GreaterOrEqual,inv=1,ccs=UseOption):0:5: <',
  3763. children = {
  3764. 'PlainIdentifier(scope=0,ident=b):0:3: b',
  3765. 'PlainIdentifier(scope=0,ident=c):0:7: c',
  3766. },
  3767. },
  3768. },
  3769. },
  3770. },
  3771. err = {
  3772. arg = ' < c',
  3773. msg = 'E15: Operator is not associative: %.*s',
  3774. },
  3775. }, {
  3776. hl('IdentifierName', 'a'),
  3777. hl('Comparison', '<', 1),
  3778. hl('IdentifierName', 'b', 1),
  3779. hl('InvalidComparison', '<', 1),
  3780. hl('IdentifierName', 'c', 1),
  3781. })
  3782. check_parsing('a < b <# c', {
  3783. -- 012345678
  3784. ast = {
  3785. {
  3786. 'Comparison(type=GreaterOrEqual,inv=1,ccs=UseOption):0:1: <',
  3787. children = {
  3788. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  3789. {
  3790. 'Comparison(type=GreaterOrEqual,inv=1,ccs=MatchCase):0:5: <#',
  3791. children = {
  3792. 'PlainIdentifier(scope=0,ident=b):0:3: b',
  3793. 'PlainIdentifier(scope=0,ident=c):0:8: c',
  3794. },
  3795. },
  3796. },
  3797. },
  3798. },
  3799. err = {
  3800. arg = ' <# c',
  3801. msg = 'E15: Operator is not associative: %.*s',
  3802. },
  3803. }, {
  3804. hl('IdentifierName', 'a'),
  3805. hl('Comparison', '<', 1),
  3806. hl('IdentifierName', 'b', 1),
  3807. hl('InvalidComparison', '<', 1),
  3808. hl('InvalidComparisonModifier', '#'),
  3809. hl('IdentifierName', 'c', 1),
  3810. })
  3811. check_parsing('a += b', {
  3812. -- 012345
  3813. ast = {
  3814. {
  3815. 'Assignment(Add):0:1: +=',
  3816. children = {
  3817. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  3818. 'PlainIdentifier(scope=0,ident=b):0:4: b',
  3819. },
  3820. },
  3821. },
  3822. err = {
  3823. arg = '+= b',
  3824. msg = 'E15: Misplaced assignment: %.*s',
  3825. },
  3826. }, {
  3827. hl('IdentifierName', 'a'),
  3828. hl('InvalidAssignmentWithAddition', '+=', 1),
  3829. hl('IdentifierName', 'b', 1),
  3830. })
  3831. check_parsing('a + b == c + d', {
  3832. -- 01234567890123
  3833. -- 0 1
  3834. ast = {
  3835. {
  3836. 'Comparison(type=Equal,inv=0,ccs=UseOption):0:5: ==',
  3837. children = {
  3838. {
  3839. 'BinaryPlus:0:1: +',
  3840. children = {
  3841. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  3842. 'PlainIdentifier(scope=0,ident=b):0:3: b',
  3843. },
  3844. },
  3845. {
  3846. 'BinaryPlus:0:10: +',
  3847. children = {
  3848. 'PlainIdentifier(scope=0,ident=c):0:8: c',
  3849. 'PlainIdentifier(scope=0,ident=d):0:12: d',
  3850. },
  3851. },
  3852. },
  3853. },
  3854. },
  3855. }, {
  3856. hl('IdentifierName', 'a'),
  3857. hl('BinaryPlus', '+', 1),
  3858. hl('IdentifierName', 'b', 1),
  3859. hl('Comparison', '==', 1),
  3860. hl('IdentifierName', 'c', 1),
  3861. hl('BinaryPlus', '+', 1),
  3862. hl('IdentifierName', 'd', 1),
  3863. })
  3864. check_parsing('+ a == + b', {
  3865. -- 0123456789
  3866. ast = {
  3867. {
  3868. 'Comparison(type=Equal,inv=0,ccs=UseOption):0:3: ==',
  3869. children = {
  3870. {
  3871. 'UnaryPlus:0:0:+',
  3872. children = {
  3873. 'PlainIdentifier(scope=0,ident=a):0:1: a',
  3874. },
  3875. },
  3876. {
  3877. 'UnaryPlus:0:6: +',
  3878. children = {
  3879. 'PlainIdentifier(scope=0,ident=b):0:8: b',
  3880. },
  3881. },
  3882. },
  3883. },
  3884. },
  3885. }, {
  3886. hl('UnaryPlus', '+'),
  3887. hl('IdentifierName', 'a', 1),
  3888. hl('Comparison', '==', 1),
  3889. hl('UnaryPlus', '+', 1),
  3890. hl('IdentifierName', 'b', 1),
  3891. })
  3892. end)
  3893. itp('works with concat/subscript', function()
  3894. check_parsing('.', {
  3895. -- 0
  3896. ast = {
  3897. {
  3898. 'ConcatOrSubscript:0:0:.',
  3899. children = {
  3900. 'Missing:0:0:',
  3901. },
  3902. },
  3903. },
  3904. err = {
  3905. arg = '.',
  3906. msg = 'E15: Unexpected dot: %.*s',
  3907. },
  3908. }, {
  3909. hl('InvalidConcatOrSubscript', '.'),
  3910. })
  3911. check_parsing('a.', {
  3912. -- 01
  3913. ast = {
  3914. {
  3915. 'ConcatOrSubscript:0:1:.',
  3916. children = {
  3917. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  3918. },
  3919. },
  3920. },
  3921. err = {
  3922. arg = '',
  3923. msg = 'E15: Expected value, got EOC: %.*s',
  3924. },
  3925. }, {
  3926. hl('IdentifierName', 'a'),
  3927. hl('ConcatOrSubscript', '.'),
  3928. })
  3929. check_parsing('a.b', {
  3930. -- 012
  3931. ast = {
  3932. {
  3933. 'ConcatOrSubscript:0:1:.',
  3934. children = {
  3935. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  3936. 'PlainKey(key=b):0:2:b',
  3937. },
  3938. },
  3939. },
  3940. }, {
  3941. hl('IdentifierName', 'a'),
  3942. hl('ConcatOrSubscript', '.'),
  3943. hl('IdentifierKey', 'b'),
  3944. })
  3945. check_parsing('1.2', {
  3946. -- 012
  3947. ast = {
  3948. 'Float(val=1.200000e+00):0:0:1.2',
  3949. },
  3950. }, {
  3951. hl('Float', '1.2'),
  3952. })
  3953. check_parsing('1.2 + 1.3e-5', {
  3954. -- 012345678901
  3955. -- 0 1
  3956. ast = {
  3957. {
  3958. 'BinaryPlus:0:3: +',
  3959. children = {
  3960. 'Float(val=1.200000e+00):0:0:1.2',
  3961. 'Float(val=1.300000e-05):0:5: 1.3e-5',
  3962. },
  3963. },
  3964. },
  3965. }, {
  3966. hl('Float', '1.2'),
  3967. hl('BinaryPlus', '+', 1),
  3968. hl('Float', '1.3e-5', 1),
  3969. })
  3970. check_parsing('a . 1.2 + 1.3e-5', {
  3971. -- 0123456789012345
  3972. -- 0 1
  3973. ast = {
  3974. {
  3975. 'BinaryPlus:0:7: +',
  3976. children = {
  3977. {
  3978. 'Concat:0:1: .',
  3979. children = {
  3980. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  3981. {
  3982. 'ConcatOrSubscript:0:5:.',
  3983. children = {
  3984. 'Integer(val=1):0:3: 1',
  3985. 'PlainKey(key=2):0:6:2',
  3986. },
  3987. },
  3988. },
  3989. },
  3990. 'Float(val=1.300000e-05):0:9: 1.3e-5',
  3991. },
  3992. },
  3993. },
  3994. }, {
  3995. hl('IdentifierName', 'a'),
  3996. hl('Concat', '.', 1),
  3997. hl('Number', '1', 1),
  3998. hl('ConcatOrSubscript', '.'),
  3999. hl('IdentifierKey', '2'),
  4000. hl('BinaryPlus', '+', 1),
  4001. hl('Float', '1.3e-5', 1),
  4002. })
  4003. check_parsing('1.3e-5 + 1.2 . a', {
  4004. -- 0123456789012345
  4005. -- 0 1
  4006. ast = {
  4007. {
  4008. 'Concat:0:12: .',
  4009. children = {
  4010. {
  4011. 'BinaryPlus:0:6: +',
  4012. children = {
  4013. 'Float(val=1.300000e-05):0:0:1.3e-5',
  4014. 'Float(val=1.200000e+00):0:8: 1.2',
  4015. },
  4016. },
  4017. 'PlainIdentifier(scope=0,ident=a):0:14: a',
  4018. },
  4019. },
  4020. },
  4021. }, {
  4022. hl('Float', '1.3e-5'),
  4023. hl('BinaryPlus', '+', 1),
  4024. hl('Float', '1.2', 1),
  4025. hl('Concat', '.', 1),
  4026. hl('IdentifierName', 'a', 1),
  4027. })
  4028. check_parsing('1.3e-5 + a . 1.2', {
  4029. -- 0123456789012345
  4030. -- 0 1
  4031. ast = {
  4032. {
  4033. 'Concat:0:10: .',
  4034. children = {
  4035. {
  4036. 'BinaryPlus:0:6: +',
  4037. children = {
  4038. 'Float(val=1.300000e-05):0:0:1.3e-5',
  4039. 'PlainIdentifier(scope=0,ident=a):0:8: a',
  4040. },
  4041. },
  4042. {
  4043. 'ConcatOrSubscript:0:14:.',
  4044. children = {
  4045. 'Integer(val=1):0:12: 1',
  4046. 'PlainKey(key=2):0:15:2',
  4047. },
  4048. },
  4049. },
  4050. },
  4051. },
  4052. }, {
  4053. hl('Float', '1.3e-5'),
  4054. hl('BinaryPlus', '+', 1),
  4055. hl('IdentifierName', 'a', 1),
  4056. hl('Concat', '.', 1),
  4057. hl('Number', '1', 1),
  4058. hl('ConcatOrSubscript', '.'),
  4059. hl('IdentifierKey', '2'),
  4060. })
  4061. check_parsing('1.2.3', {
  4062. -- 01234
  4063. ast = {
  4064. {
  4065. 'ConcatOrSubscript:0:3:.',
  4066. children = {
  4067. {
  4068. 'ConcatOrSubscript:0:1:.',
  4069. children = {
  4070. 'Integer(val=1):0:0:1',
  4071. 'PlainKey(key=2):0:2:2',
  4072. },
  4073. },
  4074. 'PlainKey(key=3):0:4:3',
  4075. },
  4076. },
  4077. },
  4078. }, {
  4079. hl('Number', '1'),
  4080. hl('ConcatOrSubscript', '.'),
  4081. hl('IdentifierKey', '2'),
  4082. hl('ConcatOrSubscript', '.'),
  4083. hl('IdentifierKey', '3'),
  4084. })
  4085. check_parsing('a.1.2', {
  4086. -- 01234
  4087. ast = {
  4088. {
  4089. 'ConcatOrSubscript:0:3:.',
  4090. children = {
  4091. {
  4092. 'ConcatOrSubscript:0:1:.',
  4093. children = {
  4094. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  4095. 'PlainKey(key=1):0:2:1',
  4096. },
  4097. },
  4098. 'PlainKey(key=2):0:4:2',
  4099. },
  4100. },
  4101. },
  4102. }, {
  4103. hl('IdentifierName', 'a'),
  4104. hl('ConcatOrSubscript', '.'),
  4105. hl('IdentifierKey', '1'),
  4106. hl('ConcatOrSubscript', '.'),
  4107. hl('IdentifierKey', '2'),
  4108. })
  4109. check_parsing('a . 1.2', {
  4110. -- 0123456
  4111. ast = {
  4112. {
  4113. 'Concat:0:1: .',
  4114. children = {
  4115. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  4116. {
  4117. 'ConcatOrSubscript:0:5:.',
  4118. children = {
  4119. 'Integer(val=1):0:3: 1',
  4120. 'PlainKey(key=2):0:6:2',
  4121. },
  4122. },
  4123. },
  4124. },
  4125. },
  4126. }, {
  4127. hl('IdentifierName', 'a'),
  4128. hl('Concat', '.', 1),
  4129. hl('Number', '1', 1),
  4130. hl('ConcatOrSubscript', '.'),
  4131. hl('IdentifierKey', '2'),
  4132. })
  4133. check_parsing('+a . +b', {
  4134. -- 0123456
  4135. ast = {
  4136. {
  4137. 'Concat:0:2: .',
  4138. children = {
  4139. {
  4140. 'UnaryPlus:0:0:+',
  4141. children = {
  4142. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  4143. },
  4144. },
  4145. {
  4146. 'UnaryPlus:0:4: +',
  4147. children = {
  4148. 'PlainIdentifier(scope=0,ident=b):0:6:b',
  4149. },
  4150. },
  4151. },
  4152. },
  4153. },
  4154. }, {
  4155. hl('UnaryPlus', '+'),
  4156. hl('IdentifierName', 'a'),
  4157. hl('Concat', '.', 1),
  4158. hl('UnaryPlus', '+', 1),
  4159. hl('IdentifierName', 'b'),
  4160. })
  4161. check_parsing('a. b', {
  4162. -- 0123
  4163. ast = {
  4164. {
  4165. 'Concat:0:1:.',
  4166. children = {
  4167. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  4168. 'PlainIdentifier(scope=0,ident=b):0:2: b',
  4169. },
  4170. },
  4171. },
  4172. }, {
  4173. hl('IdentifierName', 'a'),
  4174. hl('ConcatOrSubscript', '.'),
  4175. hl('IdentifierName', 'b', 1),
  4176. })
  4177. check_parsing('a. 1', {
  4178. -- 0123
  4179. ast = {
  4180. {
  4181. 'Concat:0:1:.',
  4182. children = {
  4183. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  4184. 'Integer(val=1):0:2: 1',
  4185. },
  4186. },
  4187. },
  4188. }, {
  4189. hl('IdentifierName', 'a'),
  4190. hl('ConcatOrSubscript', '.'),
  4191. hl('Number', '1', 1),
  4192. })
  4193. check_parsing('a[1][2][3[4', {
  4194. -- 01234567890
  4195. -- 0 1
  4196. ast = {
  4197. {
  4198. 'Subscript:0:7:[',
  4199. children = {
  4200. {
  4201. 'Subscript:0:4:[',
  4202. children = {
  4203. {
  4204. 'Subscript:0:1:[',
  4205. children = {
  4206. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  4207. 'Integer(val=1):0:2:1',
  4208. },
  4209. },
  4210. 'Integer(val=2):0:5:2',
  4211. },
  4212. },
  4213. {
  4214. 'Subscript:0:9:[',
  4215. children = {
  4216. 'Integer(val=3):0:8:3',
  4217. 'Integer(val=4):0:10:4',
  4218. },
  4219. },
  4220. },
  4221. },
  4222. },
  4223. }, {
  4224. hl('IdentifierName', 'a'),
  4225. hl('SubscriptBracket', '['),
  4226. hl('Number', '1'),
  4227. hl('SubscriptBracket', ']'),
  4228. hl('SubscriptBracket', '['),
  4229. hl('Number', '2'),
  4230. hl('SubscriptBracket', ']'),
  4231. hl('SubscriptBracket', '['),
  4232. hl('Number', '3'),
  4233. hl('SubscriptBracket', '['),
  4234. hl('Number', '4'),
  4235. })
  4236. end)
  4237. itp('works with bracket subscripts', function()
  4238. check_parsing(':', {
  4239. -- 0
  4240. ast = {
  4241. {
  4242. 'Colon:0:0::',
  4243. children = {
  4244. 'Missing:0:0:',
  4245. },
  4246. },
  4247. },
  4248. err = {
  4249. arg = ':',
  4250. msg = 'E15: Colon outside of dictionary or ternary operator: %.*s',
  4251. },
  4252. }, {
  4253. hl('InvalidColon', ':'),
  4254. })
  4255. check_parsing('a[]', {
  4256. -- 012
  4257. ast = {
  4258. {
  4259. 'Subscript:0:1:[',
  4260. children = {
  4261. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  4262. },
  4263. },
  4264. },
  4265. err = {
  4266. arg = ']',
  4267. msg = 'E15: Expected value, got closing bracket: %.*s',
  4268. },
  4269. }, {
  4270. hl('IdentifierName', 'a'),
  4271. hl('SubscriptBracket', '['),
  4272. hl('InvalidSubscriptBracket', ']'),
  4273. })
  4274. check_parsing('a[b:]', {
  4275. -- 01234
  4276. ast = {
  4277. {
  4278. 'Subscript:0:1:[',
  4279. children = {
  4280. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  4281. 'PlainIdentifier(scope=b,ident=):0:2:b:',
  4282. },
  4283. },
  4284. },
  4285. }, {
  4286. hl('IdentifierName', 'a'),
  4287. hl('SubscriptBracket', '['),
  4288. hl('IdentifierScope', 'b'),
  4289. hl('IdentifierScopeDelimiter', ':'),
  4290. hl('SubscriptBracket', ']'),
  4291. })
  4292. check_parsing('a[b:c]', {
  4293. -- 012345
  4294. ast = {
  4295. {
  4296. 'Subscript:0:1:[',
  4297. children = {
  4298. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  4299. 'PlainIdentifier(scope=b,ident=c):0:2:b:c',
  4300. },
  4301. },
  4302. },
  4303. }, {
  4304. hl('IdentifierName', 'a'),
  4305. hl('SubscriptBracket', '['),
  4306. hl('IdentifierScope', 'b'),
  4307. hl('IdentifierScopeDelimiter', ':'),
  4308. hl('IdentifierName', 'c'),
  4309. hl('SubscriptBracket', ']'),
  4310. })
  4311. check_parsing('a[b : c]', {
  4312. -- 01234567
  4313. ast = {
  4314. {
  4315. 'Subscript:0:1:[',
  4316. children = {
  4317. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  4318. {
  4319. 'Colon:0:3: :',
  4320. children = {
  4321. 'PlainIdentifier(scope=0,ident=b):0:2:b',
  4322. 'PlainIdentifier(scope=0,ident=c):0:5: c',
  4323. },
  4324. },
  4325. },
  4326. },
  4327. },
  4328. }, {
  4329. hl('IdentifierName', 'a'),
  4330. hl('SubscriptBracket', '['),
  4331. hl('IdentifierName', 'b'),
  4332. hl('SubscriptColon', ':', 1),
  4333. hl('IdentifierName', 'c', 1),
  4334. hl('SubscriptBracket', ']'),
  4335. })
  4336. check_parsing('a[: b]', {
  4337. -- 012345
  4338. ast = {
  4339. {
  4340. 'Subscript:0:1:[',
  4341. children = {
  4342. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  4343. {
  4344. 'Colon:0:2::',
  4345. children = {
  4346. 'Missing:0:2:',
  4347. 'PlainIdentifier(scope=0,ident=b):0:3: b',
  4348. },
  4349. },
  4350. },
  4351. },
  4352. },
  4353. }, {
  4354. hl('IdentifierName', 'a'),
  4355. hl('SubscriptBracket', '['),
  4356. hl('SubscriptColon', ':'),
  4357. hl('IdentifierName', 'b', 1),
  4358. hl('SubscriptBracket', ']'),
  4359. })
  4360. check_parsing('a[b :]', {
  4361. -- 012345
  4362. ast = {
  4363. {
  4364. 'Subscript:0:1:[',
  4365. children = {
  4366. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  4367. {
  4368. 'Colon:0:3: :',
  4369. children = {
  4370. 'PlainIdentifier(scope=0,ident=b):0:2:b',
  4371. },
  4372. },
  4373. },
  4374. },
  4375. },
  4376. }, {
  4377. hl('IdentifierName', 'a'),
  4378. hl('SubscriptBracket', '['),
  4379. hl('IdentifierName', 'b'),
  4380. hl('SubscriptColon', ':', 1),
  4381. hl('SubscriptBracket', ']'),
  4382. })
  4383. check_parsing('a[b][c][d](e)(f)(g)', {
  4384. -- 0123456789012345678
  4385. -- 0 1
  4386. ast = {
  4387. {
  4388. 'Call:0:16:(',
  4389. children = {
  4390. {
  4391. 'Call:0:13:(',
  4392. children = {
  4393. {
  4394. 'Call:0:10:(',
  4395. children = {
  4396. {
  4397. 'Subscript:0:7:[',
  4398. children = {
  4399. {
  4400. 'Subscript:0:4:[',
  4401. children = {
  4402. {
  4403. 'Subscript:0:1:[',
  4404. children = {
  4405. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  4406. 'PlainIdentifier(scope=0,ident=b):0:2:b',
  4407. },
  4408. },
  4409. 'PlainIdentifier(scope=0,ident=c):0:5:c',
  4410. },
  4411. },
  4412. 'PlainIdentifier(scope=0,ident=d):0:8:d',
  4413. },
  4414. },
  4415. 'PlainIdentifier(scope=0,ident=e):0:11:e',
  4416. },
  4417. },
  4418. 'PlainIdentifier(scope=0,ident=f):0:14:f',
  4419. },
  4420. },
  4421. 'PlainIdentifier(scope=0,ident=g):0:17:g',
  4422. },
  4423. },
  4424. },
  4425. }, {
  4426. hl('IdentifierName', 'a'),
  4427. hl('SubscriptBracket', '['),
  4428. hl('IdentifierName', 'b'),
  4429. hl('SubscriptBracket', ']'),
  4430. hl('SubscriptBracket', '['),
  4431. hl('IdentifierName', 'c'),
  4432. hl('SubscriptBracket', ']'),
  4433. hl('SubscriptBracket', '['),
  4434. hl('IdentifierName', 'd'),
  4435. hl('SubscriptBracket', ']'),
  4436. hl('CallingParenthesis', '('),
  4437. hl('IdentifierName', 'e'),
  4438. hl('CallingParenthesis', ')'),
  4439. hl('CallingParenthesis', '('),
  4440. hl('IdentifierName', 'f'),
  4441. hl('CallingParenthesis', ')'),
  4442. hl('CallingParenthesis', '('),
  4443. hl('IdentifierName', 'g'),
  4444. hl('CallingParenthesis', ')'),
  4445. })
  4446. check_parsing('{a}{b}{c}[d][e][f]', {
  4447. -- 012345678901234567
  4448. -- 0 1
  4449. ast = {
  4450. {
  4451. 'Subscript:0:15:[',
  4452. children = {
  4453. {
  4454. 'Subscript:0:12:[',
  4455. children = {
  4456. {
  4457. 'Subscript:0:9:[',
  4458. children = {
  4459. {
  4460. 'ComplexIdentifier:0:3:',
  4461. children = {
  4462. {
  4463. fmtn('CurlyBracesIdentifier', '-di', ':0:0:{'),
  4464. children = {
  4465. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  4466. },
  4467. },
  4468. {
  4469. 'ComplexIdentifier:0:6:',
  4470. children = {
  4471. {
  4472. fmtn('CurlyBracesIdentifier', '--i', ':0:3:{'),
  4473. children = {
  4474. 'PlainIdentifier(scope=0,ident=b):0:4:b',
  4475. },
  4476. },
  4477. {
  4478. fmtn('CurlyBracesIdentifier', '--i', ':0:6:{'),
  4479. children = {
  4480. 'PlainIdentifier(scope=0,ident=c):0:7:c',
  4481. },
  4482. },
  4483. },
  4484. },
  4485. },
  4486. },
  4487. 'PlainIdentifier(scope=0,ident=d):0:10:d',
  4488. },
  4489. },
  4490. 'PlainIdentifier(scope=0,ident=e):0:13:e',
  4491. },
  4492. },
  4493. 'PlainIdentifier(scope=0,ident=f):0:16:f',
  4494. },
  4495. },
  4496. },
  4497. }, {
  4498. hl('Curly', '{'),
  4499. hl('IdentifierName', 'a'),
  4500. hl('Curly', '}'),
  4501. hl('Curly', '{'),
  4502. hl('IdentifierName', 'b'),
  4503. hl('Curly', '}'),
  4504. hl('Curly', '{'),
  4505. hl('IdentifierName', 'c'),
  4506. hl('Curly', '}'),
  4507. hl('SubscriptBracket', '['),
  4508. hl('IdentifierName', 'd'),
  4509. hl('SubscriptBracket', ']'),
  4510. hl('SubscriptBracket', '['),
  4511. hl('IdentifierName', 'e'),
  4512. hl('SubscriptBracket', ']'),
  4513. hl('SubscriptBracket', '['),
  4514. hl('IdentifierName', 'f'),
  4515. hl('SubscriptBracket', ']'),
  4516. })
  4517. end)
  4518. itp('supports list literals', function()
  4519. check_parsing('[]', {
  4520. -- 01
  4521. ast = {
  4522. 'ListLiteral:0:0:[',
  4523. },
  4524. }, {
  4525. hl('List', '['),
  4526. hl('List', ']'),
  4527. })
  4528. check_parsing('[a]', {
  4529. -- 012
  4530. ast = {
  4531. {
  4532. 'ListLiteral:0:0:[',
  4533. children = {
  4534. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  4535. },
  4536. },
  4537. },
  4538. }, {
  4539. hl('List', '['),
  4540. hl('IdentifierName', 'a'),
  4541. hl('List', ']'),
  4542. })
  4543. check_parsing('[a, b]', {
  4544. -- 012345
  4545. ast = {
  4546. {
  4547. 'ListLiteral:0:0:[',
  4548. children = {
  4549. {
  4550. 'Comma:0:2:,',
  4551. children = {
  4552. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  4553. 'PlainIdentifier(scope=0,ident=b):0:3: b',
  4554. },
  4555. },
  4556. },
  4557. },
  4558. },
  4559. }, {
  4560. hl('List', '['),
  4561. hl('IdentifierName', 'a'),
  4562. hl('Comma', ','),
  4563. hl('IdentifierName', 'b', 1),
  4564. hl('List', ']'),
  4565. })
  4566. check_parsing('[a, b, c]', {
  4567. -- 012345678
  4568. ast = {
  4569. {
  4570. 'ListLiteral:0:0:[',
  4571. children = {
  4572. {
  4573. 'Comma:0:2:,',
  4574. children = {
  4575. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  4576. {
  4577. 'Comma:0:5:,',
  4578. children = {
  4579. 'PlainIdentifier(scope=0,ident=b):0:3: b',
  4580. 'PlainIdentifier(scope=0,ident=c):0:6: c',
  4581. },
  4582. },
  4583. },
  4584. },
  4585. },
  4586. },
  4587. },
  4588. }, {
  4589. hl('List', '['),
  4590. hl('IdentifierName', 'a'),
  4591. hl('Comma', ','),
  4592. hl('IdentifierName', 'b', 1),
  4593. hl('Comma', ','),
  4594. hl('IdentifierName', 'c', 1),
  4595. hl('List', ']'),
  4596. })
  4597. check_parsing('[a, b, c, ]', {
  4598. -- 01234567890
  4599. -- 0 1
  4600. ast = {
  4601. {
  4602. 'ListLiteral:0:0:[',
  4603. children = {
  4604. {
  4605. 'Comma:0:2:,',
  4606. children = {
  4607. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  4608. {
  4609. 'Comma:0:5:,',
  4610. children = {
  4611. 'PlainIdentifier(scope=0,ident=b):0:3: b',
  4612. {
  4613. 'Comma:0:8:,',
  4614. children = {
  4615. 'PlainIdentifier(scope=0,ident=c):0:6: c',
  4616. },
  4617. },
  4618. },
  4619. },
  4620. },
  4621. },
  4622. },
  4623. },
  4624. },
  4625. }, {
  4626. hl('List', '['),
  4627. hl('IdentifierName', 'a'),
  4628. hl('Comma', ','),
  4629. hl('IdentifierName', 'b', 1),
  4630. hl('Comma', ','),
  4631. hl('IdentifierName', 'c', 1),
  4632. hl('Comma', ','),
  4633. hl('List', ']', 1),
  4634. })
  4635. check_parsing('[a : b, c : d]', {
  4636. -- 01234567890123
  4637. -- 0 1
  4638. ast = {
  4639. {
  4640. 'ListLiteral:0:0:[',
  4641. children = {
  4642. {
  4643. 'Comma:0:6:,',
  4644. children = {
  4645. {
  4646. 'Colon:0:2: :',
  4647. children = {
  4648. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  4649. 'PlainIdentifier(scope=0,ident=b):0:4: b',
  4650. },
  4651. },
  4652. {
  4653. 'Colon:0:9: :',
  4654. children = {
  4655. 'PlainIdentifier(scope=0,ident=c):0:7: c',
  4656. 'PlainIdentifier(scope=0,ident=d):0:11: d',
  4657. },
  4658. },
  4659. },
  4660. },
  4661. },
  4662. },
  4663. },
  4664. err = {
  4665. arg = ': b, c : d]',
  4666. msg = 'E15: Colon outside of dictionary or ternary operator: %.*s',
  4667. },
  4668. }, {
  4669. hl('List', '['),
  4670. hl('IdentifierName', 'a'),
  4671. hl('InvalidColon', ':', 1),
  4672. hl('IdentifierName', 'b', 1),
  4673. hl('Comma', ','),
  4674. hl('IdentifierName', 'c', 1),
  4675. hl('InvalidColon', ':', 1),
  4676. hl('IdentifierName', 'd', 1),
  4677. hl('List', ']'),
  4678. })
  4679. check_parsing(']', {
  4680. -- 0
  4681. ast = {
  4682. 'ListLiteral:0:0:',
  4683. },
  4684. err = {
  4685. arg = ']',
  4686. msg = 'E15: Unexpected closing figure brace: %.*s',
  4687. },
  4688. }, {
  4689. hl('InvalidList', ']'),
  4690. })
  4691. check_parsing('a]', {
  4692. -- 01
  4693. ast = {
  4694. {
  4695. 'ListLiteral:0:1:',
  4696. children = {
  4697. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  4698. },
  4699. },
  4700. },
  4701. err = {
  4702. arg = ']',
  4703. msg = 'E15: Unexpected closing figure brace: %.*s',
  4704. },
  4705. }, {
  4706. hl('IdentifierName', 'a'),
  4707. hl('InvalidList', ']'),
  4708. })
  4709. check_parsing('[] []', {
  4710. -- 01234
  4711. ast = {
  4712. {
  4713. 'OpMissing:0:2:',
  4714. children = {
  4715. 'ListLiteral:0:0:[',
  4716. 'ListLiteral:0:2: [',
  4717. },
  4718. },
  4719. },
  4720. err = {
  4721. arg = '[]',
  4722. msg = 'E15: Missing operator: %.*s',
  4723. },
  4724. }, {
  4725. hl('List', '['),
  4726. hl('List', ']'),
  4727. hl('InvalidSpacing', ' '),
  4728. hl('List', '['),
  4729. hl('List', ']'),
  4730. }, {
  4731. [1] = {
  4732. ast = {
  4733. len = 3,
  4734. err = REMOVE_THIS,
  4735. ast = {
  4736. 'ListLiteral:0:0:[',
  4737. },
  4738. },
  4739. hl_fs = {
  4740. [3] = REMOVE_THIS,
  4741. [4] = REMOVE_THIS,
  4742. [5] = REMOVE_THIS,
  4743. },
  4744. },
  4745. })
  4746. check_parsing('[][]', {
  4747. -- 0123
  4748. ast = {
  4749. {
  4750. 'Subscript:0:2:[',
  4751. children = {
  4752. 'ListLiteral:0:0:[',
  4753. },
  4754. },
  4755. },
  4756. err = {
  4757. arg = ']',
  4758. msg = 'E15: Expected value, got closing bracket: %.*s',
  4759. },
  4760. }, {
  4761. hl('List', '['),
  4762. hl('List', ']'),
  4763. hl('SubscriptBracket', '['),
  4764. hl('InvalidSubscriptBracket', ']'),
  4765. })
  4766. check_parsing('[', {
  4767. -- 0
  4768. ast = {
  4769. 'ListLiteral:0:0:[',
  4770. },
  4771. err = {
  4772. arg = '',
  4773. msg = 'E15: Expected value, got EOC: %.*s',
  4774. },
  4775. }, {
  4776. hl('List', '['),
  4777. })
  4778. check_parsing('[1', {
  4779. -- 01
  4780. ast = {
  4781. {
  4782. 'ListLiteral:0:0:[',
  4783. children = {
  4784. 'Integer(val=1):0:1:1',
  4785. },
  4786. },
  4787. },
  4788. err = {
  4789. arg = '[1',
  4790. msg = 'E697: Missing end of List \']\': %.*s',
  4791. },
  4792. }, {
  4793. hl('List', '['),
  4794. hl('Number', '1'),
  4795. })
  4796. end)
  4797. itp('works with strings', function()
  4798. check_parsing('\'abc\'', {
  4799. -- 01234
  4800. ast = {
  4801. fmtn('SingleQuotedString', 'val="abc"', ':0:0:\'abc\''),
  4802. },
  4803. }, {
  4804. hl('SingleQuote', '\''),
  4805. hl('SingleQuotedBody', 'abc'),
  4806. hl('SingleQuote', '\''),
  4807. })
  4808. check_parsing('"abc"', {
  4809. -- 01234
  4810. ast = {
  4811. fmtn('DoubleQuotedString', 'val="abc"', ':0:0:"abc"'),
  4812. },
  4813. }, {
  4814. hl('DoubleQuote', '"'),
  4815. hl('DoubleQuotedBody', 'abc'),
  4816. hl('DoubleQuote', '"'),
  4817. })
  4818. check_parsing('\'\'', {
  4819. -- 01
  4820. ast = {
  4821. fmtn('SingleQuotedString', 'val=NULL', ':0:0:\'\''),
  4822. },
  4823. }, {
  4824. hl('SingleQuote', '\''),
  4825. hl('SingleQuote', '\''),
  4826. })
  4827. check_parsing('""', {
  4828. -- 01
  4829. ast = {
  4830. fmtn('DoubleQuotedString', 'val=NULL', ':0:0:""'),
  4831. },
  4832. }, {
  4833. hl('DoubleQuote', '"'),
  4834. hl('DoubleQuote', '"'),
  4835. })
  4836. check_parsing('"', {
  4837. -- 0
  4838. ast = {
  4839. fmtn('DoubleQuotedString', 'val=NULL', ':0:0:"'),
  4840. },
  4841. err = {
  4842. arg = '"',
  4843. msg = 'E114: Missing double quote: %.*s',
  4844. },
  4845. }, {
  4846. hl('InvalidDoubleQuote', '"'),
  4847. })
  4848. check_parsing('\'', {
  4849. -- 0
  4850. ast = {
  4851. fmtn('SingleQuotedString', 'val=NULL', ':0:0:\''),
  4852. },
  4853. err = {
  4854. arg = '\'',
  4855. msg = 'E115: Missing single quote: %.*s',
  4856. },
  4857. }, {
  4858. hl('InvalidSingleQuote', '\''),
  4859. })
  4860. check_parsing('"a', {
  4861. -- 01
  4862. ast = {
  4863. fmtn('DoubleQuotedString', 'val="a"', ':0:0:"a'),
  4864. },
  4865. err = {
  4866. arg = '"a',
  4867. msg = 'E114: Missing double quote: %.*s',
  4868. },
  4869. }, {
  4870. hl('InvalidDoubleQuote', '"'),
  4871. hl('InvalidDoubleQuotedBody', 'a'),
  4872. })
  4873. check_parsing('\'a', {
  4874. -- 01
  4875. ast = {
  4876. fmtn('SingleQuotedString', 'val="a"', ':0:0:\'a'),
  4877. },
  4878. err = {
  4879. arg = '\'a',
  4880. msg = 'E115: Missing single quote: %.*s',
  4881. },
  4882. }, {
  4883. hl('InvalidSingleQuote', '\''),
  4884. hl('InvalidSingleQuotedBody', 'a'),
  4885. })
  4886. check_parsing('\'abc\'\'def\'', {
  4887. -- 0123456789
  4888. ast = {
  4889. fmtn('SingleQuotedString', 'val="abc\'def"', ':0:0:\'abc\'\'def\''),
  4890. },
  4891. }, {
  4892. hl('SingleQuote', '\''),
  4893. hl('SingleQuotedBody', 'abc'),
  4894. hl('SingleQuotedQuote', '\'\''),
  4895. hl('SingleQuotedBody', 'def'),
  4896. hl('SingleQuote', '\''),
  4897. })
  4898. check_parsing('\'abc\'\'', {
  4899. -- 012345
  4900. ast = {
  4901. fmtn('SingleQuotedString', 'val="abc\'"', ':0:0:\'abc\'\''),
  4902. },
  4903. err = {
  4904. arg = '\'abc\'\'',
  4905. msg = 'E115: Missing single quote: %.*s',
  4906. },
  4907. }, {
  4908. hl('InvalidSingleQuote', '\''),
  4909. hl('InvalidSingleQuotedBody', 'abc'),
  4910. hl('InvalidSingleQuotedQuote', '\'\''),
  4911. })
  4912. check_parsing('\'\'\'\'\'\'\'\'', {
  4913. -- 01234567
  4914. ast = {
  4915. fmtn('SingleQuotedString', 'val="\'\'\'"', ':0:0:\'\'\'\'\'\'\'\''),
  4916. },
  4917. }, {
  4918. hl('SingleQuote', '\''),
  4919. hl('SingleQuotedQuote', '\'\''),
  4920. hl('SingleQuotedQuote', '\'\''),
  4921. hl('SingleQuotedQuote', '\'\''),
  4922. hl('SingleQuote', '\''),
  4923. })
  4924. check_parsing('\'\'\'a\'\'\'\'bc\'', {
  4925. -- 01234567890
  4926. -- 0 1
  4927. ast = {
  4928. fmtn('SingleQuotedString', 'val="\'a\'\'bc"', ':0:0:\'\'\'a\'\'\'\'bc\''),
  4929. },
  4930. }, {
  4931. hl('SingleQuote', '\''),
  4932. hl('SingleQuotedQuote', '\'\''),
  4933. hl('SingleQuotedBody', 'a'),
  4934. hl('SingleQuotedQuote', '\'\''),
  4935. hl('SingleQuotedQuote', '\'\''),
  4936. hl('SingleQuotedBody', 'bc'),
  4937. hl('SingleQuote', '\''),
  4938. })
  4939. check_parsing('"\\"\\"\\"\\""', {
  4940. -- 0123456789
  4941. ast = {
  4942. fmtn('DoubleQuotedString', 'val="\\"\\"\\"\\""', ':0:0:"\\"\\"\\"\\""'),
  4943. },
  4944. }, {
  4945. hl('DoubleQuote', '"'),
  4946. hl('DoubleQuotedEscape', '\\"'),
  4947. hl('DoubleQuotedEscape', '\\"'),
  4948. hl('DoubleQuotedEscape', '\\"'),
  4949. hl('DoubleQuotedEscape', '\\"'),
  4950. hl('DoubleQuote', '"'),
  4951. })
  4952. check_parsing('"abc\\"def\\"ghi\\"jkl\\"mno"', {
  4953. -- 0123456789012345678901234
  4954. -- 0 1 2
  4955. ast = {
  4956. fmtn('DoubleQuotedString', 'val="abc\\"def\\"ghi\\"jkl\\"mno"', ':0:0:"abc\\"def\\"ghi\\"jkl\\"mno"'),
  4957. },
  4958. }, {
  4959. hl('DoubleQuote', '"'),
  4960. hl('DoubleQuotedBody', 'abc'),
  4961. hl('DoubleQuotedEscape', '\\"'),
  4962. hl('DoubleQuotedBody', 'def'),
  4963. hl('DoubleQuotedEscape', '\\"'),
  4964. hl('DoubleQuotedBody', 'ghi'),
  4965. hl('DoubleQuotedEscape', '\\"'),
  4966. hl('DoubleQuotedBody', 'jkl'),
  4967. hl('DoubleQuotedEscape', '\\"'),
  4968. hl('DoubleQuotedBody', 'mno'),
  4969. hl('DoubleQuote', '"'),
  4970. })
  4971. check_parsing('"\\b\\e\\f\\r\\t\\\\"', {
  4972. -- 0123456789012345
  4973. -- 0 1
  4974. ast = {
  4975. [[DoubleQuotedString(val="\008\027\012\r\t\\"):0:0:"\b\e\f\r\t\\"]],
  4976. },
  4977. }, {
  4978. hl('DoubleQuote', '"'),
  4979. hl('DoubleQuotedEscape', '\\b'),
  4980. hl('DoubleQuotedEscape', '\\e'),
  4981. hl('DoubleQuotedEscape', '\\f'),
  4982. hl('DoubleQuotedEscape', '\\r'),
  4983. hl('DoubleQuotedEscape', '\\t'),
  4984. hl('DoubleQuotedEscape', '\\\\'),
  4985. hl('DoubleQuote', '"'),
  4986. })
  4987. check_parsing('"\\n\n"', {
  4988. -- 01234
  4989. ast = {
  4990. fmtn('DoubleQuotedString', 'val="\\n\\n"', ':0:0:"\\n\n"'),
  4991. },
  4992. }, {
  4993. hl('DoubleQuote', '"'),
  4994. hl('DoubleQuotedEscape', '\\n'),
  4995. hl('DoubleQuotedBody', '\n'),
  4996. hl('DoubleQuote', '"'),
  4997. })
  4998. check_parsing('"\\x00"', {
  4999. -- 012345
  5000. ast = {
  5001. fmtn('DoubleQuotedString', 'val="\\000"', ':0:0:"\\x00"'),
  5002. },
  5003. }, {
  5004. hl('DoubleQuote', '"'),
  5005. hl('DoubleQuotedEscape', '\\x00'),
  5006. hl('DoubleQuote', '"'),
  5007. })
  5008. check_parsing('"\\xFF"', {
  5009. -- 012345
  5010. ast = {
  5011. fmtn('DoubleQuotedString', 'val="\255"', ':0:0:"\\xFF"'),
  5012. },
  5013. }, {
  5014. hl('DoubleQuote', '"'),
  5015. hl('DoubleQuotedEscape', '\\xFF'),
  5016. hl('DoubleQuote', '"'),
  5017. })
  5018. check_parsing('"\\xF"', {
  5019. -- 012345
  5020. ast = {
  5021. fmtn('DoubleQuotedString', 'val="\\015"', ':0:0:"\\xF"'),
  5022. },
  5023. }, {
  5024. hl('DoubleQuote', '"'),
  5025. hl('DoubleQuotedEscape', '\\xF'),
  5026. hl('DoubleQuote', '"'),
  5027. })
  5028. check_parsing('"\\u00AB"', {
  5029. -- 01234567
  5030. ast = {
  5031. fmtn('DoubleQuotedString', 'val="«"', ':0:0:"\\u00AB"'),
  5032. },
  5033. }, {
  5034. hl('DoubleQuote', '"'),
  5035. hl('DoubleQuotedEscape', '\\u00AB'),
  5036. hl('DoubleQuote', '"'),
  5037. })
  5038. check_parsing('"\\U000000AB"', {
  5039. -- 01234567
  5040. ast = {
  5041. fmtn('DoubleQuotedString', 'val="«"', ':0:0:"\\U000000AB"'),
  5042. },
  5043. }, {
  5044. hl('DoubleQuote', '"'),
  5045. hl('DoubleQuotedEscape', '\\U000000AB'),
  5046. hl('DoubleQuote', '"'),
  5047. })
  5048. check_parsing('"\\x"', {
  5049. -- 0123
  5050. ast = {
  5051. fmtn('DoubleQuotedString', 'val="x"', ':0:0:"\\x"'),
  5052. },
  5053. }, {
  5054. hl('DoubleQuote', '"'),
  5055. hl('DoubleQuotedUnknownEscape', '\\x'),
  5056. hl('DoubleQuote', '"'),
  5057. })
  5058. check_parsing('"\\x', {
  5059. -- 012
  5060. ast = {
  5061. fmtn('DoubleQuotedString', 'val="x"', ':0:0:"\\x'),
  5062. },
  5063. err = {
  5064. arg = '"\\x',
  5065. msg = 'E114: Missing double quote: %.*s',
  5066. },
  5067. }, {
  5068. hl('InvalidDoubleQuote', '"'),
  5069. hl('InvalidDoubleQuotedUnknownEscape', '\\x'),
  5070. })
  5071. check_parsing('"\\xF', {
  5072. -- 0123
  5073. ast = {
  5074. fmtn('DoubleQuotedString', 'val="\\015"', ':0:0:"\\xF'),
  5075. },
  5076. err = {
  5077. arg = '"\\xF',
  5078. msg = 'E114: Missing double quote: %.*s',
  5079. },
  5080. }, {
  5081. hl('InvalidDoubleQuote', '"'),
  5082. hl('InvalidDoubleQuotedEscape', '\\xF'),
  5083. })
  5084. check_parsing('"\\u"', {
  5085. -- 0123
  5086. ast = {
  5087. fmtn('DoubleQuotedString', 'val="u"', ':0:0:"\\u"'),
  5088. },
  5089. }, {
  5090. hl('DoubleQuote', '"'),
  5091. hl('DoubleQuotedUnknownEscape', '\\u'),
  5092. hl('DoubleQuote', '"'),
  5093. })
  5094. check_parsing('"\\u', {
  5095. -- 012
  5096. ast = {
  5097. fmtn('DoubleQuotedString', 'val="u"', ':0:0:"\\u'),
  5098. },
  5099. err = {
  5100. arg = '"\\u',
  5101. msg = 'E114: Missing double quote: %.*s',
  5102. },
  5103. }, {
  5104. hl('InvalidDoubleQuote', '"'),
  5105. hl('InvalidDoubleQuotedUnknownEscape', '\\u'),
  5106. })
  5107. check_parsing('"\\U', {
  5108. -- 012
  5109. ast = {
  5110. fmtn('DoubleQuotedString', 'val="U"', ':0:0:"\\U'),
  5111. },
  5112. err = {
  5113. arg = '"\\U',
  5114. msg = 'E114: Missing double quote: %.*s',
  5115. },
  5116. }, {
  5117. hl('InvalidDoubleQuote', '"'),
  5118. hl('InvalidDoubleQuotedUnknownEscape', '\\U'),
  5119. })
  5120. check_parsing('"\\U"', {
  5121. -- 0123
  5122. ast = {
  5123. fmtn('DoubleQuotedString', 'val="U"', ':0:0:"\\U"'),
  5124. },
  5125. }, {
  5126. hl('DoubleQuote', '"'),
  5127. hl('DoubleQuotedUnknownEscape', '\\U'),
  5128. hl('DoubleQuote', '"'),
  5129. })
  5130. check_parsing('"\\xFX"', {
  5131. -- 012345
  5132. ast = {
  5133. fmtn('DoubleQuotedString', 'val="\\015X"', ':0:0:"\\xFX"'),
  5134. },
  5135. }, {
  5136. hl('DoubleQuote', '"'),
  5137. hl('DoubleQuotedEscape', '\\xF'),
  5138. hl('DoubleQuotedBody', 'X'),
  5139. hl('DoubleQuote', '"'),
  5140. })
  5141. check_parsing('"\\XFX"', {
  5142. -- 012345
  5143. ast = {
  5144. fmtn('DoubleQuotedString', 'val="\\015X"', ':0:0:"\\XFX"'),
  5145. },
  5146. }, {
  5147. hl('DoubleQuote', '"'),
  5148. hl('DoubleQuotedEscape', '\\XF'),
  5149. hl('DoubleQuotedBody', 'X'),
  5150. hl('DoubleQuote', '"'),
  5151. })
  5152. check_parsing('"\\xX"', {
  5153. -- 01234
  5154. ast = {
  5155. fmtn('DoubleQuotedString', 'val="xX"', ':0:0:"\\xX"'),
  5156. },
  5157. }, {
  5158. hl('DoubleQuote', '"'),
  5159. hl('DoubleQuotedUnknownEscape', '\\x'),
  5160. hl('DoubleQuotedBody', 'X'),
  5161. hl('DoubleQuote', '"'),
  5162. })
  5163. check_parsing('"\\XX"', {
  5164. -- 01234
  5165. ast = {
  5166. fmtn('DoubleQuotedString', 'val="XX"', ':0:0:"\\XX"'),
  5167. },
  5168. }, {
  5169. hl('DoubleQuote', '"'),
  5170. hl('DoubleQuotedUnknownEscape', '\\X'),
  5171. hl('DoubleQuotedBody', 'X'),
  5172. hl('DoubleQuote', '"'),
  5173. })
  5174. check_parsing('"\\uX"', {
  5175. -- 01234
  5176. ast = {
  5177. fmtn('DoubleQuotedString', 'val="uX"', ':0:0:"\\uX"'),
  5178. },
  5179. }, {
  5180. hl('DoubleQuote', '"'),
  5181. hl('DoubleQuotedUnknownEscape', '\\u'),
  5182. hl('DoubleQuotedBody', 'X'),
  5183. hl('DoubleQuote', '"'),
  5184. })
  5185. check_parsing('"\\UX"', {
  5186. -- 01234
  5187. ast = {
  5188. fmtn('DoubleQuotedString', 'val="UX"', ':0:0:"\\UX"'),
  5189. },
  5190. }, {
  5191. hl('DoubleQuote', '"'),
  5192. hl('DoubleQuotedUnknownEscape', '\\U'),
  5193. hl('DoubleQuotedBody', 'X'),
  5194. hl('DoubleQuote', '"'),
  5195. })
  5196. check_parsing('"\\x0X"', {
  5197. -- 012345
  5198. ast = {
  5199. fmtn('DoubleQuotedString', 'val="\\000X"', ':0:0:"\\x0X"'),
  5200. },
  5201. }, {
  5202. hl('DoubleQuote', '"'),
  5203. hl('DoubleQuotedEscape', '\\x0'),
  5204. hl('DoubleQuotedBody', 'X'),
  5205. hl('DoubleQuote', '"'),
  5206. })
  5207. check_parsing('"\\X0X"', {
  5208. -- 012345
  5209. ast = {
  5210. fmtn('DoubleQuotedString', 'val="\\000X"', ':0:0:"\\X0X"'),
  5211. },
  5212. }, {
  5213. hl('DoubleQuote', '"'),
  5214. hl('DoubleQuotedEscape', '\\X0'),
  5215. hl('DoubleQuotedBody', 'X'),
  5216. hl('DoubleQuote', '"'),
  5217. })
  5218. check_parsing('"\\u0X"', {
  5219. -- 012345
  5220. ast = {
  5221. fmtn('DoubleQuotedString', 'val="\\000X"', ':0:0:"\\u0X"'),
  5222. },
  5223. }, {
  5224. hl('DoubleQuote', '"'),
  5225. hl('DoubleQuotedEscape', '\\u0'),
  5226. hl('DoubleQuotedBody', 'X'),
  5227. hl('DoubleQuote', '"'),
  5228. })
  5229. check_parsing('"\\U0X"', {
  5230. -- 012345
  5231. ast = {
  5232. fmtn('DoubleQuotedString', 'val="\\000X"', ':0:0:"\\U0X"'),
  5233. },
  5234. }, {
  5235. hl('DoubleQuote', '"'),
  5236. hl('DoubleQuotedEscape', '\\U0'),
  5237. hl('DoubleQuotedBody', 'X'),
  5238. hl('DoubleQuote', '"'),
  5239. })
  5240. check_parsing('"\\x00X"', {
  5241. -- 0123456
  5242. ast = {
  5243. fmtn('DoubleQuotedString', 'val="\\000X"', ':0:0:"\\x00X"'),
  5244. },
  5245. }, {
  5246. hl('DoubleQuote', '"'),
  5247. hl('DoubleQuotedEscape', '\\x00'),
  5248. hl('DoubleQuotedBody', 'X'),
  5249. hl('DoubleQuote', '"'),
  5250. })
  5251. check_parsing('"\\X00X"', {
  5252. -- 0123456
  5253. ast = {
  5254. fmtn('DoubleQuotedString', 'val="\\000X"', ':0:0:"\\X00X"'),
  5255. },
  5256. }, {
  5257. hl('DoubleQuote', '"'),
  5258. hl('DoubleQuotedEscape', '\\X00'),
  5259. hl('DoubleQuotedBody', 'X'),
  5260. hl('DoubleQuote', '"'),
  5261. })
  5262. check_parsing('"\\u00X"', {
  5263. -- 0123456
  5264. ast = {
  5265. fmtn('DoubleQuotedString', 'val="\\000X"', ':0:0:"\\u00X"'),
  5266. },
  5267. }, {
  5268. hl('DoubleQuote', '"'),
  5269. hl('DoubleQuotedEscape', '\\u00'),
  5270. hl('DoubleQuotedBody', 'X'),
  5271. hl('DoubleQuote', '"'),
  5272. })
  5273. check_parsing('"\\U00X"', {
  5274. -- 0123456
  5275. ast = {
  5276. fmtn('DoubleQuotedString', 'val="\\000X"', ':0:0:"\\U00X"'),
  5277. },
  5278. }, {
  5279. hl('DoubleQuote', '"'),
  5280. hl('DoubleQuotedEscape', '\\U00'),
  5281. hl('DoubleQuotedBody', 'X'),
  5282. hl('DoubleQuote', '"'),
  5283. })
  5284. check_parsing('"\\u000X"', {
  5285. -- 01234567
  5286. ast = {
  5287. fmtn('DoubleQuotedString', 'val="\\000X"', ':0:0:"\\u000X"'),
  5288. },
  5289. }, {
  5290. hl('DoubleQuote', '"'),
  5291. hl('DoubleQuotedEscape', '\\u000'),
  5292. hl('DoubleQuotedBody', 'X'),
  5293. hl('DoubleQuote', '"'),
  5294. })
  5295. check_parsing('"\\U000X"', {
  5296. -- 01234567
  5297. ast = {
  5298. fmtn('DoubleQuotedString', 'val="\\000X"', ':0:0:"\\U000X"'),
  5299. },
  5300. }, {
  5301. hl('DoubleQuote', '"'),
  5302. hl('DoubleQuotedEscape', '\\U000'),
  5303. hl('DoubleQuotedBody', 'X'),
  5304. hl('DoubleQuote', '"'),
  5305. })
  5306. check_parsing('"\\u0000X"', {
  5307. -- 012345678
  5308. ast = {
  5309. fmtn('DoubleQuotedString', 'val="\\000X"', ':0:0:"\\u0000X"'),
  5310. },
  5311. }, {
  5312. hl('DoubleQuote', '"'),
  5313. hl('DoubleQuotedEscape', '\\u0000'),
  5314. hl('DoubleQuotedBody', 'X'),
  5315. hl('DoubleQuote', '"'),
  5316. })
  5317. check_parsing('"\\U0000X"', {
  5318. -- 012345678
  5319. ast = {
  5320. fmtn('DoubleQuotedString', 'val="\\000X"', ':0:0:"\\U0000X"'),
  5321. },
  5322. }, {
  5323. hl('DoubleQuote', '"'),
  5324. hl('DoubleQuotedEscape', '\\U0000'),
  5325. hl('DoubleQuotedBody', 'X'),
  5326. hl('DoubleQuote', '"'),
  5327. })
  5328. check_parsing('"\\U00000X"', {
  5329. -- 0123456789
  5330. ast = {
  5331. fmtn('DoubleQuotedString', 'val="\\000X"', ':0:0:"\\U00000X"'),
  5332. },
  5333. }, {
  5334. hl('DoubleQuote', '"'),
  5335. hl('DoubleQuotedEscape', '\\U00000'),
  5336. hl('DoubleQuotedBody', 'X'),
  5337. hl('DoubleQuote', '"'),
  5338. })
  5339. check_parsing('"\\U000000X"', {
  5340. -- 01234567890
  5341. -- 0 1
  5342. ast = {
  5343. fmtn('DoubleQuotedString', 'val="\\000X"', ':0:0:"\\U000000X"'),
  5344. },
  5345. }, {
  5346. hl('DoubleQuote', '"'),
  5347. hl('DoubleQuotedEscape', '\\U000000'),
  5348. hl('DoubleQuotedBody', 'X'),
  5349. hl('DoubleQuote', '"'),
  5350. })
  5351. check_parsing('"\\U0000000X"', {
  5352. -- 012345678901
  5353. -- 0 1
  5354. ast = {
  5355. fmtn('DoubleQuotedString', 'val="\\000X"', ':0:0:"\\U0000000X"'),
  5356. },
  5357. }, {
  5358. hl('DoubleQuote', '"'),
  5359. hl('DoubleQuotedEscape', '\\U0000000'),
  5360. hl('DoubleQuotedBody', 'X'),
  5361. hl('DoubleQuote', '"'),
  5362. })
  5363. check_parsing('"\\U00000000X"', {
  5364. -- 0123456789012
  5365. -- 0 1
  5366. ast = {
  5367. fmtn('DoubleQuotedString', 'val="\\000X"', ':0:0:"\\U00000000X"'),
  5368. },
  5369. }, {
  5370. hl('DoubleQuote', '"'),
  5371. hl('DoubleQuotedEscape', '\\U00000000'),
  5372. hl('DoubleQuotedBody', 'X'),
  5373. hl('DoubleQuote', '"'),
  5374. })
  5375. check_parsing('"\\x000X"', {
  5376. -- 01234567
  5377. ast = {
  5378. fmtn('DoubleQuotedString', 'val="\\0000X"', ':0:0:"\\x000X"'),
  5379. },
  5380. }, {
  5381. hl('DoubleQuote', '"'),
  5382. hl('DoubleQuotedEscape', '\\x00'),
  5383. hl('DoubleQuotedBody', '0X'),
  5384. hl('DoubleQuote', '"'),
  5385. })
  5386. check_parsing('"\\X000X"', {
  5387. -- 01234567
  5388. ast = {
  5389. fmtn('DoubleQuotedString', 'val="\\0000X"', ':0:0:"\\X000X"'),
  5390. },
  5391. }, {
  5392. hl('DoubleQuote', '"'),
  5393. hl('DoubleQuotedEscape', '\\X00'),
  5394. hl('DoubleQuotedBody', '0X'),
  5395. hl('DoubleQuote', '"'),
  5396. })
  5397. check_parsing('"\\u00000X"', {
  5398. -- 0123456789
  5399. ast = {
  5400. fmtn('DoubleQuotedString', 'val="\\0000X"', ':0:0:"\\u00000X"'),
  5401. },
  5402. }, {
  5403. hl('DoubleQuote', '"'),
  5404. hl('DoubleQuotedEscape', '\\u0000'),
  5405. hl('DoubleQuotedBody', '0X'),
  5406. hl('DoubleQuote', '"'),
  5407. })
  5408. check_parsing('"\\U000000000X"', {
  5409. -- 01234567890123
  5410. -- 0 1
  5411. ast = {
  5412. fmtn('DoubleQuotedString', 'val="\\0000X"', ':0:0:"\\U000000000X"'),
  5413. },
  5414. }, {
  5415. hl('DoubleQuote', '"'),
  5416. hl('DoubleQuotedEscape', '\\U00000000'),
  5417. hl('DoubleQuotedBody', '0X'),
  5418. hl('DoubleQuote', '"'),
  5419. })
  5420. check_parsing('"\\0"', {
  5421. -- 0123
  5422. ast = {
  5423. fmtn('DoubleQuotedString', 'val="\\000"', ':0:0:"\\0"'),
  5424. },
  5425. }, {
  5426. hl('DoubleQuote', '"'),
  5427. hl('DoubleQuotedEscape', '\\0'),
  5428. hl('DoubleQuote', '"'),
  5429. })
  5430. check_parsing('"\\00"', {
  5431. -- 01234
  5432. ast = {
  5433. fmtn('DoubleQuotedString', 'val="\\000"', ':0:0:"\\00"'),
  5434. },
  5435. }, {
  5436. hl('DoubleQuote', '"'),
  5437. hl('DoubleQuotedEscape', '\\00'),
  5438. hl('DoubleQuote', '"'),
  5439. })
  5440. check_parsing('"\\000"', {
  5441. -- 012345
  5442. ast = {
  5443. fmtn('DoubleQuotedString', 'val="\\000"', ':0:0:"\\000"'),
  5444. },
  5445. }, {
  5446. hl('DoubleQuote', '"'),
  5447. hl('DoubleQuotedEscape', '\\000'),
  5448. hl('DoubleQuote', '"'),
  5449. })
  5450. check_parsing('"\\0000"', {
  5451. -- 0123456
  5452. ast = {
  5453. fmtn('DoubleQuotedString', 'val="\\0000"', ':0:0:"\\0000"'),
  5454. },
  5455. }, {
  5456. hl('DoubleQuote', '"'),
  5457. hl('DoubleQuotedEscape', '\\000'),
  5458. hl('DoubleQuotedBody', '0'),
  5459. hl('DoubleQuote', '"'),
  5460. })
  5461. check_parsing('"\\8"', {
  5462. -- 0123
  5463. ast = {
  5464. fmtn('DoubleQuotedString', 'val="8"', ':0:0:"\\8"'),
  5465. },
  5466. }, {
  5467. hl('DoubleQuote', '"'),
  5468. hl('DoubleQuotedUnknownEscape', '\\8'),
  5469. hl('DoubleQuote', '"'),
  5470. })
  5471. check_parsing('"\\08"', {
  5472. -- 01234
  5473. ast = {
  5474. fmtn('DoubleQuotedString', 'val="\\0008"', ':0:0:"\\08"'),
  5475. },
  5476. }, {
  5477. hl('DoubleQuote', '"'),
  5478. hl('DoubleQuotedEscape', '\\0'),
  5479. hl('DoubleQuotedBody', '8'),
  5480. hl('DoubleQuote', '"'),
  5481. })
  5482. check_parsing('"\\008"', {
  5483. -- 012345
  5484. ast = {
  5485. fmtn('DoubleQuotedString', 'val="\\0008"', ':0:0:"\\008"'),
  5486. },
  5487. }, {
  5488. hl('DoubleQuote', '"'),
  5489. hl('DoubleQuotedEscape', '\\00'),
  5490. hl('DoubleQuotedBody', '8'),
  5491. hl('DoubleQuote', '"'),
  5492. })
  5493. check_parsing('"\\0008"', {
  5494. -- 0123456
  5495. ast = {
  5496. fmtn('DoubleQuotedString', 'val="\\0008"', ':0:0:"\\0008"'),
  5497. },
  5498. }, {
  5499. hl('DoubleQuote', '"'),
  5500. hl('DoubleQuotedEscape', '\\000'),
  5501. hl('DoubleQuotedBody', '8'),
  5502. hl('DoubleQuote', '"'),
  5503. })
  5504. check_parsing('"\\777"', {
  5505. -- 012345
  5506. ast = {
  5507. fmtn('DoubleQuotedString', 'val="\255"', ':0:0:"\\777"'),
  5508. },
  5509. }, {
  5510. hl('DoubleQuote', '"'),
  5511. hl('DoubleQuotedEscape', '\\777'),
  5512. hl('DoubleQuote', '"'),
  5513. })
  5514. check_parsing('"\\050"', {
  5515. -- 012345
  5516. ast = {
  5517. fmtn('DoubleQuotedString', 'val="\40"', ':0:0:"\\050"'),
  5518. },
  5519. }, {
  5520. hl('DoubleQuote', '"'),
  5521. hl('DoubleQuotedEscape', '\\050'),
  5522. hl('DoubleQuote', '"'),
  5523. })
  5524. check_parsing('"\\<C-u>"', {
  5525. -- 012345
  5526. ast = {
  5527. fmtn('DoubleQuotedString', 'val="\\021"', ':0:0:"\\<C-u>"'),
  5528. },
  5529. }, {
  5530. hl('DoubleQuote', '"'),
  5531. hl('DoubleQuotedEscape', '\\<C-u>'),
  5532. hl('DoubleQuote', '"'),
  5533. })
  5534. check_parsing('"\\<', {
  5535. -- 012
  5536. ast = {
  5537. fmtn('DoubleQuotedString', 'val="<"', ':0:0:"\\<'),
  5538. },
  5539. err = {
  5540. arg = '"\\<',
  5541. msg = 'E114: Missing double quote: %.*s',
  5542. },
  5543. }, {
  5544. hl('InvalidDoubleQuote', '"'),
  5545. hl('InvalidDoubleQuotedUnknownEscape', '\\<'),
  5546. })
  5547. check_parsing('"\\<"', {
  5548. -- 0123
  5549. ast = {
  5550. fmtn('DoubleQuotedString', 'val="<"', ':0:0:"\\<"'),
  5551. },
  5552. }, {
  5553. hl('DoubleQuote', '"'),
  5554. hl('DoubleQuotedUnknownEscape', '\\<'),
  5555. hl('DoubleQuote', '"'),
  5556. })
  5557. check_parsing('"\\<C-u"', {
  5558. -- 0123456
  5559. ast = {
  5560. fmtn('DoubleQuotedString', 'val="<C-u"', ':0:0:"\\<C-u"'),
  5561. },
  5562. }, {
  5563. hl('DoubleQuote', '"'),
  5564. hl('DoubleQuotedUnknownEscape', '\\<'),
  5565. hl('DoubleQuotedBody', 'C-u'),
  5566. hl('DoubleQuote', '"'),
  5567. })
  5568. end)
  5569. itp('works with multiplication-like operators', function()
  5570. check_parsing('2+2*2', {
  5571. -- 01234
  5572. ast = {
  5573. {
  5574. 'BinaryPlus:0:1:+',
  5575. children = {
  5576. 'Integer(val=2):0:0:2',
  5577. {
  5578. 'Multiplication:0:3:*',
  5579. children = {
  5580. 'Integer(val=2):0:2:2',
  5581. 'Integer(val=2):0:4:2',
  5582. },
  5583. },
  5584. },
  5585. },
  5586. },
  5587. }, {
  5588. hl('Number', '2'),
  5589. hl('BinaryPlus', '+'),
  5590. hl('Number', '2'),
  5591. hl('Multiplication', '*'),
  5592. hl('Number', '2'),
  5593. })
  5594. check_parsing('2+2*', {
  5595. -- 0123
  5596. ast = {
  5597. {
  5598. 'BinaryPlus:0:1:+',
  5599. children = {
  5600. 'Integer(val=2):0:0:2',
  5601. {
  5602. 'Multiplication:0:3:*',
  5603. children = {
  5604. 'Integer(val=2):0:2:2',
  5605. },
  5606. },
  5607. },
  5608. },
  5609. },
  5610. err = {
  5611. arg = '',
  5612. msg = 'E15: Expected value, got EOC: %.*s',
  5613. },
  5614. }, {
  5615. hl('Number', '2'),
  5616. hl('BinaryPlus', '+'),
  5617. hl('Number', '2'),
  5618. hl('Multiplication', '*'),
  5619. })
  5620. check_parsing('2+*2', {
  5621. -- 0123
  5622. ast = {
  5623. {
  5624. 'BinaryPlus:0:1:+',
  5625. children = {
  5626. 'Integer(val=2):0:0:2',
  5627. {
  5628. 'Multiplication:0:2:*',
  5629. children = {
  5630. 'Missing:0:2:',
  5631. 'Integer(val=2):0:3:2',
  5632. },
  5633. },
  5634. },
  5635. },
  5636. },
  5637. err = {
  5638. arg = '*2',
  5639. msg = 'E15: Unexpected multiplication-like operator: %.*s',
  5640. },
  5641. }, {
  5642. hl('Number', '2'),
  5643. hl('BinaryPlus', '+'),
  5644. hl('InvalidMultiplication', '*'),
  5645. hl('Number', '2'),
  5646. })
  5647. check_parsing('2+2/2', {
  5648. -- 01234
  5649. ast = {
  5650. {
  5651. 'BinaryPlus:0:1:+',
  5652. children = {
  5653. 'Integer(val=2):0:0:2',
  5654. {
  5655. 'Division:0:3:/',
  5656. children = {
  5657. 'Integer(val=2):0:2:2',
  5658. 'Integer(val=2):0:4:2',
  5659. },
  5660. },
  5661. },
  5662. },
  5663. },
  5664. }, {
  5665. hl('Number', '2'),
  5666. hl('BinaryPlus', '+'),
  5667. hl('Number', '2'),
  5668. hl('Division', '/'),
  5669. hl('Number', '2'),
  5670. })
  5671. check_parsing('2+2/', {
  5672. -- 0123
  5673. ast = {
  5674. {
  5675. 'BinaryPlus:0:1:+',
  5676. children = {
  5677. 'Integer(val=2):0:0:2',
  5678. {
  5679. 'Division:0:3:/',
  5680. children = {
  5681. 'Integer(val=2):0:2:2',
  5682. },
  5683. },
  5684. },
  5685. },
  5686. },
  5687. err = {
  5688. arg = '',
  5689. msg = 'E15: Expected value, got EOC: %.*s',
  5690. },
  5691. }, {
  5692. hl('Number', '2'),
  5693. hl('BinaryPlus', '+'),
  5694. hl('Number', '2'),
  5695. hl('Division', '/'),
  5696. })
  5697. check_parsing('2+/2', {
  5698. -- 0123
  5699. ast = {
  5700. {
  5701. 'BinaryPlus:0:1:+',
  5702. children = {
  5703. 'Integer(val=2):0:0:2',
  5704. {
  5705. 'Division:0:2:/',
  5706. children = {
  5707. 'Missing:0:2:',
  5708. 'Integer(val=2):0:3:2',
  5709. },
  5710. },
  5711. },
  5712. },
  5713. },
  5714. err = {
  5715. arg = '/2',
  5716. msg = 'E15: Unexpected multiplication-like operator: %.*s',
  5717. },
  5718. }, {
  5719. hl('Number', '2'),
  5720. hl('BinaryPlus', '+'),
  5721. hl('InvalidDivision', '/'),
  5722. hl('Number', '2'),
  5723. })
  5724. check_parsing('2+2%2', {
  5725. -- 01234
  5726. ast = {
  5727. {
  5728. 'BinaryPlus:0:1:+',
  5729. children = {
  5730. 'Integer(val=2):0:0:2',
  5731. {
  5732. 'Mod:0:3:%',
  5733. children = {
  5734. 'Integer(val=2):0:2:2',
  5735. 'Integer(val=2):0:4:2',
  5736. },
  5737. },
  5738. },
  5739. },
  5740. },
  5741. }, {
  5742. hl('Number', '2'),
  5743. hl('BinaryPlus', '+'),
  5744. hl('Number', '2'),
  5745. hl('Mod', '%'),
  5746. hl('Number', '2'),
  5747. })
  5748. check_parsing('2+2%', {
  5749. -- 0123
  5750. ast = {
  5751. {
  5752. 'BinaryPlus:0:1:+',
  5753. children = {
  5754. 'Integer(val=2):0:0:2',
  5755. {
  5756. 'Mod:0:3:%',
  5757. children = {
  5758. 'Integer(val=2):0:2:2',
  5759. },
  5760. },
  5761. },
  5762. },
  5763. },
  5764. err = {
  5765. arg = '',
  5766. msg = 'E15: Expected value, got EOC: %.*s',
  5767. },
  5768. }, {
  5769. hl('Number', '2'),
  5770. hl('BinaryPlus', '+'),
  5771. hl('Number', '2'),
  5772. hl('Mod', '%'),
  5773. })
  5774. check_parsing('2+%2', {
  5775. -- 0123
  5776. ast = {
  5777. {
  5778. 'BinaryPlus:0:1:+',
  5779. children = {
  5780. 'Integer(val=2):0:0:2',
  5781. {
  5782. 'Mod:0:2:%',
  5783. children = {
  5784. 'Missing:0:2:',
  5785. 'Integer(val=2):0:3:2',
  5786. },
  5787. },
  5788. },
  5789. },
  5790. },
  5791. err = {
  5792. arg = '%2',
  5793. msg = 'E15: Unexpected multiplication-like operator: %.*s',
  5794. },
  5795. }, {
  5796. hl('Number', '2'),
  5797. hl('BinaryPlus', '+'),
  5798. hl('InvalidMod', '%'),
  5799. hl('Number', '2'),
  5800. })
  5801. end)
  5802. itp('works with -', function()
  5803. check_parsing('@a', {
  5804. ast = {
  5805. 'Register(name=a):0:0:@a',
  5806. },
  5807. }, {
  5808. hl('Register', '@a'),
  5809. })
  5810. check_parsing('-@a', {
  5811. ast = {
  5812. {
  5813. 'UnaryMinus:0:0:-',
  5814. children = {
  5815. 'Register(name=a):0:1:@a',
  5816. },
  5817. },
  5818. },
  5819. }, {
  5820. hl('UnaryMinus', '-'),
  5821. hl('Register', '@a'),
  5822. })
  5823. check_parsing('@a-@b', {
  5824. ast = {
  5825. {
  5826. 'BinaryMinus:0:2:-',
  5827. children = {
  5828. 'Register(name=a):0:0:@a',
  5829. 'Register(name=b):0:3:@b',
  5830. },
  5831. },
  5832. },
  5833. }, {
  5834. hl('Register', '@a'),
  5835. hl('BinaryMinus', '-'),
  5836. hl('Register', '@b'),
  5837. })
  5838. check_parsing('@a-@b-@c', {
  5839. ast = {
  5840. {
  5841. 'BinaryMinus:0:5:-',
  5842. children = {
  5843. {
  5844. 'BinaryMinus:0:2:-',
  5845. children = {
  5846. 'Register(name=a):0:0:@a',
  5847. 'Register(name=b):0:3:@b',
  5848. },
  5849. },
  5850. 'Register(name=c):0:6:@c',
  5851. },
  5852. },
  5853. },
  5854. }, {
  5855. hl('Register', '@a'),
  5856. hl('BinaryMinus', '-'),
  5857. hl('Register', '@b'),
  5858. hl('BinaryMinus', '-'),
  5859. hl('Register', '@c'),
  5860. })
  5861. check_parsing('-@a-@b', {
  5862. ast = {
  5863. {
  5864. 'BinaryMinus:0:3:-',
  5865. children = {
  5866. {
  5867. 'UnaryMinus:0:0:-',
  5868. children = {
  5869. 'Register(name=a):0:1:@a',
  5870. },
  5871. },
  5872. 'Register(name=b):0:4:@b',
  5873. },
  5874. },
  5875. },
  5876. }, {
  5877. hl('UnaryMinus', '-'),
  5878. hl('Register', '@a'),
  5879. hl('BinaryMinus', '-'),
  5880. hl('Register', '@b'),
  5881. })
  5882. check_parsing('-@a--@b', {
  5883. ast = {
  5884. {
  5885. 'BinaryMinus:0:3:-',
  5886. children = {
  5887. {
  5888. 'UnaryMinus:0:0:-',
  5889. children = {
  5890. 'Register(name=a):0:1:@a',
  5891. },
  5892. },
  5893. {
  5894. 'UnaryMinus:0:4:-',
  5895. children = {
  5896. 'Register(name=b):0:5:@b',
  5897. },
  5898. },
  5899. },
  5900. },
  5901. },
  5902. }, {
  5903. hl('UnaryMinus', '-'),
  5904. hl('Register', '@a'),
  5905. hl('BinaryMinus', '-'),
  5906. hl('UnaryMinus', '-'),
  5907. hl('Register', '@b'),
  5908. })
  5909. check_parsing('-', {
  5910. ast = {
  5911. 'UnaryMinus:0:0:-',
  5912. },
  5913. err = {
  5914. arg = '',
  5915. msg = 'E15: Expected value, got EOC: %.*s',
  5916. },
  5917. }, {
  5918. hl('UnaryMinus', '-'),
  5919. })
  5920. check_parsing(' -', {
  5921. ast = {
  5922. 'UnaryMinus:0:0: -',
  5923. },
  5924. err = {
  5925. arg = '',
  5926. msg = 'E15: Expected value, got EOC: %.*s',
  5927. },
  5928. }, {
  5929. hl('UnaryMinus', '-', 1),
  5930. })
  5931. check_parsing('@a- ', {
  5932. ast = {
  5933. {
  5934. 'BinaryMinus:0:2:-',
  5935. children = {
  5936. 'Register(name=a):0:0:@a',
  5937. },
  5938. },
  5939. },
  5940. err = {
  5941. arg = '',
  5942. msg = 'E15: Expected value, got EOC: %.*s',
  5943. },
  5944. }, {
  5945. hl('Register', '@a'),
  5946. hl('BinaryMinus', '-'),
  5947. })
  5948. end)
  5949. itp('works with logical operators', function()
  5950. check_parsing('a && b || c && d', {
  5951. -- 0123456789012345
  5952. -- 0 1
  5953. ast = {
  5954. {
  5955. 'Or:0:6: ||',
  5956. children = {
  5957. {
  5958. 'And:0:1: &&',
  5959. children = {
  5960. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  5961. 'PlainIdentifier(scope=0,ident=b):0:4: b',
  5962. },
  5963. },
  5964. {
  5965. 'And:0:11: &&',
  5966. children = {
  5967. 'PlainIdentifier(scope=0,ident=c):0:9: c',
  5968. 'PlainIdentifier(scope=0,ident=d):0:14: d',
  5969. },
  5970. },
  5971. },
  5972. },
  5973. },
  5974. }, {
  5975. hl('IdentifierName', 'a'),
  5976. hl('And', '&&', 1),
  5977. hl('IdentifierName', 'b', 1),
  5978. hl('Or', '||', 1),
  5979. hl('IdentifierName', 'c', 1),
  5980. hl('And', '&&', 1),
  5981. hl('IdentifierName', 'd', 1),
  5982. })
  5983. check_parsing('&& a', {
  5984. -- 0123
  5985. ast = {
  5986. {
  5987. 'And:0:0:&&',
  5988. children = {
  5989. 'Missing:0:0:',
  5990. 'PlainIdentifier(scope=0,ident=a):0:2: a',
  5991. },
  5992. },
  5993. },
  5994. err = {
  5995. arg = '&& a',
  5996. msg = 'E15: Unexpected and operator: %.*s',
  5997. },
  5998. }, {
  5999. hl('InvalidAnd', '&&'),
  6000. hl('IdentifierName', 'a', 1),
  6001. })
  6002. check_parsing('|| a', {
  6003. -- 0123
  6004. ast = {
  6005. {
  6006. 'Or:0:0:||',
  6007. children = {
  6008. 'Missing:0:0:',
  6009. 'PlainIdentifier(scope=0,ident=a):0:2: a',
  6010. },
  6011. },
  6012. },
  6013. err = {
  6014. arg = '|| a',
  6015. msg = 'E15: Unexpected or operator: %.*s',
  6016. },
  6017. }, {
  6018. hl('InvalidOr', '||'),
  6019. hl('IdentifierName', 'a', 1),
  6020. })
  6021. check_parsing('a||', {
  6022. -- 012
  6023. ast = {
  6024. {
  6025. 'Or:0:1:||',
  6026. children = {
  6027. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  6028. },
  6029. },
  6030. },
  6031. err = {
  6032. arg = '',
  6033. msg = 'E15: Expected value, got EOC: %.*s',
  6034. },
  6035. }, {
  6036. hl('IdentifierName', 'a'),
  6037. hl('Or', '||'),
  6038. })
  6039. check_parsing('a&&', {
  6040. -- 012
  6041. ast = {
  6042. {
  6043. 'And:0:1:&&',
  6044. children = {
  6045. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  6046. },
  6047. },
  6048. },
  6049. err = {
  6050. arg = '',
  6051. msg = 'E15: Expected value, got EOC: %.*s',
  6052. },
  6053. }, {
  6054. hl('IdentifierName', 'a'),
  6055. hl('And', '&&'),
  6056. })
  6057. check_parsing('(&&)', {
  6058. -- 0123
  6059. ast = {
  6060. {
  6061. 'Nested:0:0:(',
  6062. children = {
  6063. {
  6064. 'And:0:1:&&',
  6065. children = {
  6066. 'Missing:0:1:',
  6067. 'Missing:0:3:',
  6068. },
  6069. },
  6070. },
  6071. },
  6072. },
  6073. err = {
  6074. arg = '&&)',
  6075. msg = 'E15: Unexpected and operator: %.*s',
  6076. },
  6077. }, {
  6078. hl('NestingParenthesis', '('),
  6079. hl('InvalidAnd', '&&'),
  6080. hl('InvalidNestingParenthesis', ')'),
  6081. })
  6082. check_parsing('(||)', {
  6083. -- 0123
  6084. ast = {
  6085. {
  6086. 'Nested:0:0:(',
  6087. children = {
  6088. {
  6089. 'Or:0:1:||',
  6090. children = {
  6091. 'Missing:0:1:',
  6092. 'Missing:0:3:',
  6093. },
  6094. },
  6095. },
  6096. },
  6097. },
  6098. err = {
  6099. arg = '||)',
  6100. msg = 'E15: Unexpected or operator: %.*s',
  6101. },
  6102. }, {
  6103. hl('NestingParenthesis', '('),
  6104. hl('InvalidOr', '||'),
  6105. hl('InvalidNestingParenthesis', ')'),
  6106. })
  6107. check_parsing('(a||)', {
  6108. -- 01234
  6109. ast = {
  6110. {
  6111. 'Nested:0:0:(',
  6112. children = {
  6113. {
  6114. 'Or:0:2:||',
  6115. children = {
  6116. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  6117. 'Missing:0:4:',
  6118. },
  6119. },
  6120. },
  6121. },
  6122. },
  6123. err = {
  6124. arg = ')',
  6125. msg = 'E15: Expected value, got parenthesis: %.*s',
  6126. },
  6127. }, {
  6128. hl('NestingParenthesis', '('),
  6129. hl('IdentifierName', 'a'),
  6130. hl('Or', '||'),
  6131. hl('InvalidNestingParenthesis', ')'),
  6132. })
  6133. check_parsing('(a&&)', {
  6134. -- 01234
  6135. ast = {
  6136. {
  6137. 'Nested:0:0:(',
  6138. children = {
  6139. {
  6140. 'And:0:2:&&',
  6141. children = {
  6142. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  6143. 'Missing:0:4:',
  6144. },
  6145. },
  6146. },
  6147. },
  6148. },
  6149. err = {
  6150. arg = ')',
  6151. msg = 'E15: Expected value, got parenthesis: %.*s',
  6152. },
  6153. }, {
  6154. hl('NestingParenthesis', '('),
  6155. hl('IdentifierName', 'a'),
  6156. hl('And', '&&'),
  6157. hl('InvalidNestingParenthesis', ')'),
  6158. })
  6159. check_parsing('(&&a)', {
  6160. -- 01234
  6161. ast = {
  6162. {
  6163. 'Nested:0:0:(',
  6164. children = {
  6165. {
  6166. 'And:0:1:&&',
  6167. children = {
  6168. 'Missing:0:1:',
  6169. 'PlainIdentifier(scope=0,ident=a):0:3:a',
  6170. },
  6171. },
  6172. },
  6173. },
  6174. },
  6175. err = {
  6176. arg = '&&a)',
  6177. msg = 'E15: Unexpected and operator: %.*s',
  6178. },
  6179. }, {
  6180. hl('NestingParenthesis', '('),
  6181. hl('InvalidAnd', '&&'),
  6182. hl('IdentifierName', 'a'),
  6183. hl('NestingParenthesis', ')'),
  6184. })
  6185. check_parsing('(||a)', {
  6186. -- 01234
  6187. ast = {
  6188. {
  6189. 'Nested:0:0:(',
  6190. children = {
  6191. {
  6192. 'Or:0:1:||',
  6193. children = {
  6194. 'Missing:0:1:',
  6195. 'PlainIdentifier(scope=0,ident=a):0:3:a',
  6196. },
  6197. },
  6198. },
  6199. },
  6200. },
  6201. err = {
  6202. arg = '||a)',
  6203. msg = 'E15: Unexpected or operator: %.*s',
  6204. },
  6205. }, {
  6206. hl('NestingParenthesis', '('),
  6207. hl('InvalidOr', '||'),
  6208. hl('IdentifierName', 'a'),
  6209. hl('NestingParenthesis', ')'),
  6210. })
  6211. end)
  6212. itp('works with &opt', function()
  6213. check_parsing('&', {
  6214. -- 0
  6215. ast = {
  6216. 'Option(scope=0,ident=):0:0:&',
  6217. },
  6218. err = {
  6219. arg = '&',
  6220. msg = 'E112: Option name missing: %.*s',
  6221. },
  6222. }, {
  6223. hl('InvalidOptionSigil', '&'),
  6224. })
  6225. check_parsing('&opt', {
  6226. -- 0123
  6227. ast = {
  6228. 'Option(scope=0,ident=opt):0:0:&opt',
  6229. },
  6230. }, {
  6231. hl('OptionSigil', '&'),
  6232. hl('OptionName', 'opt'),
  6233. })
  6234. check_parsing('&l:opt', {
  6235. -- 012345
  6236. ast = {
  6237. 'Option(scope=l,ident=opt):0:0:&l:opt',
  6238. },
  6239. }, {
  6240. hl('OptionSigil', '&'),
  6241. hl('OptionScope', 'l'),
  6242. hl('OptionScopeDelimiter', ':'),
  6243. hl('OptionName', 'opt'),
  6244. })
  6245. check_parsing('&g:opt', {
  6246. -- 012345
  6247. ast = {
  6248. 'Option(scope=g,ident=opt):0:0:&g:opt',
  6249. },
  6250. }, {
  6251. hl('OptionSigil', '&'),
  6252. hl('OptionScope', 'g'),
  6253. hl('OptionScopeDelimiter', ':'),
  6254. hl('OptionName', 'opt'),
  6255. })
  6256. check_parsing('&s:opt', {
  6257. -- 012345
  6258. ast = {
  6259. {
  6260. 'Colon:0:2::',
  6261. children = {
  6262. 'Option(scope=0,ident=s):0:0:&s',
  6263. 'PlainIdentifier(scope=0,ident=opt):0:3:opt',
  6264. },
  6265. },
  6266. },
  6267. err = {
  6268. arg = ':opt',
  6269. msg = 'E15: Colon outside of dictionary or ternary operator: %.*s',
  6270. },
  6271. }, {
  6272. hl('OptionSigil', '&'),
  6273. hl('OptionName', 's'),
  6274. hl('InvalidColon', ':'),
  6275. hl('IdentifierName', 'opt'),
  6276. })
  6277. check_parsing('& ', {
  6278. -- 01
  6279. ast = {
  6280. 'Option(scope=0,ident=):0:0:&',
  6281. },
  6282. err = {
  6283. arg = '& ',
  6284. msg = 'E112: Option name missing: %.*s',
  6285. },
  6286. }, {
  6287. hl('InvalidOptionSigil', '&'),
  6288. })
  6289. check_parsing('&-', {
  6290. -- 01
  6291. ast = {
  6292. {
  6293. 'BinaryMinus:0:1:-',
  6294. children = {
  6295. 'Option(scope=0,ident=):0:0:&',
  6296. },
  6297. },
  6298. },
  6299. err = {
  6300. arg = '&-',
  6301. msg = 'E112: Option name missing: %.*s',
  6302. },
  6303. }, {
  6304. hl('InvalidOptionSigil', '&'),
  6305. hl('BinaryMinus', '-'),
  6306. })
  6307. check_parsing('&A', {
  6308. -- 01
  6309. ast = {
  6310. 'Option(scope=0,ident=A):0:0:&A',
  6311. },
  6312. }, {
  6313. hl('OptionSigil', '&'),
  6314. hl('OptionName', 'A'),
  6315. })
  6316. check_parsing('&xxx_yyy', {
  6317. -- 01234567
  6318. ast = {
  6319. {
  6320. 'OpMissing:0:4:',
  6321. children = {
  6322. 'Option(scope=0,ident=xxx):0:0:&xxx',
  6323. 'PlainIdentifier(scope=0,ident=_yyy):0:4:_yyy',
  6324. },
  6325. },
  6326. },
  6327. err = {
  6328. arg = '_yyy',
  6329. msg = 'E15: Missing operator: %.*s',
  6330. },
  6331. }, {
  6332. hl('OptionSigil', '&'),
  6333. hl('OptionName', 'xxx'),
  6334. hl('InvalidIdentifierName', '_yyy'),
  6335. }, {
  6336. [1] = {
  6337. ast = {
  6338. len = 4,
  6339. err = REMOVE_THIS,
  6340. ast = {
  6341. 'Option(scope=0,ident=xxx):0:0:&xxx',
  6342. },
  6343. },
  6344. hl_fs = {
  6345. [3] = REMOVE_THIS,
  6346. },
  6347. },
  6348. })
  6349. check_parsing('(1+&)', {
  6350. -- 01234
  6351. ast = {
  6352. {
  6353. 'Nested:0:0:(',
  6354. children = {
  6355. {
  6356. 'BinaryPlus:0:2:+',
  6357. children = {
  6358. 'Integer(val=1):0:1:1',
  6359. 'Option(scope=0,ident=):0:3:&',
  6360. },
  6361. },
  6362. },
  6363. },
  6364. },
  6365. err = {
  6366. arg = '&)',
  6367. msg = 'E112: Option name missing: %.*s',
  6368. },
  6369. }, {
  6370. hl('NestingParenthesis', '('),
  6371. hl('Number', '1'),
  6372. hl('BinaryPlus', '+'),
  6373. hl('InvalidOptionSigil', '&'),
  6374. hl('NestingParenthesis', ')'),
  6375. })
  6376. check_parsing('(&+1)', {
  6377. -- 01234
  6378. ast = {
  6379. {
  6380. 'Nested:0:0:(',
  6381. children = {
  6382. {
  6383. 'BinaryPlus:0:2:+',
  6384. children = {
  6385. 'Option(scope=0,ident=):0:1:&',
  6386. 'Integer(val=1):0:3:1',
  6387. },
  6388. },
  6389. },
  6390. },
  6391. },
  6392. err = {
  6393. arg = '&+1)',
  6394. msg = 'E112: Option name missing: %.*s',
  6395. },
  6396. }, {
  6397. hl('NestingParenthesis', '('),
  6398. hl('InvalidOptionSigil', '&'),
  6399. hl('BinaryPlus', '+'),
  6400. hl('Number', '1'),
  6401. hl('NestingParenthesis', ')'),
  6402. })
  6403. end)
  6404. itp('works with $ENV', function()
  6405. check_parsing('$', {
  6406. -- 0
  6407. ast = {
  6408. 'Environment(ident=):0:0:$',
  6409. },
  6410. err = {
  6411. arg = '$',
  6412. msg = 'E15: Environment variable name missing',
  6413. },
  6414. }, {
  6415. hl('InvalidEnvironmentSigil', '$'),
  6416. })
  6417. check_parsing('$g:A', {
  6418. -- 0123
  6419. ast = {
  6420. {
  6421. 'Colon:0:2::',
  6422. children = {
  6423. 'Environment(ident=g):0:0:$g',
  6424. 'PlainIdentifier(scope=0,ident=A):0:3:A',
  6425. },
  6426. },
  6427. },
  6428. err = {
  6429. arg = ':A',
  6430. msg = 'E15: Colon outside of dictionary or ternary operator: %.*s',
  6431. },
  6432. }, {
  6433. hl('EnvironmentSigil', '$'),
  6434. hl('EnvironmentName', 'g'),
  6435. hl('InvalidColon', ':'),
  6436. hl('IdentifierName', 'A'),
  6437. })
  6438. check_parsing('$A', {
  6439. -- 01
  6440. ast = {
  6441. 'Environment(ident=A):0:0:$A',
  6442. },
  6443. }, {
  6444. hl('EnvironmentSigil', '$'),
  6445. hl('EnvironmentName', 'A'),
  6446. })
  6447. check_parsing('$ABC', {
  6448. -- 0123
  6449. ast = {
  6450. 'Environment(ident=ABC):0:0:$ABC',
  6451. },
  6452. }, {
  6453. hl('EnvironmentSigil', '$'),
  6454. hl('EnvironmentName', 'ABC'),
  6455. })
  6456. check_parsing('(1+$)', {
  6457. -- 01234
  6458. ast = {
  6459. {
  6460. 'Nested:0:0:(',
  6461. children = {
  6462. {
  6463. 'BinaryPlus:0:2:+',
  6464. children = {
  6465. 'Integer(val=1):0:1:1',
  6466. 'Environment(ident=):0:3:$',
  6467. },
  6468. },
  6469. },
  6470. },
  6471. },
  6472. err = {
  6473. arg = '$)',
  6474. msg = 'E15: Environment variable name missing',
  6475. },
  6476. }, {
  6477. hl('NestingParenthesis', '('),
  6478. hl('Number', '1'),
  6479. hl('BinaryPlus', '+'),
  6480. hl('InvalidEnvironmentSigil', '$'),
  6481. hl('NestingParenthesis', ')'),
  6482. })
  6483. check_parsing('($+1)', {
  6484. -- 01234
  6485. ast = {
  6486. {
  6487. 'Nested:0:0:(',
  6488. children = {
  6489. {
  6490. 'BinaryPlus:0:2:+',
  6491. children = {
  6492. 'Environment(ident=):0:1:$',
  6493. 'Integer(val=1):0:3:1',
  6494. },
  6495. },
  6496. },
  6497. },
  6498. },
  6499. err = {
  6500. arg = '$+1)',
  6501. msg = 'E15: Environment variable name missing',
  6502. },
  6503. }, {
  6504. hl('NestingParenthesis', '('),
  6505. hl('InvalidEnvironmentSigil', '$'),
  6506. hl('BinaryPlus', '+'),
  6507. hl('Number', '1'),
  6508. hl('NestingParenthesis', ')'),
  6509. })
  6510. check_parsing('$_ABC', {
  6511. -- 01234
  6512. ast = {
  6513. 'Environment(ident=_ABC):0:0:$_ABC',
  6514. },
  6515. }, {
  6516. hl('EnvironmentSigil', '$'),
  6517. hl('EnvironmentName', '_ABC'),
  6518. })
  6519. check_parsing('$_', {
  6520. -- 01
  6521. ast = {
  6522. 'Environment(ident=_):0:0:$_',
  6523. },
  6524. }, {
  6525. hl('EnvironmentSigil', '$'),
  6526. hl('EnvironmentName', '_'),
  6527. })
  6528. check_parsing('$ABC_DEF', {
  6529. -- 01234567
  6530. ast = {
  6531. 'Environment(ident=ABC_DEF):0:0:$ABC_DEF',
  6532. },
  6533. }, {
  6534. hl('EnvironmentSigil', '$'),
  6535. hl('EnvironmentName', 'ABC_DEF'),
  6536. })
  6537. end)
  6538. itp('works with unary !', function()
  6539. check_parsing('!', {
  6540. -- 0
  6541. ast = {
  6542. 'Not:0:0:!',
  6543. },
  6544. err = {
  6545. arg = '',
  6546. msg = 'E15: Expected value, got EOC: %.*s',
  6547. },
  6548. }, {
  6549. hl('Not', '!'),
  6550. })
  6551. check_parsing('!!', {
  6552. -- 01
  6553. ast = {
  6554. {
  6555. 'Not:0:0:!',
  6556. children = {
  6557. 'Not:0:1:!',
  6558. },
  6559. },
  6560. },
  6561. err = {
  6562. arg = '',
  6563. msg = 'E15: Expected value, got EOC: %.*s',
  6564. },
  6565. }, {
  6566. hl('Not', '!'),
  6567. hl('Not', '!'),
  6568. })
  6569. check_parsing('!!1', {
  6570. -- 012
  6571. ast = {
  6572. {
  6573. 'Not:0:0:!',
  6574. children = {
  6575. {
  6576. 'Not:0:1:!',
  6577. children = {
  6578. 'Integer(val=1):0:2:1',
  6579. },
  6580. },
  6581. },
  6582. },
  6583. },
  6584. }, {
  6585. hl('Not', '!'),
  6586. hl('Not', '!'),
  6587. hl('Number', '1'),
  6588. })
  6589. check_parsing('!1', {
  6590. -- 01
  6591. ast = {
  6592. {
  6593. 'Not:0:0:!',
  6594. children = {
  6595. 'Integer(val=1):0:1:1',
  6596. },
  6597. },
  6598. },
  6599. }, {
  6600. hl('Not', '!'),
  6601. hl('Number', '1'),
  6602. })
  6603. check_parsing('(!1)', {
  6604. -- 0123
  6605. ast = {
  6606. {
  6607. 'Nested:0:0:(',
  6608. children = {
  6609. {
  6610. 'Not:0:1:!',
  6611. children = {
  6612. 'Integer(val=1):0:2:1',
  6613. },
  6614. },
  6615. },
  6616. },
  6617. },
  6618. }, {
  6619. hl('NestingParenthesis', '('),
  6620. hl('Not', '!'),
  6621. hl('Number', '1'),
  6622. hl('NestingParenthesis', ')'),
  6623. })
  6624. check_parsing('(!)', {
  6625. -- 012
  6626. ast = {
  6627. {
  6628. 'Nested:0:0:(',
  6629. children = {
  6630. {
  6631. 'Not:0:1:!',
  6632. children = {
  6633. 'Missing:0:2:',
  6634. },
  6635. },
  6636. },
  6637. },
  6638. },
  6639. err = {
  6640. arg = ')',
  6641. msg = 'E15: Expected value, got parenthesis: %.*s',
  6642. },
  6643. }, {
  6644. hl('NestingParenthesis', '('),
  6645. hl('Not', '!'),
  6646. hl('InvalidNestingParenthesis', ')'),
  6647. })
  6648. check_parsing('(1!2)', {
  6649. -- 01234
  6650. ast = {
  6651. {
  6652. 'Nested:0:0:(',
  6653. children = {
  6654. {
  6655. 'OpMissing:0:2:',
  6656. children = {
  6657. 'Integer(val=1):0:1:1',
  6658. {
  6659. 'Not:0:2:!',
  6660. children = {
  6661. 'Integer(val=2):0:3:2',
  6662. },
  6663. },
  6664. },
  6665. },
  6666. },
  6667. },
  6668. },
  6669. err = {
  6670. arg = '!2)',
  6671. msg = 'E15: Missing operator: %.*s',
  6672. },
  6673. }, {
  6674. hl('NestingParenthesis', '('),
  6675. hl('Number', '1'),
  6676. hl('InvalidNot', '!'),
  6677. hl('Number', '2'),
  6678. hl('NestingParenthesis', ')'),
  6679. })
  6680. check_parsing('1!2', {
  6681. -- 012
  6682. ast = {
  6683. {
  6684. 'OpMissing:0:1:',
  6685. children = {
  6686. 'Integer(val=1):0:0:1',
  6687. {
  6688. 'Not:0:1:!',
  6689. children = {
  6690. 'Integer(val=2):0:2:2',
  6691. },
  6692. },
  6693. },
  6694. },
  6695. },
  6696. err = {
  6697. arg = '!2',
  6698. msg = 'E15: Missing operator: %.*s',
  6699. },
  6700. }, {
  6701. hl('Number', '1'),
  6702. hl('InvalidNot', '!'),
  6703. hl('Number', '2'),
  6704. }, {
  6705. [1] = {
  6706. ast = {
  6707. len = 1,
  6708. err = REMOVE_THIS,
  6709. ast = {
  6710. 'Integer(val=1):0:0:1',
  6711. },
  6712. },
  6713. hl_fs = {
  6714. [2] = REMOVE_THIS,
  6715. [3] = REMOVE_THIS,
  6716. },
  6717. },
  6718. })
  6719. end)
  6720. itp('highlights numbers with prefix', function()
  6721. check_parsing('0xABCDEF', {
  6722. -- 01234567
  6723. ast = {
  6724. 'Integer(val=11259375):0:0:0xABCDEF',
  6725. },
  6726. }, {
  6727. hl('NumberPrefix', '0x'),
  6728. hl('Number', 'ABCDEF'),
  6729. })
  6730. check_parsing('0Xabcdef', {
  6731. -- 01234567
  6732. ast = {
  6733. 'Integer(val=11259375):0:0:0Xabcdef',
  6734. },
  6735. }, {
  6736. hl('NumberPrefix', '0X'),
  6737. hl('Number', 'abcdef'),
  6738. })
  6739. check_parsing('0XABCDEF', {
  6740. -- 01234567
  6741. ast = {
  6742. 'Integer(val=11259375):0:0:0XABCDEF',
  6743. },
  6744. }, {
  6745. hl('NumberPrefix', '0X'),
  6746. hl('Number', 'ABCDEF'),
  6747. })
  6748. check_parsing('0xabcdef', {
  6749. -- 01234567
  6750. ast = {
  6751. 'Integer(val=11259375):0:0:0xabcdef',
  6752. },
  6753. }, {
  6754. hl('NumberPrefix', '0x'),
  6755. hl('Number', 'abcdef'),
  6756. })
  6757. check_parsing('0b001', {
  6758. -- 01234
  6759. ast = {
  6760. 'Integer(val=1):0:0:0b001',
  6761. },
  6762. }, {
  6763. hl('NumberPrefix', '0b'),
  6764. hl('Number', '001'),
  6765. })
  6766. check_parsing('0B001', {
  6767. -- 01234
  6768. ast = {
  6769. 'Integer(val=1):0:0:0B001',
  6770. },
  6771. }, {
  6772. hl('NumberPrefix', '0B'),
  6773. hl('Number', '001'),
  6774. })
  6775. check_parsing('0B00', {
  6776. -- 0123
  6777. ast = {
  6778. 'Integer(val=0):0:0:0B00',
  6779. },
  6780. }, {
  6781. hl('NumberPrefix', '0B'),
  6782. hl('Number', '00'),
  6783. })
  6784. check_parsing('00', {
  6785. -- 01
  6786. ast = {
  6787. 'Integer(val=0):0:0:00',
  6788. },
  6789. }, {
  6790. hl('NumberPrefix', '0'),
  6791. hl('Number', '0'),
  6792. })
  6793. check_parsing('001', {
  6794. -- 012
  6795. ast = {
  6796. 'Integer(val=1):0:0:001',
  6797. },
  6798. }, {
  6799. hl('NumberPrefix', '0'),
  6800. hl('Number', '01'),
  6801. })
  6802. check_parsing('01', {
  6803. -- 01
  6804. ast = {
  6805. 'Integer(val=1):0:0:01',
  6806. },
  6807. }, {
  6808. hl('NumberPrefix', '0'),
  6809. hl('Number', '1'),
  6810. })
  6811. check_parsing('1', {
  6812. -- 0
  6813. ast = {
  6814. 'Integer(val=1):0:0:1',
  6815. },
  6816. }, {
  6817. hl('Number', '1'),
  6818. })
  6819. end)
  6820. itp('works (KLEE tests)', function()
  6821. check_parsing('\0002&A:\000', {
  6822. len = 0,
  6823. ast = nil,
  6824. err = {
  6825. arg = '\0002&A:\000',
  6826. msg = 'E15: Expected value, got EOC: %.*s',
  6827. },
  6828. }, {
  6829. }, {
  6830. [2] = {
  6831. ast = {
  6832. len = REMOVE_THIS,
  6833. ast = {
  6834. {
  6835. 'Colon:0:4::',
  6836. children = {
  6837. {
  6838. 'OpMissing:0:2:',
  6839. children = {
  6840. 'Integer(val=2):0:1:2',
  6841. 'Option(scope=0,ident=A):0:2:&A',
  6842. },
  6843. },
  6844. },
  6845. },
  6846. },
  6847. err = {
  6848. msg = 'E15: Unexpected EOC character: %.*s',
  6849. },
  6850. },
  6851. hl_fs = {
  6852. hl('InvalidSpacing', '\0'),
  6853. hl('Number', '2'),
  6854. hl('InvalidOptionSigil', '&'),
  6855. hl('InvalidOptionName', 'A'),
  6856. hl('InvalidColon', ':'),
  6857. hl('InvalidSpacing', '\0'),
  6858. },
  6859. },
  6860. [3] = {
  6861. ast = {
  6862. len = 2,
  6863. ast = {
  6864. 'Integer(val=2):0:1:2',
  6865. },
  6866. err = {
  6867. msg = 'E15: Unexpected EOC character: %.*s',
  6868. },
  6869. },
  6870. hl_fs = {
  6871. hl('InvalidSpacing', '\0'),
  6872. hl('Number', '2'),
  6873. },
  6874. },
  6875. })
  6876. check_parsing({data='01', size=1}, {
  6877. len = 1,
  6878. ast = {
  6879. 'Integer(val=0):0:0:0',
  6880. },
  6881. }, {
  6882. hl('Number', '0'),
  6883. })
  6884. check_parsing({data='001', size=2}, {
  6885. len = 2,
  6886. ast = {
  6887. 'Integer(val=0):0:0:00',
  6888. },
  6889. }, {
  6890. hl('NumberPrefix', '0'),
  6891. hl('Number', '0'),
  6892. })
  6893. check_parsing('"\\U\\', {
  6894. -- 0123
  6895. ast = {
  6896. [[DoubleQuotedString(val="U\\"):0:0:"\U\]],
  6897. },
  6898. err = {
  6899. arg = '"\\U\\',
  6900. msg = 'E114: Missing double quote: %.*s',
  6901. },
  6902. }, {
  6903. hl('InvalidDoubleQuote', '"'),
  6904. hl('InvalidDoubleQuotedUnknownEscape', '\\U'),
  6905. hl('InvalidDoubleQuotedBody', '\\'),
  6906. })
  6907. check_parsing('"\\U', {
  6908. -- 012
  6909. ast = {
  6910. fmtn('DoubleQuotedString', 'val="U"', ':0:0:"\\U'),
  6911. },
  6912. err = {
  6913. arg = '"\\U',
  6914. msg = 'E114: Missing double quote: %.*s',
  6915. },
  6916. }, {
  6917. hl('InvalidDoubleQuote', '"'),
  6918. hl('InvalidDoubleQuotedUnknownEscape', '\\U'),
  6919. })
  6920. check_parsing('|"\\U\\', {
  6921. -- 01234
  6922. len = 0,
  6923. err = {
  6924. arg = '|"\\U\\',
  6925. msg = 'E15: Expected value, got EOC: %.*s',
  6926. },
  6927. }, {
  6928. }, {
  6929. [2] = {
  6930. ast = {
  6931. len = REMOVE_THIS,
  6932. ast = {
  6933. {
  6934. 'Or:0:0:|',
  6935. children = {
  6936. 'Missing:0:0:',
  6937. fmtn('DoubleQuotedString', 'val="U\\\\"', ':0:1:"\\U\\'),
  6938. },
  6939. },
  6940. },
  6941. err = {
  6942. msg = 'E15: Unexpected EOC character: %.*s',
  6943. },
  6944. },
  6945. hl_fs = {
  6946. hl('InvalidOr', '|'),
  6947. hl('InvalidDoubleQuote', '"'),
  6948. hl('InvalidDoubleQuotedUnknownEscape', '\\U'),
  6949. hl('InvalidDoubleQuotedBody', '\\'),
  6950. },
  6951. },
  6952. })
  6953. check_parsing('|"\\e"', {
  6954. -- 01234
  6955. len = 0,
  6956. err = {
  6957. arg = '|"\\e"',
  6958. msg = 'E15: Expected value, got EOC: %.*s',
  6959. },
  6960. }, {
  6961. }, {
  6962. [2] = {
  6963. ast = {
  6964. len = REMOVE_THIS,
  6965. ast = {
  6966. {
  6967. 'Or:0:0:|',
  6968. children = {
  6969. 'Missing:0:0:',
  6970. fmtn('DoubleQuotedString', 'val="\\027"', ':0:1:"\\e"'),
  6971. },
  6972. },
  6973. },
  6974. err = {
  6975. msg = 'E15: Unexpected EOC character: %.*s',
  6976. },
  6977. },
  6978. hl_fs = {
  6979. hl('InvalidOr', '|'),
  6980. hl('DoubleQuote', '"'),
  6981. hl('DoubleQuotedEscape', '\\e'),
  6982. hl('DoubleQuote', '"'),
  6983. },
  6984. },
  6985. })
  6986. check_parsing('|\029', {
  6987. -- 01
  6988. len = 0,
  6989. err = {
  6990. arg = '|\029',
  6991. msg = 'E15: Expected value, got EOC: %.*s',
  6992. },
  6993. }, {
  6994. }, {
  6995. [2] = {
  6996. ast = {
  6997. len = REMOVE_THIS,
  6998. ast = {
  6999. {
  7000. 'Or:0:0:|',
  7001. children = {
  7002. 'Missing:0:0:',
  7003. 'PlainIdentifier(scope=0,ident=\029):0:1:\029',
  7004. },
  7005. },
  7006. },
  7007. err = {
  7008. msg = 'E15: Unexpected EOC character: %.*s',
  7009. },
  7010. },
  7011. hl_fs = {
  7012. hl('InvalidOr', '|'),
  7013. hl('InvalidIdentifierName', '\029'),
  7014. },
  7015. },
  7016. })
  7017. check_parsing('"\\<', {
  7018. -- 012
  7019. ast = {
  7020. fmtn('DoubleQuotedString', 'val="<"', ':0:0:"\\<'),
  7021. },
  7022. err = {
  7023. arg = '"\\<',
  7024. msg = 'E114: Missing double quote: %.*s',
  7025. },
  7026. }, {
  7027. hl('InvalidDoubleQuote', '"'),
  7028. hl('InvalidDoubleQuotedUnknownEscape', '\\<'),
  7029. })
  7030. check_parsing('"\\1', {
  7031. -- 01 2
  7032. ast = {
  7033. fmtn('DoubleQuotedString', 'val="\\001"', ':0:0:"\\1'),
  7034. },
  7035. err = {
  7036. arg = '"\\1',
  7037. msg = 'E114: Missing double quote: %.*s',
  7038. },
  7039. }, {
  7040. hl('InvalidDoubleQuote', '"'),
  7041. hl('InvalidDoubleQuotedEscape', '\\1'),
  7042. })
  7043. check_parsing('}l', {
  7044. -- 01
  7045. ast = {
  7046. {
  7047. 'OpMissing:0:1:',
  7048. children = {
  7049. fmtn('UnknownFigure', '---', ':0:0:'),
  7050. 'PlainIdentifier(scope=0,ident=l):0:1:l',
  7051. },
  7052. },
  7053. },
  7054. err = {
  7055. arg = '}l',
  7056. msg = 'E15: Unexpected closing figure brace: %.*s',
  7057. },
  7058. }, {
  7059. hl('InvalidFigureBrace', '}'),
  7060. hl('InvalidIdentifierName', 'l'),
  7061. }, {
  7062. [1] = {
  7063. ast = {
  7064. len = 1,
  7065. ast = {
  7066. fmtn('UnknownFigure', '---', ':0:0:'),
  7067. },
  7068. },
  7069. hl_fs = {
  7070. [2] = REMOVE_THIS,
  7071. },
  7072. },
  7073. })
  7074. check_parsing(':?\000\000\000\000\000\000\000', {
  7075. len = 2,
  7076. ast = {
  7077. {
  7078. 'Colon:0:0::',
  7079. children = {
  7080. 'Missing:0:0:',
  7081. {
  7082. 'Ternary:0:1:?',
  7083. children = {
  7084. 'Missing:0:1:',
  7085. 'TernaryValue:0:1:?',
  7086. },
  7087. },
  7088. },
  7089. },
  7090. },
  7091. err = {
  7092. arg = ':?\000\000\000\000\000\000\000',
  7093. msg = 'E15: Colon outside of dictionary or ternary operator: %.*s',
  7094. },
  7095. }, {
  7096. hl('InvalidColon', ':'),
  7097. hl('InvalidTernary', '?'),
  7098. }, {
  7099. [2] = {
  7100. ast = {
  7101. len = REMOVE_THIS,
  7102. },
  7103. hl_fs = {
  7104. [3] = hl('InvalidSpacing', '\0'),
  7105. [4] = hl('InvalidSpacing', '\0'),
  7106. [5] = hl('InvalidSpacing', '\0'),
  7107. [6] = hl('InvalidSpacing', '\0'),
  7108. [7] = hl('InvalidSpacing', '\0'),
  7109. [8] = hl('InvalidSpacing', '\0'),
  7110. [9] = hl('InvalidSpacing', '\0'),
  7111. },
  7112. },
  7113. })
  7114. end)
  7115. itp('works with assignments', function()
  7116. check_asgn_parsing('a=b', {
  7117. -- 012
  7118. ast = {
  7119. {
  7120. 'Assignment(Plain):0:1:=',
  7121. children = {
  7122. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  7123. 'PlainIdentifier(scope=0,ident=b):0:2:b',
  7124. },
  7125. },
  7126. },
  7127. }, {
  7128. hl('IdentifierName', 'a'),
  7129. hl('PlainAssignment', '='),
  7130. hl('IdentifierName', 'b'),
  7131. })
  7132. check_asgn_parsing('a+=b', {
  7133. -- 0123
  7134. ast = {
  7135. {
  7136. 'Assignment(Add):0:1:+=',
  7137. children = {
  7138. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  7139. 'PlainIdentifier(scope=0,ident=b):0:3:b',
  7140. },
  7141. },
  7142. },
  7143. }, {
  7144. hl('IdentifierName', 'a'),
  7145. hl('AssignmentWithAddition', '+='),
  7146. hl('IdentifierName', 'b'),
  7147. })
  7148. check_asgn_parsing('a-=b', {
  7149. -- 0123
  7150. ast = {
  7151. {
  7152. 'Assignment(Subtract):0:1:-=',
  7153. children = {
  7154. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  7155. 'PlainIdentifier(scope=0,ident=b):0:3:b',
  7156. },
  7157. },
  7158. },
  7159. }, {
  7160. hl('IdentifierName', 'a'),
  7161. hl('AssignmentWithSubtraction', '-='),
  7162. hl('IdentifierName', 'b'),
  7163. })
  7164. check_asgn_parsing('a.=b', {
  7165. -- 0123
  7166. ast = {
  7167. {
  7168. 'Assignment(Concat):0:1:.=',
  7169. children = {
  7170. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  7171. 'PlainIdentifier(scope=0,ident=b):0:3:b',
  7172. },
  7173. },
  7174. },
  7175. }, {
  7176. hl('IdentifierName', 'a'),
  7177. hl('AssignmentWithConcatenation', '.='),
  7178. hl('IdentifierName', 'b'),
  7179. })
  7180. check_asgn_parsing('a', {
  7181. -- 0
  7182. ast = {
  7183. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  7184. },
  7185. }, {
  7186. hl('IdentifierName', 'a'),
  7187. })
  7188. check_asgn_parsing('a b', {
  7189. -- 012
  7190. ast = {
  7191. {
  7192. 'OpMissing:0:1:',
  7193. children = {
  7194. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  7195. 'PlainIdentifier(scope=0,ident=b):0:1: b',
  7196. },
  7197. },
  7198. },
  7199. err = {
  7200. arg = 'b',
  7201. msg = 'E15: Expected assignment operator or subscript: %.*s',
  7202. },
  7203. }, {
  7204. hl('IdentifierName', 'a'),
  7205. hl('InvalidSpacing', ' '),
  7206. hl('IdentifierName', 'b'),
  7207. }, {
  7208. [5] = {
  7209. ast = {
  7210. len = 2,
  7211. ast = {
  7212. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  7213. },
  7214. err = REMOVE_THIS,
  7215. },
  7216. hl_fs = {
  7217. [2] = REMOVE_THIS,
  7218. [3] = REMOVE_THIS,
  7219. }
  7220. },
  7221. })
  7222. check_asgn_parsing('[a, b, c]', {
  7223. -- 012345678
  7224. ast = {
  7225. {
  7226. 'ListLiteral:0:0:[',
  7227. children = {
  7228. {
  7229. 'Comma:0:2:,',
  7230. children = {
  7231. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  7232. {
  7233. 'Comma:0:5:,',
  7234. children = {
  7235. 'PlainIdentifier(scope=0,ident=b):0:3: b',
  7236. 'PlainIdentifier(scope=0,ident=c):0:6: c',
  7237. },
  7238. },
  7239. },
  7240. },
  7241. },
  7242. },
  7243. },
  7244. }, {
  7245. hl('List', '['),
  7246. hl('IdentifierName', 'a'),
  7247. hl('Comma', ','),
  7248. hl('IdentifierName', 'b', 1),
  7249. hl('Comma', ','),
  7250. hl('IdentifierName', 'c', 1),
  7251. hl('List', ']'),
  7252. })
  7253. check_asgn_parsing('[a, b]', {
  7254. -- 012345
  7255. ast = {
  7256. {
  7257. 'ListLiteral:0:0:[',
  7258. children = {
  7259. {
  7260. 'Comma:0:2:,',
  7261. children = {
  7262. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  7263. 'PlainIdentifier(scope=0,ident=b):0:3: b',
  7264. },
  7265. },
  7266. },
  7267. },
  7268. },
  7269. }, {
  7270. hl('List', '['),
  7271. hl('IdentifierName', 'a'),
  7272. hl('Comma', ','),
  7273. hl('IdentifierName', 'b', 1),
  7274. hl('List', ']'),
  7275. })
  7276. check_asgn_parsing('[a]', {
  7277. -- 012
  7278. ast = {
  7279. {
  7280. 'ListLiteral:0:0:[',
  7281. children = {
  7282. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  7283. },
  7284. },
  7285. },
  7286. }, {
  7287. hl('List', '['),
  7288. hl('IdentifierName', 'a'),
  7289. hl('List', ']'),
  7290. })
  7291. check_asgn_parsing('[]', {
  7292. -- 01
  7293. ast = {
  7294. 'ListLiteral:0:0:[',
  7295. },
  7296. err = {
  7297. arg = ']',
  7298. msg = 'E475: Unable to assign to empty list: %.*s',
  7299. },
  7300. }, {
  7301. hl('List', '['),
  7302. hl('InvalidList', ']'),
  7303. })
  7304. check_asgn_parsing('a[1] += 3', {
  7305. -- 012345678
  7306. ast = {
  7307. {
  7308. 'Assignment(Add):0:4: +=',
  7309. children = {
  7310. {
  7311. 'Subscript:0:1:[',
  7312. children = {
  7313. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  7314. 'Integer(val=1):0:2:1',
  7315. },
  7316. },
  7317. 'Integer(val=3):0:7: 3',
  7318. },
  7319. },
  7320. },
  7321. }, {
  7322. hl('IdentifierName', 'a'),
  7323. hl('SubscriptBracket', '['),
  7324. hl('Number', '1'),
  7325. hl('SubscriptBracket', ']'),
  7326. hl('AssignmentWithAddition', '+=', 1),
  7327. hl('Number', '3', 1),
  7328. })
  7329. check_asgn_parsing('a[1 + 2] += 3', {
  7330. -- 0123456789012
  7331. -- 0 1
  7332. ast = {
  7333. {
  7334. 'Assignment(Add):0:8: +=',
  7335. children = {
  7336. {
  7337. 'Subscript:0:1:[',
  7338. children = {
  7339. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  7340. {
  7341. 'BinaryPlus:0:3: +',
  7342. children = {
  7343. 'Integer(val=1):0:2:1',
  7344. 'Integer(val=2):0:5: 2',
  7345. },
  7346. },
  7347. },
  7348. },
  7349. 'Integer(val=3):0:11: 3',
  7350. },
  7351. },
  7352. },
  7353. }, {
  7354. hl('IdentifierName', 'a'),
  7355. hl('SubscriptBracket', '['),
  7356. hl('Number', '1'),
  7357. hl('BinaryPlus', '+', 1),
  7358. hl('Number', '2', 1),
  7359. hl('SubscriptBracket', ']'),
  7360. hl('AssignmentWithAddition', '+=', 1),
  7361. hl('Number', '3', 1),
  7362. })
  7363. check_asgn_parsing('a[{-> {b{3}: 4}[5]}()] += 6', {
  7364. -- 012345678901234567890123456
  7365. -- 0 1 2
  7366. ast = {
  7367. {
  7368. 'Assignment(Add):0:22: +=',
  7369. children = {
  7370. {
  7371. 'Subscript:0:1:[',
  7372. children = {
  7373. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  7374. {
  7375. 'Call:0:19:(',
  7376. children = {
  7377. {
  7378. fmtn('Lambda', '\\di', ':0:2:{'),
  7379. children = {
  7380. {
  7381. 'Arrow:0:3:->',
  7382. children = {
  7383. {
  7384. 'Subscript:0:15:[',
  7385. children = {
  7386. {
  7387. fmtn('DictLiteral', '-di', ':0:5: {'),
  7388. children = {
  7389. {
  7390. 'Colon:0:11::',
  7391. children = {
  7392. {
  7393. 'ComplexIdentifier:0:8:',
  7394. children = {
  7395. 'PlainIdentifier(scope=0,ident=b):0:7:b',
  7396. {
  7397. fmtn('CurlyBracesIdentifier', '--i', ':0:8:{'),
  7398. children = {
  7399. 'Integer(val=3):0:9:3',
  7400. },
  7401. },
  7402. },
  7403. },
  7404. 'Integer(val=4):0:12: 4',
  7405. },
  7406. },
  7407. },
  7408. },
  7409. 'Integer(val=5):0:16:5',
  7410. },
  7411. },
  7412. },
  7413. },
  7414. },
  7415. },
  7416. },
  7417. },
  7418. },
  7419. },
  7420. 'Integer(val=6):0:25: 6',
  7421. },
  7422. },
  7423. },
  7424. }, {
  7425. hl('IdentifierName', 'a'),
  7426. hl('SubscriptBracket', '['),
  7427. hl('Lambda', '{'),
  7428. hl('Arrow', '->'),
  7429. hl('Dict', '{', 1),
  7430. hl('IdentifierName', 'b'),
  7431. hl('Curly', '{'),
  7432. hl('Number', '3'),
  7433. hl('Curly', '}'),
  7434. hl('Colon', ':'),
  7435. hl('Number', '4', 1),
  7436. hl('Dict', '}'),
  7437. hl('SubscriptBracket', '['),
  7438. hl('Number', '5'),
  7439. hl('SubscriptBracket', ']'),
  7440. hl('Lambda', '}'),
  7441. hl('CallingParenthesis', '('),
  7442. hl('CallingParenthesis', ')'),
  7443. hl('SubscriptBracket', ']'),
  7444. hl('AssignmentWithAddition', '+=', 1),
  7445. hl('Number', '6', 1),
  7446. })
  7447. check_asgn_parsing('a{1}.2[{-> {b{3}: 4}[5]}()]', {
  7448. -- 012345678901234567890123456
  7449. -- 0 1 2
  7450. ast = {
  7451. {
  7452. 'Subscript:0:6:[',
  7453. children = {
  7454. {
  7455. 'ConcatOrSubscript:0:4:.',
  7456. children = {
  7457. {
  7458. 'ComplexIdentifier:0:1:',
  7459. children = {
  7460. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  7461. {
  7462. fmtn('CurlyBracesIdentifier', '--i', ':0:1:{'),
  7463. children = {
  7464. 'Integer(val=1):0:2:1',
  7465. },
  7466. },
  7467. },
  7468. },
  7469. 'PlainKey(key=2):0:5:2',
  7470. },
  7471. },
  7472. {
  7473. 'Call:0:24:(',
  7474. children = {
  7475. {
  7476. fmtn('Lambda', '\\di', ':0:7:{'),
  7477. children = {
  7478. {
  7479. 'Arrow:0:8:->',
  7480. children = {
  7481. {
  7482. 'Subscript:0:20:[',
  7483. children = {
  7484. {
  7485. fmtn('DictLiteral', '-di', ':0:10: {'),
  7486. children = {
  7487. {
  7488. 'Colon:0:16::',
  7489. children = {
  7490. {
  7491. 'ComplexIdentifier:0:13:',
  7492. children = {
  7493. 'PlainIdentifier(scope=0,ident=b):0:12:b',
  7494. {
  7495. fmtn('CurlyBracesIdentifier', '--i', ':0:13:{'),
  7496. children = {
  7497. 'Integer(val=3):0:14:3',
  7498. },
  7499. },
  7500. },
  7501. },
  7502. 'Integer(val=4):0:17: 4',
  7503. },
  7504. },
  7505. },
  7506. },
  7507. 'Integer(val=5):0:21:5',
  7508. },
  7509. },
  7510. },
  7511. },
  7512. },
  7513. },
  7514. },
  7515. },
  7516. },
  7517. },
  7518. },
  7519. }, {
  7520. hl('IdentifierName', 'a'),
  7521. hl('Curly', '{'),
  7522. hl('Number', '1'),
  7523. hl('Curly', '}'),
  7524. hl('ConcatOrSubscript', '.'),
  7525. hl('IdentifierKey', '2'),
  7526. hl('SubscriptBracket', '['),
  7527. hl('Lambda', '{'),
  7528. hl('Arrow', '->'),
  7529. hl('Dict', '{', 1),
  7530. hl('IdentifierName', 'b'),
  7531. hl('Curly', '{'),
  7532. hl('Number', '3'),
  7533. hl('Curly', '}'),
  7534. hl('Colon', ':'),
  7535. hl('Number', '4', 1),
  7536. hl('Dict', '}'),
  7537. hl('SubscriptBracket', '['),
  7538. hl('Number', '5'),
  7539. hl('SubscriptBracket', ']'),
  7540. hl('Lambda', '}'),
  7541. hl('CallingParenthesis', '('),
  7542. hl('CallingParenthesis', ')'),
  7543. hl('SubscriptBracket', ']'),
  7544. })
  7545. check_asgn_parsing('a', {
  7546. -- 0
  7547. ast = {
  7548. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  7549. },
  7550. }, {
  7551. hl('IdentifierName', 'a'),
  7552. })
  7553. check_asgn_parsing('{a}', {
  7554. -- 012
  7555. ast = {
  7556. {
  7557. fmtn('CurlyBracesIdentifier', '--i', ':0:0:{'),
  7558. children = {
  7559. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  7560. },
  7561. },
  7562. },
  7563. }, {
  7564. hl('FigureBrace', '{'),
  7565. hl('IdentifierName', 'a'),
  7566. hl('Curly', '}'),
  7567. })
  7568. check_asgn_parsing('{a}b', {
  7569. -- 0123
  7570. ast = {
  7571. {
  7572. 'ComplexIdentifier:0:3:',
  7573. children = {
  7574. {
  7575. fmtn('CurlyBracesIdentifier', '--i', ':0:0:{'),
  7576. children = {
  7577. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  7578. },
  7579. },
  7580. 'PlainIdentifier(scope=0,ident=b):0:3:b',
  7581. },
  7582. },
  7583. },
  7584. }, {
  7585. hl('FigureBrace', '{'),
  7586. hl('IdentifierName', 'a'),
  7587. hl('Curly', '}'),
  7588. hl('IdentifierName', 'b'),
  7589. })
  7590. check_asgn_parsing('a{b}c', {
  7591. -- 01234
  7592. ast = {
  7593. {
  7594. 'ComplexIdentifier:0:1:',
  7595. children = {
  7596. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  7597. {
  7598. 'ComplexIdentifier:0:4:',
  7599. children = {
  7600. {
  7601. fmtn('CurlyBracesIdentifier', '--i', ':0:1:{'),
  7602. children = {
  7603. 'PlainIdentifier(scope=0,ident=b):0:2:b',
  7604. },
  7605. },
  7606. 'PlainIdentifier(scope=0,ident=c):0:4:c',
  7607. },
  7608. },
  7609. },
  7610. },
  7611. },
  7612. }, {
  7613. hl('IdentifierName', 'a'),
  7614. hl('Curly', '{'),
  7615. hl('IdentifierName', 'b'),
  7616. hl('Curly', '}'),
  7617. hl('IdentifierName', 'c'),
  7618. })
  7619. check_asgn_parsing('a{b}c[0]', {
  7620. -- 01234567
  7621. ast = {
  7622. {
  7623. 'Subscript:0:5:[',
  7624. children = {
  7625. {
  7626. 'ComplexIdentifier:0:1:',
  7627. children = {
  7628. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  7629. {
  7630. 'ComplexIdentifier:0:4:',
  7631. children = {
  7632. {
  7633. fmtn('CurlyBracesIdentifier', '--i', ':0:1:{'),
  7634. children = {
  7635. 'PlainIdentifier(scope=0,ident=b):0:2:b',
  7636. },
  7637. },
  7638. 'PlainIdentifier(scope=0,ident=c):0:4:c',
  7639. },
  7640. },
  7641. },
  7642. },
  7643. 'Integer(val=0):0:6:0',
  7644. },
  7645. },
  7646. },
  7647. }, {
  7648. hl('IdentifierName', 'a'),
  7649. hl('Curly', '{'),
  7650. hl('IdentifierName', 'b'),
  7651. hl('Curly', '}'),
  7652. hl('IdentifierName', 'c'),
  7653. hl('SubscriptBracket', '['),
  7654. hl('Number', '0'),
  7655. hl('SubscriptBracket', ']'),
  7656. })
  7657. check_asgn_parsing('a{b}c.0', {
  7658. -- 0123456
  7659. ast = {
  7660. {
  7661. 'ConcatOrSubscript:0:5:.',
  7662. children = {
  7663. {
  7664. 'ComplexIdentifier:0:1:',
  7665. children = {
  7666. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  7667. {
  7668. 'ComplexIdentifier:0:4:',
  7669. children = {
  7670. {
  7671. fmtn('CurlyBracesIdentifier', '--i', ':0:1:{'),
  7672. children = {
  7673. 'PlainIdentifier(scope=0,ident=b):0:2:b',
  7674. },
  7675. },
  7676. 'PlainIdentifier(scope=0,ident=c):0:4:c',
  7677. },
  7678. },
  7679. },
  7680. },
  7681. 'PlainKey(key=0):0:6:0',
  7682. },
  7683. },
  7684. },
  7685. }, {
  7686. hl('IdentifierName', 'a'),
  7687. hl('Curly', '{'),
  7688. hl('IdentifierName', 'b'),
  7689. hl('Curly', '}'),
  7690. hl('IdentifierName', 'c'),
  7691. hl('ConcatOrSubscript', '.'),
  7692. hl('IdentifierKey', '0'),
  7693. })
  7694. check_asgn_parsing('[a{b}c[0].0]', {
  7695. -- 012345678901
  7696. -- 0 1
  7697. ast = {
  7698. {
  7699. 'ListLiteral:0:0:[',
  7700. children = {
  7701. {
  7702. 'ConcatOrSubscript:0:9:.',
  7703. children = {
  7704. {
  7705. 'Subscript:0:6:[',
  7706. children = {
  7707. {
  7708. 'ComplexIdentifier:0:2:',
  7709. children = {
  7710. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  7711. {
  7712. 'ComplexIdentifier:0:5:',
  7713. children = {
  7714. {
  7715. fmtn('CurlyBracesIdentifier', '--i', ':0:2:{'),
  7716. children = {
  7717. 'PlainIdentifier(scope=0,ident=b):0:3:b',
  7718. },
  7719. },
  7720. 'PlainIdentifier(scope=0,ident=c):0:5:c',
  7721. },
  7722. },
  7723. },
  7724. },
  7725. 'Integer(val=0):0:7:0',
  7726. },
  7727. },
  7728. 'PlainKey(key=0):0:10:0',
  7729. },
  7730. },
  7731. },
  7732. },
  7733. },
  7734. }, {
  7735. hl('List', '['),
  7736. hl('IdentifierName', 'a'),
  7737. hl('Curly', '{'),
  7738. hl('IdentifierName', 'b'),
  7739. hl('Curly', '}'),
  7740. hl('IdentifierName', 'c'),
  7741. hl('SubscriptBracket', '['),
  7742. hl('Number', '0'),
  7743. hl('SubscriptBracket', ']'),
  7744. hl('ConcatOrSubscript', '.'),
  7745. hl('IdentifierKey', '0'),
  7746. hl('List', ']'),
  7747. })
  7748. check_asgn_parsing('{a}{b}', {
  7749. -- 012345
  7750. ast = {
  7751. {
  7752. 'ComplexIdentifier:0:3:',
  7753. children = {
  7754. {
  7755. fmtn('CurlyBracesIdentifier', '--i', ':0:0:{'),
  7756. children = {
  7757. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  7758. },
  7759. },
  7760. {
  7761. fmtn('CurlyBracesIdentifier', '--i', ':0:3:{'),
  7762. children = {
  7763. 'PlainIdentifier(scope=0,ident=b):0:4:b',
  7764. },
  7765. },
  7766. },
  7767. },
  7768. },
  7769. }, {
  7770. hl('FigureBrace', '{'),
  7771. hl('IdentifierName', 'a'),
  7772. hl('Curly', '}'),
  7773. hl('Curly', '{'),
  7774. hl('IdentifierName', 'b'),
  7775. hl('Curly', '}'),
  7776. })
  7777. check_asgn_parsing('a.b{c}{d}', {
  7778. -- 012345678
  7779. ast = {
  7780. {
  7781. 'OpMissing:0:3:',
  7782. children = {
  7783. {
  7784. 'ConcatOrSubscript:0:1:.',
  7785. children = {
  7786. 'PlainIdentifier(scope=0,ident=a):0:0:a',
  7787. 'PlainKey(key=b):0:2:b',
  7788. },
  7789. },
  7790. {
  7791. 'ComplexIdentifier:0:6:',
  7792. children = {
  7793. {
  7794. fmtn('CurlyBracesIdentifier', '--i', ':0:3:{'),
  7795. children = {
  7796. 'PlainIdentifier(scope=0,ident=c):0:4:c',
  7797. },
  7798. },
  7799. {
  7800. fmtn('CurlyBracesIdentifier', '--i', ':0:6:{'),
  7801. children = {
  7802. 'PlainIdentifier(scope=0,ident=d):0:7:d',
  7803. },
  7804. },
  7805. },
  7806. },
  7807. },
  7808. },
  7809. },
  7810. err = {
  7811. arg = '{c}{d}',
  7812. msg = 'E15: Missing operator: %.*s',
  7813. },
  7814. }, {
  7815. hl('IdentifierName', 'a'),
  7816. hl('ConcatOrSubscript', '.'),
  7817. hl('IdentifierKey', 'b'),
  7818. hl('InvalidFigureBrace', '{'),
  7819. hl('IdentifierName', 'c'),
  7820. hl('Curly', '}'),
  7821. hl('Curly', '{'),
  7822. hl('IdentifierName', 'd'),
  7823. hl('Curly', '}'),
  7824. })
  7825. check_asgn_parsing('[a] = 1', {
  7826. -- 0123456
  7827. ast = {
  7828. {
  7829. 'Assignment(Plain):0:3: =',
  7830. children = {
  7831. {
  7832. 'ListLiteral:0:0:[',
  7833. children = {
  7834. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  7835. },
  7836. },
  7837. 'Integer(val=1):0:5: 1',
  7838. },
  7839. },
  7840. },
  7841. }, {
  7842. hl('List', '['),
  7843. hl('IdentifierName', 'a'),
  7844. hl('List', ']'),
  7845. hl('PlainAssignment', '=', 1),
  7846. hl('Number', '1', 1),
  7847. })
  7848. check_asgn_parsing('[a[b], [c, [d, [e]]]] = 1', {
  7849. -- 0123456789012345678901234
  7850. -- 0 1 2
  7851. ast = {
  7852. {
  7853. 'Assignment(Plain):0:21: =',
  7854. children = {
  7855. {
  7856. 'ListLiteral:0:0:[',
  7857. children = {
  7858. {
  7859. 'Comma:0:5:,',
  7860. children = {
  7861. {
  7862. 'Subscript:0:2:[',
  7863. children = {
  7864. 'PlainIdentifier(scope=0,ident=a):0:1:a',
  7865. 'PlainIdentifier(scope=0,ident=b):0:3:b',
  7866. },
  7867. },
  7868. {
  7869. 'ListLiteral:0:6: [',
  7870. children = {
  7871. {
  7872. 'Comma:0:9:,',
  7873. children = {
  7874. 'PlainIdentifier(scope=0,ident=c):0:8:c',
  7875. {
  7876. 'ListLiteral:0:10: [',
  7877. children = {
  7878. {
  7879. 'Comma:0:13:,',
  7880. children = {
  7881. 'PlainIdentifier(scope=0,ident=d):0:12:d',
  7882. {
  7883. 'ListLiteral:0:14: [',
  7884. children = {
  7885. 'PlainIdentifier(scope=0,ident=e):0:16:e',
  7886. },
  7887. },
  7888. },
  7889. },
  7890. },
  7891. },
  7892. },
  7893. },
  7894. },
  7895. },
  7896. },
  7897. },
  7898. },
  7899. },
  7900. 'Integer(val=1):0:23: 1',
  7901. },
  7902. },
  7903. },
  7904. err = {
  7905. arg = '[c, [d, [e]]]] = 1',
  7906. msg = 'E475: Nested lists not allowed when assigning: %.*s',
  7907. },
  7908. }, {
  7909. hl('List', '['),
  7910. hl('IdentifierName', 'a'),
  7911. hl('SubscriptBracket', '['),
  7912. hl('IdentifierName', 'b'),
  7913. hl('SubscriptBracket', ']'),
  7914. hl('Comma', ','),
  7915. hl('InvalidList', '[', 1),
  7916. hl('IdentifierName', 'c'),
  7917. hl('Comma', ','),
  7918. hl('InvalidList', '[', 1),
  7919. hl('IdentifierName', 'd'),
  7920. hl('Comma', ','),
  7921. hl('InvalidList', '[', 1),
  7922. hl('IdentifierName', 'e'),
  7923. hl('List', ']'),
  7924. hl('List', ']'),
  7925. hl('List', ']'),
  7926. hl('List', ']'),
  7927. hl('PlainAssignment', '=', 1),
  7928. hl('Number', '1', 1),
  7929. })
  7930. check_asgn_parsing('$X += 1', {
  7931. -- 0123456
  7932. ast = {
  7933. {
  7934. 'Assignment(Add):0:2: +=',
  7935. children = {
  7936. 'Environment(ident=X):0:0:$X',
  7937. 'Integer(val=1):0:5: 1',
  7938. },
  7939. },
  7940. },
  7941. }, {
  7942. hl('EnvironmentSigil', '$'),
  7943. hl('EnvironmentName', 'X'),
  7944. hl('AssignmentWithAddition', '+=', 1),
  7945. hl('Number', '1', 1),
  7946. })
  7947. check_asgn_parsing('@a .= 1', {
  7948. -- 0123456
  7949. ast = {
  7950. {
  7951. 'Assignment(Concat):0:2: .=',
  7952. children = {
  7953. 'Register(name=a):0:0:@a',
  7954. 'Integer(val=1):0:5: 1',
  7955. },
  7956. },
  7957. },
  7958. }, {
  7959. hl('Register', '@a'),
  7960. hl('AssignmentWithConcatenation', '.=', 1),
  7961. hl('Number', '1', 1),
  7962. })
  7963. check_asgn_parsing('&option -= 1', {
  7964. -- 012345678901
  7965. -- 0 1
  7966. ast = {
  7967. {
  7968. 'Assignment(Subtract):0:7: -=',
  7969. children = {
  7970. 'Option(scope=0,ident=option):0:0:&option',
  7971. 'Integer(val=1):0:10: 1',
  7972. },
  7973. },
  7974. },
  7975. }, {
  7976. hl('OptionSigil', '&'),
  7977. hl('OptionName', 'option'),
  7978. hl('AssignmentWithSubtraction', '-=', 1),
  7979. hl('Number', '1', 1),
  7980. })
  7981. check_asgn_parsing('[$X, @a, &l:option] = [1, 2, 3]', {
  7982. -- 0123456789012345678901234567890
  7983. -- 0 1 2 3
  7984. ast = {
  7985. {
  7986. 'Assignment(Plain):0:19: =',
  7987. children = {
  7988. {
  7989. 'ListLiteral:0:0:[',
  7990. children = {
  7991. {
  7992. 'Comma:0:3:,',
  7993. children = {
  7994. 'Environment(ident=X):0:1:$X',
  7995. {
  7996. 'Comma:0:7:,',
  7997. children = {
  7998. 'Register(name=a):0:4: @a',
  7999. 'Option(scope=l,ident=option):0:8: &l:option',
  8000. },
  8001. },
  8002. },
  8003. },
  8004. },
  8005. },
  8006. {
  8007. 'ListLiteral:0:21: [',
  8008. children = {
  8009. {
  8010. 'Comma:0:24:,',
  8011. children = {
  8012. 'Integer(val=1):0:23:1',
  8013. {
  8014. 'Comma:0:27:,',
  8015. children = {
  8016. 'Integer(val=2):0:25: 2',
  8017. 'Integer(val=3):0:28: 3',
  8018. },
  8019. },
  8020. },
  8021. },
  8022. },
  8023. },
  8024. },
  8025. },
  8026. },
  8027. }, {
  8028. hl('List', '['),
  8029. hl('EnvironmentSigil', '$'),
  8030. hl('EnvironmentName', 'X'),
  8031. hl('Comma', ','),
  8032. hl('Register', '@a', 1),
  8033. hl('Comma', ','),
  8034. hl('OptionSigil', '&', 1),
  8035. hl('OptionScope', 'l'),
  8036. hl('OptionScopeDelimiter', ':'),
  8037. hl('OptionName', 'option'),
  8038. hl('List', ']'),
  8039. hl('PlainAssignment', '=', 1),
  8040. hl('List', '[', 1),
  8041. hl('Number', '1'),
  8042. hl('Comma', ','),
  8043. hl('Number', '2', 1),
  8044. hl('Comma', ','),
  8045. hl('Number', '3', 1),
  8046. hl('List', ']'),
  8047. })
  8048. end)
  8049. itp('works with non-ASCII characters', function()
  8050. check_parsing('"«»"«»', {
  8051. -- 013568
  8052. ast = {
  8053. {
  8054. 'OpMissing:0:6:',
  8055. children = {
  8056. 'DoubleQuotedString(val="«»"):0:0:"«»"',
  8057. {
  8058. 'ComplexIdentifier:0:8:',
  8059. children = {
  8060. 'PlainIdentifier(scope=0,ident=«):0:6:«',
  8061. 'PlainIdentifier(scope=0,ident=»):0:8:»',
  8062. },
  8063. },
  8064. },
  8065. },
  8066. },
  8067. err = {
  8068. arg = '«»',
  8069. msg = 'E15: Unidentified character: %.*s',
  8070. },
  8071. }, {
  8072. hl('DoubleQuote', '"'),
  8073. hl('DoubleQuotedBody', '«»'),
  8074. hl('DoubleQuote', '"'),
  8075. hl('InvalidIdentifierName', '«'),
  8076. hl('InvalidIdentifierName', '»'),
  8077. }, {
  8078. [1] = {
  8079. ast = {
  8080. ast = {
  8081. 'DoubleQuotedString(val="«»"):0:0:"«»"',
  8082. },
  8083. len = 6,
  8084. },
  8085. hl_fs = {
  8086. [5] = REMOVE_THIS,
  8087. [4] = REMOVE_THIS,
  8088. },
  8089. },
  8090. })
  8091. check_parsing('"\192"\192"foo"', {
  8092. -- 01 23 45678
  8093. ast = {
  8094. {
  8095. 'OpMissing:0:3:',
  8096. children = {
  8097. 'DoubleQuotedString(val="\192"):0:0:"\192"',
  8098. {
  8099. 'OpMissing:0:4:',
  8100. children = {
  8101. 'PlainIdentifier(scope=0,ident=\192):0:3:\192',
  8102. 'DoubleQuotedString(val="foo"):0:4:"foo"',
  8103. },
  8104. },
  8105. },
  8106. },
  8107. },
  8108. err = {
  8109. arg = '\192"foo"',
  8110. msg = 'E15: Unidentified character: %.*s',
  8111. },
  8112. }, {
  8113. hl('DoubleQuote', '"'),
  8114. hl('DoubleQuotedBody', '\192'),
  8115. hl('DoubleQuote', '"'),
  8116. hl('InvalidIdentifierName', '\192'),
  8117. hl('InvalidDoubleQuote', '"'),
  8118. hl('InvalidDoubleQuotedBody', 'foo'),
  8119. hl('InvalidDoubleQuote', '"'),
  8120. }, {
  8121. [1] = {
  8122. ast = {
  8123. ast = {
  8124. 'DoubleQuotedString(val="\192"):0:0:"\192"',
  8125. },
  8126. len = 3,
  8127. },
  8128. hl_fs = {
  8129. [4] = REMOVE_THIS,
  8130. [5] = REMOVE_THIS,
  8131. [6] = REMOVE_THIS,
  8132. [7] = REMOVE_THIS,
  8133. },
  8134. },
  8135. })
  8136. end)
  8137. end