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 6c 65 78 ..auto pos = lex
1770: 2e 66 72 6f 6e 74 2e 70 6f 73 3b 0d 0a 09 09 69 .front.pos;....i
1780: 66 28 20 6c 65 78 2e 66 72 6f 6e 74 2e 71 75 6f f( lex.front.quo
1790: 74 65 64 20 29 0d 0a 09 09 7b 0d 0a 09 09 09 73 ted )....{.....s
17a0: 63 6f 70 65 28 65 78 69 74 29 20 6c 65 78 2e 70 cope(exit) lex.p
17b0: 6f 70 46 72 6f 6e 74 3b 0d 0a 09 09 09 72 65 74 opFront;.....ret
17c0: 75 72 6e 20 6e 65 77 20 53 74 72 28 70 6f 73 2c urn new Str(pos,
17d0: 20 6c 65 78 2e 66 72 6f 6e 74 2e 73 74 72 29 3b lex.front.str);
17e0: 0d 0a 09 09 7d 0d 0a 09 09 69 66 28 20 69 73 4e ....}....if( isN
17f0: 75 6d 62 65 72 28 6c 65 78 2e 66 72 6f 6e 74 2e umber(lex.front.
1800: 73 74 72 29 20 29 0d 0a 09 09 7b 0d 0a 09 09 09 str) )....{.....
1810: 73 63 6f 70 65 28 65 78 69 74 29 20 6c 65 78 2e scope(exit) lex.
1820: 70 6f 70 46 72 6f 6e 74 3b 0d 0a 09 09 09 72 65 popFront;.....re
1830: 74 75 72 6e 20 6e 65 77 20 49 6e 74 28 70 6f 73 turn new Int(pos
1840: 2c 20 42 69 67 49 6e 74 28 63 61 73 74 28 73 74 , BigInt(cast(st
1850: 72 69 6e 67 29 6c 65 78 2e 66 72 6f 6e 74 2e 73 ring)lex.front.s
1860: 74 72 29 29 3b 0d 0a 09 09 7d 0d 0a 09 09 69 66 tr));....}....if
1870: 28 20 74 72 79 45 61 74 28 22 40 22 29 20 29 0d ( tryEat("@") ).
1880: 0a 09 09 7b 0d 0a 09 09 09 61 75 74 6f 20 6c 61 ...{.....auto la
1890: 79 20 3d 20 22 40 22 7e 65 61 74 49 64 28 22 66 y = "@"~eatId("f
18a0: 6f 72 20 6c 61 79 65 72 20 49 44 22 29 3b 0d 0a or layer ID");..
18b0: 09 09 09 65 61 74 28 22 28 22 2c 20 22 66 6f 72 ...eat("(", "for
18c0: 20 6c 61 79 65 72 65 64 20 65 78 65 63 75 74 69 layered executi
18d0: 6f 6e 22 29 3b 0d 0a 09 09 09 61 75 74 6f 20 65 on");.....auto e
18e0: 20 3d 20 42 6f 64 79 28 29 3b 0d 0a 09 09 09 65 = Body();.....e
18f0: 61 74 28 22 29 22 2c 20 22 61 66 74 65 72 20 22 at(")", "after "
1900: 7e 6c 61 79 7e 22 28 2e 2e 2e 22 29 3b 0d 0a 09 ~lay~"(...");...
1910: 09 09 72 65 74 75 72 6e 20 6e 65 77 20 4c 61 79 ..return new Lay
1920: 28 70 6f 73 2c 20 6c 61 79 2c 20 65 29 3b 0d 0a (pos, lay, e);..
1930: 09 09 7d 0d 0a 09 09 69 66 28 20 74 72 79 45 61 ..}....if( tryEa
1940: 74 28 22 28 22 29 20 29 0d 0a 09 09 7b 0d 0a 09 t("(") )....{...
1950: 09 09 61 75 74 6f 20 65 20 3d 20 42 6f 64 79 28 ..auto e = Body(
1960: 29 3b 0d 0a 09 09 09 65 61 74 28 22 29 22 2c 20 );.....eat(")",
1970: 22 61 66 74 65 72 20 70 61 72 65 6e 74 68 65 73 "after parenthes
1980: 69 7a 65 64 20 65 78 70 72 65 73 73 69 6f 6e 22 ized expression"
1990: 29 3b 0d 0a 09 09 09 72 65 74 75 72 6e 20 65 3b );.....return e;
19a0: 0d 0a 09 09 7d 0d 0a 09 09 69 66 28 20 74 72 79 ....}....if( try
19b0: 45 61 74 28 22 7b 22 29 20 29 0d 0a 09 09 7b 0d Eat("{") )....{.
19c0: 0a 09 09 09 41 53 54 20 65 20 3d 20 6e 65 77 20 ....AST e = new
19d0: 41 70 70 28 70 6f 73 2c 20 6e 65 77 20 56 61 72 App(pos, new Var
19e0: 28 70 6f 73 2c 22 7b 7d 22 29 29 3b 0d 0a 09 09 (pos,"{}"));....
19f0: 09 72 65 74 75 72 6e 20 70 61 72 73 65 54 61 62 .return parseTab
1a00: 6c 65 53 65 74 41 66 74 65 72 42 72 61 63 65 28 leSetAfterBrace(
1a10: 65 29 3b 0d 0a 09 09 7d 0d 0a 09 09 69 66 28 20 e);....}....if(
1a20: 74 72 79 45 61 74 28 22 69 66 22 29 20 29 0d 0a tryEat("if") )..
1a30: 09 09 7b 0d 0a 09 09 09 65 61 74 28 22 28 22 2c ..{.....eat("(",
1a40: 20 22 61 66 74 65 72 20 69 66 22 29 3b 0d 0a 09 "after if");...
1a50: 09 09 61 75 74 6f 20 63 6f 6e 64 20 3d 20 45 28 ..auto cond = E(
1a60: 30 29 3b 0d 0a 09 09 09 65 61 74 28 22 29 22 2c 0);.....eat(")",
1a70: 20 22 61 66 74 65 72 20 69 66 20 63 6f 6e 64 69 "after if condi
1a80: 74 69 6f 6e 22 29 3b 0d 0a 09 09 09 61 75 74 6f tion");.....auto
1a90: 20 74 68 65 6e 50 6f 73 20 3d 20 6c 65 78 2e 66 thenPos = lex.f
1aa0: 72 6f 6e 74 2e 70 6f 73 3b 0d 0a 09 09 09 65 61 ront.pos;.....ea
1ab0: 74 28 22 7b 22 2c 20 22 61 66 74 65 72 20 69 66 t("{", "after if
1ac0: 20 63 6f 6e 64 69 74 69 6f 6e 22 29 3b 0d 0a 09 condition");...
1ad0: 09 09 61 75 74 6f 20 74 68 20 3d 20 42 6f 64 79 ..auto th = Body
1ae0: 28 29 3b 0d 0a 09 09 09 65 61 74 28 22 7d 22 2c ();.....eat("}",
1af0: 20 22 61 66 74 65 72 20 69 66 2d 74 68 65 6e 20 "after if-then
1b00: 62 6f 64 79 22 29 3b 0d 0a 09 09 09 61 75 74 6f body");.....auto
1b10: 20 65 6c 20 3d 20 64 6f 4e 6f 74 68 69 6e 67 45 el = doNothingE
1b20: 78 70 72 65 73 73 69 6f 6e 28 29 3b 0d 0a 09 09 xpression();....
1b30: 09 61 75 74 6f 20 65 6c 73 65 50 6f 73 20 3d 20 .auto elsePos =
1b40: 28 6c 65 78 2e 65 6d 70 74 79 20 3f 20 4c 65 78 (lex.empty ? Lex
1b50: 50 6f 73 69 74 69 6f 6e 2e 64 75 6d 6d 79 20 3a Position.dummy :
1b60: 20 6c 65 78 2e 66 72 6f 6e 74 2e 70 6f 73 29 3b lex.front.pos);
1b70: 0d 0a 09 09 09 69 66 28 20 74 72 79 45 61 74 28 .....if( tryEat(
1b80: 22 65 6c 73 65 22 29 20 29 20 7b 0d 0a 09 09 09 "else") ) {.....
1b90: 09 65 61 74 28 22 7b 22 2c 20 22 61 66 74 65 72 .eat("{", "after
1ba0: 20 65 6c 73 65 22 29 3b 0d 0a 09 09 09 09 65 6c else");......el
1bb0: 20 3d 20 42 6f 64 79 28 29 3b 0d 0a 09 09 09 09 = Body();......
1bc0: 65 61 74 28 22 7d 22 2c 20 22 61 66 74 65 72 20 eat("}", "after
1bd0: 65 6c 73 65 20 62 6f 64 79 22 29 3b 0d 0a 09 09 else body");....
1be0: 09 7d 0d 0a 09 09 09 72 65 74 75 72 6e 20 6e 65 .}.....return ne
1bf0: 77 20 41 70 70 28 70 6f 73 2c 20 0d 0a 09 09 09 w App(pos, .....
1c00: 09 6e 65 77 20 56 61 72 28 70 6f 73 2c 20 22 69 .new Var(pos, "i
1c10: 66 22 29 2c 0d 0a 09 09 09 09 63 6f 6e 64 2c 0d f"),......cond,.
1c20: 0a 09 09 09 09 6e 65 77 20 46 75 6e 28 74 68 65 .....new Fun(the
1c30: 6e 50 6f 73 2c 20 5b 5d 2c 20 74 68 29 2c 0d 0a nPos, [], th),..
1c40: 09 09 09 09 6e 65 77 20 46 75 6e 28 65 6c 73 65 ....new Fun(else
1c50: 50 6f 73 2c 20 5b 5d 2c 20 65 6c 29 0d 0a 09 09 Pos, [], el)....
1c60: 09 29 3b 0d 0a 09 09 7d 0d 0a 09 09 69 66 28 20 .);....}....if(
1c70: 74 72 79 45 61 74 28 22 63 61 73 65 22 29 20 29 tryEat("case") )
1c80: 0d 0a 09 09 7b 0d 0a 09 09 09 72 65 74 75 72 6e ....{.....return
1c90: 20 70 61 72 73 65 50 61 74 74 65 72 6e 4d 61 74 parsePatternMat
1ca0: 63 68 28 70 6f 73 29 3b 0d 0a 09 09 7d 0d 0a 09 ch(pos);....}...
1cb0: 09 69 66 28 20 74 72 79 45 61 74 28 22 66 75 6e .if( tryEat("fun
1cc0: 22 29 20 7c 7c 20 74 72 79 45 61 74 28 22 5c 75 ") || tryEat("\u
1cd0: 30 33 42 42 22 29 20 29 20 2f 2f 20 6c 61 6d 62 03BB") ) // lamb
1ce0: 64 61 21 21 0d 0a 09 09 7b 0d 0a 09 09 09 65 61 da!!....{.....ea
1cf0: 74 28 22 28 22 2c 20 22 61 66 74 65 72 20 66 75 t("(", "after fu
1d00: 6e 22 29 3b 0d 0a 09 09 09 72 65 74 75 72 6e 20 n");.....return
1d10: 70 61 72 73 65 4c 61 6d 62 64 61 41 66 74 65 72 parseLambdaAfter
1d20: 4f 70 65 6e 50 61 72 65 6e 28 70 6f 73 29 3b 0d OpenParen(pos);.
1d30: 0a 09 09 7d 0d 0a 09 09 73 63 6f 70 65 28 65 78 ...}....scope(ex
1d40: 69 74 29 20 6c 65 78 2e 70 6f 70 46 72 6f 6e 74 it) lex.popFront
1d50: 3b 0d 0a 09 09 72 65 74 75 72 6e 20 6e 65 77 20 ;....return new
1d60: 56 61 72 28 70 6f 73 2c 20 6c 65 78 2e 66 72 6f Var(pos, lex.fro
1d70: 6e 74 2e 73 74 72 29 3b 0d 0a 09 7d 0d 0a 0d 0a nt.str);...}....
1d80: 09 41 53 54 20 70 61 72 73 65 50 61 74 74 65 72 .AST parsePatter
1d90: 6e 4d 61 74 63 68 28 4c 65 78 50 6f 73 69 74 69 nMatch(LexPositi
1da0: 6f 6e 20 70 6f 73 29 0d 0a 09 7b 0d 0a 09 09 2f on pos)...{..../
1db0: 2f 20 20 20 63 61 73 65 20 22 28 22 20 70 6d 45 / case "(" pmE
1dc0: 78 70 72 20 22 29 22 20 43 41 53 45 53 0d 0a 09 xpr ")" CASES...
1dd0: 09 2f 2f 3d 3d 3e 0d 0a 09 09 2f 2f 20 20 20 6c .//==>....// l
1de0: 65 74 20 70 6d 56 61 72 20 3d 20 70 6d 45 78 70 et pmVar = pmExp
1df0: 72 20 69 6e 20 28 2e 2e 2e 20 6c 65 74 20 70 6d r in (... let pm
1e00: 54 72 79 46 69 72 73 74 20 3d 20 2e 2e 2e 20 69 TryFirst = ... i
1e10: 6e 20 70 6d 54 72 79 46 69 72 73 74 28 29 29 0d n pmTryFirst()).
1e20: 0a 09 09 65 61 74 28 22 28 22 2c 20 22 61 66 74 ...eat("(", "aft
1e30: 65 72 20 63 61 73 65 22 29 3b 0d 0a 09 09 41 53 er case");....AS
1e40: 54 20 20 20 70 6d 45 78 70 72 20 3d 20 45 28 30 T pmExpr = E(0
1e50: 29 3b 0d 0a 09 09 65 61 74 28 22 29 22 2c 20 22 );....eat(")", "
1e60: 61 66 74 65 72 20 63 61 73 65 22 29 3b 0d 0a 09 after case");...
1e70: 09 73 74 72 69 6e 67 20 70 6d 56 61 72 20 3d 20 .string pmVar =
1e80: 66 72 65 73 68 56 61 72 4e 61 6d 65 28 29 3b 0d freshVarName();.
1e90: 0a 09 09 73 74 72 69 6e 67 20 70 6d 54 72 79 46 ...string pmTryF
1ea0: 69 72 73 74 20 3d 20 66 72 65 73 68 56 61 72 4e irst = freshVarN
1eb0: 61 6d 65 28 29 3b 0d 0a 09 09 41 53 54 20 20 20 ame();....AST
1ec0: 70 6d 42 6f 64 79 20 3d 20 70 61 72 73 65 50 61 pmBody = parsePa
1ed0: 74 74 65 72 6e 4d 61 74 63 68 43 61 73 65 73 28 tternMatchCases(
1ee0: 70 6d 56 61 72 2c 20 70 6d 54 72 79 46 69 72 73 pmVar, pmTryFirs
1ef0: 74 2c 0d 0a 09 09 09 6e 65 77 20 41 70 70 28 70 t,.....new App(p
1f00: 6f 73 2c 20 6e 65 77 20 56 61 72 28 70 6f 73 2c os, new Var(pos,
1f10: 20 70 6d 54 72 79 46 69 72 73 74 29 29 29 3b 0d pmTryFirst)));.
1f20: 0a 09 09 72 65 74 75 72 6e 20 6e 65 77 20 4c 65 ...return new Le
1f30: 74 28 70 6f 73 2c 20 70 6d 56 61 72 2c 20 5b 5d t(pos, pmVar, []
1f40: 2c 20 70 6d 45 78 70 72 2c 20 70 6d 42 6f 64 79 , pmExpr, pmBody
1f50: 29 3b 0d 0a 09 7d 0d 0a 0d 0a 09 41 53 54 20 70 );...}.....AST p
1f60: 61 72 73 65 50 61 74 74 65 72 6e 4d 61 74 63 68 arsePatternMatch
1f70: 43 61 73 65 73 28 73 74 72 69 6e 67 20 70 6d 56 Cases(string pmV
1f80: 61 72 2c 20 73 74 72 69 6e 67 20 74 72 79 54 68 ar, string tryTh
1f90: 69 73 42 72 61 6e 63 68 56 61 72 2c 20 41 53 54 isBranchVar, AST
1fa0: 20 74 68 65 6e 44 6f 54 68 69 73 29 0d 0a 09 7b thenDoThis)...{
1fb0: 0d 0a 09 09 2f 2f 20 20 20 20 77 68 65 6e 28 20 ....// when(
1fc0: 70 61 74 20 29 20 7b 20 63 42 6f 64 79 20 7d 0d pat ) { cBody }.
1fd0: 0a 09 09 2f 2f 3d 3d 3e 0d 0a 09 09 2f 2f 20 20 ...//==>....//
1fe0: 20 20 2e 2e 2e 20 6c 65 74 20 66 61 69 6c 42 72 ... let failBr
1ff0: 61 6e 63 68 56 61 72 20 3d 20 2e 2e 2e 20 69 6e anchVar = ... in
2000: 0d 0a 09 09 2f 2f 20 20 20 20 6c 65 74 20 74 72 ....// let tr
2010: 79 54 68 69 73 42 72 61 6e 63 68 56 61 72 20 3d yThisBranchVar =
2020: 20 66 75 6e 28 29 7b 20 69 66 28 74 65 73 74 29 fun(){ if(test)
2030: 7b 63 42 6f 64 79 7d 65 6c 73 65 7b 66 61 69 6c {cBody}else{fail
2040: 42 72 61 6e 63 68 56 61 72 28 29 7d 20 7d 20 69 BranchVar()} } i
2050: 6e 20 74 68 65 6e 44 6f 54 68 69 73 0d 0a 09 09 n thenDoThis....
2060: 69 66 28 20 74 72 79 45 61 74 28 22 77 68 65 6e if( tryEat("when
2070: 22 29 20 29 0d 0a 09 09 7b 0d 0a 09 09 09 61 75 ") )....{.....au
2080: 74 6f 20 70 6f 73 20 3d 20 63 75 72 72 65 6e 74 to pos = current
2090: 50 6f 73 69 74 69 6f 6e 28 29 3b 0d 0a 09 09 09 Position();.....
20a0: 73 74 72 69 6e 67 20 66 61 69 6c 42 72 61 6e 63 string failBranc
20b0: 68 56 61 72 20 3d 20 66 72 65 73 68 56 61 72 4e hVar = freshVarN
20c0: 61 6d 65 28 29 3b 0d 0a 0d 0a 09 09 09 65 61 74 ame();.......eat
20d0: 28 22 28 22 2c 20 22 61 66 74 65 72 20 77 68 65 ("(", "after whe
20e0: 6e 22 29 3b 0d 0a 09 09 09 61 75 74 6f 20 70 72 n");.....auto pr
20f0: 20 3d 20 70 61 72 73 65 50 61 74 74 65 72 6e 28 = parsePattern(
2100: 29 3b 0d 0a 09 09 09 65 61 74 28 22 29 22 2c 20 );.....eat(")",
2110: 22 61 66 74 65 72 20 77 68 65 6e 22 29 3b 0d 0a "after when");..
2120: 09 09 09 65 61 74 28 22 7b 22 2c 20 22 61 66 74 ...eat("{", "aft
2130: 65 72 20 70 61 74 74 65 72 6e 22 29 3b 0d 0a 09 er pattern");...
2140: 09 09 41 53 54 20 63 42 6f 64 79 20 3d 20 42 6f ..AST cBody = Bo
2150: 64 79 28 29 3b 0d 0a 09 09 09 41 53 54 20 6a 75 dy();.....AST ju
2160: 64 67 65 6d 65 6e 74 20 3d 20 6e 65 77 20 41 70 dgement = new Ap
2170: 70 28 70 6f 73 2c 20 6e 65 77 20 56 61 72 28 70 p(pos, new Var(p
2180: 6f 73 2c 20 22 69 66 22 29 2c 0d 0a 09 09 09 09 os, "if"),......
2190: 70 70 54 65 73 74 28 70 6d 56 61 72 2c 20 70 72 ppTest(pmVar, pr
21a0: 29 2c 20 6e 65 77 20 46 75 6e 28 70 6f 73 2c 5b ), new Fun(pos,[
21b0: 5d 2c 70 70 42 69 6e 64 28 70 6d 56 61 72 2c 20 ],ppBind(pmVar,
21c0: 70 72 2c 20 63 42 6f 64 79 29 29 2c 0d 0a 09 09 pr, cBody)),....
21d0: 09 09 6e 65 77 20 56 61 72 28 70 6f 73 2c 20 66 ..new Var(pos, f
21e0: 61 69 6c 42 72 61 6e 63 68 56 61 72 29 29 3b 0d ailBranchVar));.
21f0: 0a 09 09 09 65 61 74 28 22 7d 22 2c 20 22 61 66 ....eat("}", "af
2200: 74 65 72 20 70 61 74 74 65 72 6e 20 63 6c 61 75 ter pattern clau
2210: 73 65 22 29 3b 0d 0a 09 09 09 72 65 74 75 72 6e se");.....return
2220: 20 70 61 72 73 65 50 61 74 74 65 72 6e 4d 61 74 parsePatternMat
2230: 63 68 43 61 73 65 73 28 70 6d 56 61 72 2c 20 66 chCases(pmVar, f
2240: 61 69 6c 42 72 61 6e 63 68 56 61 72 2c 20 0d 0a ailBranchVar, ..
2250: 09 09 09 09 6e 65 77 20 4c 65 74 28 70 6f 73 2c ....new Let(pos,
2260: 20 74 72 79 54 68 69 73 42 72 61 6e 63 68 56 61 tryThisBranchVa
2270: 72 2c 20 5b 5d 2c 0d 0a 09 09 09 09 09 6e 65 77 r, [],.......new
2280: 20 46 75 6e 28 70 6f 73 2c 5b 5d 2c 6a 75 64 67 Fun(pos,[],judg
2290: 65 6d 65 6e 74 29 2c 20 74 68 65 6e 44 6f 54 68 ement), thenDoTh
22a0: 69 73 29 0d 0a 09 09 09 29 3b 0d 0a 09 09 7d 0d is).....);....}.
22b0: 0a 09 09 65 6c 73 65 0d 0a 09 09 7b 0d 0a 09 09 ...else....{....
22c0: 09 61 75 74 6f 20 70 6f 73 20 3d 20 63 75 72 72 .auto pos = curr
22d0: 65 6e 74 50 6f 73 69 74 69 6f 6e 28 29 3b 0d 0a entPosition();..
22e0: 09 09 09 41 53 54 20 64 6f 4e 6f 74 68 69 6e 67 ...AST doNothing
22f0: 20 3d 20 6e 65 77 20 46 75 6e 28 70 6f 73 2c 5b = new Fun(pos,[
2300: 5d 2c 0d 0a 09 09 09 09 6e 65 77 20 53 74 72 28 ],......new Str(
2310: 70 6f 73 2c 20 73 70 72 69 6e 74 66 21 22 28 70 pos, sprintf!"(p
2320: 61 74 74 65 72 6e 20 6d 61 74 63 68 20 66 61 69 attern match fai
2330: 6c 75 72 65 3a 25 73 29 22 28 70 6f 73 29 29 29 lure:%s)"(pos)))
2340: 3b 0d 0a 09 09 09 72 65 74 75 72 6e 20 6e 65 77 ;.....return new
2350: 20 4c 65 74 28 63 75 72 72 65 6e 74 50 6f 73 69 Let(currentPosi
2360: 74 69 6f 6e 28 29 2c 20 74 72 79 54 68 69 73 42 tion(), tryThisB
2370: 72 61 6e 63 68 56 61 72 2c 20 5b 5d 2c 20 64 6f ranchVar, [], do
2380: 4e 6f 74 68 69 6e 67 2c 20 74 68 65 6e 44 6f 54 Nothing, thenDoT
2390: 68 69 73 29 3b 0d 0a 09 09 7d 0d 0a 09 7d 0d 0a his);....}...}..
23a0: 0d 0a 2f 2f 20 68 61 67 65 73 68 69 6b 75 20 74 ..// hageshiku t
23b0: 65 6e 75 6b 69 0d 0a 09 61 62 73 74 72 61 63 74 enuki...abstract
23c0: 20 63 6c 61 73 73 20 53 69 6e 67 6c 65 50 61 74 class SinglePat
23d0: 74 65 72 6e 0d 0a 09 7b 0d 0a 09 09 73 74 72 69 tern...{....stri
23e0: 6e 67 5b 5d 20 70 61 74 68 3b 0d 0a 09 09 6d 69 ng[] path;....mi
23f0: 78 69 6e 20 53 69 6d 70 6c 65 43 6c 61 73 73 3b xin SimpleClass;
2400: 0d 0a 09 09 70 72 69 76 61 74 65 20 41 53 54 20 ....private AST
2410: 61 63 63 65 73 73 28 73 74 72 69 6e 67 20 70 6d access(string pm
2420: 56 61 72 2c 20 73 74 72 69 6e 67 5b 5d 20 70 61 Var, string[] pa
2430: 74 68 29 20 7b 0d 0a 09 09 09 61 75 74 6f 20 70 th) {.....auto p
2440: 6f 73 20 3d 20 63 75 72 72 65 6e 74 50 6f 73 69 os = currentPosi
2450: 74 69 6f 6e 28 29 3b 0d 0a 09 09 09 41 53 54 20 tion();.....AST
2460: 65 20 3d 20 6e 65 77 20 56 61 72 28 70 6f 73 2c e = new Var(pos,
2470: 20 70 6d 56 61 72 29 3b 0d 0a 09 09 09 66 6f 72 pmVar);.....for
2480: 65 61 63 68 28 70 3b 20 70 61 74 68 29 0d 0a 09 each(p; path)...
2490: 09 09 09 65 20 3d 20 6e 65 77 20 41 70 70 28 70 ...e = new App(p
24a0: 6f 73 2c 20 6e 65 77 20 56 61 72 28 70 6f 73 2c os, new Var(pos,
24b0: 20 22 2e 22 29 2c 20 65 2c 20 6e 65 77 20 53 74 "."), e, new St
24c0: 72 28 70 6f 73 2c 20 70 29 29 3b 0d 0a 09 09 09 r(pos, p));.....
24d0: 72 65 74 75 72 6e 20 65 3b 0d 0a 09 09 7d 0d 0a return e;....}..
24e0: 09 09 70 72 69 76 61 74 65 20 41 53 54 20 68 61 ..private AST ha
24f0: 73 28 41 53 54 20 65 2c 20 73 74 72 69 6e 67 20 s(AST e, string
2500: 6b 29 20 7b 0d 0a 09 09 09 61 75 74 6f 20 70 6f k) {.....auto po
2510: 73 20 3d 20 63 75 72 72 65 6e 74 50 6f 73 69 74 s = currentPosit
2520: 69 6f 6e 28 29 3b 0d 0a 09 09 09 72 65 74 75 72 ion();.....retur
2530: 6e 20 6f 70 41 6e 64 41 6e 64 28 0d 0a 09 09 09 n opAndAnd(.....
2540: 09 6e 65 77 20 41 70 70 28 70 6f 73 2c 20 6e 65 .new App(pos, ne
2550: 77 20 56 61 72 28 70 6f 73 2c 20 22 5f 69 73 74 w Var(pos, "_ist
2560: 61 62 6c 65 22 29 2c 20 65 29 2c 0d 0a 09 09 09 able"), e),.....
2570: 09 6e 65 77 20 41 70 70 28 70 6f 73 2c 20 6e 65 .new App(pos, ne
2580: 77 20 56 61 72 28 70 6f 73 2c 20 22 2e 3f 22 29 w Var(pos, ".?")
2590: 2c 20 65 2c 20 6e 65 77 20 53 74 72 28 70 6f 73 , e, new Str(pos
25a0: 2c 20 6b 29 29 0d 0a 09 09 09 29 3b 0d 0a 09 09 , k)).....);....
25b0: 7d 0d 0a 09 09 70 72 69 76 61 74 65 20 41 53 54 }....private AST
25c0: 20 6f 70 41 6e 64 41 6e 64 28 41 53 54 20 61 2c opAndAnd(AST a,
25d0: 20 41 53 54 20 62 29 20 7b 0d 0a 09 09 09 69 66 AST b) {.....if
25e0: 28 20 61 20 69 73 20 6e 75 6c 6c 20 29 20 72 65 ( a is null ) re
25f0: 74 75 72 6e 20 62 3b 0d 0a 09 09 09 69 66 28 20 turn b;.....if(
2600: 62 20 69 73 20 6e 75 6c 6c 20 29 20 72 65 74 75 b is null ) retu
2610: 72 6e 20 61 3b 0d 0a 09 09 09 61 75 74 6f 20 70 rn a;.....auto p
2620: 6f 73 20 3d 20 63 75 72 72 65 6e 74 50 6f 73 69 os = currentPosi
2630: 74 69 6f 6e 28 29 3b 0d 0a 09 09 09 72 65 74 75 tion();.....retu
2640: 72 6e 20 6e 65 77 20 41 70 70 28 70 6f 73 2c 0d rn new App(pos,.
2650: 0a 09 09 09 09 6e 65 77 20 56 61 72 28 70 6f 73 .....new Var(pos
2660: 2c 20 22 69 66 22 29 2c 0d 0a 09 09 09 09 61 2c , "if"),......a,
2670: 0d 0a 09 09 09 09 6e 65 77 20 46 75 6e 28 70 6f ......new Fun(po
2680: 73 2c 20 5b 5d 2c 20 62 29 2c 0d 0a 09 09 09 09 s, [], b),......
2690: 6e 65 77 20 46 75 6e 28 70 6f 73 2c 20 5b 5d 2c new Fun(pos, [],
26a0: 20 6e 65 77 20 49 6e 74 28 70 6f 73 2c 20 30 29 new Int(pos, 0)
26b0: 29 0d 0a 09 09 09 29 3b 0d 0a 09 09 7d 0d 0a 09 ).....);....}...
26c0: 09 41 53 54 20 70 70 54 65 73 74 28 73 74 72 69 .AST ppTest(stri
26d0: 6e 67 20 70 6d 56 61 72 29 20 7b 0d 0a 09 09 09 ng pmVar) {.....
26e0: 41 53 54 20 63 20 3d 20 6e 75 6c 6c 3b 0d 0a 09 AST c = null;...
26f0: 09 09 66 6f 72 28 69 6e 74 20 69 3d 30 3b 20 69 ..for(int i=0; i
2700: 3c 70 61 74 68 2e 6c 65 6e 67 74 68 3b 20 2b 2b <path.length; ++
2710: 69 29 0d 0a 09 09 09 09 63 20 3d 20 6f 70 41 6e i)......c = opAn
2720: 64 41 6e 64 28 63 2c 20 68 61 73 28 61 63 63 65 dAnd(c, has(acce
2730: 73 73 28 70 6d 56 61 72 2c 70 61 74 68 5b 30 2e ss(pmVar,path[0.
2740: 2e 69 5d 29 2c 20 70 61 74 68 5b 69 5d 29 29 3b .i]), path[i]));
2750: 0d 0a 09 09 09 72 65 74 75 72 6e 20 63 3b 0d 0a .....return c;..
2760: 09 09 7d 0d 0a 09 09 41 53 54 20 70 70 42 69 6e ..}....AST ppBin
2770: 64 28 73 74 72 69 6e 67 20 70 6d 56 61 72 2c 20 d(string pmVar,
2780: 41 53 54 20 74 68 65 6e 44 6f 54 68 69 73 29 20 AST thenDoThis)
2790: 7b 20 72 65 74 75 72 6e 20 74 68 65 6e 44 6f 54 { return thenDoT
27a0: 68 69 73 3b 20 7d 0d 0a 09 7d 0d 0a 09 63 6c 61 his; }...}...cla
27b0: 73 73 20 57 69 6c 64 50 61 74 74 65 72 6e 20 3a ss WildPattern :
27c0: 20 53 69 6e 67 6c 65 50 61 74 74 65 72 6e 0d 0a SinglePattern..
27d0: 09 7b 0d 0a 09 09 6d 69 78 69 6e 20 53 69 6d 70 .{....mixin Simp
27e0: 6c 65 43 6c 61 73 73 3b 0d 0a 09 7d 0d 0a 09 63 leClass;...}...c
27f0: 6c 61 73 73 20 56 61 72 50 61 74 74 65 72 6e 20 lass VarPattern
2800: 3a 20 53 69 6e 67 6c 65 50 61 74 74 65 72 6e 0d : SinglePattern.
2810: 0a 09 7b 0d 0a 09 09 73 74 72 69 6e 67 20 6e 61 ..{....string na
2820: 6d 65 3b 0d 0a 09 09 6d 69 78 69 6e 20 53 69 6d me;....mixin Sim
2830: 70 6c 65 43 6c 61 73 73 3b 0d 0a 09 09 41 53 54 pleClass;....AST
2840: 20 70 70 42 69 6e 64 28 73 74 72 69 6e 67 20 70 ppBind(string p
2850: 6d 56 61 72 2c 20 41 53 54 20 74 68 65 6e 44 6f mVar, AST thenDo
2860: 54 68 69 73 29 20 7b 0d 0a 09 09 09 61 75 74 6f This) {.....auto
2870: 20 70 6f 73 20 3d 20 63 75 72 72 65 6e 74 50 6f pos = currentPo
2880: 73 69 74 69 6f 6e 28 29 3b 0d 0a 09 09 09 72 65 sition();.....re
2890: 74 75 72 6e 20 6e 65 77 20 4c 65 74 28 70 6f 73 turn new Let(pos
28a0: 2c 20 6e 61 6d 65 2c 20 5b 5d 2c 20 61 63 63 65 , name, [], acce
28b0: 73 73 28 70 6d 56 61 72 2c 70 61 74 68 29 2c 20 ss(pmVar,path),
28c0: 74 68 65 6e 44 6f 54 68 69 73 29 3b 0d 0a 09 09 thenDoThis);....
28d0: 7d 0d 0a 09 7d 0d 0a 09 63 6c 61 73 73 20 43 6f }...}...class Co
28e0: 6e 73 74 61 6e 74 50 61 74 74 65 72 6e 20 3a 20 nstantPattern :
28f0: 53 69 6e 67 6c 65 50 61 74 74 65 72 6e 0d 0a 09 SinglePattern...
2900: 7b 0d 0a 09 09 41 53 54 20 65 3b 0d 0a 09 09 6d {....AST e;....m
2910: 69 78 69 6e 20 53 69 6d 70 6c 65 43 6c 61 73 73 ixin SimpleClass
2920: 3b 0d 0a 09 09 41 53 54 20 70 70 54 65 73 74 28 ;....AST ppTest(
2930: 73 74 72 69 6e 67 20 70 6d 56 61 72 29 20 7b 0d string pmVar) {.
2940: 0a 09 09 09 61 75 74 6f 20 70 6f 73 20 3d 20 63 ....auto pos = c
2950: 75 72 72 65 6e 74 50 6f 73 69 74 69 6f 6e 28 29 urrentPosition()
2960: 3b 0d 0a 09 09 09 72 65 74 75 72 6e 20 6f 70 41 ;.....return opA
2970: 6e 64 41 6e 64 28 20 73 75 70 65 72 2e 70 70 54 ndAnd( super.ppT
2980: 65 73 74 28 70 6d 56 61 72 29 2c 0d 0a 09 09 09 est(pmVar),.....
2990: 09 6e 65 77 20 41 70 70 28 70 6f 73 2c 20 6e 65 .new App(pos, ne
29a0: 77 20 56 61 72 28 70 6f 73 2c 22 3d 3d 22 29 2c w Var(pos,"=="),
29b0: 20 61 63 63 65 73 73 28 70 6d 56 61 72 2c 70 61 access(pmVar,pa
29c0: 74 68 29 2c 20 65 29 0d 0a 09 09 09 29 3b 0d 0a th), e).....);..
29d0: 09 09 7d 0d 0a 09 7d 0d 0a 0d 0a 09 53 69 6e 67 ..}...}.....Sing
29e0: 6c 65 50 61 74 74 65 72 6e 5b 5d 20 70 61 72 73 lePattern[] pars
29f0: 65 50 61 74 74 65 72 6e 28 73 74 72 69 6e 67 5b ePattern(string[
2a00: 5d 20 70 61 74 68 20 3d 20 6e 75 6c 6c 29 0d 0a ] path = null)..
2a10: 09 7b 0d 0a 09 09 53 69 6e 67 6c 65 50 61 74 74 .{....SinglePatt
2a20: 65 72 6e 5b 5d 20 72 65 73 75 6c 74 3b 0d 0a 09 ern[] result;...
2a30: 09 69 66 28 20 74 72 79 45 61 74 28 22 7b 22 29 .if( tryEat("{")
2a40: 20 29 0d 0a 09 09 7b 0d 0a 09 09 09 69 66 28 20 )....{.....if(
2a50: 21 74 72 79 45 61 74 28 22 7d 22 29 20 29 20 7b !tryEat("}") ) {
2a60: 0d 0a 09 09 09 09 64 6f 20 7b 0d 0a 09 09 09 09 ......do {......
2a70: 09 73 74 72 69 6e 67 20 6b 65 79 20 3d 20 65 61 .string key = ea
2a80: 74 49 64 28 22 69 6e 20 74 61 62 6c 65 20 70 61 tId("in table pa
2a90: 74 74 65 72 6e 22 2c 20 41 6c 6c 6f 77 51 75 6f ttern", AllowQuo
2aa0: 74 65 64 29 3b 0d 0a 09 09 09 09 09 65 61 74 28 ted);.......eat(
2ab0: 22 3a 22 2c 20 22 61 66 74 65 72 20 66 69 65 6c ":", "after fiel
2ac0: 64 2d 69 64 20 69 6e 20 74 61 62 6c 65 20 70 61 d-id in table pa
2ad0: 74 74 65 72 6e 22 29 3b 0d 0a 09 09 09 09 09 72 ttern");.......r
2ae0: 65 73 75 6c 74 20 7e 3d 20 70 61 72 73 65 50 61 esult ~= parsePa
2af0: 74 74 65 72 6e 28 70 61 74 68 20 7e 20 6b 65 79 ttern(path ~ key
2b00: 29 3b 0d 0a 09 09 09 09 7d 20 77 68 69 6c 65 28 );......} while(
2b10: 20 74 72 79 45 61 74 28 22 2c 22 29 20 29 3b 0d tryEat(",") );.
2b20: 0a 09 09 09 09 65 61 74 28 22 7d 22 2c 20 22 61 .....eat("}", "a
2b30: 74 20 74 68 65 20 65 6e 64 20 6f 66 20 74 61 62 t the end of tab
2b40: 6c 65 20 70 61 74 74 65 72 6e 22 29 3b 0d 0a 09 le pattern");...
2b50: 09 09 7d 0d 0a 09 09 7d 0d 0a 09 09 65 6c 73 65 ..}....}....else
2b60: 0d 0a 09 09 7b 0d 0a 09 09 09 41 53 54 20 65 20 ....{.....AST e
2b70: 3d 20 45 28 30 29 3b 0d 0a 09 09 09 69 66 28 61 = E(0);.....if(a
2b80: 75 74 6f 20 65 76 20 3d 20 63 61 73 74 28 56 61 uto ev = cast(Va
2b90: 72 29 65 29 0d 0a 09 09 09 09 69 66 28 65 76 2e r)e)......if(ev.
2ba0: 6e 61 6d 65 20 3d 3d 20 22 5f 22 29 0d 0a 09 09 name == "_")....
2bb0: 09 09 09 72 65 73 75 6c 74 20 7e 3d 20 6e 65 77 ...result ~= new
2bc0: 20 57 69 6c 64 50 61 74 74 65 72 6e 28 70 61 74 WildPattern(pat
2bd0: 68 29 3b 0d 0a 09 09 09 09 65 6c 73 65 0d 0a 09 h);......else...
2be0: 09 09 09 09 72 65 73 75 6c 74 20 7e 3d 20 6e 65 ....result ~= ne
2bf0: 77 20 56 61 72 50 61 74 74 65 72 6e 28 70 61 74 w VarPattern(pat
2c00: 68 2c 20 65 76 2e 6e 61 6d 65 29 3b 0d 0a 09 09 h, ev.name);....
2c10: 09 65 6c 73 65 0d 0a 09 09 09 09 72 65 73 75 6c .else......resul
2c20: 74 20 7e 3d 20 6e 65 77 20 43 6f 6e 73 74 61 6e t ~= new Constan
2c30: 74 50 61 74 74 65 72 6e 28 70 61 74 68 2c 20 65 tPattern(path, e
2c40: 29 3b 0d 0a 09 09 7d 0d 0a 09 09 72 65 74 75 72 );....}....retur
2c50: 6e 20 72 65 73 75 6c 74 3b 0d 0a 09 7d 0d 0a 0d n result;...}...
2c60: 0a 09 41 53 54 20 70 70 54 65 73 74 28 73 74 72 ..AST ppTest(str
2c70: 69 6e 67 20 70 6d 56 61 72 2c 20 53 69 6e 67 6c ing pmVar, Singl
2c80: 65 50 61 74 74 65 72 6e 5b 5d 20 70 61 74 73 29 ePattern[] pats)
2c90: 0d 0a 09 7b 0d 0a 09 09 61 75 74 6f 20 70 6f 73 ...{....auto pos
2ca0: 20 3d 20 63 75 72 72 65 6e 74 50 6f 73 69 74 69 = currentPositi
2cb0: 6f 6e 28 29 3b 0d 0a 09 09 41 53 54 20 63 6f 6e on();....AST con
2cc0: 64 20 3d 20 6e 75 6c 6c 3b 0d 0a 09 09 66 6f 72 d = null;....for
2cd0: 65 61 63 68 28 70 3b 20 70 61 74 73 29 20 7b 0d each(p; pats) {.
2ce0: 0a 09 09 09 41 53 54 20 63 32 20 3d 20 70 2e 70 ....AST c2 = p.p
2cf0: 70 54 65 73 74 28 70 6d 56 61 72 29 3b 0d 0a 09 pTest(pmVar);...
2d00: 09 09 69 66 28 20 63 32 20 21 69 73 20 6e 75 6c ..if( c2 !is nul
2d10: 6c 20 29 0d 0a 09 09 09 09 63 6f 6e 64 20 3d 20 l )......cond =
2d20: 63 6f 6e 64 20 69 73 20 6e 75 6c 6c 20 3f 20 63 cond is null ? c
2d30: 32 0d 0a 09 09 09 09 20 20 20 20 3a 20 6e 65 77 2...... : new
2d40: 20 41 70 70 28 70 6f 73 2c 20 6e 65 77 20 56 61 App(pos, new Va
2d50: 72 28 70 6f 73 2c 22 26 26 22 29 2c 20 63 6f 6e r(pos,"&&"), con
2d60: 64 2c 20 63 32 29 3b 0d 0a 09 09 7d 0d 0a 09 09 d, c2);....}....
2d70: 72 65 74 75 72 6e 20 63 6f 6e 64 20 69 73 20 6e return cond is n
2d80: 75 6c 6c 20 3f 20 6e 65 77 20 49 6e 74 28 63 75 ull ? new Int(cu
2d90: 72 72 65 6e 74 50 6f 73 69 74 69 6f 6e 28 29 2c rrentPosition(),
2da0: 20 31 29 20 3a 20 63 6f 6e 64 3b 0d 0a 09 7d 0d 1) : cond;...}.
2db0: 0a 0d 0a 09 41 53 54 20 70 70 42 69 6e 64 28 73 ....AST ppBind(s
2dc0: 74 72 69 6e 67 20 70 6d 56 61 72 2c 20 53 69 6e tring pmVar, Sin
2dd0: 67 6c 65 50 61 74 74 65 72 6e 5b 5d 20 70 61 74 glePattern[] pat
2de0: 73 2c 20 41 53 54 20 74 68 65 6e 44 6f 54 68 69 s, AST thenDoThi
2df0: 73 29 0d 0a 09 7b 0d 0a 09 09 66 6f 72 65 61 63 s)...{....foreac
2e00: 68 28 70 3b 20 70 61 74 73 29 0d 0a 09 09 09 74 h(p; pats).....t
2e10: 68 65 6e 44 6f 54 68 69 73 20 3d 20 70 2e 70 70 henDoThis = p.pp
2e20: 42 69 6e 64 28 70 6d 56 61 72 2c 20 74 68 65 6e Bind(pmVar, then
2e30: 44 6f 54 68 69 73 29 3b 0d 0a 09 09 72 65 74 75 DoThis);....retu
2e40: 72 6e 20 74 68 65 6e 44 6f 54 68 69 73 3b 0d 0a rn thenDoThis;..
2e50: 09 7d 0d 0a 0d 0a 09 41 53 54 20 70 61 72 73 65 .}.....AST parse
2e60: 49 64 28 29 0d 0a 09 7b 0d 0a 09 09 73 63 6f 70 Id()...{....scop
2e70: 65 28 65 78 69 74 29 20 6c 65 78 2e 70 6f 70 46 e(exit) lex.popF
2e80: 72 6f 6e 74 3b 0d 0a 09 09 72 65 74 75 72 6e 20 ront;....return
2e90: 6e 65 77 20 53 74 72 28 63 75 72 72 65 6e 74 50 new Str(currentP
2ea0: 6f 73 69 74 69 6f 6e 28 29 2c 20 6c 65 78 2e 66 osition(), lex.f
2eb0: 72 6f 6e 74 2e 73 74 72 29 3b 0d 0a 09 7d 0d 0a ront.str);...}..
2ec0: 0d 0a 09 41 53 54 20 70 61 72 73 65 4c 61 6d 62 ...AST parseLamb
2ed0: 64 61 41 66 74 65 72 4f 70 65 6e 50 61 72 65 6e daAfterOpenParen
2ee0: 28 4c 65 78 50 6f 73 69 74 69 6f 6e 20 70 6f 73 (LexPosition pos
2ef0: 29 0d 0a 09 7b 0d 0a 09 09 50 61 72 61 6d 65 74 )...{....Paramet
2f00: 65 72 5b 5d 20 70 61 72 61 6d 73 3b 0d 0a 09 09 er[] params;....
2f10: 77 68 69 6c 65 28 20 21 74 72 79 45 61 74 28 22 while( !tryEat("
2f20: 29 22 29 20 29 0d 0a 09 09 7b 0d 0a 09 09 09 70 )") )....{.....p
2f30: 61 72 61 6d 73 20 7e 3d 20 70 61 72 73 65 50 61 arams ~= parsePa
2f40: 72 61 6d 28 29 3b 0d 0a 09 09 09 69 66 28 20 21 ram();.....if( !
2f50: 74 72 79 45 61 74 28 22 2c 22 29 20 29 20 7b 0d tryEat(",") ) {.
2f60: 0a 09 09 09 09 65 61 74 28 22 29 22 2c 20 22 61 .....eat(")", "a
2f70: 66 74 65 72 20 66 75 6e 63 74 69 6f 6e 20 70 61 fter function pa
2f80: 72 61 6d 65 74 65 72 73 22 29 3b 0d 0a 09 09 09 rameters");.....
2f90: 09 62 72 65 61 6b 3b 0d 0a 09 09 09 7d 0d 0a 09 .break;.....}...
2fa0: 09 7d 0d 0a 09 09 65 61 74 28 22 7b 22 2c 20 22 .}....eat("{", "
2fb0: 61 66 74 65 72 20 66 75 6e 63 74 69 6f 6e 20 70 after function p
2fc0: 61 72 61 6d 65 74 65 72 73 22 29 3b 0d 0a 09 09 arameters");....
2fd0: 61 75 74 6f 20 66 75 6e 62 6f 64 79 20 3d 20 42 auto funbody = B
2fe0: 6f 64 79 28 29 3b 0d 0a 09 09 65 61 74 28 22 7d ody();....eat("}
2ff0: 22 2c 20 22 61 66 74 65 72 20 66 75 6e 63 74 69 ", "after functi
3000: 6f 6e 20 62 6f 64 79 22 29 3b 0d 0a 09 09 72 65 on body");....re
3010: 74 75 72 6e 20 6e 65 77 20 46 75 6e 28 70 6f 73 turn new Fun(pos
3020: 2c 20 70 61 72 61 6d 73 2c 20 66 75 6e 62 6f 64 , params, funbod
3030: 79 29 3b 0d 0a 09 7d 0d 0a 0d 0a 09 50 61 72 61 y);...}.....Para
3040: 6d 65 74 65 72 20 70 61 72 73 65 50 61 72 61 6d meter parseParam
3050: 28 29 0d 0a 09 7b 0d 0a 09 09 73 74 72 69 6e 67 ()...{....string
3060: 20 76 61 72 3b 0d 0a 09 09 73 74 72 69 6e 67 5b var;....string[
3070: 5d 20 6c 61 79 3b 0d 0a 09 09 77 68 69 6c 65 28 ] lay;....while(
3080: 20 21 63 6c 6f 73 69 6e 67 42 72 61 63 6b 65 74 !closingBracket
3090: 28 29 20 26 26 20 21 6c 65 78 2e 65 6d 70 74 79 () && !lex.empty
30a0: 20 26 26 20 6c 65 78 2e 66 72 6f 6e 74 2e 73 74 && lex.front.st
30b0: 72 21 3d 22 2c 22 20 29 0d 0a 09 09 7b 0d 0a 09 r!="," )....{...
30c0: 09 09 61 75 74 6f 20 70 6f 73 20 3d 20 63 75 72 ..auto pos = cur
30d0: 72 65 6e 74 50 6f 73 69 74 69 6f 6e 28 29 3b 0d rentPosition();.
30e0: 0a 09 09 09 73 74 72 69 6e 67 20 70 20 3d 20 65 ....string p = e
30f0: 61 74 49 64 28 22 66 6f 72 20 66 75 6e 63 74 69 atId("for functi
3100: 6f 6e 20 70 61 72 61 6d 65 74 65 72 22 2c 20 41 on parameter", A
3110: 6c 6c 6f 77 51 75 6f 74 65 64 29 3b 0d 0a 09 09 llowQuoted);....
3120: 09 69 66 28 20 70 20 3d 3d 20 22 40 22 20 29 0d .if( p == "@" ).
3130: 0a 09 09 09 09 6c 61 79 20 7e 3d 20 22 40 22 20 .....lay ~= "@"
3140: 7e 20 65 61 74 49 64 28 22 61 66 74 65 72 20 40 ~ eatId("after @
3150: 22 2c 20 41 6c 6c 6f 77 51 75 6f 74 65 64 29 3b ", AllowQuoted);
3160: 0d 0a 09 09 09 65 6c 73 65 20 69 66 28 20 76 61 .....else if( va
3170: 72 2e 65 6d 70 74 79 20 29 0d 0a 09 09 09 09 76 r.empty )......v
3180: 61 72 20 3d 20 70 3b 0d 0a 09 09 09 65 6c 73 65 ar = p;.....else
3190: 0d 0a 09 09 09 09 74 68 72 6f 77 20 67 65 6e 65 ......throw gene
31a0: 78 21 50 61 72 73 65 45 78 63 65 70 74 69 6f 6e x!ParseException
31b0: 28 70 6f 73 2c 20 22 6f 6e 65 20 70 61 72 61 6d (pos, "one param
31c0: 65 74 65 72 20 68 61 73 20 74 77 6f 20 6e 61 6d eter has two nam
31d0: 65 73 22 29 3b 0d 0a 09 09 7d 0d 0a 09 09 72 65 es");....}....re
31e0: 74 75 72 6e 20 6e 65 77 20 50 61 72 61 6d 65 74 turn new Paramet
31f0: 65 72 28 76 61 72 2c 20 6c 61 79 29 3b 0d 0a 09 er(var, lay);...
3200: 7d 0d 0a 0d 0a 70 72 69 76 61 74 65 3a 0d 0a 09 }....private:...
3210: 4c 65 78 65 72 20 6c 65 78 3b 0d 0a 09 74 68 69 Lexer lex;...thi
3220: 73 28 4c 65 78 65 72 20 6c 65 78 29 20 7b 20 74 s(Lexer lex) { t
3230: 68 69 73 2e 6c 65 78 20 3d 20 6c 65 78 3b 20 7d his.lex = lex; }
3240: 0d 0a 0d 0a 09 62 6f 6f 6c 20 69 73 4e 75 6d 62 .....bool isNumb
3250: 65 72 28 73 74 72 69 6e 67 20 73 29 0d 0a 09 7b er(string s)...{
3260: 0d 0a 09 09 72 65 74 75 72 6e 20 66 69 6e 64 21 ....return find!
3270: 28 60 61 3c 27 30 27 20 7c 7c 20 27 39 27 3c 61 (`a<'0' || '9'<a
3280: 60 29 28 73 29 2e 65 6d 70 74 79 3b 0d 0a 09 7d `)(s).empty;...}
3290: 0d 0a 09 0d 0a 09 76 6f 69 64 20 65 61 74 28 73 ......void eat(s
32a0: 74 72 69 6e 67 20 6b 77 64 2c 20 6c 61 7a 79 20 tring kwd, lazy
32b0: 73 74 72 69 6e 67 20 6d 73 67 29 0d 0a 09 7b 0d string msg)...{.
32c0: 0a 09 09 69 66 28 20 21 74 72 79 45 61 74 28 6b ...if( !tryEat(k
32d0: 77 64 29 20 29 0d 0a 09 09 09 69 66 28 20 6c 65 wd) ).....if( le
32e0: 78 2e 65 6d 70 74 79 20 29 0d 0a 09 09 09 09 74 x.empty )......t
32f0: 68 72 6f 77 20 67 65 6e 65 78 21 55 6e 65 78 70 hrow genex!Unexp
3300: 65 63 74 65 64 45 4f 46 28 0d 0a 09 09 09 09 09 ectedEOF(.......
3310: 63 75 72 72 65 6e 74 50 6f 73 69 74 69 6f 6e 28 currentPosition(
3320: 29 2c 20 73 70 72 69 6e 74 66 21 22 25 73 20 69 ), sprintf!"%s i
3330: 73 20 65 78 70 65 63 74 65 64 20 25 73 20 62 75 s expected %s bu
3340: 74 20 6e 6f 74 20 66 6f 75 6e 64 22 28 6b 77 64 t not found"(kwd
3350: 2c 6d 73 67 29 29 3b 0d 0a 09 09 09 65 6c 73 65 ,msg));.....else
3360: 0d 0a 09 09 09 09 74 68 72 6f 77 20 67 65 6e 65 ......throw gene
3370: 78 21 50 61 72 73 65 45 78 63 65 70 74 69 6f 6e x!ParseException
3380: 28 0d 0a 09 09 09 09 09 63 75 72 72 65 6e 74 50 (.......currentP
3390: 6f 73 69 74 69 6f 6e 28 29 2c 20 73 70 72 69 6e osition(), sprin
33a0: 74 66 21 22 25 73 20 69 73 20 65 78 70 65 63 74 tf!"%s is expect
33b0: 65 64 20 66 6f 72 20 25 73 20 62 75 74 20 6e 6f ed for %s but no
33c0: 74 20 66 6f 75 6e 64 22 28 6b 77 64 2c 6d 73 67 t found"(kwd,msg
33d0: 29 29 3b 0d 0a 09 7d 0d 0a 0d 0a 09 62 6f 6f 6c ));...}.....bool
33e0: 20 74 72 79 45 61 74 28 73 74 72 69 6e 67 20 6b tryEat(string k
33f0: 77 64 29 0d 0a 09 7b 0d 0a 09 09 69 66 28 20 6c wd)...{....if( l
3400: 65 78 2e 65 6d 70 74 79 20 7c 7c 20 6c 65 78 2e ex.empty || lex.
3410: 66 72 6f 6e 74 2e 71 75 6f 74 65 64 20 7c 7c 20 front.quoted ||
3420: 6c 65 78 2e 66 72 6f 6e 74 2e 73 74 72 21 3d 6b lex.front.str!=k
3430: 77 64 20 29 0d 0a 09 09 09 72 65 74 75 72 6e 20 wd ).....return
3440: 66 61 6c 73 65 3b 0d 0a 09 09 6c 65 78 2e 70 6f false;....lex.po
3450: 70 46 72 6f 6e 74 3b 0d 0a 09 09 72 65 74 75 72 pFront;....retur
3460: 6e 20 74 72 75 65 3b 0d 0a 09 7d 0d 0a 0d 0a 09 n true;...}.....
3470: 65 6e 75 6d 20 7b 41 6c 6c 6f 77 51 75 6f 74 65 enum {AllowQuote
3480: 64 3d 74 72 75 65 2c 20 44 69 73 61 6c 6c 6f 77 d=true, Disallow
3490: 51 75 6f 74 65 64 3d 66 61 6c 73 65 7d 3b 0d 0a Quoted=false};..
34a0: 09 73 74 72 69 6e 67 20 65 61 74 49 64 28 6c 61 .string eatId(la
34b0: 7a 79 20 73 74 72 69 6e 67 20 6d 73 67 2c 20 62 zy string msg, b
34c0: 6f 6f 6c 20 61 71 3d 44 69 73 61 6c 6c 6f 77 51 ool aq=DisallowQ
34d0: 75 6f 74 65 64 29 0d 0a 09 7b 0d 0a 09 09 69 66 uoted)...{....if
34e0: 28 20 6c 65 78 2e 65 6d 70 74 79 20 29 0d 0a 09 ( lex.empty )...
34f0: 09 09 74 68 72 6f 77 20 67 65 6e 65 78 21 55 6e ..throw genex!Un
3500: 65 78 70 65 63 74 65 64 45 4f 46 28 63 75 72 72 expectedEOF(curr
3510: 65 6e 74 50 6f 73 69 74 69 6f 6e 28 29 2c 20 22 entPosition(), "
3520: 69 64 65 6e 74 69 66 69 65 72 20 69 73 20 65 78 identifier is ex
3530: 70 65 63 74 65 64 20 62 75 74 20 6e 6f 74 20 66 pected but not f
3540: 6f 75 6e 64 20 22 7e 6d 73 67 29 3b 0d 0a 09 09 ound "~msg);....
3550: 69 66 28 20 21 61 71 20 26 26 20 6c 65 78 2e 66 if( !aq && lex.f
3560: 72 6f 6e 74 2e 71 75 6f 74 65 64 20 29 0d 0a 09 ront.quoted )...
3570: 09 09 74 68 72 6f 77 20 67 65 6e 65 78 21 50 61 ..throw genex!Pa
3580: 72 73 65 45 78 63 65 70 74 69 6f 6e 28 63 75 72 rseException(cur
3590: 72 65 6e 74 50 6f 73 69 74 69 6f 6e 28 29 2c 20 rentPosition(),
35a0: 22 69 64 65 6e 74 69 66 69 65 72 20 69 73 20 65 "identifier is e
35b0: 78 70 65 63 74 65 64 20 62 75 74 20 6e 6f 74 20 xpected but not
35c0: 66 6f 75 6e 64 20 22 7e 6d 73 67 29 3b 0d 0a 09 found "~msg);...
35d0: 09 73 63 6f 70 65 28 65 78 69 74 29 20 6c 65 78 .scope(exit) lex
35e0: 2e 70 6f 70 46 72 6f 6e 74 3b 0d 0a 09 09 72 65 .popFront;....re
35f0: 74 75 72 6e 20 6c 65 78 2e 66 72 6f 6e 74 2e 73 turn lex.front.s
3600: 74 72 3b 0d 0a 09 7d 0d 0a 0d 0a 09 41 53 54 20 tr;...}.....AST
3610: 64 6f 4e 6f 74 68 69 6e 67 45 78 70 72 65 73 73 doNothingExpress
3620: 69 6f 6e 28 29 0d 0a 09 7b 0d 0a 09 09 72 65 74 ion()...{....ret
3630: 75 72 6e 20 6e 65 77 20 53 74 72 28 63 75 72 72 urn new Str(curr
3640: 65 6e 74 50 6f 73 69 74 69 6f 6e 28 29 2c 20 22 entPosition(), "
3650: 28 65 6d 70 74 79 20 66 75 6e 63 74 69 6f 6e 20 (empty function
3660: 62 6f 64 79 29 22 29 3b 0d 0a 09 7d 0d 0a 0d 0a body)");...}....
3670: 09 4c 65 78 50 6f 73 69 74 69 6f 6e 20 63 75 72 .LexPosition cur
3680: 72 65 6e 74 50 6f 73 69 74 69 6f 6e 28 29 0d 0a rentPosition()..
3690: 09 7b 0d 0a 09 09 72 65 74 75 72 6e 20 6c 65 78 .{....return lex
36a0: 2e 65 6d 70 74 79 20 3f 20 6e 75 6c 6c 20 3a 20 .empty ? null :
36b0: 6c 65 78 2e 66 72 6f 6e 74 2e 70 6f 73 3b 0d 0a lex.front.pos;..
36c0: 09 7d 0d 0a 7d 0d 0a 0d 0a 75 6e 69 74 74 65 73 .}..}....unittes
36d0: 74 0d 0a 7b 0d 0a 09 6d 69 78 69 6e 20 45 61 73 t..{...mixin Eas
36e0: 79 41 53 54 3b 0d 0a 0d 0a 09 61 73 73 65 72 74 yAST;.....assert
36f0: 5f 65 71 28 70 61 72 73 65 53 74 72 69 6e 67 28 _eq(parseString(
3700: 60 31 32 33 60 29 2c 20 69 6e 74 6c 28 31 32 33 `123`), intl(123
3710: 29 29 3b 0d 0a 09 61 73 73 65 72 74 5f 65 71 28 ));...assert_eq(
3720: 70 61 72 73 65 53 74 72 69 6e 67 28 60 22 66 6f parseString(`"fo
3730: 6f 22 60 29 2c 20 73 74 72 6c 28 22 66 6f 6f 22 o"`), strl("foo"
3740: 29 29 3b 0d 0a 09 61 73 73 65 72 74 5f 65 71 28 ));...assert_eq(
3750: 70 61 72 73 65 53 74 72 69 6e 67 28 60 66 75 6e parseString(`fun
3760: 28 29 7b 31 7d 60 29 2c 20 66 75 6e 28 5b 5d 2c (){1}`), fun([],
3770: 69 6e 74 6c 28 31 29 29 29 3b 0d 0a 09 61 73 73 intl(1)));...ass
3780: 65 72 74 5f 65 71 28 70 61 72 73 65 53 74 72 69 ert_eq(parseStri
3790: 6e 67 28 60 66 75 6e 28 78 29 7b 31 7d 60 29 2c ng(`fun(x){1}`),
37a0: 20 66 75 6e 28 5b 22 78 22 5d 2c 69 6e 74 6c 28 fun(["x"],intl(
37b0: 31 29 29 29 3b 0d 0a 09 61 73 73 65 72 74 5f 65 1)));...assert_e
37c0: 71 28 70 61 72 73 65 53 74 72 69 6e 67 28 22 5c q(parseString("\
37d0: 75 30 33 42 42 28 29 7b 31 7d 22 29 2c 20 66 75 u03BB(){1}"), fu
37e0: 6e 28 5b 5d 2c 69 6e 74 6c 28 31 29 29 29 3b 0d n([],intl(1)));.
37f0: 0a 09 61 73 73 65 72 74 5f 65 71 28 70 61 72 73 ..assert_eq(pars
3800: 65 53 74 72 69 6e 67 28 22 5c 75 30 33 42 42 28 eString("\u03BB(
3810: 78 29 7b 31 7d 22 29 2c 20 66 75 6e 28 5b 22 78 x){1}"), fun(["x
3820: 22 5d 2c 69 6e 74 6c 28 31 29 29 29 3b 0d 0a 09 "],intl(1)));...
3830: 61 73 73 65 72 74 5f 65 71 28 70 61 72 73 65 53 assert_eq(parseS
3840: 74 72 69 6e 67 28 60 31 3b 32 60 29 2c 20 6c 65 tring(`1;2`), le
3850: 74 28 22 5f 22 2c 22 22 2c 69 6e 74 6c 28 31 29 t("_","",intl(1)
3860: 2c 69 6e 74 6c 28 32 29 29 29 3b 0d 0a 09 61 73 ,intl(2)));...as
3870: 73 65 72 74 5f 65 71 28 70 61 72 73 65 53 74 72 sert_eq(parseStr
3880: 69 6e 67 28 60 31 3b 32 3b 60 29 2c 20 6c 65 74 ing(`1;2;`), let
3890: 28 22 5f 22 2c 22 22 2c 69 6e 74 6c 28 31 29 2c ("_","",intl(1),
38a0: 69 6e 74 6c 28 32 29 29 29 3b 0d 0a 09 61 73 73 intl(2)));...ass
38b0: 65 72 74 5f 65 71 28 70 61 72 73 65 53 74 72 69 ert_eq(parseStri
38c0: 6e 67 28 60 6c 65 74 20 78 3d 31 20 69 6e 20 32 ng(`let x=1 in 2
38d0: 60 29 2c 20 6c 65 74 28 22 78 22 2c 22 22 2c 69 `), let("x","",i
38e0: 6e 74 6c 28 31 29 2c 69 6e 74 6c 28 32 29 29 29 ntl(1),intl(2)))
38f0: 3b 0d 0a 09 61 73 73 65 72 74 5f 65 71 28 70 61 ;...assert_eq(pa
3900: 72 73 65 53 74 72 69 6e 67 28 60 76 61 72 20 78 rseString(`var x
3910: 3d 31 3b 32 3b 60 29 2c 20 6c 65 74 28 22 78 22 =1;2;`), let("x"
3920: 2c 22 22 2c 69 6e 74 6c 28 31 29 2c 69 6e 74 6c ,"",intl(1),intl
3930: 28 32 29 29 29 3b 0d 0a 09 61 73 73 65 72 74 5f (2)));...assert_
3940: 65 71 28 70 61 72 73 65 53 74 72 69 6e 67 28 60 eq(parseString(`
3950: 64 65 66 20 78 3d 31 60 29 2c 20 6c 65 74 28 22 def x=1`), let("
3960: 78 22 2c 22 22 2c 69 6e 74 6c 28 31 29 2c 76 61 x","",intl(1),va
3970: 72 28 22 78 22 29 29 29 3b 0d 0a 09 61 73 73 65 r("x")));...asse
3980: 72 74 5f 65 71 28 70 61 72 73 65 53 74 72 69 6e rt_eq(parseStrin
3990: 67 28 60 40 76 61 6c 20 78 3d 31 3b 60 29 2c 20 g(`@val x=1;`),
39a0: 6c 65 74 28 22 78 22 2c 22 40 76 61 6c 22 2c 69 let("x","@val",i
39b0: 6e 74 6c 28 31 29 2c 76 61 72 28 22 78 22 29 29 ntl(1),var("x"))
39c0: 29 3b 0d 0a 09 61 73 73 65 72 74 5f 65 71 28 70 );...assert_eq(p
39d0: 61 72 73 65 53 74 72 69 6e 67 28 60 40 74 79 70 arseString(`@typ
39e0: 20 78 3d 22 23 69 6e 74 22 3b 60 29 2c 20 6c 65 x="#int";`), le
39f0: 74 28 22 78 22 2c 22 40 74 79 70 22 2c 73 74 72 t("x","@typ",str
3a00: 6c 28 22 23 69 6e 74 22 29 2c 76 61 72 28 22 78 l("#int"),var("x
3a10: 22 29 29 29 3b 0d 0a 09 61 73 73 65 72 74 5f 65 ")));...assert_e
3a20: 71 28 70 61 72 73 65 53 74 72 69 6e 67 28 60 66 q(parseString(`f
3a30: 28 31 2c 32 29 60 29 2c 20 63 61 6c 6c 28 76 61 (1,2)`), call(va
3a40: 72 28 22 66 22 29 2c 69 6e 74 6c 28 31 29 2c 69 r("f"),intl(1),i
3a50: 6e 74 6c 28 32 29 29 29 3b 0d 0a 09 61 73 73 65 ntl(2)));...asse
3a60: 72 74 5f 65 71 28 70 61 72 73 65 53 74 72 69 6e rt_eq(parseStrin
3a70: 67 28 60 69 66 28 31 29 7b 32 7d 60 29 2c 20 63 g(`if(1){2}`), c
3a80: 61 6c 6c 28 76 61 72 28 22 69 66 22 29 2c 69 6e all(var("if"),in
3a90: 74 6c 28 31 29 2c 66 75 6e 28 5b 5d 2c 69 6e 74 tl(1),fun([],int
3aa0: 6c 28 32 29 29 2c 66 75 6e 28 5b 5d 2c 73 74 72 l(2)),fun([],str
3ab0: 6c 28 22 28 65 6d 70 74 79 20 66 75 6e 63 74 69 l("(empty functi
3ac0: 6f 6e 20 62 6f 64 79 29 22 29 29 29 29 3b 0d 0a on body)"))));..
3ad0: 09 61 73 73 65 72 74 5f 65 71 28 70 61 72 73 65 .assert_eq(parse
3ae0: 53 74 72 69 6e 67 28 60 69 66 28 31 29 7b 32 7d String(`if(1){2}
3af0: 65 6c 73 65 7b 33 7d 60 29 2c 20 63 61 6c 6c 28 else{3}`), call(
3b00: 76 61 72 28 22 69 66 22 29 2c 69 6e 74 6c 28 31 var("if"),intl(1
3b10: 29 2c 66 75 6e 28 5b 5d 2c 69 6e 74 6c 28 32 29 ),fun([],intl(2)
3b20: 29 2c 66 75 6e 28 5b 5d 2c 69 6e 74 6c 28 33 29 ),fun([],intl(3)
3b30: 29 29 29 3b 0d 0a 09 61 73 73 65 72 74 5f 65 71 )));...assert_eq
3b40: 28 70 61 72 73 65 53 74 72 69 6e 67 28 60 69 66 (parseString(`if
3b50: 28 31 29 7b 7d 65 6c 73 65 7b 33 7d 28 29 28 29 (1){}else{3}()()
3b60: 60 29 2c 0d 0a 09 09 63 61 6c 6c 28 63 61 6c 6c `),....call(call
3b70: 28 63 61 6c 6c 28 76 61 72 28 22 69 66 22 29 2c (call(var("if"),
3b80: 69 6e 74 6c 28 31 29 2c 66 75 6e 28 5b 5d 2c 73 intl(1),fun([],s
3b90: 74 72 6c 28 22 28 65 6d 70 74 79 20 66 75 6e 63 trl("(empty func
3ba0: 74 69 6f 6e 20 62 6f 64 79 29 22 29 29 2c 66 75 tion body)")),fu
3bb0: 6e 28 5b 5d 2c 69 6e 74 6c 28 33 29 29 29 29 29 n([],intl(3)))))
3bc0: 29 3b 0d 0a 09 61 73 73 65 72 74 5f 65 71 28 70 );...assert_eq(p
3bd0: 61 72 73 65 53 74 72 69 6e 67 28 60 31 2b 32 2a arseString(`1+2*
3be0: 33 60 29 2c 20 63 61 6c 6c 28 76 61 72 28 22 2b 3`), call(var("+
3bf0: 22 29 2c 69 6e 74 6c 28 31 29 2c 63 61 6c 6c 28 "),intl(1),call(
3c00: 76 61 72 28 22 2a 22 29 2c 69 6e 74 6c 28 32 29 var("*"),intl(2)
3c10: 2c 69 6e 74 6c 28 33 29 29 29 29 3b 0d 0a 09 61 ,intl(3))));...a
3c20: 73 73 65 72 74 5f 65 71 28 70 61 72 73 65 53 74 ssert_eq(parseSt
3c30: 72 69 6e 67 28 60 28 31 2b 32 29 2a 33 60 29 2c ring(`(1+2)*3`),
3c40: 20 63 61 6c 6c 28 76 61 72 28 22 2a 22 29 2c 63 call(var("*"),c
3c50: 61 6c 6c 28 76 61 72 28 22 2b 22 29 2c 69 6e 74 all(var("+"),int
3c60: 6c 28 31 29 2c 69 6e 74 6c 28 32 29 29 2c 69 6e l(1),intl(2)),in
3c70: 74 6c 28 33 29 29 29 3b 0d 0a 09 61 73 73 65 72 tl(3)));...asser
3c80: 74 5f 65 71 28 70 61 72 73 65 53 74 72 69 6e 67 t_eq(parseString
3c90: 28 60 31 2a 28 32 2b 33 29 60 29 2c 20 63 61 6c (`1*(2+3)`), cal
3ca0: 6c 28 76 61 72 28 22 2a 22 29 2c 69 6e 74 6c 28 l(var("*"),intl(
3cb0: 31 29 2c 63 61 6c 6c 28 76 61 72 28 22 2b 22 29 1),call(var("+")
3cc0: 2c 69 6e 74 6c 28 32 29 2c 69 6e 74 6c 28 33 29 ,intl(2),intl(3)
3cd0: 29 29 29 3b 0d 0a 09 61 73 73 65 72 74 5f 65 71 )));...assert_eq
3ce0: 28 70 61 72 73 65 53 74 72 69 6e 67 28 60 31 2a (parseString(`1*
3cf0: 32 2b 33 60 29 2c 20 63 61 6c 6c 28 76 61 72 28 2+3`), call(var(
3d00: 22 2b 22 29 2c 63 61 6c 6c 28 76 61 72 28 22 2a "+"),call(var("*
3d10: 22 29 2c 69 6e 74 6c 28 31 29 2c 69 6e 74 6c 28 "),intl(1),intl(
3d20: 32 29 29 2c 69 6e 74 6c 28 33 29 29 29 3b 0d 0a 2)),intl(3)));..
3d30: 09 61 73 73 65 72 74 5f 65 71 28 70 61 72 73 65 .assert_eq(parse
3d40: 53 74 72 69 6e 67 28 60 40 78 28 31 29 60 29 2c String(`@x(1)`),
3d50: 20 6c 61 79 28 22 40 78 22 2c 20 69 6e 74 6c 28 lay("@x", intl(
3d60: 31 29 29 29 3b 0d 0a 09 61 73 73 65 72 74 5f 65 1)));...assert_e
3d70: 71 28 70 61 72 73 65 53 74 72 69 6e 67 28 60 66 q(parseString(`f
3d80: 75 6e 28 78 20 40 76 20 40 74 2c 20 79 2c 20 7a un(x @v @t, y, z
3d90: 20 40 74 29 7b 7d 60 29 2c 0d 0a 09 09 66 75 6e @t){}`),....fun
3da0: 70 28 5b 70 61 72 61 6d 28 22 78 22 2c 5b 22 40 p([param("x",["@
3db0: 76 22 2c 22 40 74 22 5d 29 2c 20 70 61 72 61 6d v","@t"]), param
3dc0: 28 22 79 22 2c 5b 5d 29 2c 20 70 61 72 61 6d 28 ("y",[]), param(
3dd0: 22 7a 22 2c 5b 22 40 74 22 5d 29 5d 2c 20 73 74 "z",["@t"])], st
3de0: 72 6c 28 22 28 65 6d 70 74 79 20 66 75 6e 63 74 rl("(empty funct
3df0: 69 6f 6e 20 62 6f 64 79 29 22 29 29 29 3b 0d 0a ion body)")));..
3e00: 0d 0a 09 61 73 73 65 72 74 5f 65 71 28 70 61 72 ...assert_eq(par
3e10: 73 65 53 74 72 69 6e 67 28 60 0d 0a 09 09 6c 65 seString(`....le
3e20: 74 20 78 20 3d 20 31 30 30 3b 20 23 63 6f 6d 6d t x = 100; #comm
3e30: 65 6e 74 0d 0a 09 09 6c 65 74 20 79 20 3d 20 32 ent....let y = 2
3e40: 30 30 3b 20 23 63 6f 6d 6d 65 6e 74 21 21 21 21 00; #comment!!!!
3e50: 21 0d 0a 09 09 09 78 2b 79 0d 0a 09 60 29 2c 0d !.....x+y...`),.
3e60: 0a 09 09 6c 65 74 28 22 78 22 2c 20 22 22 2c 20 ...let("x", "",
3e70: 69 6e 74 6c 28 31 30 30 29 2c 20 6c 65 74 28 22 intl(100), let("
3e80: 79 22 2c 20 22 22 2c 20 69 6e 74 6c 28 32 30 30 y", "", intl(200
3e90: 29 2c 20 63 61 6c 6c 28 76 61 72 28 22 2b 22 29 ), call(var("+")
3ea0: 2c 20 76 61 72 28 22 78 22 29 2c 20 76 61 72 28 , var("x"), var(
3eb0: 22 79 22 29 29 29 29 0d 0a 09 29 3b 0d 0a 0d 0a "y"))))...);....
3ec0: 09 61 73 73 65 72 74 5f 65 71 28 70 61 72 73 65 .assert_eq(parse
3ed0: 53 74 72 69 6e 67 28 60 0d 0a 09 09 76 61 72 20 String(`....var
3ee0: 66 61 63 20 3d 20 66 75 6e 28 78 29 7b 20 69 66 fac = fun(x){ if
3ef0: 28 78 20 3c 3d 20 31 29 20 7b 31 7d 20 65 6c 73 (x <= 1) {1} els
3f00: 65 20 7b 78 2a 66 61 63 28 78 2d 31 29 7d 20 7d e {x*fac(x-1)} }
3f10: 3b 0d 0a 09 09 66 61 63 28 31 30 29 0d 0a 09 60 ;....fac(10)...`
3f20: 29 2c 0d 0a 09 09 6c 65 74 28 22 66 61 63 22 2c ),....let("fac",
3f30: 20 22 22 2c 20 66 75 6e 28 5b 22 78 22 5d 2c 0d "", fun(["x"],.
3f40: 0a 09 09 09 63 61 6c 6c 28 76 61 72 28 22 69 66 ....call(var("if
3f50: 22 29 2c 0d 0a 09 09 09 09 63 61 6c 6c 28 76 61 "),......call(va
3f60: 72 28 22 3c 3d 22 29 2c 20 76 61 72 28 22 78 22 r("<="), var("x"
3f70: 29 2c 20 69 6e 74 6c 28 31 29 29 2c 0d 0a 09 09 ), intl(1)),....
3f80: 09 09 66 75 6e 28 5b 5d 2c 20 69 6e 74 6c 28 31 ..fun([], intl(1
3f90: 29 29 2c 0d 0a 09 09 09 09 66 75 6e 28 5b 5d 2c )),......fun([],
3fa0: 20 63 61 6c 6c 28 76 61 72 28 22 2a 22 29 2c 20 call(var("*"),
3fb0: 76 61 72 28 22 78 22 29 2c 20 63 61 6c 6c 28 76 var("x"), call(v
3fc0: 61 72 28 22 66 61 63 22 29 2c 63 61 6c 6c 28 76 ar("fac"),call(v
3fd0: 61 72 28 22 2d 22 29 2c 76 61 72 28 22 78 22 29 ar("-"),var("x")
3fe0: 2c 69 6e 74 6c 28 31 29 29 29 29 29 0d 0a 09 09 ,intl(1)))))....
3ff0: 09 29 29 2c 0d 0a 09 09 09 63 61 6c 6c 28 76 61 .)),.....call(va
4000: 72 28 22 66 61 63 22 29 2c 69 6e 74 6c 28 31 30 r("fac"),intl(10
4010: 29 29 0d 0a 09 09 29 0d 0a 09 29 3b 0d 0a 7d 0d ))....)...);..}.
4020: 0a 0d 0a 75 6e 69 74 74 65 73 74 0d 0a 7b 0d 0a ...unittest..{..
4030: 09 61 73 73 65 72 74 5f 74 68 72 6f 77 21 55 6e .assert_throw!Un
4040: 65 78 70 65 63 74 65 64 45 4f 46 28 70 61 72 73 expectedEOF(pars
4050: 65 53 74 72 69 6e 67 28 60 31 2b 60 29 29 3b 0d eString(`1+`));.
4060: 0a 09 61 73 73 65 72 74 5f 74 68 72 6f 77 21 50 ..assert_throw!P
4070: 61 72 73 65 45 78 63 65 70 74 69 6f 6e 28 70 61 arseException(pa
4080: 72 73 65 53 74 72 69 6e 67 28 60 31 2b 32 7d 60 rseString(`1+2}`
4090: 29 29 3b 0d 0a 09 61 73 73 65 72 74 5f 74 68 72 ));...assert_thr
40a0: 6f 77 21 55 6e 65 78 70 65 63 74 65 64 45 4f 46 ow!UnexpectedEOF
40b0: 28 70 61 72 73 65 53 74 72 69 6e 67 28 60 6c 65 (parseString(`le
40c0: 74 20 22 78 22 60 29 29 3b 0d 0a 09 61 73 73 65 t "x"`));...asse
40d0: 72 74 5f 74 68 72 6f 77 21 55 6e 65 78 70 65 63 rt_throw!Unexpec
40e0: 74 65 64 45 4f 46 28 70 61 72 73 65 53 74 72 69 tedEOF(parseStri
40f0: 6e 67 28 60 76 61 72 60 29 29 3b 0d 0a 09 61 73 ng(`var`));...as
4100: 73 65 72 74 5f 74 68 72 6f 77 21 50 61 72 73 65 sert_throw!Parse
4110: 45 78 63 65 70 74 69 6f 6e 28 70 61 72 73 65 53 Exception(parseS
4120: 74 72 69 6e 67 28 60 40 76 61 6c 20 78 20 3d 3d tring(`@val x ==
4130: 60 29 29 3b 0d 0a 09 61 73 73 65 72 74 5f 74 68 `));...assert_th
4140: 72 6f 77 21 50 61 72 73 65 45 78 63 65 70 74 69 row!ParseExcepti
4150: 6f 6e 28 70 61 72 73 65 53 74 72 69 6e 67 28 60 on(parseString(`
4160: 69 66 28 29 7b 31 7d 60 29 29 3b 0d 0a 09 61 73 if(){1}`));...as
4170: 73 65 72 74 5f 74 68 72 6f 77 21 55 6e 65 78 70 sert_throw!Unexp
4180: 65 63 74 65 64 45 4f 46 28 70 61 72 73 65 53 74 ectedEOF(parseSt
4190: 72 69 6e 67 28 60 66 28 60 29 29 3b 0d 0a 7d 0d ring(`f(`));..}.
41a0: 0a 0d 0a 75 6e 69 74 74 65 73 74 0d 0a 7b 0d 0a ...unittest..{..
41b0: 09 6d 69 78 69 6e 20 45 61 73 79 41 53 54 3b 0d .mixin EasyAST;.
41c0: 0a 09 61 73 73 65 72 74 5f 65 71 28 70 61 72 73 ..assert_eq(pars
41d0: 65 53 74 72 69 6e 67 28 60 64 65 66 20 66 6f 6f eString(`def foo
41e0: 28 78 29 20 7b 20 78 2b 31 20 7d 3b 20 66 6f 6f (x) { x+1 }; foo
41f0: 60 29 2c 0d 0a 09 09 6c 65 74 28 22 66 6f 6f 22 `),....let("foo"
4200: 2c 20 22 22 2c 0d 0a 09 09 09 66 75 6e 28 5b 22 , "",.....fun(["
4210: 78 22 5d 2c 20 63 61 6c 6c 28 76 61 72 28 22 2b x"], call(var("+
4220: 22 29 2c 20 76 61 72 28 22 78 22 29 2c 20 69 6e "), var("x"), in
4230: 74 6c 28 31 29 29 29 2c 0d 0a 09 09 09 76 61 72 tl(1))),.....var
4240: 28 22 66 6f 6f 22 29 29 0d 0a 09 29 3b 0d 0a 0d ("foo"))...);...
4250: 0a 09 61 73 73 65 72 74 5f 65 71 28 70 61 72 73 ..assert_eq(pars
4260: 65 53 74 72 69 6e 67 28 60 40 40 74 79 70 65 20 eString(`@@type
4270: 28 20 78 20 29 20 7b 20 78 20 7d 60 29 2c 0d 0a ( x ) { x }`),..
4280: 09 09 6c 65 74 28 22 40 74 79 70 65 22 2c 20 53 ..let("@type", S
4290: 79 73 74 65 6d 4c 61 79 65 72 2c 20 66 75 6e 28 ystemLayer, fun(
42a0: 5b 22 78 22 5d 2c 20 76 61 72 28 22 78 22 29 29 ["x"], var("x"))
42b0: 2c 20 6c 61 79 28 53 79 73 74 65 6d 4c 61 79 65 , lay(SystemLaye
42c0: 72 2c 20 76 61 72 28 22 40 74 79 70 65 22 29 29 r, var("@type"))
42d0: 29 20 29 3b 0d 0a 0d 0a 09 61 73 73 65 72 74 5f ) );.....assert_
42e0: 65 71 28 70 61 72 73 65 53 74 72 69 6e 67 28 60 eq(parseString(`
42f0: 7b 7d 60 29 2c 20 63 61 6c 6c 28 76 61 72 28 22 {}`), call(var("
4300: 7b 7d 22 29 29 29 3b 0d 0a 09 61 73 73 65 72 74 {}")));...assert
4310: 5f 65 71 28 70 61 72 73 65 53 74 72 69 6e 67 28 _eq(parseString(
4320: 60 7b 66 6f 6f 3a 31 2c 22 62 61 72 22 3a 32 7d `{foo:1,"bar":2}
4330: 60 29 2c 0d 0a 09 09 63 61 6c 6c 28 76 61 72 28 `),....call(var(
4340: 22 2e 3d 22 29 2c 20 63 61 6c 6c 28 76 61 72 28 ".="), call(var(
4350: 22 2e 3d 22 29 2c 20 63 61 6c 6c 28 76 61 72 28 ".="), call(var(
4360: 22 7b 7d 22 29 29 2c 20 73 74 72 6c 28 22 66 6f "{}")), strl("fo
4370: 6f 22 29 2c 20 69 6e 74 6c 28 31 29 29 2c 20 73 o"), intl(1)), s
4380: 74 72 6c 28 22 62 61 72 22 29 2c 20 69 6e 74 6c trl("bar"), intl
4390: 28 32 29 29 29 3b 0d 0a 09 61 73 73 65 72 74 5f (2)));...assert_
43a0: 65 71 28 70 61 72 73 65 53 74 72 69 6e 67 28 60 eq(parseString(`
43b0: 7b 7d 2e 66 6f 6f 60 29 2c 20 63 61 6c 6c 28 76 {}.foo`), call(v
43c0: 61 72 28 22 2e 22 29 2c 63 61 6c 6c 28 76 61 72 ar("."),call(var
43d0: 28 22 7b 7d 22 29 29 2c 73 74 72 6c 28 22 66 6f ("{}")),strl("fo
43e0: 6f 22 29 29 29 3b 0d 0a 09 61 73 73 65 72 74 5f o")));...assert_
43f0: 65 71 28 70 61 72 73 65 53 74 72 69 6e 67 28 60 eq(parseString(`
4400: 7b 7d 2e 3f 66 6f 6f 60 29 2c 20 63 61 6c 6c 28 {}.?foo`), call(
4410: 76 61 72 28 22 2e 3f 22 29 2c 63 61 6c 6c 28 76 var(".?"),call(v
4420: 61 72 28 22 7b 7d 22 29 29 2c 73 74 72 6c 28 22 ar("{}")),strl("
4430: 66 6f 6f 22 29 29 29 3b 0d 0a 09 61 73 73 65 72 foo")));...asser
4440: 74 5f 65 71 28 70 61 72 73 65 53 74 72 69 6e 67 t_eq(parseString
4450: 28 60 78 7b 79 3a 31 7d 60 29 2c 20 63 61 6c 6c (`x{y:1}`), call
4460: 28 76 61 72 28 22 2e 3d 22 29 2c 76 61 72 28 22 (var(".="),var("
4470: 78 22 29 2c 73 74 72 6c 28 22 79 22 29 2c 69 6e x"),strl("y"),in
4480: 74 6c 28 31 29 29 29 3b 0d 0a 7d 0d 0a 0d 0a 75 tl(1)));..}....u
4490: 6e 69 74 74 65 73 74 0d 0a 7b 0d 0a 09 61 73 73 nittest..{...ass
44a0: 65 72 74 5f 6e 6f 74 68 72 6f 77 28 70 61 72 73 ert_nothrow(pars
44b0: 65 53 74 72 69 6e 67 28 60 0d 0a 09 09 63 61 73 eString(`....cas
44c0: 65 28 20 31 20 29 0d 0a 09 09 09 77 68 65 6e 28 e( 1 ).....when(
44d0: 78 29 7b 31 7d 0d 0a 09 60 29 29 3b 0d 0a 09 61 x){1}...`));...a
44e0: 73 73 65 72 74 5f 6e 6f 74 68 72 6f 77 28 70 61 ssert_nothrow(pa
44f0: 72 73 65 53 74 72 69 6e 67 28 60 0d 0a 09 09 63 rseString(`....c
4500: 61 73 65 28 20 31 20 29 0d 0a 09 09 09 77 68 65 ase( 1 ).....whe
4510: 6e 28 7b 61 61 61 61 3a 5f 7d 29 7b 31 7d 0d 0a n({aaaa:_}){1}..
4520: 09 60 29 29 3b 0d 0a 09 61 73 73 65 72 74 5f 6e .`));...assert_n
4530: 6f 74 68 72 6f 77 28 70 61 72 73 65 53 74 72 69 othrow(parseStri
4540: 6e 67 28 60 0d 0a 09 09 63 61 73 65 28 20 31 20 ng(`....case( 1
4550: 29 0d 0a 09 09 09 77 68 65 6e 28 7b 61 61 61 61 ).....when({aaaa
4560: 3a 40 76 61 6c 75 65 28 78 29 7d 29 7b 31 7d 0d :@value(x)}){1}.
4570: 0a 09 09 09 77 68 65 6e 28 7b 61 61 61 61 3a 7b ....when({aaaa:{
4580: 62 62 62 3a 5f 7d 2c 20 63 63 63 3a 31 32 33 7d bbb:_}, ccc:123}
4590: 29 7b 31 7d 0d 0a 09 60 29 29 3b 0d 0a 7d ){1}...`));..}