0000: 2f 2a 2a 0d 0a 20 2a 20 41 75 74 68 6f 72 73 3a /**.. * Authors:
0010: 20 6b 2e 69 6e 61 62 61 0d 0a 20 2a 20 4c 69 63 k.inaba.. * Lic
0020: 65 6e 73 65 3a 20 4e 59 53 4c 20 30 2e 39 39 38 ense: NYSL 0.998
0030: 32 20 68 74 74 70 3a 2f 2f 77 77 77 2e 6b 6d 6f 2 http://www.kmo
0040: 6e 6f 73 2e 6e 65 74 2f 6e 79 73 6c 2f 0d 0a 20 nos.net/nysl/..
0050: 2a 0d 0a 20 2a 20 50 61 72 73 65 72 20 66 6f 72 *.. * Parser for
0060: 20 50 6f 6c 65 6d 79 20 70 72 6f 67 72 61 6d 6d Polemy programm
0070: 69 6e 67 20 6c 61 6e 67 75 61 67 65 0d 0a 20 2a ing language.. *
0080: 2f 0d 0a 6d 6f 64 75 6c 65 20 70 6f 6c 65 6d 79 /..module polemy
0090: 2e 70 61 72 73 65 3b 0d 0a 69 6d 70 6f 72 74 20 .parse;..import
00a0: 70 6f 6c 65 6d 79 2e 5f 63 6f 6d 6d 6f 6e 3b 0d polemy._common;.
00b0: 0a 69 6d 70 6f 72 74 20 70 6f 6c 65 6d 79 2e 66 .import polemy.f
00c0: 61 69 6c 75 72 65 3b 0d 0a 69 6d 70 6f 72 74 20 ailure;..import
00d0: 70 6f 6c 65 6d 79 2e 6c 65 78 3b 0d 0a 69 6d 70 polemy.lex;..imp
00e0: 6f 72 74 20 70 6f 6c 65 6d 79 2e 61 73 74 3b 0d ort polemy.ast;.
00f0: 0a 69 6d 70 6f 72 74 20 70 6f 6c 65 6d 79 2e 6c .import polemy.l
0100: 61 79 65 72 3b 0d 0a 69 6d 70 6f 72 74 20 70 6f ayer;..import po
0110: 6c 65 6d 79 2e 66 72 65 73 68 3b 0a 0d 0a 2f 2f lemy.fresh;...//
0120: 2f 20 50 61 72 73 65 20 61 20 73 74 72 69 6e 67 / Parse a string
0130: 20 61 6e 64 20 72 65 74 75 72 6e 20 69 74 73 20 and return its
0140: 41 53 54 0d 0a 0d 0a 41 53 54 20 70 61 72 73 65 AST....AST parse
0150: 53 74 72 69 6e 67 28 53 2c 20 54 2e 2e 2e 29 28 String(S, T...)(
0160: 53 20 73 74 72 2c 20 54 20 66 6e 5f 6c 6e 5f 63 S str, T fn_ln_c
0170: 6e 29 0d 0a 7b 0d 0a 09 72 65 74 75 72 6e 20 70 n)..{...return p
0180: 61 72 73 65 72 46 72 6f 6d 53 74 72 69 6e 67 28 arserFromString(
0190: 73 74 72 2c 20 66 6e 5f 6c 6e 5f 63 6e 29 2e 70 str, fn_ln_cn).p
01a0: 61 72 73 65 28 29 3b 0d 0a 7d 0d 0a 0d 0a 2f 2f arse();..}....//
01b0: 2f 20 50 61 72 73 65 20 74 68 65 20 63 6f 6e 74 / Parse the cont
01c0: 65 6e 74 20 6f 66 20 61 20 66 69 6c 65 20 61 6e ent of a file an
01d0: 64 20 72 65 74 75 72 6e 20 69 74 73 20 41 53 54 d return its AST
01e0: 0d 0a 0d 0a 41 53 54 20 70 61 72 73 65 46 69 6c ....AST parseFil
01f0: 65 28 53 2c 20 54 2e 2e 2e 29 28 53 20 66 69 6c e(S, T...)(S fil
0200: 65 6e 61 6d 65 2c 20 54 20 6c 6e 5f 63 6e 29 0d ename, T ln_cn).
0210: 0a 7b 0d 0a 09 72 65 74 75 72 6e 20 70 61 72 73 .{...return pars
0220: 65 72 46 72 6f 6d 46 69 6c 65 28 66 69 6c 65 6e erFromFile(filen
0230: 61 6d 65 2c 20 6c 6e 5f 63 6e 29 2e 70 61 72 73 ame, ln_cn).pars
0240: 65 28 29 3b 0d 0a 7d 0d 0a 0d 0a 2f 2f 20 4e 61 e();..}....// Na
0250: 6d 65 64 20 43 6f 6e 73 74 72 75 63 74 6f 72 73 med Constructors
0260: 20 6f 66 20 50 61 72 73 65 72 0d 0a 0d 0a 70 72 of Parser....pr
0270: 69 76 61 74 65 20 61 75 74 6f 20 70 61 72 73 65 ivate auto parse
0280: 72 46 72 6f 6d 4c 65 78 65 72 28 4c 65 78 65 72 rFromLexer(Lexer
0290: 29 28 4c 65 78 65 72 20 6c 65 78 29 0d 0a 09 7b )(Lexer lex)...{
02a0: 20 72 65 74 75 72 6e 20 6e 65 77 20 50 61 72 73 return new Pars
02b0: 65 72 21 4c 65 78 65 72 28 6c 65 78 29 3b 20 7d er!Lexer(lex); }
02c0: 0d 0a 0d 0a 70 72 69 76 61 74 65 20 61 75 74 6f ....private auto
02d0: 20 70 61 72 73 65 72 46 72 6f 6d 53 74 72 69 6e parserFromStrin
02e0: 67 28 54 2e 2e 2e 29 28 54 20 70 61 72 61 6d 73 g(T...)(T params
02f0: 29 0d 0a 09 7b 20 72 65 74 75 72 6e 20 70 61 72 )...{ return par
0300: 73 65 72 46 72 6f 6d 4c 65 78 65 72 28 6c 65 78 serFromLexer(lex
0310: 65 72 46 72 6f 6d 53 74 72 69 6e 67 28 70 61 72 erFromString(par
0320: 61 6d 73 29 29 3b 20 7d 0d 0a 0d 0a 70 72 69 76 ams)); }....priv
0330: 61 74 65 20 61 75 74 6f 20 70 61 72 73 65 72 46 ate auto parserF
0340: 72 6f 6d 46 69 6c 65 28 54 2e 2e 2e 29 28 54 20 romFile(T...)(T
0350: 70 61 72 61 6d 73 29 0d 0a 09 7b 20 72 65 74 75 params)...{ retu
0360: 72 6e 20 70 61 72 73 65 72 46 72 6f 6d 4c 65 78 rn parserFromLex
0370: 65 72 28 6c 65 78 65 72 46 72 6f 6d 46 69 6c 65 er(lexerFromFile
0380: 28 70 61 72 61 6d 73 29 29 3b 20 7d 0d 0a 0d 0a (params)); }....
0390: 2f 2f 20 50 61 72 73 65 72 0d 0a 0d 0a 70 72 69 // Parser....pri
03a0: 76 61 74 65 20 63 6c 61 73 73 20 50 61 72 73 65 vate class Parse
03b0: 72 28 4c 65 78 65 72 29 0d 0a 09 69 66 28 20 69 r(Lexer)...if( i
03c0: 73 46 6f 72 77 61 72 64 52 61 6e 67 65 21 28 4c sForwardRange!(L
03d0: 65 78 65 72 29 20 26 26 20 69 73 28 45 6c 65 6d exer) && is(Elem
03e0: 65 6e 74 54 79 70 65 21 28 4c 65 78 65 72 29 20 entType!(Lexer)
03f0: 3d 3d 20 54 6f 6b 65 6e 29 20 29 0d 0a 7b 0d 0a == Token) )..{..
0400: 09 41 53 54 20 70 61 72 73 65 28 29 0d 0a 09 7b .AST parse()...{
0410: 0d 0a 09 09 61 75 74 6f 20 65 20 3d 20 42 6f 64 ....auto e = Bod
0420: 79 28 29 3b 0d 0a 09 09 69 66 28 20 21 6c 65 78 y();....if( !lex
0430: 2e 65 6d 70 74 79 20 29 0d 0a 09 09 09 74 68 72 .empty ).....thr
0440: 6f 77 20 67 65 6e 65 78 21 50 61 72 73 65 45 78 ow genex!ParseEx
0450: 63 65 70 74 69 6f 6e 28 63 75 72 72 65 6e 74 50 ception(currentP
0460: 6f 73 69 74 69 6f 6e 28 29 2c 20 22 70 61 72 73 osition(), "pars
0470: 69 6e 67 20 65 6e 64 65 64 20 62 75 74 20 73 6f ing ended but so
0480: 6d 65 20 74 6f 6b 65 6e 73 20 6c 65 66 74 22 29 me tokens left")
0490: 3b 0d 0a 09 09 72 65 74 75 72 6e 20 65 3b 0d 0a ;....return e;..
04a0: 09 7d 0d 0a 0d 0a 09 41 53 54 20 42 6f 64 79 28 .}.....AST Body(
04b0: 29 0d 0a 09 7b 0d 0a 09 09 2f 2f 2f 20 42 6f 64 )...{..../// Bod
04c0: 79 20 3a 3a 3d 20 44 65 63 6c 61 72 61 74 69 6f y ::= Declaratio
04d0: 6e 0d 0a 09 09 2f 2f 2f 20 20 20 20 20 20 20 20 n....///
04e0: 7c 20 54 6f 70 4c 65 76 65 6c 45 78 70 72 65 73 | TopLevelExpres
04f0: 73 69 6f 6e 0d 0a 0d 0a 09 09 69 66 28 20 63 6c sion......if( cl
0500: 6f 73 69 6e 67 42 72 61 63 6b 65 74 28 29 20 29 osingBracket() )
0510: 0d 0a 09 09 09 72 65 74 75 72 6e 20 64 6f 4e 6f .....return doNo
0520: 74 68 69 6e 67 45 78 70 72 65 73 73 69 6f 6e 28 thingExpression(
0530: 29 3b 0d 0a 0d 0a 09 09 61 75 74 6f 20 73 61 76 );......auto sav
0540: 65 64 20 3d 20 6c 65 78 2e 73 61 76 65 3b 0d 0a ed = lex.save;..
0550: 09 09 69 66 28 20 61 75 74 6f 20 65 20 3d 20 44 ..if( auto e = D
0560: 65 63 6c 61 72 61 74 69 6f 6e 28 29 20 29 0d 0a eclaration() )..
0570: 09 09 09 72 65 74 75 72 6e 20 65 3b 0d 0a 09 09 ...return e;....
0580: 6c 65 78 20 3d 20 73 61 76 65 64 3b 0d 0a 09 09 lex = saved;....
0590: 72 65 74 75 72 6e 20 54 6f 70 4c 65 76 65 6c 45 return TopLevelE
05a0: 78 70 72 65 73 73 69 6f 6e 28 29 3b 0d 0a 09 7d xpression();...}
05b0: 0d 0a 0d 0a 09 41 53 54 20 44 65 63 6c 61 72 61 .....AST Declara
05c0: 74 69 6f 6e 28 29 20 2f 2f 20 72 65 74 75 72 6e tion() // return
05d0: 73 20 6e 75 6c 6c 20 69 66 20 69 74 20 69 73 20 s null if it is
05e0: 6e 6f 74 20 61 20 64 65 63 6c 61 72 61 74 69 6f not a declaratio
05f0: 6e 0d 0a 09 7b 0d 0a 09 09 2f 2f 2f 20 44 65 63 n...{..../// Dec
0600: 6c 61 72 61 74 69 6f 6e 20 3a 3a 3d 0d 0a 09 09 laration ::=....
0610: 2f 2f 2f 20 20 20 20 5b 22 40 22 20 4c 61 79 65 /// ["@" Laye
0620: 72 7c 22 6c 65 74 22 7c 22 76 61 72 22 7c 22 64 r|"let"|"var"|"d
0630: 65 66 22 5d 20 56 61 72 20 22 3d 22 20 45 78 70 ef"] Var "=" Exp
0640: 72 65 73 73 69 6f 6e 20 28 5b 22 3b 22 7c 22 69 ression ([";"|"i
0650: 6e 22 5d 20 42 6f 64 79 3f 29 3f 0d 0a 09 09 2f n"] Body?)?..../
0660: 2f 2f 20 20 7c 20 5b 22 40 22 20 4c 61 79 65 72 // | ["@" Layer
0670: 7c 22 6c 65 74 22 7c 22 76 61 72 22 7c 22 64 65 |"let"|"var"|"de
0680: 66 22 5d 20 56 61 72 20 22 28 22 20 50 61 72 61 f"] Var "(" Para
0690: 6d 25 22 2c 22 20 22 29 22 20 22 7b 22 20 42 6f m%"," ")" "{" Bo
06a0: 64 79 20 22 7d 22 20 28 5b 22 3b 22 7c 22 69 6e dy "}" ([";"|"in
06b0: 22 5d 20 42 6f 64 79 3f 29 3f 0d 0a 09 09 2f 2f "] Body?)?....//
06c0: 2f 20 20 7c 20 5b 22 40 22 20 22 40 22 20 4c 61 / | ["@" "@" La
06d0: 79 65 72 20 22 3d 22 20 45 78 70 72 65 73 73 69 yer "=" Expressi
06e0: 6f 6e 20 28 5b 22 3b 22 7c 22 69 6e 22 5d 20 42 on ([";"|"in"] B
06f0: 6f 64 79 3f 29 3f 0d 0a 09 09 2f 2f 2f 20 20 7c ody?)?..../// |
0700: 20 5b 22 40 22 20 22 40 22 20 4c 61 79 65 72 20 ["@" "@" Layer
0710: 22 28 22 20 50 61 72 61 6d 25 22 2c 22 20 22 29 "(" Param%"," ")
0720: 22 20 22 7b 22 20 42 6f 64 79 20 22 7d 22 20 28 " "{" Body "}" (
0730: 5b 22 3b 22 7c 22 69 6e 22 5d 20 42 6f 64 79 3f [";"|"in"] Body?
0740: 29 3f 0d 0a 0d 0a 09 09 61 75 74 6f 20 70 6f 73 )?......auto pos
0750: 20 3d 20 63 75 72 72 65 6e 74 50 6f 73 69 74 69 = currentPositi
0760: 6f 6e 28 29 3b 0d 0a 09 09 4c 61 79 65 72 20 6c on();....Layer l
0770: 61 79 65 72 20 3d 20 22 22 3b 0d 0a 09 09 62 6f ayer = "";....bo
0780: 6f 6c 20 6c 61 79 65 72 4c 69 66 74 44 65 63 6c ol layerLiftDecl
0790: 20 3d 20 66 61 6c 73 65 3b 0d 0a 0d 0a 09 09 69 = false;......i
07a0: 66 28 20 74 72 79 45 61 74 28 22 40 22 29 20 29 f( tryEat("@") )
07b0: 0d 0a 09 09 7b 0d 0a 09 09 09 6c 61 79 65 72 20 ....{.....layer
07c0: 3d 20 22 40 22 20 7e 20 65 61 74 49 64 28 22 61 = "@" ~ eatId("a
07d0: 66 74 65 72 20 40 22 2c 20 41 6c 6c 6f 77 51 75 fter @", AllowQu
07e0: 6f 74 65 64 29 3b 0d 0a 09 09 09 69 66 28 20 6c oted);.....if( l
07f0: 61 79 65 72 20 3d 3d 20 22 40 40 22 20 29 0d 0a ayer == "@@" )..
0800: 09 09 09 7b 0d 0a 09 09 09 09 6c 61 79 65 72 20 ...{......layer
0810: 3d 20 22 40 22 20 7e 20 65 61 74 49 64 28 22 61 = "@" ~ eatId("a
0820: 66 74 65 72 20 40 40 22 2c 20 41 6c 6c 6f 77 51 fter @@", AllowQ
0830: 75 6f 74 65 64 29 3b 0d 0a 09 09 09 09 6c 61 79 uoted);......lay
0840: 65 72 4c 69 66 74 44 65 63 6c 20 3d 20 74 72 75 erLiftDecl = tru
0850: 65 3b 0d 0a 09 09 09 7d 0d 0a 09 09 09 65 6c 73 e;.....}.....els
0860: 65 0d 0a 09 09 09 7b 0d 0a 09 09 09 09 69 66 28 e.....{......if(
0870: 20 74 72 79 45 61 74 28 22 28 22 29 20 29 0d 0a tryEat("(") )..
0880: 09 09 09 09 09 72 65 74 75 72 6e 20 6e 75 6c 6c .....return null
0890: 3b 20 2f 2f 20 40 6c 61 79 28 2e 2e 2e 29 20 65 ; // @lay(...) e
08a0: 78 70 72 65 73 73 69 6f 6e 2c 20 6e 6f 74 20 61 xpression, not a
08b0: 20 64 65 63 6c 61 72 61 74 69 6f 6e 0d 0a 09 09 declaration....
08c0: 09 7d 0d 0a 09 09 7d 0d 0a 0d 0a 09 09 2f 2f 20 .}....}......//
08d0: 5b 54 4f 44 4f 5d 20 52 65 66 61 63 74 6f 72 0d [TODO] Refactor.
08e0: 0a 09 09 69 66 28 20 6c 61 79 65 72 4c 69 66 74 ...if( layerLift
08f0: 44 65 63 6c 20 29 0d 0a 09 09 7b 0d 0a 09 09 09 Decl )....{.....
0900: 73 74 72 69 6e 67 20 6b 77 64 20 3d 20 22 40 22 string kwd = "@"
0910: 20 7e 20 6c 61 79 65 72 3b 0d 0a 09 09 09 73 74 ~ layer;.....st
0920: 72 69 6e 67 20 76 61 72 20 3d 20 6c 61 79 65 72 ring var = layer
0930: 3b 0d 0a 0d 0a 09 09 09 61 75 74 6f 20 65 20 3d ;.......auto e =
0940: 20 74 72 79 45 61 74 28 22 28 22 29 0d 0a 09 09 tryEat("(")....
0950: 09 09 3f 20 70 61 72 73 65 4c 61 6d 62 64 61 41 ..? parseLambdaA
0960: 66 74 65 72 4f 70 65 6e 50 61 72 65 6e 28 70 6f fterOpenParen(po
0970: 73 29 20 20 2f 2f 20 6c 65 74 20 76 61 72 20 28 s) // let var (
0980: 20 2e 2e 2e 0d 0a 09 09 09 09 3a 20 28 65 61 74 .........: (eat
0990: 28 22 3d 22 2c 20 22 61 66 74 65 72 20 22 7e 6b ("=", "after "~k
09a0: 77 64 29 2c 20 45 28 30 29 29 3b 20 2f 2f 20 6c wd), E(0)); // l
09b0: 65 74 20 76 61 72 20 3d 20 2e 2e 2e 0d 0a 09 09 et var = .......
09c0: 09 69 66 28 20 6d 6f 72 65 44 65 63 6c 61 72 61 .if( moreDeclara
09d0: 74 69 6f 6e 45 78 69 73 74 73 28 29 20 29 0d 0a tionExists() )..
09e0: 09 09 09 09 72 65 74 75 72 6e 20 6e 65 77 20 4c ....return new L
09f0: 65 74 28 70 6f 73 2c 20 76 61 72 2c 20 53 79 73 et(pos, var, Sys
0a00: 74 65 6d 4c 61 79 65 72 2c 20 65 2c 20 42 6f 64 temLayer, e, Bod
0a10: 79 28 29 29 3b 0d 0a 09 09 09 65 6c 73 65 0d 0a y());.....else..
0a20: 09 09 09 09 72 65 74 75 72 6e 20 6e 65 77 20 4c ....return new L
0a30: 65 74 28 70 6f 73 2c 20 76 61 72 2c 20 53 79 73 et(pos, var, Sys
0a40: 74 65 6d 4c 61 79 65 72 2c 20 65 2c 0d 0a 09 09 temLayer, e,....
0a50: 09 09 09 6e 65 77 20 4c 61 79 28 70 6f 73 2c 20 ...new Lay(pos,
0a60: 53 79 73 74 65 6d 4c 61 79 65 72 2c 20 6e 65 77 SystemLayer, new
0a70: 20 56 61 72 28 70 6f 73 2c 20 76 61 72 29 29 0d Var(pos, var)).
0a80: 0a 09 09 09 09 29 3b 0d 0a 09 09 7d 0d 0a 09 09 .....);....}....
0a90: 65 6c 73 65 0d 0a 09 09 7b 0d 0a 09 09 09 73 74 else....{.....st
0aa0: 72 69 6e 67 20 6b 77 64 20 3d 20 6c 61 79 65 72 ring kwd = layer
0ab0: 3b 0d 0a 09 09 09 69 66 28 20 6c 61 79 65 72 2e ;.....if( layer.
0ac0: 65 6d 70 74 79 20 26 26 20 21 74 72 79 45 61 74 empty && !tryEat
0ad0: 28 6b 77 64 3d 22 6c 65 74 22 29 20 26 26 20 21 (kwd="let") && !
0ae0: 74 72 79 45 61 74 28 6b 77 64 3d 22 76 61 72 22 tryEat(kwd="var"
0af0: 29 20 26 26 20 21 74 72 79 45 61 74 28 6b 77 64 ) && !tryEat(kwd
0b00: 3d 22 64 65 66 22 29 20 29 0d 0a 09 09 09 09 72 ="def") )......r
0b10: 65 74 75 72 6e 20 6e 75 6c 6c 3b 20 2f 2f 20 6e eturn null; // n
0b20: 6f 6e 65 20 6f 66 20 7b 40 6c 61 79 2c 20 6c 65 one of {@lay, le
0b30: 74 2c 20 76 61 72 2c 20 64 65 66 7d 20 6f 63 63 t, var, def} occ
0b40: 75 72 72 65 64 2c 20 69 74 27 73 20 6e 6f 74 20 urred, it's not
0b50: 61 20 64 65 63 6c 61 72 61 74 69 6f 6e 0d 0a 0d a declaration...
0b60: 0a 09 09 09 61 75 74 6f 20 76 61 72 70 6f 73 20 ....auto varpos
0b70: 3d 20 63 75 72 72 65 6e 74 50 6f 73 69 74 69 6f = currentPositio
0b80: 6e 28 29 3b 0d 0a 09 09 09 73 74 72 69 6e 67 20 n();.....string
0b90: 76 61 72 20 3d 20 65 61 74 49 64 28 22 61 66 74 var = eatId("aft
0ba0: 65 72 20 22 7e 6b 77 64 2c 20 41 6c 6c 6f 77 51 er "~kwd, AllowQ
0bb0: 75 6f 74 65 64 29 3b 20 2f 2f 20 6e 61 6d 65 20 uoted); // name
0bc0: 6f 66 20 74 68 65 20 64 65 63 6c 61 72 65 64 20 of the declared
0bd0: 76 61 72 69 61 62 6c 65 0d 0a 0d 0a 09 09 09 61 variable.......a
0be0: 75 74 6f 20 65 20 3d 20 74 72 79 45 61 74 28 22 uto e = tryEat("
0bf0: 28 22 29 0d 0a 09 09 09 09 3f 20 70 61 72 73 65 (")......? parse
0c00: 4c 61 6d 62 64 61 41 66 74 65 72 4f 70 65 6e 50 LambdaAfterOpenP
0c10: 61 72 65 6e 28 70 6f 73 29 20 20 2f 2f 20 6c 65 aren(pos) // le
0c20: 74 20 76 61 72 20 28 20 2e 2e 2e 0d 0a 09 09 09 t var ( ........
0c30: 09 3a 20 28 65 61 74 28 22 3d 22 2c 20 22 61 66 .: (eat("=", "af
0c40: 74 65 72 20 22 7e 6b 77 64 29 2c 20 45 28 30 29 ter "~kwd), E(0)
0c50: 29 3b 20 2f 2f 20 6c 65 74 20 76 61 72 20 3d 20 ); // let var =
0c60: 2e 2e 2e 0d 0a 09 09 09 69 66 28 20 6d 6f 72 65 ........if( more
0c70: 44 65 63 6c 61 72 61 74 69 6f 6e 45 78 69 73 74 DeclarationExist
0c80: 73 28 29 20 29 0d 0a 09 09 09 09 72 65 74 75 72 s() )......retur
0c90: 6e 20 6e 65 77 20 4c 65 74 28 70 6f 73 2c 20 76 n new Let(pos, v
0ca0: 61 72 2c 20 6c 61 79 65 72 2c 20 65 2c 20 42 6f ar, layer, e, Bo
0cb0: 64 79 28 29 29 3b 0d 0a 09 09 09 65 6c 73 65 0d dy());.....else.
0cc0: 0a 09 09 09 09 72 65 74 75 72 6e 20 6e 65 77 20 .....return new
0cd0: 4c 65 74 28 70 6f 73 2c 20 76 61 72 2c 20 6c 61 Let(pos, var, la
0ce0: 79 65 72 2c 20 65 2c 20 6e 65 77 20 56 61 72 28 yer, e, new Var(
0cf0: 76 61 72 70 6f 73 2c 20 76 61 72 29 29 3b 0d 0a varpos, var));..
0d00: 09 09 7d 0d 0a 09 7d 0d 0a 0d 0a 09 41 53 54 20 ..}...}.....AST
0d10: 54 6f 70 4c 65 76 65 6c 45 78 70 72 65 73 73 69 TopLevelExpressi
0d20: 6f 6e 28 29 0d 0a 09 7b 0d 0a 09 09 2f 2f 2f 20 on()...{....///
0d30: 54 6f 70 4c 65 76 65 6c 45 78 70 72 65 73 73 69 TopLevelExpressi
0d40: 6f 6e 20 3a 3a 3d 20 45 78 70 72 65 73 73 69 6f on ::= Expressio
0d50: 6e 20 28 5b 22 3b 22 7c 22 69 6e 22 5d 20 42 6f n ([";"|"in"] Bo
0d60: 64 79 3f 29 3f 0d 0a 0d 0a 09 09 61 75 74 6f 20 dy?)?......auto
0d70: 70 6f 73 20 3d 20 63 75 72 72 65 6e 74 50 6f 73 pos = currentPos
0d80: 69 74 69 6f 6e 28 29 3b 0d 0a 09 09 61 75 74 6f ition();....auto
0d90: 20 65 20 3d 20 45 28 30 29 3b 0d 0a 09 09 69 66 e = E(0);....if
0da0: 28 20 6d 6f 72 65 44 65 63 6c 61 72 61 74 69 6f ( moreDeclaratio
0db0: 6e 45 78 69 73 74 73 28 29 20 29 0d 0a 09 09 09 nExists() ).....
0dc0: 72 65 74 75 72 6e 20 6e 65 77 20 4c 65 74 28 70 return new Let(p
0dd0: 6f 73 2c 20 22 5f 22 2c 20 22 22 2c 20 65 2c 20 os, "_", "", e,
0de0: 42 6f 64 79 28 29 29 3b 0d 0a 09 09 65 6c 73 65 Body());....else
0df0: 0d 0a 09 09 09 72 65 74 75 72 6e 20 65 3b 0d 0a .....return e;..
0e00: 09 7d 0d 0a 0d 0a 09 70 72 69 76 61 74 65 20 62 .}.....private b
0e10: 6f 6f 6c 20 6d 6f 72 65 44 65 63 6c 61 72 61 74 ool moreDeclarat
0e20: 69 6f 6e 45 78 69 73 74 73 28 29 0d 0a 09 7b 0d ionExists()...{.
0e30: 0a 09 09 72 65 74 75 72 6e 20 28 74 72 79 45 61 ...return (tryEa
0e40: 74 28 22 3b 22 29 20 7c 7c 20 74 72 79 45 61 74 t(";") || tryEat
0e50: 28 22 69 6e 22 29 29 20 26 26 20 21 63 6c 6f 73 ("in")) && !clos
0e60: 69 6e 67 42 72 61 63 6b 65 74 28 29 3b 0d 0a 09 ingBracket();...
0e70: 7d 0d 0a 0d 0a 09 70 72 69 76 61 74 65 20 62 6f }.....private bo
0e80: 6f 6c 20 63 6c 6f 73 69 6e 67 42 72 61 63 6b 65 ol closingBracke
0e90: 74 28 29 0d 0a 09 7b 0d 0a 09 09 72 65 74 75 72 t()...{....retur
0ea0: 6e 20 6c 65 78 2e 65 6d 70 74 79 20 7c 7c 20 21 n lex.empty || !
0eb0: 6c 65 78 2e 66 72 6f 6e 74 2e 71 75 6f 74 65 64 lex.front.quoted
0ec0: 20 26 26 20 5b 22 7d 22 2c 22 29 22 2c 22 5d 22 && ["}",")","]"
0ed0: 2c 22 2c 22 5d 2e 63 61 6e 46 69 6e 64 28 6c 65 ,","].canFind(le
0ee0: 78 2e 66 72 6f 6e 74 2e 73 74 72 29 3b 0d 0a 09 x.front.str);...
0ef0: 7d 0d 0a 0d 0a 09 2f 2f 20 5b 54 4f 44 4f 5d 20 }.....// [TODO]
0f00: 6d 61 6b 65 20 74 68 69 73 20 63 75 73 74 6f 6d make this custom
0f10: 69 7a 61 62 6c 65 20 66 72 6f 6d 20 70 72 6f 67 izable from prog
0f20: 72 61 6d 0d 0a 09 70 72 69 76 61 74 65 20 73 74 ram...private st
0f30: 61 74 69 63 20 73 74 72 69 6e 67 5b 5d 5b 5d 20 atic string[][]
0f40: 6f 70 65 72 61 74 6f 72 5f 70 65 72 66 65 72 65 operator_perfere
0f50: 6e 63 65 73 20 3d 20 5b 0d 0a 09 09 5b 22 7c 7c nces = [....["||
0f60: 22 5d 2c 0d 0a 09 09 5b 22 26 26 22 5d 2c 0d 0a "],....["&&"],..
0f70: 09 09 5b 22 21 3d 22 5d 2c 0d 0a 09 09 5b 22 3d ..["!="],....["=
0f80: 3d 22 5d 2c 0d 0a 09 09 5b 22 3c 22 2c 22 3c 3d ="],....["<","<=
0f90: 22 2c 22 3e 22 2c 22 3e 3d 22 5d 2c 0d 0a 09 09 ",">",">="],....
0fa0: 5b 22 7c 22 5d 2c 0d 0a 09 09 5b 22 5e 22 5d 2c ["|"],....["^"],
0fb0: 0d 0a 09 09 5b 22 26 22 5d 2c 0d 0a 09 09 5b 22 ....["&"],....["
0fc0: 3c 3c 22 2c 20 22 3e 3e 22 2c 20 22 3c 3c 3c 22 <<", ">>", "<<<"
0fd0: 2c 20 22 3e 3e 3e 22 5d 2c 0d 0a 09 09 5b 22 2b , ">>>"],....["+
0fe0: 22 2c 22 2d 22 5d 2c 0d 0a 09 09 5b 22 7e 22 5d ","-"],....["~"]
0ff0: 2c 0d 0a 09 09 5b 22 2a 22 2c 22 2f 22 2c 22 25 ,....["*","/","%
1000: 22 5d 2c 0d 0a 09 09 5b 22 5e 5e 22 2c 22 2a 2a "],....["^^","**
1010: 22 5d 2c 0d 0a 09 09 5b 22 2e 22 2c 22 2e 3f 22 "],....[".",".?"
1020: 5d 0d 0a 09 5d 3b 0d 0a 0d 0a 09 41 53 54 20 45 ]...];.....AST E
1030: 28 73 69 7a 65 5f 74 20 6c 65 76 65 6c 29 0d 0a (size_t level)..
1040: 09 7b 0d 0a 09 09 2f 2f 2f 20 45 78 70 72 65 73 .{..../// Expres
1050: 73 69 6f 6e 20 3a 3a 3d 20 28 42 69 6e 61 72 79 sion ::= (Binary
1060: 20 6c 65 66 74 2d 61 73 73 6f 63 69 61 74 69 76 left-associativ
1070: 65 20 6f 70 65 72 61 74 6f 72 73 20 6f 76 65 72 e operators over
1080: 29 20 46 75 6e 63 61 6c 6c 0d 0a 0d 0a 09 09 41 ) Funcall......A
1090: 53 54 20 72 65 63 28 41 53 54 20 6c 68 73 29 0d ST rec(AST lhs).
10a0: 0a 09 09 7b 0d 0a 09 09 09 69 66 28 20 63 6c 6f ...{.....if( clo
10b0: 73 69 6e 67 42 72 61 63 6b 65 74 28 29 20 29 0d singBracket() ).
10c0: 0a 09 09 09 09 72 65 74 75 72 6e 20 6c 68 73 3b .....return lhs;
10d0: 0d 0a 0d 0a 09 09 09 61 75 74 6f 20 70 6f 73 20 .......auto pos
10e0: 3d 20 63 75 72 72 65 6e 74 50 6f 73 69 74 69 6f = currentPositio
10f0: 6e 28 29 3b 0d 0a 09 09 09 66 6f 72 65 61 63 68 n();.....foreach
1100: 28 6f 70 3b 20 6f 70 65 72 61 74 6f 72 5f 70 65 (op; operator_pe
1110: 72 66 65 72 65 6e 63 65 73 5b 6c 65 76 65 6c 5d rferences[level]
1120: 29 0d 0a 09 09 09 09 69 66 28 20 74 72 79 45 61 )......if( tryEa
1130: 74 28 6f 70 29 20 29 0d 0a 09 09 09 09 09 69 66 t(op) ).......if
1140: 28 20 6f 70 5b 30 5d 3d 3d 27 2e 27 20 29 0d 0a ( op[0]=='.' )..
1150: 09 09 09 09 09 09 72 65 74 75 72 6e 20 72 65 63 ......return rec
1160: 28 0d 0a 09 09 09 09 09 09 09 6e 65 77 20 41 70 (.........new Ap
1170: 70 28 6c 68 73 2e 70 6f 73 2c 20 6e 65 77 20 56 p(lhs.pos, new V
1180: 61 72 28 70 6f 73 2c 20 6f 70 29 2c 20 6c 68 73 ar(pos, op), lhs
1190: 2c 20 70 61 72 73 65 49 64 28 29 29 29 3b 0d 0a , parseId()));..
11a0: 09 09 09 09 09 65 6c 73 65 0d 0a 09 09 09 09 09 .....else.......
11b0: 09 72 65 74 75 72 6e 20 72 65 63 28 0d 0a 09 09 .return rec(....
11c0: 09 09 09 09 09 6e 65 77 20 41 70 70 28 6c 68 73 .....new App(lhs
11d0: 2e 70 6f 73 2c 20 6e 65 77 20 56 61 72 28 70 6f .pos, new Var(po
11e0: 73 2c 20 6f 70 29 2c 20 6c 68 73 2c 20 45 28 6c s, op), lhs, E(l
11f0: 65 76 65 6c 2b 31 29 29 29 3b 0d 0a 09 09 09 72 evel+1)));.....r
1200: 65 74 75 72 6e 20 6c 68 73 3b 0d 0a 09 09 7d 0d eturn lhs;....}.
1210: 0a 0d 0a 09 09 69 66 28 20 6f 70 65 72 61 74 6f .....if( operato
1220: 72 5f 70 65 72 66 65 72 65 6e 63 65 73 2e 6c 65 r_perferences.le
1230: 6e 67 74 68 20 3c 3d 20 6c 65 76 65 6c 20 29 0d ngth <= level ).
1240: 0a 09 09 09 72 65 74 75 72 6e 20 46 75 6e 63 61 ....return Funca
1250: 6c 6c 28 29 3b 0d 0a 09 09 65 6c 73 65 0d 0a 09 ll();....else...
1260: 09 09 72 65 74 75 72 6e 20 72 65 63 28 45 28 6c ..return rec(E(l
1270: 65 76 65 6c 2b 31 29 29 3b 0d 0a 09 7d 0d 0a 0d evel+1));...}...
1280: 0a 09 41 53 54 20 46 75 6e 63 61 6c 6c 28 29 0d ..AST Funcall().
1290: 0a 09 7b 0d 0a 09 09 2f 2f 2f 20 46 75 6e 63 61 ..{..../// Funca
12a0: 6c 6c 20 3a 3a 3d 20 42 61 73 65 45 78 70 72 65 ll ::= BaseExpre
12b0: 73 73 69 6f 6e 20 5b 22 28 22 20 45 78 70 72 65 ssion ["(" Expre
12c0: 73 73 69 6f 6e 25 22 2c 22 20 22 29 22 20 7c 20 ssion%"," ")" |
12d0: 22 7b 22 20 45 4e 54 52 49 45 53 20 22 7d 22 5d "{" ENTRIES "}"]
12e0: 2a 0d 0a 0d 0a 09 09 61 75 74 6f 20 65 20 3d 20 *......auto e =
12f0: 42 61 73 65 45 78 70 72 65 73 73 69 6f 6e 28 29 BaseExpression()
1300: 3b 0d 0a 09 09 66 6f 72 28 3b 3b 29 0d 0a 09 09 ;....for(;;)....
1310: 09 69 66 28 20 74 72 79 45 61 74 28 22 28 22 29 .if( tryEat("(")
1320: 20 29 0d 0a 09 09 09 7b 0d 0a 09 09 09 09 61 75 ).....{......au
1330: 74 6f 20 70 6f 73 20 3d 20 63 75 72 72 65 6e 74 to pos = current
1340: 50 6f 73 69 74 69 6f 6e 28 29 3b 0d 0a 09 09 09 Position();.....
1350: 09 41 53 54 5b 5d 20 61 72 67 73 3b 0d 0a 09 09 .AST[] args;....
1360: 09 09 77 68 69 6c 65 28 20 21 74 72 79 45 61 74 ..while( !tryEat
1370: 28 22 29 22 29 20 29 20 7b 0d 0a 09 09 09 09 09 (")") ) {.......
1380: 69 66 28 20 6c 65 78 2e 65 6d 70 74 79 20 29 0d if( lex.empty ).
1390: 0a 09 09 09 09 09 09 74 68 72 6f 77 20 67 65 6e .......throw gen
13a0: 65 78 21 55 6e 65 78 70 65 63 74 65 64 45 4f 46 ex!UnexpectedEOF
13b0: 28 70 6f 73 2c 20 22 63 6c 6f 73 69 6e 67 20 27 (pos, "closing '
13c0: 29 27 20 66 6f 72 20 61 72 67 75 6d 65 6e 74 73 )' for arguments
13d0: 20 6e 6f 74 20 66 6f 75 6e 64 22 29 3b 0d 0a 09 not found");...
13e0: 09 09 09 09 61 72 67 73 20 7e 3d 20 45 28 30 29 ....args ~= E(0)
13f0: 3b 0d 0a 09 09 09 09 09 69 66 28 20 21 74 72 79 ;.......if( !try
1400: 45 61 74 28 22 2c 22 29 20 29 20 7b 0d 0a 09 09 Eat(",") ) {....
1410: 09 09 09 09 65 61 74 28 22 29 22 2c 20 22 61 66 ....eat(")", "af
1420: 74 65 72 20 66 75 6e 63 74 69 6f 6e 20 70 61 72 ter function par
1430: 61 6d 65 74 65 72 73 22 29 3b 0d 0a 09 09 09 09 ameters");......
1440: 09 09 62 72 65 61 6b 3b 0d 0a 09 09 09 09 09 7d ..break;.......}
1450: 0d 0a 09 09 09 09 7d 0d 0a 09 09 09 09 65 20 3d ......}......e =
1460: 20 6e 65 77 20 41 70 70 28 65 2e 70 6f 73 2c 20 new App(e.pos,
1470: 65 2c 20 61 72 67 73 29 3b 0d 0a 09 09 09 7d 0d e, args);.....}.
1480: 0a 09 09 09 65 6c 73 65 20 69 66 28 20 74 72 79 ....else if( try
1490: 45 61 74 28 22 7b 22 29 20 29 0d 0a 09 09 09 7b Eat("{") ).....{
14a0: 0d 0a 09 09 09 09 65 20 3d 20 70 61 72 73 65 54 ......e = parseT
14b0: 61 62 6c 65 53 65 74 41 66 74 65 72 42 72 61 63 ableSetAfterBrac
14c0: 65 28 65 29 3b 0d 0a 09 09 09 7d 0d 0a 09 09 09 e(e);.....}.....
14d0: 65 6c 73 65 0d 0a 09 09 09 09 62 72 65 61 6b 3b else......break;
14e0: 0d 0a 09 09 72 65 74 75 72 6e 20 65 3b 0d 0a 09 ....return e;...
14f0: 7d 0d 0a 0d 0a 09 41 53 54 20 70 61 72 73 65 54 }.....AST parseT
1500: 61 62 6c 65 53 65 74 41 66 74 65 72 42 72 61 63 ableSetAfterBrac
1510: 65 28 41 53 54 20 65 29 0d 0a 09 7b 0d 0a 09 09 e(AST e)...{....
1520: 2f 2f 2f 20 54 61 62 6c 65 53 65 74 20 3a 3a 3d /// TableSet ::=
1530: 20 22 7b 22 20 28 49 44 20 22 3a 22 20 45 29 20 "{" (ID ":" E)
1540: 25 20 22 2c 22 20 22 7d 22 0d 0a 09 09 0d 0a 09 % "," "}".......
1550: 09 69 66 28 20 74 72 79 45 61 74 28 22 7d 22 29 .if( tryEat("}")
1560: 20 29 0d 0a 09 09 09 72 65 74 75 72 6e 20 65 3b ).....return e;
1570: 0d 0a 09 09 61 75 74 6f 20 70 6f 73 20 3d 20 63 ....auto pos = c
1580: 75 72 72 65 6e 74 50 6f 73 69 74 69 6f 6e 28 29 urrentPosition()
1590: 3b 0d 0a 09 09 66 6f 72 28 3b 3b 29 0d 0a 09 09 ;....for(;;)....
15a0: 7b 0d 0a 09 09 09 73 74 72 69 6e 67 20 6b 65 79 {.....string key
15b0: 20 3d 20 65 61 74 49 64 28 22 66 6f 72 20 74 61 = eatId("for ta
15c0: 62 6c 65 20 6b 65 79 22 2c 20 41 6c 6c 6f 77 51 ble key", AllowQ
15d0: 75 6f 74 65 64 29 3b 0d 0a 09 09 09 65 61 74 28 uoted);.....eat(
15e0: 22 3a 22 2c 20 22 61 66 74 65 72 20 74 61 62 6c ":", "after tabl
15f0: 65 20 6b 65 79 22 29 3b 0d 0a 09 09 09 41 53 54 e key");.....AST
1600: 20 76 61 6c 20 3d 20 45 28 30 29 3b 0d 0a 09 09 val = E(0);....
1610: 09 65 20 3d 20 6e 65 77 20 41 70 70 28 70 6f 73 .e = new App(pos
1620: 2c 20 6e 65 77 20 56 61 72 28 70 6f 73 2c 22 2e , new Var(pos,".
1630: 3d 22 29 2c 0d 0a 09 09 09 09 09 65 2c 20 6e 65 ="),.......e, ne
1640: 77 20 53 74 72 28 70 6f 73 2c 6b 65 79 29 2c 20 w Str(pos,key),
1650: 76 61 6c 29 3b 0d 0a 09 09 09 69 66 28 20 21 74 val);.....if( !t
1660: 72 79 45 61 74 28 22 2c 22 29 20 29 0d 0a 09 09 ryEat(",") )....
1670: 09 7b 0d 0a 09 09 09 09 65 61 74 28 22 7d 22 2c .{......eat("}",
1680: 20 22 66 6f 72 20 74 68 65 20 65 6e 64 20 6f 66 "for the end of
1690: 20 74 61 62 6c 65 20 6c 69 74 65 72 61 6c 22 29 table literal")
16a0: 3b 0d 0a 09 09 09 09 62 72 65 61 6b 3b 0d 0a 09 ;......break;...
16b0: 09 09 7d 0d 0a 09 09 7d 0d 0a 09 09 72 65 74 75 ..}....}....retu
16c0: 72 6e 20 65 3b 0d 0a 09 7d 0d 0a 0d 0a 09 41 53 rn e;...}.....AS
16d0: 54 20 42 61 73 65 45 78 70 72 65 73 73 69 6f 6e T BaseExpression
16e0: 28 29 0d 0a 09 7b 0d 0a 09 09 69 66 28 20 6c 65 ()...{....if( le
16f0: 78 2e 65 6d 70 74 79 20 29 0d 0a 09 09 09 74 68 x.empty ).....th
1700: 72 6f 77 20 67 65 6e 65 78 21 55 6e 65 78 70 65 row genex!Unexpe
1710: 63 74 65 64 45 4f 46 28 63 75 72 72 65 6e 74 50 ctedEOF(currentP
1720: 6f 73 69 74 69 6f 6e 28 29 2c 20 22 52 65 61 63 osition(), "Reac
1730: 68 65 64 20 45 4f 46 20 77 68 65 6e 20 74 72 69 hed EOF when tri
1740: 65 64 20 74 6f 20 70 61 72 73 65 20 61 6e 20 65 ed to parse an e
1750: 78 70 72 65 73 73 69 6f 6e 22 29 3b 0d 0a 0d 0a xpression");....
1760: 09 09 61 75 74 6f 20 70 6f 73 20 3d 20 63 75 72 ..auto pos = cur
1770: 72 65 6e 74 50 6f 73 69 74 69 6f 6e 28 29 3b 0d rentPosition();.
1780: 0a 09 09 69 66 28 20 6c 65 78 2e 66 72 6f 6e 74 ...if( lex.front
1790: 2e 71 75 6f 74 65 64 20 29 0d 0a 09 09 7b 0d 0a .quoted )....{..
17a0: 09 09 09 73 63 6f 70 65 28 65 78 69 74 29 20 6c ...scope(exit) l
17b0: 65 78 2e 70 6f 70 46 72 6f 6e 74 3b 0d 0a 09 09 ex.popFront;....
17c0: 09 72 65 74 75 72 6e 20 6e 65 77 20 53 74 72 28 .return new Str(
17d0: 70 6f 73 2c 20 6c 65 78 2e 66 72 6f 6e 74 2e 73 pos, lex.front.s
17e0: 74 72 29 3b 0d 0a 09 09 7d 0d 0a 09 09 69 66 28 tr);....}....if(
17f0: 20 69 73 4e 75 6d 62 65 72 28 6c 65 78 2e 66 72 isNumber(lex.fr
1800: 6f 6e 74 2e 73 74 72 29 20 29 0d 0a 09 09 7b 0d ont.str) )....{.
1810: 0a 09 09 09 73 63 6f 70 65 28 65 78 69 74 29 20 ....scope(exit)
1820: 6c 65 78 2e 70 6f 70 46 72 6f 6e 74 3b 0d 0a 09 lex.popFront;...
1830: 09 09 72 65 74 75 72 6e 20 6e 65 77 20 49 6e 74 ..return new Int
1840: 28 70 6f 73 2c 20 42 69 67 49 6e 74 28 63 61 73 (pos, BigInt(cas
1850: 74 28 73 74 72 69 6e 67 29 6c 65 78 2e 66 72 6f t(string)lex.fro
1860: 6e 74 2e 73 74 72 29 29 3b 0d 0a 09 09 7d 0d 0a nt.str));....}..
1870: 09 09 69 66 28 20 74 72 79 45 61 74 28 22 40 22 ..if( tryEat("@"
1880: 29 20 29 0d 0a 09 09 7b 0d 0a 09 09 09 61 75 74 ) )....{.....aut
1890: 6f 20 6c 61 79 20 3d 20 22 40 22 7e 65 61 74 49 o lay = "@"~eatI
18a0: 64 28 22 66 6f 72 20 6c 61 79 65 72 20 49 44 22 d("for layer ID"
18b0: 29 3b 0d 0a 09 09 09 65 61 74 28 22 28 22 2c 20 );.....eat("(",
18c0: 22 66 6f 72 20 6c 61 79 65 72 65 64 20 65 78 65 "for layered exe
18d0: 63 75 74 69 6f 6e 22 29 3b 0d 0a 09 09 09 61 75 cution");.....au
18e0: 74 6f 20 65 20 3d 20 42 6f 64 79 28 29 3b 0d 0a to e = Body();..
18f0: 09 09 09 65 61 74 28 22 29 22 2c 20 22 61 66 74 ...eat(")", "aft
1900: 65 72 20 22 7e 6c 61 79 7e 22 28 2e 2e 2e 22 29 er "~lay~"(...")
1910: 3b 0d 0a 09 09 09 72 65 74 75 72 6e 20 6e 65 77 ;.....return new
1920: 20 4c 61 79 28 70 6f 73 2c 20 6c 61 79 2c 20 65 Lay(pos, lay, e
1930: 29 3b 0d 0a 09 09 7d 0d 0a 09 09 69 66 28 20 74 );....}....if( t
1940: 72 79 45 61 74 28 22 28 22 29 20 29 0d 0a 09 09 ryEat("(") )....
1950: 7b 0d 0a 09 09 09 61 75 74 6f 20 65 20 3d 20 42 {.....auto e = B
1960: 6f 64 79 28 29 3b 0d 0a 09 09 09 65 61 74 28 22 ody();.....eat("
1970: 29 22 2c 20 22 61 66 74 65 72 20 70 61 72 65 6e )", "after paren
1980: 74 68 65 73 69 7a 65 64 20 65 78 70 72 65 73 73 thesized express
1990: 69 6f 6e 22 29 3b 0d 0a 09 09 09 72 65 74 75 72 ion");.....retur
19a0: 6e 20 65 3b 0d 0a 09 09 7d 0d 0a 09 09 69 66 28 n e;....}....if(
19b0: 20 74 72 79 45 61 74 28 22 7b 22 29 20 29 0d 0a tryEat("{") )..
19c0: 09 09 7b 0d 0a 09 09 09 41 53 54 20 65 20 3d 20 ..{.....AST e =
19d0: 6e 65 77 20 41 70 70 28 70 6f 73 2c 20 6e 65 77 new App(pos, new
19e0: 20 56 61 72 28 70 6f 73 2c 22 7b 7d 22 29 29 3b Var(pos,"{}"));
19f0: 0d 0a 09 09 09 72 65 74 75 72 6e 20 70 61 72 73 .....return pars
1a00: 65 54 61 62 6c 65 53 65 74 41 66 74 65 72 42 72 eTableSetAfterBr
1a10: 61 63 65 28 65 29 3b 0d 0a 09 09 7d 0d 0a 09 09 ace(e);....}....
1a20: 69 66 28 20 74 72 79 45 61 74 28 22 69 66 22 29 if( tryEat("if")
1a30: 20 29 0d 0a 09 09 7b 0d 0a 09 09 09 72 65 74 75 )....{.....retu
1a40: 72 6e 20 70 61 72 73 65 49 66 41 66 74 65 72 49 rn parseIfAfterI
1a50: 66 28 70 6f 73 29 3b 0d 0a 09 09 7d 0d 0a 09 09 f(pos);....}....
1a60: 69 66 28 20 74 72 79 45 61 74 28 22 63 61 73 65 if( tryEat("case
1a70: 22 29 20 29 0d 0a 09 09 7b 0d 0a 09 09 09 72 65 ") )....{.....re
1a80: 74 75 72 6e 20 70 61 72 73 65 50 61 74 74 65 72 turn parsePatter
1a90: 6e 4d 61 74 63 68 28 70 6f 73 29 3b 0d 0a 09 09 nMatch(pos);....
1aa0: 7d 0d 0a 09 09 69 66 28 20 74 72 79 45 61 74 28 }....if( tryEat(
1ab0: 22 66 75 6e 22 29 20 7c 7c 20 74 72 79 45 61 74 "fun") || tryEat
1ac0: 28 22 5c 75 30 33 42 42 22 29 20 29 20 2f 2f 20 ("\u03BB") ) //
1ad0: 6c 61 6d 62 64 61 21 21 0d 0a 09 09 7b 0d 0a 09 lambda!!....{...
1ae0: 09 09 65 61 74 28 22 28 22 2c 20 22 61 66 74 65 ..eat("(", "afte
1af0: 72 20 66 75 6e 22 29 3b 0d 0a 09 09 09 72 65 74 r fun");.....ret
1b00: 75 72 6e 20 70 61 72 73 65 4c 61 6d 62 64 61 41 urn parseLambdaA
1b10: 66 74 65 72 4f 70 65 6e 50 61 72 65 6e 28 70 6f fterOpenParen(po
1b20: 73 29 3b 0d 0a 09 09 7d 0d 0a 09 09 73 63 6f 70 s);....}....scop
1b30: 65 28 65 78 69 74 29 20 6c 65 78 2e 70 6f 70 46 e(exit) lex.popF
1b40: 72 6f 6e 74 3b 0d 0a 09 09 72 65 74 75 72 6e 20 ront;....return
1b50: 6e 65 77 20 56 61 72 28 70 6f 73 2c 20 6c 65 78 new Var(pos, lex
1b60: 2e 66 72 6f 6e 74 2e 73 74 72 29 3b 0d 0a 09 7d .front.str);...}
1b70: 0d 0a 0d 0a 09 41 53 54 20 70 61 72 73 65 49 66 .....AST parseIf
1b80: 41 66 74 65 72 49 66 28 4c 65 78 50 6f 73 69 74 AfterIf(LexPosit
1b90: 69 6f 6e 20 70 6f 73 29 0d 0a 09 7b 0d 0a 09 09 ion pos)...{....
1ba0: 61 75 74 6f 20 63 6f 6e 64 20 3d 20 45 28 30 29 auto cond = E(0)
1bb0: 3b 0d 0a 09 09 61 75 74 6f 20 74 68 65 6e 50 6f ;....auto thenPo
1bc0: 73 20 3d 20 63 75 72 72 65 6e 74 50 6f 73 69 74 s = currentPosit
1bd0: 69 6f 6e 28 29 3b 0d 0a 09 09 69 66 28 21 74 72 ion();....if(!tr
1be0: 79 45 61 74 28 22 3a 22 29 29 20 7b 0d 0a 09 09 yEat(":")) {....
1bf0: 09 65 61 74 28 22 74 68 65 6e 22 2c 20 22 61 66 .eat("then", "af
1c00: 74 65 72 20 69 66 20 63 6f 6e 64 69 74 69 6f 6e ter if condition
1c10: 22 29 3b 0d 0a 09 09 09 74 72 79 45 61 74 28 22 ");.....tryEat("
1c20: 3a 22 29 3b 0d 0a 09 09 7d 0d 0a 09 09 41 53 54 :");....}....AST
1c30: 20 74 68 20 3d 20 45 28 30 29 3b 0d 0a 09 09 61 th = E(0);....a
1c40: 75 74 6f 20 65 6c 20 3d 20 64 6f 4e 6f 74 68 69 uto el = doNothi
1c50: 6e 67 45 78 70 72 65 73 73 69 6f 6e 28 29 3b 0d ngExpression();.
1c60: 0a 09 09 61 75 74 6f 20 65 6c 73 65 50 6f 73 20 ...auto elsePos
1c70: 3d 20 63 75 72 72 65 6e 74 50 6f 73 69 74 69 6f = currentPositio
1c80: 6e 28 29 3b 0d 0a 09 09 69 66 28 20 74 72 79 45 n();....if( tryE
1c90: 61 74 28 22 65 6c 73 65 22 29 20 29 20 7b 0d 0a at("else") ) {..
1ca0: 09 09 09 74 72 79 45 61 74 28 22 3a 22 29 3b 0d ...tryEat(":");.
1cb0: 0a 09 09 09 65 6c 20 3d 20 45 28 30 29 3b 0d 0a ....el = E(0);..
1cc0: 09 09 7d 0d 0a 09 09 72 65 74 75 72 6e 20 6e 65 ..}....return ne
1cd0: 77 20 41 70 70 28 70 6f 73 2c 20 6e 65 77 20 56 w App(pos, new V
1ce0: 61 72 28 70 6f 73 2c 22 69 66 22 29 2c 20 63 6f ar(pos,"if"), co
1cf0: 6e 64 2c 20 6e 65 77 20 46 75 6e 28 74 68 65 6e nd, new Fun(then
1d00: 50 6f 73 2c 5b 5d 2c 74 68 29 2c 20 6e 65 77 20 Pos,[],th), new
1d10: 46 75 6e 28 65 6c 73 65 50 6f 73 2c 5b 5d 2c 65 Fun(elsePos,[],e
1d20: 6c 29 29 3b 0d 0a 09 7d 0d 0a 0d 0a 09 41 53 54 l));...}.....AST
1d30: 20 70 61 72 73 65 50 61 74 74 65 72 6e 4d 61 74 parsePatternMat
1d40: 63 68 28 4c 65 78 50 6f 73 69 74 69 6f 6e 20 70 ch(LexPosition p
1d50: 6f 73 29 0d 0a 09 7b 0d 0a 09 09 2f 2f 20 20 20 os)...{....//
1d60: 63 61 73 65 20 70 6d 45 78 70 72 20 43 41 53 45 case pmExpr CASE
1d70: 53 0d 0a 09 09 2f 2f 3d 3d 3e 0d 0a 09 09 2f 2f S....//==>....//
1d80: 20 20 20 6c 65 74 20 70 6d 56 61 72 20 3d 20 70 let pmVar = p
1d90: 6d 45 78 70 72 20 69 6e 20 28 2e 2e 2e 20 6c 65 mExpr in (... le
1da0: 74 20 70 6d 54 72 79 46 69 72 73 74 20 3d 20 2e t pmTryFirst = .
1db0: 2e 2e 20 69 6e 20 70 6d 54 72 79 46 69 72 73 74 .. in pmTryFirst
1dc0: 28 29 29 0d 0a 09 09 41 53 54 20 20 20 70 6d 45 ())....AST pmE
1dd0: 78 70 72 20 3d 20 45 28 30 29 3b 0d 0a 09 09 73 xpr = E(0);....s
1de0: 74 72 69 6e 67 20 70 6d 56 61 72 20 3d 20 66 72 tring pmVar = fr
1df0: 65 73 68 56 61 72 4e 61 6d 65 28 29 3b 0d 0a 09 eshVarName();...
1e00: 09 73 74 72 69 6e 67 20 70 6d 54 72 79 46 69 72 .string pmTryFir
1e10: 73 74 20 3d 20 66 72 65 73 68 56 61 72 4e 61 6d st = freshVarNam
1e20: 65 28 29 3b 0d 0a 09 09 41 53 54 20 20 20 70 6d e();....AST pm
1e30: 42 6f 64 79 20 3d 20 70 61 72 73 65 50 61 74 74 Body = parsePatt
1e40: 65 72 6e 4d 61 74 63 68 43 61 73 65 73 28 70 6f ernMatchCases(po
1e50: 73 2c 20 70 6d 56 61 72 2c 20 70 6d 54 72 79 46 s, pmVar, pmTryF
1e60: 69 72 73 74 2c 0d 0a 09 09 09 6e 65 77 20 41 70 irst,.....new Ap
1e70: 70 28 70 6f 73 2c 20 6e 65 77 20 56 61 72 28 70 p(pos, new Var(p
1e80: 6f 73 2c 20 70 6d 54 72 79 46 69 72 73 74 29 29 os, pmTryFirst))
1e90: 29 3b 0d 0a 09 09 72 65 74 75 72 6e 20 6e 65 77 );....return new
1ea0: 20 4c 65 74 28 70 6f 73 2c 20 70 6d 56 61 72 2c Let(pos, pmVar,
1eb0: 20 5b 5d 2c 20 70 6d 45 78 70 72 2c 20 70 6d 42 [], pmExpr, pmB
1ec0: 6f 64 79 29 3b 0d 0a 09 7d 0d 0a 0d 0a 09 41 53 ody);...}.....AS
1ed0: 54 20 70 61 72 73 65 50 61 74 74 65 72 6e 4d 61 T parsePatternMa
1ee0: 74 63 68 43 61 73 65 73 28 4c 65 78 50 6f 73 69 tchCases(LexPosi
1ef0: 74 69 6f 6e 20 63 61 73 65 50 6f 73 2c 20 73 74 tion casePos, st
1f00: 72 69 6e 67 20 70 6d 56 61 72 2c 20 73 74 72 69 ring pmVar, stri
1f10: 6e 67 20 74 72 79 54 68 69 73 42 72 61 6e 63 68 ng tryThisBranch
1f20: 56 61 72 2c 20 41 53 54 20 74 68 65 6e 44 6f 54 Var, AST thenDoT
1f30: 68 69 73 29 0d 0a 09 7b 0d 0a 09 09 2f 2f 20 20 his)...{....//
1f40: 20 20 77 68 65 6e 20 70 61 74 3a 20 63 42 6f 64 when pat: cBod
1f50: 79 0d 0a 09 09 2f 2f 3d 3d 3e 0d 0a 09 09 2f 2f y....//==>....//
1f60: 20 20 20 20 2e 2e 2e 20 6c 65 74 20 66 61 69 6c ... let fail
1f70: 42 72 61 6e 63 68 56 61 72 20 3d 20 2e 2e 2e 20 BranchVar = ...
1f80: 69 6e 0d 0a 09 09 2f 2f 20 20 20 20 6c 65 74 20 in....// let
1f90: 74 72 79 54 68 69 73 42 72 61 6e 63 68 56 61 72 tryThisBranchVar
1fa0: 20 3d 20 66 75 6e 28 29 7b 20 69 66 28 74 65 73 = fun(){ if(tes
1fb0: 74 29 7b 63 42 6f 64 79 7d 65 6c 73 65 7b 66 61 t){cBody}else{fa
1fc0: 69 6c 42 72 61 6e 63 68 56 61 72 28 29 7d 20 7d ilBranchVar()} }
1fd0: 20 69 6e 20 74 68 65 6e 44 6f 54 68 69 73 0d 0a in thenDoThis..
1fe0: 09 09 69 66 28 20 74 72 79 45 61 74 28 22 77 68 ..if( tryEat("wh
1ff0: 65 6e 22 29 20 29 0d 0a 09 09 7b 0d 0a 09 09 09 en") )....{.....
2000: 61 75 74 6f 20 70 6f 73 20 3d 20 63 75 72 72 65 auto pos = curre
2010: 6e 74 50 6f 73 69 74 69 6f 6e 28 29 3b 0d 0a 09 ntPosition();...
2020: 09 09 73 74 72 69 6e 67 20 66 61 69 6c 42 72 61 ..string failBra
2030: 6e 63 68 56 61 72 20 3d 20 66 72 65 73 68 56 61 nchVar = freshVa
2040: 72 4e 61 6d 65 28 29 3b 0d 0a 0d 0a 09 09 09 61 rName();.......a
2050: 75 74 6f 20 70 72 20 3d 20 70 61 72 73 65 50 61 uto pr = parsePa
2060: 74 74 65 72 6e 28 29 3b 0d 0a 09 09 09 65 61 74 ttern();.....eat
2070: 28 22 3a 22 2c 20 22 61 66 74 65 72 20 77 68 65 (":", "after whe
2080: 6e 20 70 61 74 74 65 72 6e 22 29 3b 0d 0a 09 09 n pattern");....
2090: 09 41 53 54 20 63 42 6f 64 79 20 3d 20 45 28 30 .AST cBody = E(0
20a0: 29 3b 0d 0a 09 09 09 41 53 54 20 6a 75 64 67 65 );.....AST judge
20b0: 6d 65 6e 74 20 3d 20 6e 65 77 20 41 70 70 28 70 ment = new App(p
20c0: 6f 73 2c 20 6e 65 77 20 56 61 72 28 70 6f 73 2c os, new Var(pos,
20d0: 20 22 69 66 22 29 2c 0d 0a 09 09 09 09 70 70 54 "if"),......ppT
20e0: 65 73 74 28 70 6d 56 61 72 2c 20 70 72 29 2c 20 est(pmVar, pr),
20f0: 6e 65 77 20 46 75 6e 28 70 6f 73 2c 5b 5d 2c 70 new Fun(pos,[],p
2100: 70 42 69 6e 64 28 70 6d 56 61 72 2c 20 70 72 2c pBind(pmVar, pr,
2110: 20 63 42 6f 64 79 29 29 2c 0d 0a 09 09 09 09 6e cBody)),......n
2120: 65 77 20 56 61 72 28 70 6f 73 2c 20 66 61 69 6c ew Var(pos, fail
2130: 42 72 61 6e 63 68 56 61 72 29 29 3b 0d 0a 09 09 BranchVar));....
2140: 09 72 65 74 75 72 6e 20 70 61 72 73 65 50 61 74 .return parsePat
2150: 74 65 72 6e 4d 61 74 63 68 43 61 73 65 73 28 63 ternMatchCases(c
2160: 61 73 65 50 6f 73 2c 20 70 6d 56 61 72 2c 20 66 asePos, pmVar, f
2170: 61 69 6c 42 72 61 6e 63 68 56 61 72 2c 20 0d 0a ailBranchVar, ..
2180: 09 09 09 09 6e 65 77 20 4c 65 74 28 70 6f 73 2c ....new Let(pos,
2190: 20 74 72 79 54 68 69 73 42 72 61 6e 63 68 56 61 tryThisBranchVa
21a0: 72 2c 20 5b 5d 2c 0d 0a 09 09 09 09 09 6e 65 77 r, [],.......new
21b0: 20 46 75 6e 28 70 6f 73 2c 5b 5d 2c 6a 75 64 67 Fun(pos,[],judg
21c0: 65 6d 65 6e 74 29 2c 20 74 68 65 6e 44 6f 54 68 ement), thenDoTh
21d0: 69 73 29 0d 0a 09 09 09 29 3b 0d 0a 09 09 7d 0d is).....);....}.
21e0: 0a 09 09 65 6c 73 65 0d 0a 09 09 7b 0d 0a 09 09 ...else....{....
21f0: 09 41 53 54 20 64 6f 4e 6f 74 68 69 6e 67 20 3d .AST doNothing =
2200: 20 6e 65 77 20 46 75 6e 28 63 61 73 65 50 6f 73 new Fun(casePos
2210: 2c 5b 5d 2c 0d 0a 09 09 09 09 6e 65 77 20 53 74 ,[],......new St
2220: 72 28 63 61 73 65 50 6f 73 2c 20 73 70 72 69 6e r(casePos, sprin
2230: 74 66 21 22 28 70 61 74 74 65 72 6e 20 6d 61 74 tf!"(pattern mat
2240: 63 68 20 66 61 69 6c 75 72 65 3a 25 73 29 22 28 ch failure:%s)"(
2250: 63 61 73 65 50 6f 73 29 29 29 3b 0d 0a 09 09 09 casePos)));.....
2260: 72 65 74 75 72 6e 20 6e 65 77 20 4c 65 74 28 63 return new Let(c
2270: 61 73 65 50 6f 73 2c 20 74 72 79 54 68 69 73 42 asePos, tryThisB
2280: 72 61 6e 63 68 56 61 72 2c 20 5b 5d 2c 20 64 6f ranchVar, [], do
2290: 4e 6f 74 68 69 6e 67 2c 20 74 68 65 6e 44 6f 54 Nothing, thenDoT
22a0: 68 69 73 29 3b 0d 0a 09 09 7d 0d 0a 09 7d 0d 0a his);....}...}..
22b0: 0d 0a 2f 2f 20 68 61 67 65 73 68 69 6b 75 20 74 ..// hageshiku t
22c0: 65 6e 75 6b 69 0d 0a 09 61 62 73 74 72 61 63 74 enuki...abstract
22d0: 20 63 6c 61 73 73 20 53 69 6e 67 6c 65 50 61 74 class SinglePat
22e0: 74 65 72 6e 0d 0a 09 7b 0d 0a 09 09 73 74 72 69 tern...{....stri
22f0: 6e 67 5b 5d 20 70 61 74 68 3b 0d 0a 09 09 6d 69 ng[] path;....mi
2300: 78 69 6e 20 53 69 6d 70 6c 65 43 6c 61 73 73 3b xin SimpleClass;
2310: 0d 0a 09 09 70 72 69 76 61 74 65 20 41 53 54 20 ....private AST
2320: 61 63 63 65 73 73 28 73 74 72 69 6e 67 20 70 6d access(string pm
2330: 56 61 72 2c 20 73 74 72 69 6e 67 5b 5d 20 70 61 Var, string[] pa
2340: 74 68 29 20 7b 0d 0a 09 09 09 61 75 74 6f 20 70 th) {.....auto p
2350: 6f 73 20 3d 20 63 75 72 72 65 6e 74 50 6f 73 69 os = currentPosi
2360: 74 69 6f 6e 28 29 3b 0d 0a 09 09 09 41 53 54 20 tion();.....AST
2370: 65 20 3d 20 6e 65 77 20 56 61 72 28 70 6f 73 2c e = new Var(pos,
2380: 20 70 6d 56 61 72 29 3b 0d 0a 09 09 09 66 6f 72 pmVar);.....for
2390: 65 61 63 68 28 70 3b 20 70 61 74 68 29 0d 0a 09 each(p; path)...
23a0: 09 09 09 65 20 3d 20 6e 65 77 20 41 70 70 28 70 ...e = new App(p
23b0: 6f 73 2c 20 6e 65 77 20 56 61 72 28 70 6f 73 2c os, new Var(pos,
23c0: 20 22 2e 22 29 2c 20 65 2c 20 6e 65 77 20 53 74 "."), e, new St
23d0: 72 28 70 6f 73 2c 20 70 29 29 3b 0d 0a 09 09 09 r(pos, p));.....
23e0: 72 65 74 75 72 6e 20 65 3b 0d 0a 09 09 7d 0d 0a return e;....}..
23f0: 09 09 70 72 69 76 61 74 65 20 41 53 54 20 68 61 ..private AST ha
2400: 73 28 41 53 54 20 65 2c 20 73 74 72 69 6e 67 20 s(AST e, string
2410: 6b 29 20 7b 0d 0a 09 09 09 61 75 74 6f 20 70 6f k) {.....auto po
2420: 73 20 3d 20 63 75 72 72 65 6e 74 50 6f 73 69 74 s = currentPosit
2430: 69 6f 6e 28 29 3b 0d 0a 09 09 09 72 65 74 75 72 ion();.....retur
2440: 6e 20 6f 70 41 6e 64 41 6e 64 28 0d 0a 09 09 09 n opAndAnd(.....
2450: 09 6e 65 77 20 41 70 70 28 70 6f 73 2c 20 6e 65 .new App(pos, ne
2460: 77 20 56 61 72 28 70 6f 73 2c 20 22 5f 69 73 74 w Var(pos, "_ist
2470: 61 62 6c 65 22 29 2c 20 65 29 2c 0d 0a 09 09 09 able"), e),.....
2480: 09 6e 65 77 20 41 70 70 28 70 6f 73 2c 20 6e 65 .new App(pos, ne
2490: 77 20 56 61 72 28 70 6f 73 2c 20 22 2e 3f 22 29 w Var(pos, ".?")
24a0: 2c 20 65 2c 20 6e 65 77 20 53 74 72 28 70 6f 73 , e, new Str(pos
24b0: 2c 20 6b 29 29 0d 0a 09 09 09 29 3b 0d 0a 09 09 , k)).....);....
24c0: 7d 0d 0a 09 09 70 72 69 76 61 74 65 20 41 53 54 }....private AST
24d0: 20 6f 70 41 6e 64 41 6e 64 28 41 53 54 20 61 2c opAndAnd(AST a,
24e0: 20 41 53 54 20 62 29 20 7b 0d 0a 09 09 09 69 66 AST b) {.....if
24f0: 28 20 61 20 69 73 20 6e 75 6c 6c 20 29 20 72 65 ( a is null ) re
2500: 74 75 72 6e 20 62 3b 0d 0a 09 09 09 69 66 28 20 turn b;.....if(
2510: 62 20 69 73 20 6e 75 6c 6c 20 29 20 72 65 74 75 b is null ) retu
2520: 72 6e 20 61 3b 0d 0a 09 09 09 61 75 74 6f 20 70 rn a;.....auto p
2530: 6f 73 20 3d 20 63 75 72 72 65 6e 74 50 6f 73 69 os = currentPosi
2540: 74 69 6f 6e 28 29 3b 0d 0a 09 09 09 72 65 74 75 tion();.....retu
2550: 72 6e 20 6e 65 77 20 41 70 70 28 70 6f 73 2c 0d rn new App(pos,.
2560: 0a 09 09 09 09 6e 65 77 20 56 61 72 28 70 6f 73 .....new Var(pos
2570: 2c 20 22 69 66 22 29 2c 0d 0a 09 09 09 09 61 2c , "if"),......a,
2580: 0d 0a 09 09 09 09 6e 65 77 20 46 75 6e 28 70 6f ......new Fun(po
2590: 73 2c 20 5b 5d 2c 20 62 29 2c 0d 0a 09 09 09 09 s, [], b),......
25a0: 6e 65 77 20 46 75 6e 28 70 6f 73 2c 20 5b 5d 2c new Fun(pos, [],
25b0: 20 6e 65 77 20 49 6e 74 28 70 6f 73 2c 20 30 29 new Int(pos, 0)
25c0: 29 0d 0a 09 09 09 29 3b 0d 0a 09 09 7d 0d 0a 09 ).....);....}...
25d0: 09 41 53 54 20 70 70 54 65 73 74 28 73 74 72 69 .AST ppTest(stri
25e0: 6e 67 20 70 6d 56 61 72 29 20 7b 0d 0a 09 09 09 ng pmVar) {.....
25f0: 41 53 54 20 63 20 3d 20 6e 75 6c 6c 3b 0d 0a 09 AST c = null;...
2600: 09 09 66 6f 72 28 69 6e 74 20 69 3d 30 3b 20 69 ..for(int i=0; i
2610: 3c 70 61 74 68 2e 6c 65 6e 67 74 68 3b 20 2b 2b <path.length; ++
2620: 69 29 0d 0a 09 09 09 09 63 20 3d 20 6f 70 41 6e i)......c = opAn
2630: 64 41 6e 64 28 63 2c 20 68 61 73 28 61 63 63 65 dAnd(c, has(acce
2640: 73 73 28 70 6d 56 61 72 2c 70 61 74 68 5b 30 2e ss(pmVar,path[0.
2650: 2e 69 5d 29 2c 20 70 61 74 68 5b 69 5d 29 29 3b .i]), path[i]));
2660: 0d 0a 09 09 09 72 65 74 75 72 6e 20 63 3b 0d 0a .....return c;..
2670: 09 09 7d 0d 0a 09 09 41 53 54 20 70 70 42 69 6e ..}....AST ppBin
2680: 64 28 73 74 72 69 6e 67 20 70 6d 56 61 72 2c 20 d(string pmVar,
2690: 41 53 54 20 74 68 65 6e 44 6f 54 68 69 73 29 20 AST thenDoThis)
26a0: 7b 20 72 65 74 75 72 6e 20 74 68 65 6e 44 6f 54 { return thenDoT
26b0: 68 69 73 3b 20 7d 0d 0a 09 7d 0d 0a 09 63 6c 61 his; }...}...cla
26c0: 73 73 20 57 69 6c 64 50 61 74 74 65 72 6e 20 3a ss WildPattern :
26d0: 20 53 69 6e 67 6c 65 50 61 74 74 65 72 6e 0d 0a SinglePattern..
26e0: 09 7b 0d 0a 09 09 6d 69 78 69 6e 20 53 69 6d 70 .{....mixin Simp
26f0: 6c 65 43 6c 61 73 73 3b 0d 0a 09 7d 0d 0a 09 63 leClass;...}...c
2700: 6c 61 73 73 20 56 61 72 50 61 74 74 65 72 6e 20 lass VarPattern
2710: 3a 20 53 69 6e 67 6c 65 50 61 74 74 65 72 6e 0d : SinglePattern.
2720: 0a 09 7b 0d 0a 09 09 73 74 72 69 6e 67 20 6e 61 ..{....string na
2730: 6d 65 3b 0d 0a 09 09 6d 69 78 69 6e 20 53 69 6d me;....mixin Sim
2740: 70 6c 65 43 6c 61 73 73 3b 0d 0a 09 09 41 53 54 pleClass;....AST
2750: 20 70 70 42 69 6e 64 28 73 74 72 69 6e 67 20 70 ppBind(string p
2760: 6d 56 61 72 2c 20 41 53 54 20 74 68 65 6e 44 6f mVar, AST thenDo
2770: 54 68 69 73 29 20 7b 0d 0a 09 09 09 61 75 74 6f This) {.....auto
2780: 20 70 6f 73 20 3d 20 63 75 72 72 65 6e 74 50 6f pos = currentPo
2790: 73 69 74 69 6f 6e 28 29 3b 0d 0a 09 09 09 72 65 sition();.....re
27a0: 74 75 72 6e 20 6e 65 77 20 4c 65 74 28 70 6f 73 turn new Let(pos
27b0: 2c 20 6e 61 6d 65 2c 20 5b 5d 2c 20 61 63 63 65 , name, [], acce
27c0: 73 73 28 70 6d 56 61 72 2c 70 61 74 68 29 2c 20 ss(pmVar,path),
27d0: 74 68 65 6e 44 6f 54 68 69 73 29 3b 0d 0a 09 09 thenDoThis);....
27e0: 7d 0d 0a 09 7d 0d 0a 09 63 6c 61 73 73 20 43 6f }...}...class Co
27f0: 6e 73 74 61 6e 74 50 61 74 74 65 72 6e 20 3a 20 nstantPattern :
2800: 53 69 6e 67 6c 65 50 61 74 74 65 72 6e 0d 0a 09 SinglePattern...
2810: 7b 0d 0a 09 09 41 53 54 20 65 3b 0d 0a 09 09 6d {....AST e;....m
2820: 69 78 69 6e 20 53 69 6d 70 6c 65 43 6c 61 73 73 ixin SimpleClass
2830: 3b 0d 0a 09 09 41 53 54 20 70 70 54 65 73 74 28 ;....AST ppTest(
2840: 73 74 72 69 6e 67 20 70 6d 56 61 72 29 20 7b 0d string pmVar) {.
2850: 0a 09 09 09 61 75 74 6f 20 70 6f 73 20 3d 20 63 ....auto pos = c
2860: 75 72 72 65 6e 74 50 6f 73 69 74 69 6f 6e 28 29 urrentPosition()
2870: 3b 0d 0a 09 09 09 72 65 74 75 72 6e 20 6f 70 41 ;.....return opA
2880: 6e 64 41 6e 64 28 20 73 75 70 65 72 2e 70 70 54 ndAnd( super.ppT
2890: 65 73 74 28 70 6d 56 61 72 29 2c 0d 0a 09 09 09 est(pmVar),.....
28a0: 09 6e 65 77 20 41 70 70 28 70 6f 73 2c 20 6e 65 .new App(pos, ne
28b0: 77 20 56 61 72 28 70 6f 73 2c 22 3d 3d 22 29 2c w Var(pos,"=="),
28c0: 20 61 63 63 65 73 73 28 70 6d 56 61 72 2c 70 61 access(pmVar,pa
28d0: 74 68 29 2c 20 65 29 0d 0a 09 09 09 29 3b 0d 0a th), e).....);..
28e0: 09 09 7d 0d 0a 09 7d 0d 0a 0d 0a 09 53 69 6e 67 ..}...}.....Sing
28f0: 6c 65 50 61 74 74 65 72 6e 5b 5d 20 70 61 72 73 lePattern[] pars
2900: 65 50 61 74 74 65 72 6e 28 73 74 72 69 6e 67 5b ePattern(string[
2910: 5d 20 70 61 74 68 20 3d 20 6e 75 6c 6c 29 0d 0a ] path = null)..
2920: 09 7b 0d 0a 09 09 53 69 6e 67 6c 65 50 61 74 74 .{....SinglePatt
2930: 65 72 6e 5b 5d 20 72 65 73 75 6c 74 3b 0d 0a 09 ern[] result;...
2940: 09 69 66 28 20 74 72 79 45 61 74 28 22 7b 22 29 .if( tryEat("{")
2950: 20 29 0d 0a 09 09 7b 0d 0a 09 09 09 69 66 28 20 )....{.....if(
2960: 21 74 72 79 45 61 74 28 22 7d 22 29 20 29 20 7b !tryEat("}") ) {
2970: 0d 0a 09 09 09 09 64 6f 20 7b 0d 0a 09 09 09 09 ......do {......
2980: 09 73 74 72 69 6e 67 20 6b 65 79 20 3d 20 65 61 .string key = ea
2990: 74 49 64 28 22 69 6e 20 74 61 62 6c 65 20 70 61 tId("in table pa
29a0: 74 74 65 72 6e 22 2c 20 41 6c 6c 6f 77 51 75 6f ttern", AllowQuo
29b0: 74 65 64 29 3b 0d 0a 09 09 09 09 09 65 61 74 28 ted);.......eat(
29c0: 22 3a 22 2c 20 22 61 66 74 65 72 20 66 69 65 6c ":", "after fiel
29d0: 64 2d 69 64 20 69 6e 20 74 61 62 6c 65 20 70 61 d-id in table pa
29e0: 74 74 65 72 6e 22 29 3b 0d 0a 09 09 09 09 09 72 ttern");.......r
29f0: 65 73 75 6c 74 20 7e 3d 20 70 61 72 73 65 50 61 esult ~= parsePa
2a00: 74 74 65 72 6e 28 70 61 74 68 20 7e 20 6b 65 79 ttern(path ~ key
2a10: 29 3b 0d 0a 09 09 09 09 7d 20 77 68 69 6c 65 28 );......} while(
2a20: 20 74 72 79 45 61 74 28 22 2c 22 29 20 29 3b 0d tryEat(",") );.
2a30: 0a 09 09 09 09 65 61 74 28 22 7d 22 2c 20 22 61 .....eat("}", "a
2a40: 74 20 74 68 65 20 65 6e 64 20 6f 66 20 74 61 62 t the end of tab
2a50: 6c 65 20 70 61 74 74 65 72 6e 22 29 3b 0d 0a 09 le pattern");...
2a60: 09 09 7d 0d 0a 09 09 7d 0d 0a 09 09 65 6c 73 65 ..}....}....else
2a70: 0d 0a 09 09 7b 0d 0a 09 09 09 41 53 54 20 65 20 ....{.....AST e
2a80: 3d 20 45 28 30 29 3b 0d 0a 09 09 09 69 66 28 61 = E(0);.....if(a
2a90: 75 74 6f 20 65 76 20 3d 20 63 61 73 74 28 56 61 uto ev = cast(Va
2aa0: 72 29 65 29 0d 0a 09 09 09 09 69 66 28 65 76 2e r)e)......if(ev.
2ab0: 6e 61 6d 65 20 3d 3d 20 22 5f 22 29 0d 0a 09 09 name == "_")....
2ac0: 09 09 09 72 65 73 75 6c 74 20 7e 3d 20 6e 65 77 ...result ~= new
2ad0: 20 57 69 6c 64 50 61 74 74 65 72 6e 28 70 61 74 WildPattern(pat
2ae0: 68 29 3b 0d 0a 09 09 09 09 65 6c 73 65 0d 0a 09 h);......else...
2af0: 09 09 09 09 72 65 73 75 6c 74 20 7e 3d 20 6e 65 ....result ~= ne
2b00: 77 20 56 61 72 50 61 74 74 65 72 6e 28 70 61 74 w VarPattern(pat
2b10: 68 2c 20 65 76 2e 6e 61 6d 65 29 3b 0d 0a 09 09 h, ev.name);....
2b20: 09 65 6c 73 65 0d 0a 09 09 09 09 72 65 73 75 6c .else......resul
2b30: 74 20 7e 3d 20 6e 65 77 20 43 6f 6e 73 74 61 6e t ~= new Constan
2b40: 74 50 61 74 74 65 72 6e 28 70 61 74 68 2c 20 65 tPattern(path, e
2b50: 29 3b 0d 0a 09 09 7d 0d 0a 09 09 72 65 74 75 72 );....}....retur
2b60: 6e 20 72 65 73 75 6c 74 3b 0d 0a 09 7d 0d 0a 0d n result;...}...
2b70: 0a 09 41 53 54 20 70 70 54 65 73 74 28 73 74 72 ..AST ppTest(str
2b80: 69 6e 67 20 70 6d 56 61 72 2c 20 53 69 6e 67 6c ing pmVar, Singl
2b90: 65 50 61 74 74 65 72 6e 5b 5d 20 70 61 74 73 29 ePattern[] pats)
2ba0: 0d 0a 09 7b 0d 0a 09 09 61 75 74 6f 20 70 6f 73 ...{....auto pos
2bb0: 20 3d 20 63 75 72 72 65 6e 74 50 6f 73 69 74 69 = currentPositi
2bc0: 6f 6e 28 29 3b 0d 0a 09 09 41 53 54 20 63 6f 6e on();....AST con
2bd0: 64 20 3d 20 6e 75 6c 6c 3b 0d 0a 09 09 66 6f 72 d = null;....for
2be0: 65 61 63 68 28 70 3b 20 70 61 74 73 29 20 7b 0d each(p; pats) {.
2bf0: 0a 09 09 09 41 53 54 20 63 32 20 3d 20 70 2e 70 ....AST c2 = p.p
2c00: 70 54 65 73 74 28 70 6d 56 61 72 29 3b 0d 0a 09 pTest(pmVar);...
2c10: 09 09 69 66 28 20 63 32 20 21 69 73 20 6e 75 6c ..if( c2 !is nul
2c20: 6c 20 29 0d 0a 09 09 09 09 63 6f 6e 64 20 3d 20 l )......cond =
2c30: 63 6f 6e 64 20 69 73 20 6e 75 6c 6c 20 3f 20 63 cond is null ? c
2c40: 32 0d 0a 09 09 09 09 20 20 20 20 3a 20 6e 65 77 2...... : new
2c50: 20 41 70 70 28 70 6f 73 2c 20 6e 65 77 20 56 61 App(pos, new Va
2c60: 72 28 70 6f 73 2c 22 26 26 22 29 2c 20 63 6f 6e r(pos,"&&"), con
2c70: 64 2c 20 63 32 29 3b 0d 0a 09 09 7d 0d 0a 09 09 d, c2);....}....
2c80: 72 65 74 75 72 6e 20 63 6f 6e 64 20 69 73 20 6e return cond is n
2c90: 75 6c 6c 20 3f 20 6e 65 77 20 49 6e 74 28 63 75 ull ? new Int(cu
2ca0: 72 72 65 6e 74 50 6f 73 69 74 69 6f 6e 28 29 2c rrentPosition(),
2cb0: 20 31 29 20 3a 20 63 6f 6e 64 3b 0d 0a 09 7d 0d 1) : cond;...}.
2cc0: 0a 0d 0a 09 41 53 54 20 70 70 42 69 6e 64 28 73 ....AST ppBind(s
2cd0: 74 72 69 6e 67 20 70 6d 56 61 72 2c 20 53 69 6e tring pmVar, Sin
2ce0: 67 6c 65 50 61 74 74 65 72 6e 5b 5d 20 70 61 74 glePattern[] pat
2cf0: 73 2c 20 41 53 54 20 74 68 65 6e 44 6f 54 68 69 s, AST thenDoThi
2d00: 73 29 0d 0a 09 7b 0d 0a 09 09 66 6f 72 65 61 63 s)...{....foreac
2d10: 68 28 70 3b 20 70 61 74 73 29 0d 0a 09 09 09 74 h(p; pats).....t
2d20: 68 65 6e 44 6f 54 68 69 73 20 3d 20 70 2e 70 70 henDoThis = p.pp
2d30: 42 69 6e 64 28 70 6d 56 61 72 2c 20 74 68 65 6e Bind(pmVar, then
2d40: 44 6f 54 68 69 73 29 3b 0d 0a 09 09 72 65 74 75 DoThis);....retu
2d50: 72 6e 20 74 68 65 6e 44 6f 54 68 69 73 3b 0d 0a rn thenDoThis;..
2d60: 09 7d 0d 0a 0d 0a 09 41 53 54 20 70 61 72 73 65 .}.....AST parse
2d70: 49 64 28 29 0d 0a 09 7b 0d 0a 09 09 73 63 6f 70 Id()...{....scop
2d80: 65 28 65 78 69 74 29 20 6c 65 78 2e 70 6f 70 46 e(exit) lex.popF
2d90: 72 6f 6e 74 3b 0d 0a 09 09 72 65 74 75 72 6e 20 ront;....return
2da0: 6e 65 77 20 53 74 72 28 63 75 72 72 65 6e 74 50 new Str(currentP
2db0: 6f 73 69 74 69 6f 6e 28 29 2c 20 6c 65 78 2e 66 osition(), lex.f
2dc0: 72 6f 6e 74 2e 73 74 72 29 3b 0d 0a 09 7d 0d 0a ront.str);...}..
2dd0: 0d 0a 09 41 53 54 20 70 61 72 73 65 4c 61 6d 62 ...AST parseLamb
2de0: 64 61 41 66 74 65 72 4f 70 65 6e 50 61 72 65 6e daAfterOpenParen
2df0: 28 4c 65 78 50 6f 73 69 74 69 6f 6e 20 70 6f 73 (LexPosition pos
2e00: 29 0d 0a 09 7b 0d 0a 09 09 50 61 72 61 6d 65 74 )...{....Paramet
2e10: 65 72 5b 5d 20 70 61 72 61 6d 73 3b 0d 0a 09 09 er[] params;....
2e20: 77 68 69 6c 65 28 20 21 74 72 79 45 61 74 28 22 while( !tryEat("
2e30: 29 22 29 20 29 0d 0a 09 09 7b 0d 0a 09 09 09 70 )") )....{.....p
2e40: 61 72 61 6d 73 20 7e 3d 20 70 61 72 73 65 50 61 arams ~= parsePa
2e50: 72 61 6d 28 29 3b 0d 0a 09 09 09 69 66 28 20 21 ram();.....if( !
2e60: 74 72 79 45 61 74 28 22 2c 22 29 20 29 20 7b 0d tryEat(",") ) {.
2e70: 0a 09 09 09 09 65 61 74 28 22 29 22 2c 20 22 61 .....eat(")", "a
2e80: 66 74 65 72 20 66 75 6e 63 74 69 6f 6e 20 70 61 fter function pa
2e90: 72 61 6d 65 74 65 72 73 22 29 3b 0d 0a 09 09 09 rameters");.....
2ea0: 09 62 72 65 61 6b 3b 0d 0a 09 09 09 7d 0d 0a 09 .break;.....}...
2eb0: 09 7d 0d 0a 09 09 65 61 74 28 22 7b 22 2c 20 22 .}....eat("{", "
2ec0: 61 66 74 65 72 20 66 75 6e 63 74 69 6f 6e 20 70 after function p
2ed0: 61 72 61 6d 65 74 65 72 73 22 29 3b 0d 0a 09 09 arameters");....
2ee0: 61 75 74 6f 20 66 75 6e 62 6f 64 79 20 3d 20 42 auto funbody = B
2ef0: 6f 64 79 28 29 3b 0d 0a 09 09 65 61 74 28 22 7d ody();....eat("}
2f00: 22 2c 20 22 61 66 74 65 72 20 66 75 6e 63 74 69 ", "after functi
2f10: 6f 6e 20 62 6f 64 79 22 29 3b 0d 0a 09 09 72 65 on body");....re
2f20: 74 75 72 6e 20 6e 65 77 20 46 75 6e 28 70 6f 73 turn new Fun(pos
2f30: 2c 20 70 61 72 61 6d 73 2c 20 66 75 6e 62 6f 64 , params, funbod
2f40: 79 29 3b 0d 0a 09 7d 0d 0a 0d 0a 09 50 61 72 61 y);...}.....Para
2f50: 6d 65 74 65 72 20 70 61 72 73 65 50 61 72 61 6d meter parseParam
2f60: 28 29 0d 0a 09 7b 0d 0a 09 09 73 74 72 69 6e 67 ()...{....string
2f70: 20 76 61 72 3b 0d 0a 09 09 73 74 72 69 6e 67 5b var;....string[
2f80: 5d 20 6c 61 79 3b 0d 0a 09 09 77 68 69 6c 65 28 ] lay;....while(
2f90: 20 21 63 6c 6f 73 69 6e 67 42 72 61 63 6b 65 74 !closingBracket
2fa0: 28 29 20 26 26 20 21 6c 65 78 2e 65 6d 70 74 79 () && !lex.empty
2fb0: 20 26 26 20 6c 65 78 2e 66 72 6f 6e 74 2e 73 74 && lex.front.st
2fc0: 72 21 3d 22 2c 22 20 29 0d 0a 09 09 7b 0d 0a 09 r!="," )....{...
2fd0: 09 09 61 75 74 6f 20 70 6f 73 20 3d 20 63 75 72 ..auto pos = cur
2fe0: 72 65 6e 74 50 6f 73 69 74 69 6f 6e 28 29 3b 0d rentPosition();.
2ff0: 0a 09 09 09 73 74 72 69 6e 67 20 70 20 3d 20 65 ....string p = e
3000: 61 74 49 64 28 22 66 6f 72 20 66 75 6e 63 74 69 atId("for functi
3010: 6f 6e 20 70 61 72 61 6d 65 74 65 72 22 2c 20 41 on parameter", A
3020: 6c 6c 6f 77 51 75 6f 74 65 64 29 3b 0d 0a 09 09 llowQuoted);....
3030: 09 69 66 28 20 70 20 3d 3d 20 22 40 22 20 29 0d .if( p == "@" ).
3040: 0a 09 09 09 09 6c 61 79 20 7e 3d 20 22 40 22 20 .....lay ~= "@"
3050: 7e 20 65 61 74 49 64 28 22 61 66 74 65 72 20 40 ~ eatId("after @
3060: 22 2c 20 41 6c 6c 6f 77 51 75 6f 74 65 64 29 3b ", AllowQuoted);
3070: 0d 0a 09 09 09 65 6c 73 65 20 69 66 28 20 76 61 .....else if( va
3080: 72 2e 65 6d 70 74 79 20 29 0d 0a 09 09 09 09 76 r.empty )......v
3090: 61 72 20 3d 20 70 3b 0d 0a 09 09 09 65 6c 73 65 ar = p;.....else
30a0: 0d 0a 09 09 09 09 74 68 72 6f 77 20 67 65 6e 65 ......throw gene
30b0: 78 21 50 61 72 73 65 45 78 63 65 70 74 69 6f 6e x!ParseException
30c0: 28 70 6f 73 2c 20 22 6f 6e 65 20 70 61 72 61 6d (pos, "one param
30d0: 65 74 65 72 20 68 61 73 20 74 77 6f 20 6e 61 6d eter has two nam
30e0: 65 73 22 29 3b 0d 0a 09 09 7d 0d 0a 09 09 72 65 es");....}....re
30f0: 74 75 72 6e 20 6e 65 77 20 50 61 72 61 6d 65 74 turn new Paramet
3100: 65 72 28 76 61 72 2c 20 6c 61 79 29 3b 0d 0a 09 er(var, lay);...
3110: 7d 0d 0a 0d 0a 70 72 69 76 61 74 65 3a 0d 0a 09 }....private:...
3120: 4c 65 78 65 72 20 6c 65 78 3b 0d 0a 09 74 68 69 Lexer lex;...thi
3130: 73 28 4c 65 78 65 72 20 6c 65 78 29 20 7b 20 74 s(Lexer lex) { t
3140: 68 69 73 2e 6c 65 78 20 3d 20 6c 65 78 3b 20 7d his.lex = lex; }
3150: 0d 0a 0d 0a 09 62 6f 6f 6c 20 69 73 4e 75 6d 62 .....bool isNumb
3160: 65 72 28 73 74 72 69 6e 67 20 73 29 0d 0a 09 7b er(string s)...{
3170: 0d 0a 09 09 72 65 74 75 72 6e 20 66 69 6e 64 21 ....return find!
3180: 28 60 61 3c 27 30 27 20 7c 7c 20 27 39 27 3c 61 (`a<'0' || '9'<a
3190: 60 29 28 73 29 2e 65 6d 70 74 79 3b 0d 0a 09 7d `)(s).empty;...}
31a0: 0d 0a 09 0d 0a 09 76 6f 69 64 20 65 61 74 28 73 ......void eat(s
31b0: 74 72 69 6e 67 20 6b 77 64 2c 20 6c 61 7a 79 20 tring kwd, lazy
31c0: 73 74 72 69 6e 67 20 6d 73 67 29 0d 0a 09 7b 0d string msg)...{.
31d0: 0a 09 09 69 66 28 20 21 74 72 79 45 61 74 28 6b ...if( !tryEat(k
31e0: 77 64 29 20 29 0d 0a 09 09 09 69 66 28 20 6c 65 wd) ).....if( le
31f0: 78 2e 65 6d 70 74 79 20 29 0d 0a 09 09 09 09 74 x.empty )......t
3200: 68 72 6f 77 20 67 65 6e 65 78 21 55 6e 65 78 70 hrow genex!Unexp
3210: 65 63 74 65 64 45 4f 46 28 0d 0a 09 09 09 09 09 ectedEOF(.......
3220: 63 75 72 72 65 6e 74 50 6f 73 69 74 69 6f 6e 28 currentPosition(
3230: 29 2c 20 73 70 72 69 6e 74 66 21 22 25 73 20 69 ), sprintf!"%s i
3240: 73 20 65 78 70 65 63 74 65 64 20 25 73 20 62 75 s expected %s bu
3250: 74 20 6e 6f 74 20 66 6f 75 6e 64 22 28 6b 77 64 t not found"(kwd
3260: 2c 6d 73 67 29 29 3b 0d 0a 09 09 09 65 6c 73 65 ,msg));.....else
3270: 0d 0a 09 09 09 09 74 68 72 6f 77 20 67 65 6e 65 ......throw gene
3280: 78 21 50 61 72 73 65 45 78 63 65 70 74 69 6f 6e x!ParseException
3290: 28 0d 0a 09 09 09 09 09 63 75 72 72 65 6e 74 50 (.......currentP
32a0: 6f 73 69 74 69 6f 6e 28 29 2c 20 73 70 72 69 6e osition(), sprin
32b0: 74 66 21 22 25 73 20 69 73 20 65 78 70 65 63 74 tf!"%s is expect
32c0: 65 64 20 66 6f 72 20 25 73 20 62 75 74 20 6e 6f ed for %s but no
32d0: 74 20 66 6f 75 6e 64 22 28 6b 77 64 2c 6d 73 67 t found"(kwd,msg
32e0: 29 29 3b 0d 0a 09 7d 0d 0a 0d 0a 09 62 6f 6f 6c ));...}.....bool
32f0: 20 74 72 79 45 61 74 28 73 74 72 69 6e 67 20 6b tryEat(string k
3300: 77 64 29 0d 0a 09 7b 0d 0a 09 09 69 66 28 20 6c wd)...{....if( l
3310: 65 78 2e 65 6d 70 74 79 20 7c 7c 20 6c 65 78 2e ex.empty || lex.
3320: 66 72 6f 6e 74 2e 71 75 6f 74 65 64 20 7c 7c 20 front.quoted ||
3330: 6c 65 78 2e 66 72 6f 6e 74 2e 73 74 72 21 3d 6b lex.front.str!=k
3340: 77 64 20 29 0d 0a 09 09 09 72 65 74 75 72 6e 20 wd ).....return
3350: 66 61 6c 73 65 3b 0d 0a 09 09 6c 65 78 2e 70 6f false;....lex.po
3360: 70 46 72 6f 6e 74 3b 0d 0a 09 09 72 65 74 75 72 pFront;....retur
3370: 6e 20 74 72 75 65 3b 0d 0a 09 7d 0d 0a 0d 0a 09 n true;...}.....
3380: 65 6e 75 6d 20 7b 41 6c 6c 6f 77 51 75 6f 74 65 enum {AllowQuote
3390: 64 3d 74 72 75 65 2c 20 44 69 73 61 6c 6c 6f 77 d=true, Disallow
33a0: 51 75 6f 74 65 64 3d 66 61 6c 73 65 7d 3b 0d 0a Quoted=false};..
33b0: 09 73 74 72 69 6e 67 20 65 61 74 49 64 28 6c 61 .string eatId(la
33c0: 7a 79 20 73 74 72 69 6e 67 20 6d 73 67 2c 20 62 zy string msg, b
33d0: 6f 6f 6c 20 61 71 3d 44 69 73 61 6c 6c 6f 77 51 ool aq=DisallowQ
33e0: 75 6f 74 65 64 29 0d 0a 09 7b 0d 0a 09 09 69 66 uoted)...{....if
33f0: 28 20 6c 65 78 2e 65 6d 70 74 79 20 29 0d 0a 09 ( lex.empty )...
3400: 09 09 74 68 72 6f 77 20 67 65 6e 65 78 21 55 6e ..throw genex!Un
3410: 65 78 70 65 63 74 65 64 45 4f 46 28 63 75 72 72 expectedEOF(curr
3420: 65 6e 74 50 6f 73 69 74 69 6f 6e 28 29 2c 20 22 entPosition(), "
3430: 69 64 65 6e 74 69 66 69 65 72 20 69 73 20 65 78 identifier is ex
3440: 70 65 63 74 65 64 20 62 75 74 20 6e 6f 74 20 66 pected but not f
3450: 6f 75 6e 64 20 22 7e 6d 73 67 29 3b 0d 0a 09 09 ound "~msg);....
3460: 69 66 28 20 21 61 71 20 26 26 20 6c 65 78 2e 66 if( !aq && lex.f
3470: 72 6f 6e 74 2e 71 75 6f 74 65 64 20 29 0d 0a 09 ront.quoted )...
3480: 09 09 74 68 72 6f 77 20 67 65 6e 65 78 21 50 61 ..throw genex!Pa
3490: 72 73 65 45 78 63 65 70 74 69 6f 6e 28 63 75 72 rseException(cur
34a0: 72 65 6e 74 50 6f 73 69 74 69 6f 6e 28 29 2c 20 rentPosition(),
34b0: 22 69 64 65 6e 74 69 66 69 65 72 20 69 73 20 65 "identifier is e
34c0: 78 70 65 63 74 65 64 20 62 75 74 20 6e 6f 74 20 xpected but not
34d0: 66 6f 75 6e 64 20 22 7e 6d 73 67 29 3b 0d 0a 09 found "~msg);...
34e0: 09 73 63 6f 70 65 28 65 78 69 74 29 20 6c 65 78 .scope(exit) lex
34f0: 2e 70 6f 70 46 72 6f 6e 74 3b 0d 0a 09 09 72 65 .popFront;....re
3500: 74 75 72 6e 20 6c 65 78 2e 66 72 6f 6e 74 2e 73 turn lex.front.s
3510: 74 72 3b 0d 0a 09 7d 0d 0a 0d 0a 09 41 53 54 20 tr;...}.....AST
3520: 64 6f 4e 6f 74 68 69 6e 67 45 78 70 72 65 73 73 doNothingExpress
3530: 69 6f 6e 28 29 0d 0a 09 7b 0d 0a 09 09 72 65 74 ion()...{....ret
3540: 75 72 6e 20 6e 65 77 20 53 74 72 28 63 75 72 72 urn new Str(curr
3550: 65 6e 74 50 6f 73 69 74 69 6f 6e 28 29 2c 20 22 entPosition(), "
3560: 28 65 6d 70 74 79 20 66 75 6e 63 74 69 6f 6e 20 (empty function
3570: 62 6f 64 79 29 22 29 3b 0d 0a 09 7d 0d 0a 0d 0a body)");...}....
3580: 09 4c 65 78 50 6f 73 69 74 69 6f 6e 20 63 75 72 .LexPosition cur
3590: 72 65 6e 74 50 6f 73 69 74 69 6f 6e 28 29 0d 0a rentPosition()..
35a0: 09 7b 0d 0a 09 09 72 65 74 75 72 6e 20 6c 65 78 .{....return lex
35b0: 2e 65 6d 70 74 79 20 3f 20 6e 65 77 20 4c 65 78 .empty ? new Lex
35c0: 50 6f 73 69 74 69 6f 6e 28 22 45 4f 46 22 2c 30 Position("EOF",0
35d0: 2c 30 29 20 3a 20 6c 65 78 2e 66 72 6f 6e 74 2e ,0) : lex.front.
35e0: 70 6f 73 3b 0d 0a 09 7d 0d 0a 7d 0d 0a 0d 0a 75 pos;...}..}....u
35f0: 6e 69 74 74 65 73 74 0d 0a 7b 0d 0a 09 6d 69 78 nittest..{...mix
3600: 69 6e 20 45 61 73 79 41 53 54 3b 0d 0a 0d 0a 09 in EasyAST;.....
3610: 61 73 73 65 72 74 5f 65 71 28 70 61 72 73 65 53 assert_eq(parseS
3620: 74 72 69 6e 67 28 60 31 32 33 60 29 2c 20 69 6e tring(`123`), in
3630: 74 6c 28 31 32 33 29 29 3b 0d 0a 09 61 73 73 65 tl(123));...asse
3640: 72 74 5f 65 71 28 70 61 72 73 65 53 74 72 69 6e rt_eq(parseStrin
3650: 67 28 60 22 66 6f 6f 22 60 29 2c 20 73 74 72 6c g(`"foo"`), strl
3660: 28 22 66 6f 6f 22 29 29 3b 0d 0a 09 61 73 73 65 ("foo"));...asse
3670: 72 74 5f 65 71 28 70 61 72 73 65 53 74 72 69 6e rt_eq(parseStrin
3680: 67 28 60 66 75 6e 28 29 7b 31 7d 60 29 2c 20 66 g(`fun(){1}`), f
3690: 75 6e 28 5b 5d 2c 69 6e 74 6c 28 31 29 29 29 3b un([],intl(1)));
36a0: 0d 0a 09 61 73 73 65 72 74 5f 65 71 28 70 61 72 ...assert_eq(par
36b0: 73 65 53 74 72 69 6e 67 28 60 66 75 6e 28 78 29 seString(`fun(x)
36c0: 7b 31 7d 60 29 2c 20 66 75 6e 28 5b 22 78 22 5d {1}`), fun(["x"]
36d0: 2c 69 6e 74 6c 28 31 29 29 29 3b 0d 0a 09 61 73 ,intl(1)));...as
36e0: 73 65 72 74 5f 65 71 28 70 61 72 73 65 53 74 72 sert_eq(parseStr
36f0: 69 6e 67 28 22 5c 75 30 33 42 42 28 29 7b 31 7d ing("\u03BB(){1}
3700: 22 29 2c 20 66 75 6e 28 5b 5d 2c 69 6e 74 6c 28 "), fun([],intl(
3710: 31 29 29 29 3b 0d 0a 09 61 73 73 65 72 74 5f 65 1)));...assert_e
3720: 71 28 70 61 72 73 65 53 74 72 69 6e 67 28 22 5c q(parseString("\
3730: 75 30 33 42 42 28 78 29 7b 31 7d 22 29 2c 20 66 u03BB(x){1}"), f
3740: 75 6e 28 5b 22 78 22 5d 2c 69 6e 74 6c 28 31 29 un(["x"],intl(1)
3750: 29 29 3b 0d 0a 09 61 73 73 65 72 74 5f 65 71 28 ));...assert_eq(
3760: 70 61 72 73 65 53 74 72 69 6e 67 28 60 31 3b 32 parseString(`1;2
3770: 60 29 2c 20 6c 65 74 28 22 5f 22 2c 22 22 2c 69 `), let("_","",i
3780: 6e 74 6c 28 31 29 2c 69 6e 74 6c 28 32 29 29 29 ntl(1),intl(2)))
3790: 3b 0d 0a 09 61 73 73 65 72 74 5f 65 71 28 70 61 ;...assert_eq(pa
37a0: 72 73 65 53 74 72 69 6e 67 28 60 31 3b 32 3b 60 rseString(`1;2;`
37b0: 29 2c 20 6c 65 74 28 22 5f 22 2c 22 22 2c 69 6e ), let("_","",in
37c0: 74 6c 28 31 29 2c 69 6e 74 6c 28 32 29 29 29 3b tl(1),intl(2)));
37d0: 0d 0a 09 61 73 73 65 72 74 5f 65 71 28 70 61 72 ...assert_eq(par
37e0: 73 65 53 74 72 69 6e 67 28 60 6c 65 74 20 78 3d seString(`let x=
37f0: 31 20 69 6e 20 32 60 29 2c 20 6c 65 74 28 22 78 1 in 2`), let("x
3800: 22 2c 22 22 2c 69 6e 74 6c 28 31 29 2c 69 6e 74 ","",intl(1),int
3810: 6c 28 32 29 29 29 3b 0d 0a 09 61 73 73 65 72 74 l(2)));...assert
3820: 5f 65 71 28 70 61 72 73 65 53 74 72 69 6e 67 28 _eq(parseString(
3830: 60 76 61 72 20 78 3d 31 3b 32 3b 60 29 2c 20 6c `var x=1;2;`), l
3840: 65 74 28 22 78 22 2c 22 22 2c 69 6e 74 6c 28 31 et("x","",intl(1
3850: 29 2c 69 6e 74 6c 28 32 29 29 29 3b 0d 0a 09 61 ),intl(2)));...a
3860: 73 73 65 72 74 5f 65 71 28 70 61 72 73 65 53 74 ssert_eq(parseSt
3870: 72 69 6e 67 28 60 64 65 66 20 78 3d 31 60 29 2c ring(`def x=1`),
3880: 20 6c 65 74 28 22 78 22 2c 22 22 2c 69 6e 74 6c let("x","",intl
3890: 28 31 29 2c 76 61 72 28 22 78 22 29 29 29 3b 0d (1),var("x")));.
38a0: 0a 09 61 73 73 65 72 74 5f 65 71 28 70 61 72 73 ..assert_eq(pars
38b0: 65 53 74 72 69 6e 67 28 60 40 76 61 6c 20 78 3d eString(`@val x=
38c0: 31 3b 60 29 2c 20 6c 65 74 28 22 78 22 2c 22 40 1;`), let("x","@
38d0: 76 61 6c 22 2c 69 6e 74 6c 28 31 29 2c 76 61 72 val",intl(1),var
38e0: 28 22 78 22 29 29 29 3b 0d 0a 09 61 73 73 65 72 ("x")));...asser
38f0: 74 5f 65 71 28 70 61 72 73 65 53 74 72 69 6e 67 t_eq(parseString
3900: 28 60 40 74 79 70 20 78 3d 22 23 69 6e 74 22 3b (`@typ x="#int";
3910: 60 29 2c 20 6c 65 74 28 22 78 22 2c 22 40 74 79 `), let("x","@ty
3920: 70 22 2c 73 74 72 6c 28 22 23 69 6e 74 22 29 2c p",strl("#int"),
3930: 76 61 72 28 22 78 22 29 29 29 3b 0d 0a 09 61 73 var("x")));...as
3940: 73 65 72 74 5f 65 71 28 70 61 72 73 65 53 74 72 sert_eq(parseStr
3950: 69 6e 67 28 60 66 28 31 2c 32 29 60 29 2c 20 63 ing(`f(1,2)`), c
3960: 61 6c 6c 28 76 61 72 28 22 66 22 29 2c 69 6e 74 all(var("f"),int
3970: 6c 28 31 29 2c 69 6e 74 6c 28 32 29 29 29 3b 0d l(1),intl(2)));.
3980: 0a 09 61 73 73 65 72 74 5f 65 71 28 70 61 72 73 ..assert_eq(pars
3990: 65 53 74 72 69 6e 67 28 60 69 66 20 31 20 74 68 eString(`if 1 th
39a0: 65 6e 20 32 60 29 2c 20 63 61 6c 6c 28 76 61 72 en 2`), call(var
39b0: 28 22 69 66 22 29 2c 69 6e 74 6c 28 31 29 2c 66 ("if"),intl(1),f
39c0: 75 6e 28 5b 5d 2c 69 6e 74 6c 28 32 29 29 2c 66 un([],intl(2)),f
39d0: 75 6e 28 5b 5d 2c 73 74 72 6c 28 22 28 65 6d 70 un([],strl("(emp
39e0: 74 79 20 66 75 6e 63 74 69 6f 6e 20 62 6f 64 79 ty function body
39f0: 29 22 29 29 29 29 3b 0d 0a 09 61 73 73 65 72 74 )"))));...assert
3a00: 5f 65 71 28 70 61 72 73 65 53 74 72 69 6e 67 28 _eq(parseString(
3a10: 60 69 66 20 31 20 74 68 65 6e 3a 20 32 20 65 6c `if 1 then: 2 el
3a20: 73 65 28 33 29 60 29 2c 20 63 61 6c 6c 28 76 61 se(3)`), call(va
3a30: 72 28 22 69 66 22 29 2c 69 6e 74 6c 28 31 29 2c r("if"),intl(1),
3a40: 66 75 6e 28 5b 5d 2c 69 6e 74 6c 28 32 29 29 2c fun([],intl(2)),
3a50: 66 75 6e 28 5b 5d 2c 69 6e 74 6c 28 33 29 29 29 fun([],intl(3)))
3a60: 29 3b 0d 0a 09 61 73 73 65 72 74 5f 65 71 28 70 );...assert_eq(p
3a70: 61 72 73 65 53 74 72 69 6e 67 28 60 28 69 66 20 arseString(`(if
3a80: 31 20 74 68 65 6e 20 28 29 20 65 6c 73 65 20 33 1 then () else 3
3a90: 29 28 29 28 29 60 29 2c 0d 0a 09 09 63 61 6c 6c )()()`),....call
3aa0: 28 63 61 6c 6c 28 63 61 6c 6c 28 76 61 72 28 22 (call(call(var("
3ab0: 69 66 22 29 2c 69 6e 74 6c 28 31 29 2c 66 75 6e if"),intl(1),fun
3ac0: 28 5b 5d 2c 73 74 72 6c 28 22 28 65 6d 70 74 79 ([],strl("(empty
3ad0: 20 66 75 6e 63 74 69 6f 6e 20 62 6f 64 79 29 22 function body)"
3ae0: 29 29 2c 66 75 6e 28 5b 5d 2c 69 6e 74 6c 28 33 )),fun([],intl(3
3af0: 29 29 29 29 29 29 3b 0d 0a 09 61 73 73 65 72 74 ))))));...assert
3b00: 5f 65 71 28 70 61 72 73 65 53 74 72 69 6e 67 28 _eq(parseString(
3b10: 60 31 2b 32 2a 33 60 29 2c 20 63 61 6c 6c 28 76 `1+2*3`), call(v
3b20: 61 72 28 22 2b 22 29 2c 69 6e 74 6c 28 31 29 2c ar("+"),intl(1),
3b30: 63 61 6c 6c 28 76 61 72 28 22 2a 22 29 2c 69 6e call(var("*"),in
3b40: 74 6c 28 32 29 2c 69 6e 74 6c 28 33 29 29 29 29 tl(2),intl(3))))
3b50: 3b 0d 0a 09 61 73 73 65 72 74 5f 65 71 28 70 61 ;...assert_eq(pa
3b60: 72 73 65 53 74 72 69 6e 67 28 60 28 31 2b 32 29 rseString(`(1+2)
3b70: 2a 33 60 29 2c 20 63 61 6c 6c 28 76 61 72 28 22 *3`), call(var("
3b80: 2a 22 29 2c 63 61 6c 6c 28 76 61 72 28 22 2b 22 *"),call(var("+"
3b90: 29 2c 69 6e 74 6c 28 31 29 2c 69 6e 74 6c 28 32 ),intl(1),intl(2
3ba0: 29 29 2c 69 6e 74 6c 28 33 29 29 29 3b 0d 0a 09 )),intl(3)));...
3bb0: 61 73 73 65 72 74 5f 65 71 28 70 61 72 73 65 53 assert_eq(parseS
3bc0: 74 72 69 6e 67 28 60 31 2a 28 32 2b 33 29 60 29 tring(`1*(2+3)`)
3bd0: 2c 20 63 61 6c 6c 28 76 61 72 28 22 2a 22 29 2c , call(var("*"),
3be0: 69 6e 74 6c 28 31 29 2c 63 61 6c 6c 28 76 61 72 intl(1),call(var
3bf0: 28 22 2b 22 29 2c 69 6e 74 6c 28 32 29 2c 69 6e ("+"),intl(2),in
3c00: 74 6c 28 33 29 29 29 29 3b 0d 0a 09 61 73 73 65 tl(3))));...asse
3c10: 72 74 5f 65 71 28 70 61 72 73 65 53 74 72 69 6e rt_eq(parseStrin
3c20: 67 28 60 31 2a 32 2b 33 60 29 2c 20 63 61 6c 6c g(`1*2+3`), call
3c30: 28 76 61 72 28 22 2b 22 29 2c 63 61 6c 6c 28 76 (var("+"),call(v
3c40: 61 72 28 22 2a 22 29 2c 69 6e 74 6c 28 31 29 2c ar("*"),intl(1),
3c50: 69 6e 74 6c 28 32 29 29 2c 69 6e 74 6c 28 33 29 intl(2)),intl(3)
3c60: 29 29 3b 0d 0a 09 61 73 73 65 72 74 5f 65 71 28 ));...assert_eq(
3c70: 70 61 72 73 65 53 74 72 69 6e 67 28 60 40 78 28 parseString(`@x(
3c80: 31 29 60 29 2c 20 6c 61 79 28 22 40 78 22 2c 20 1)`), lay("@x",
3c90: 69 6e 74 6c 28 31 29 29 29 3b 0d 0a 09 61 73 73 intl(1)));...ass
3ca0: 65 72 74 5f 65 71 28 70 61 72 73 65 53 74 72 69 ert_eq(parseStri
3cb0: 6e 67 28 60 66 75 6e 28 78 20 40 76 20 40 74 2c ng(`fun(x @v @t,
3cc0: 20 79 2c 20 7a 20 40 74 29 7b 7d 60 29 2c 0d 0a y, z @t){}`),..
3cd0: 09 09 66 75 6e 70 28 5b 70 61 72 61 6d 28 22 78 ..funp([param("x
3ce0: 22 2c 5b 22 40 76 22 2c 22 40 74 22 5d 29 2c 20 ",["@v","@t"]),
3cf0: 70 61 72 61 6d 28 22 79 22 2c 5b 5d 29 2c 20 70 param("y",[]), p
3d00: 61 72 61 6d 28 22 7a 22 2c 5b 22 40 74 22 5d 29 aram("z",["@t"])
3d10: 5d 2c 20 73 74 72 6c 28 22 28 65 6d 70 74 79 20 ], strl("(empty
3d20: 66 75 6e 63 74 69 6f 6e 20 62 6f 64 79 29 22 29 function body)")
3d30: 29 29 3b 0d 0a 0d 0a 09 61 73 73 65 72 74 5f 65 ));.....assert_e
3d40: 71 28 70 61 72 73 65 53 74 72 69 6e 67 28 60 0d q(parseString(`.
3d50: 0a 09 09 6c 65 74 20 78 20 3d 20 31 30 30 3b 20 ...let x = 100;
3d60: 23 63 6f 6d 6d 65 6e 74 0d 0a 09 09 6c 65 74 20 #comment....let
3d70: 79 20 3d 20 32 30 30 3b 20 23 63 6f 6d 6d 65 6e y = 200; #commen
3d80: 74 21 21 21 21 21 0d 0a 09 09 09 78 2b 79 0d 0a t!!!!!.....x+y..
3d90: 09 60 29 2c 0d 0a 09 09 6c 65 74 28 22 78 22 2c .`),....let("x",
3da0: 20 22 22 2c 20 69 6e 74 6c 28 31 30 30 29 2c 20 "", intl(100),
3db0: 6c 65 74 28 22 79 22 2c 20 22 22 2c 20 69 6e 74 let("y", "", int
3dc0: 6c 28 32 30 30 29 2c 20 63 61 6c 6c 28 76 61 72 l(200), call(var
3dd0: 28 22 2b 22 29 2c 20 76 61 72 28 22 78 22 29 2c ("+"), var("x"),
3de0: 20 76 61 72 28 22 79 22 29 29 29 29 0d 0a 09 29 var("y"))))...)
3df0: 3b 0d 0a 0d 0a 09 61 73 73 65 72 74 5f 65 71 28 ;.....assert_eq(
3e00: 70 61 72 73 65 53 74 72 69 6e 67 28 60 0d 0a 09 parseString(`...
3e10: 09 76 61 72 20 66 61 63 20 3d 20 66 75 6e 28 78 .var fac = fun(x
3e20: 29 7b 20 69 66 28 78 20 3c 3d 20 31 29 20 74 68 ){ if(x <= 1) th
3e30: 65 6e 20 31 20 65 6c 73 65 20 78 2a 66 61 63 28 en 1 else x*fac(
3e40: 78 2d 31 29 20 7d 3b 0d 0a 09 09 66 61 63 28 31 x-1) };....fac(1
3e50: 30 29 0d 0a 09 60 29 2c 0d 0a 09 09 6c 65 74 28 0)...`),....let(
3e60: 22 66 61 63 22 2c 20 22 22 2c 20 66 75 6e 28 5b "fac", "", fun([
3e70: 22 78 22 5d 2c 0d 0a 09 09 09 63 61 6c 6c 28 76 "x"],.....call(v
3e80: 61 72 28 22 69 66 22 29 2c 0d 0a 09 09 09 09 63 ar("if"),......c
3e90: 61 6c 6c 28 76 61 72 28 22 3c 3d 22 29 2c 20 76 all(var("<="), v
3ea0: 61 72 28 22 78 22 29 2c 20 69 6e 74 6c 28 31 29 ar("x"), intl(1)
3eb0: 29 2c 0d 0a 09 09 09 09 66 75 6e 28 5b 5d 2c 20 ),......fun([],
3ec0: 69 6e 74 6c 28 31 29 29 2c 0d 0a 09 09 09 09 66 intl(1)),......f
3ed0: 75 6e 28 5b 5d 2c 20 63 61 6c 6c 28 76 61 72 28 un([], call(var(
3ee0: 22 2a 22 29 2c 20 76 61 72 28 22 78 22 29 2c 20 "*"), var("x"),
3ef0: 63 61 6c 6c 28 76 61 72 28 22 66 61 63 22 29 2c call(var("fac"),
3f00: 63 61 6c 6c 28 76 61 72 28 22 2d 22 29 2c 76 61 call(var("-"),va
3f10: 72 28 22 78 22 29 2c 69 6e 74 6c 28 31 29 29 29 r("x"),intl(1)))
3f20: 29 29 0d 0a 09 09 09 29 29 2c 0d 0a 09 09 09 63 )).....)),.....c
3f30: 61 6c 6c 28 76 61 72 28 22 66 61 63 22 29 2c 69 all(var("fac"),i
3f40: 6e 74 6c 28 31 30 29 29 0d 0a 09 09 29 0d 0a 09 ntl(10))....)...
3f50: 29 3b 0d 0a 7d 0d 0a 0d 0a 75 6e 69 74 74 65 73 );..}....unittes
3f60: 74 0d 0a 7b 0d 0a 09 61 73 73 65 72 74 5f 74 68 t..{...assert_th
3f70: 72 6f 77 21 55 6e 65 78 70 65 63 74 65 64 45 4f row!UnexpectedEO
3f80: 46 28 70 61 72 73 65 53 74 72 69 6e 67 28 60 31 F(parseString(`1
3f90: 2b 60 29 29 3b 0d 0a 09 61 73 73 65 72 74 5f 74 +`));...assert_t
3fa0: 68 72 6f 77 21 50 61 72 73 65 45 78 63 65 70 74 hrow!ParseExcept
3fb0: 69 6f 6e 28 70 61 72 73 65 53 74 72 69 6e 67 28 ion(parseString(
3fc0: 60 31 2b 32 7d 60 29 29 3b 0d 0a 09 61 73 73 65 `1+2}`));...asse
3fd0: 72 74 5f 74 68 72 6f 77 21 55 6e 65 78 70 65 63 rt_throw!Unexpec
3fe0: 74 65 64 45 4f 46 28 70 61 72 73 65 53 74 72 69 tedEOF(parseStri
3ff0: 6e 67 28 60 6c 65 74 20 22 78 22 60 29 29 3b 0d ng(`let "x"`));.
4000: 0a 09 61 73 73 65 72 74 5f 74 68 72 6f 77 21 55 ..assert_throw!U
4010: 6e 65 78 70 65 63 74 65 64 45 4f 46 28 70 61 72 nexpectedEOF(par
4020: 73 65 53 74 72 69 6e 67 28 60 76 61 72 60 29 29 seString(`var`))
4030: 3b 0d 0a 09 61 73 73 65 72 74 5f 74 68 72 6f 77 ;...assert_throw
4040: 21 50 61 72 73 65 45 78 63 65 70 74 69 6f 6e 28 !ParseException(
4050: 70 61 72 73 65 53 74 72 69 6e 67 28 60 40 76 61 parseString(`@va
4060: 6c 20 78 20 3d 3d 60 29 29 3b 0d 0a 09 61 73 73 l x ==`));...ass
4070: 65 72 74 5f 74 68 72 6f 77 21 50 61 72 73 65 45 ert_throw!ParseE
4080: 78 63 65 70 74 69 6f 6e 28 70 61 72 73 65 53 74 xception(parseSt
4090: 72 69 6e 67 28 60 69 66 28 29 7b 31 7d 60 29 29 ring(`if(){1}`))
40a0: 3b 0d 0a 09 61 73 73 65 72 74 5f 74 68 72 6f 77 ;...assert_throw
40b0: 21 55 6e 65 78 70 65 63 74 65 64 45 4f 46 28 70 !UnexpectedEOF(p
40c0: 61 72 73 65 53 74 72 69 6e 67 28 60 66 28 60 29 arseString(`f(`)
40d0: 29 3b 0d 0a 7d 0d 0a 0d 0a 75 6e 69 74 74 65 73 );..}....unittes
40e0: 74 0d 0a 7b 0d 0a 09 6d 69 78 69 6e 20 45 61 73 t..{...mixin Eas
40f0: 79 41 53 54 3b 0d 0a 09 61 73 73 65 72 74 5f 65 yAST;...assert_e
4100: 71 28 70 61 72 73 65 53 74 72 69 6e 67 28 60 64 q(parseString(`d
4110: 65 66 20 66 6f 6f 28 78 29 20 7b 20 78 2b 31 20 ef foo(x) { x+1
4120: 7d 3b 20 66 6f 6f 60 29 2c 0d 0a 09 09 6c 65 74 }; foo`),....let
4130: 28 22 66 6f 6f 22 2c 20 22 22 2c 0d 0a 09 09 09 ("foo", "",.....
4140: 66 75 6e 28 5b 22 78 22 5d 2c 20 63 61 6c 6c 28 fun(["x"], call(
4150: 76 61 72 28 22 2b 22 29 2c 20 76 61 72 28 22 78 var("+"), var("x
4160: 22 29 2c 20 69 6e 74 6c 28 31 29 29 29 2c 0d 0a "), intl(1))),..
4170: 09 09 09 76 61 72 28 22 66 6f 6f 22 29 29 0d 0a ...var("foo"))..
4180: 09 29 3b 0d 0a 0d 0a 09 61 73 73 65 72 74 5f 65 .);.....assert_e
4190: 71 28 70 61 72 73 65 53 74 72 69 6e 67 28 60 40 q(parseString(`@
41a0: 40 74 79 70 65 20 28 20 78 20 29 20 7b 20 78 20 @type ( x ) { x
41b0: 7d 60 29 2c 0d 0a 09 09 6c 65 74 28 22 40 74 79 }`),....let("@ty
41c0: 70 65 22 2c 20 53 79 73 74 65 6d 4c 61 79 65 72 pe", SystemLayer
41d0: 2c 20 66 75 6e 28 5b 22 78 22 5d 2c 20 76 61 72 , fun(["x"], var
41e0: 28 22 78 22 29 29 2c 20 6c 61 79 28 53 79 73 74 ("x")), lay(Syst
41f0: 65 6d 4c 61 79 65 72 2c 20 76 61 72 28 22 40 74 emLayer, var("@t
4200: 79 70 65 22 29 29 29 20 29 3b 0d 0a 0d 0a 09 61 ype"))) );.....a
4210: 73 73 65 72 74 5f 65 71 28 70 61 72 73 65 53 74 ssert_eq(parseSt
4220: 72 69 6e 67 28 60 7b 7d 60 29 2c 20 63 61 6c 6c ring(`{}`), call
4230: 28 76 61 72 28 22 7b 7d 22 29 29 29 3b 0d 0a 09 (var("{}")));...
4240: 61 73 73 65 72 74 5f 65 71 28 70 61 72 73 65 53 assert_eq(parseS
4250: 74 72 69 6e 67 28 60 7b 66 6f 6f 3a 31 2c 22 62 tring(`{foo:1,"b
4260: 61 72 22 3a 32 7d 60 29 2c 0d 0a 09 09 63 61 6c ar":2}`),....cal
4270: 6c 28 76 61 72 28 22 2e 3d 22 29 2c 20 63 61 6c l(var(".="), cal
4280: 6c 28 76 61 72 28 22 2e 3d 22 29 2c 20 63 61 6c l(var(".="), cal
4290: 6c 28 76 61 72 28 22 7b 7d 22 29 29 2c 20 73 74 l(var("{}")), st
42a0: 72 6c 28 22 66 6f 6f 22 29 2c 20 69 6e 74 6c 28 rl("foo"), intl(
42b0: 31 29 29 2c 20 73 74 72 6c 28 22 62 61 72 22 29 1)), strl("bar")
42c0: 2c 20 69 6e 74 6c 28 32 29 29 29 3b 0d 0a 09 61 , intl(2)));...a
42d0: 73 73 65 72 74 5f 65 71 28 70 61 72 73 65 53 74 ssert_eq(parseSt
42e0: 72 69 6e 67 28 60 7b 7d 2e 66 6f 6f 60 29 2c 20 ring(`{}.foo`),
42f0: 63 61 6c 6c 28 76 61 72 28 22 2e 22 29 2c 63 61 call(var("."),ca
4300: 6c 6c 28 76 61 72 28 22 7b 7d 22 29 29 2c 73 74 ll(var("{}")),st
4310: 72 6c 28 22 66 6f 6f 22 29 29 29 3b 0d 0a 09 61 rl("foo")));...a
4320: 73 73 65 72 74 5f 65 71 28 70 61 72 73 65 53 74 ssert_eq(parseSt
4330: 72 69 6e 67 28 60 7b 7d 2e 3f 66 6f 6f 60 29 2c ring(`{}.?foo`),
4340: 20 63 61 6c 6c 28 76 61 72 28 22 2e 3f 22 29 2c call(var(".?"),
4350: 63 61 6c 6c 28 76 61 72 28 22 7b 7d 22 29 29 2c call(var("{}")),
4360: 73 74 72 6c 28 22 66 6f 6f 22 29 29 29 3b 0d 0a strl("foo")));..
4370: 09 61 73 73 65 72 74 5f 65 71 28 70 61 72 73 65 .assert_eq(parse
4380: 53 74 72 69 6e 67 28 60 78 7b 79 3a 31 7d 60 29 String(`x{y:1}`)
4390: 2c 20 63 61 6c 6c 28 76 61 72 28 22 2e 3d 22 29 , call(var(".=")
43a0: 2c 76 61 72 28 22 78 22 29 2c 73 74 72 6c 28 22 ,var("x"),strl("
43b0: 79 22 29 2c 69 6e 74 6c 28 31 29 29 29 3b 0d 0a y"),intl(1)));..
43c0: 7d 0d 0a 0d 0a 75 6e 69 74 74 65 73 74 0d 0a 7b }....unittest..{
43d0: 0d 0a 09 61 73 73 65 72 74 5f 6e 6f 74 68 72 6f ...assert_nothro
43e0: 77 28 70 61 72 73 65 53 74 72 69 6e 67 28 60 0d w(parseString(`.
43f0: 0a 09 09 63 61 73 65 28 20 31 20 29 0d 0a 09 09 ...case( 1 )....
4400: 09 77 68 65 6e 28 78 29 3a 20 31 0d 0a 09 60 29 .when(x): 1...`)
4410: 29 3b 0d 0a 09 61 73 73 65 72 74 5f 6e 6f 74 68 );...assert_noth
4420: 72 6f 77 28 70 61 72 73 65 53 74 72 69 6e 67 28 row(parseString(
4430: 60 0d 0a 09 09 63 61 73 65 20 31 0d 0a 09 09 09 `....case 1.....
4440: 77 68 65 6e 20 7b 61 61 61 61 3a 5f 7d 3a 20 31 when {aaaa:_}: 1
4450: 0d 0a 09 60 29 29 3b 0d 0a 09 61 73 73 65 72 74 ...`));...assert
4460: 5f 6e 6f 74 68 72 6f 77 28 70 61 72 73 65 53 74 _nothrow(parseSt
4470: 72 69 6e 67 28 60 0d 0a 09 09 63 61 73 65 20 31 ring(`....case 1
4480: 0d 0a 09 09 09 77 68 65 6e 20 7b 61 61 61 61 3a .....when {aaaa:
4490: 40 76 61 6c 75 65 28 78 29 7d 3a 20 31 0d 0a 09 @value(x)}: 1...
44a0: 09 09 77 68 65 6e 20 7b 61 61 61 61 3a 7b 62 62 ..when {aaaa:{bb
44b0: 62 3a 5f 7d 2c 20 63 63 63 3a 31 32 33 7d 3a 20 b:_}, ccc:123}:
44c0: 31 0d 0a 09 60 29 29 3b 0d 0a 7d 0d 0a 1...`));..}..