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 29 3b 0d 0a 09 09 09 09 09 65 ttern");.......e
2aa0: 61 74 28 22 3a 22 2c 20 22 61 66 74 65 72 20 66 at(":", "after f
2ab0: 69 65 6c 64 2d 69 64 20 69 6e 20 74 61 62 6c 65 ield-id in table
2ac0: 20 70 61 74 74 65 72 6e 22 29 3b 0d 0a 09 09 09 pattern");.....
2ad0: 09 09 72 65 73 75 6c 74 20 7e 3d 20 70 61 72 73 ..result ~= pars
2ae0: 65 50 61 74 74 65 72 6e 28 70 61 74 68 20 7e 20 ePattern(path ~
2af0: 6b 65 79 29 3b 0d 0a 09 09 09 09 7d 20 77 68 69 key);......} whi
2b00: 6c 65 28 20 74 72 79 45 61 74 28 22 2c 22 29 20 le( tryEat(",")
2b10: 29 3b 0d 0a 09 09 09 09 65 61 74 28 22 7d 22 2c );......eat("}",
2b20: 20 22 61 74 20 74 68 65 20 65 6e 64 20 6f 66 20 "at the end of
2b30: 74 61 62 6c 65 20 70 61 74 74 65 72 6e 22 29 3b table pattern");
2b40: 0d 0a 09 09 09 7d 0d 0a 09 09 7d 0d 0a 09 09 65 .....}....}....e
2b50: 6c 73 65 0d 0a 09 09 7b 0d 0a 09 09 09 41 53 54 lse....{.....AST
2b60: 20 65 20 3d 20 45 28 30 29 3b 0d 0a 09 09 09 69 e = E(0);.....i
2b70: 66 28 61 75 74 6f 20 65 76 20 3d 20 63 61 73 74 f(auto ev = cast
2b80: 28 56 61 72 29 65 29 0d 0a 09 09 09 09 69 66 28 (Var)e)......if(
2b90: 65 76 2e 6e 61 6d 65 20 3d 3d 20 22 5f 22 29 0d ev.name == "_").
2ba0: 0a 09 09 09 09 09 72 65 73 75 6c 74 20 7e 3d 20 ......result ~=
2bb0: 6e 65 77 20 57 69 6c 64 50 61 74 74 65 72 6e 28 new WildPattern(
2bc0: 70 61 74 68 29 3b 0d 0a 09 09 09 09 65 6c 73 65 path);......else
2bd0: 0d 0a 09 09 09 09 09 72 65 73 75 6c 74 20 7e 3d .......result ~=
2be0: 20 6e 65 77 20 56 61 72 50 61 74 74 65 72 6e 28 new VarPattern(
2bf0: 70 61 74 68 2c 20 65 76 2e 6e 61 6d 65 29 3b 0d path, ev.name);.
2c00: 0a 09 09 09 65 6c 73 65 0d 0a 09 09 09 09 72 65 ....else......re
2c10: 73 75 6c 74 20 7e 3d 20 6e 65 77 20 43 6f 6e 73 sult ~= new Cons
2c20: 74 61 6e 74 50 61 74 74 65 72 6e 28 70 61 74 68 tantPattern(path
2c30: 2c 20 65 29 3b 0d 0a 09 09 7d 0d 0a 09 09 72 65 , e);....}....re
2c40: 74 75 72 6e 20 72 65 73 75 6c 74 3b 0d 0a 09 7d turn result;...}
2c50: 0d 0a 0d 0a 09 41 53 54 20 70 70 54 65 73 74 28 .....AST ppTest(
2c60: 73 74 72 69 6e 67 20 70 6d 56 61 72 2c 20 53 69 string pmVar, Si
2c70: 6e 67 6c 65 50 61 74 74 65 72 6e 5b 5d 20 70 61 nglePattern[] pa
2c80: 74 73 29 0d 0a 09 7b 0d 0a 09 09 61 75 74 6f 20 ts)...{....auto
2c90: 70 6f 73 20 3d 20 63 75 72 72 65 6e 74 50 6f 73 pos = currentPos
2ca0: 69 74 69 6f 6e 28 29 3b 0d 0a 09 09 41 53 54 20 ition();....AST
2cb0: 63 6f 6e 64 20 3d 20 6e 75 6c 6c 3b 0d 0a 09 09 cond = null;....
2cc0: 66 6f 72 65 61 63 68 28 70 3b 20 70 61 74 73 29 foreach(p; pats)
2cd0: 20 7b 0d 0a 09 09 09 41 53 54 20 63 32 20 3d 20 {.....AST c2 =
2ce0: 70 2e 70 70 54 65 73 74 28 70 6d 56 61 72 29 3b p.ppTest(pmVar);
2cf0: 0d 0a 09 09 09 69 66 28 20 63 32 20 21 69 73 20 .....if( c2 !is
2d00: 6e 75 6c 6c 20 29 0d 0a 09 09 09 09 63 6f 6e 64 null )......cond
2d10: 20 3d 20 63 6f 6e 64 20 69 73 20 6e 75 6c 6c 20 = cond is null
2d20: 3f 20 63 32 0d 0a 09 09 09 09 20 20 20 20 3a 20 ? c2...... :
2d30: 6e 65 77 20 41 70 70 28 70 6f 73 2c 20 6e 65 77 new App(pos, new
2d40: 20 56 61 72 28 70 6f 73 2c 22 26 26 22 29 2c 20 Var(pos,"&&"),
2d50: 63 6f 6e 64 2c 20 63 32 29 3b 0d 0a 09 09 7d 0d cond, c2);....}.
2d60: 0a 09 09 72 65 74 75 72 6e 20 63 6f 6e 64 20 69 ...return cond i
2d70: 73 20 6e 75 6c 6c 20 3f 20 6e 65 77 20 49 6e 74 s null ? new Int
2d80: 28 63 75 72 72 65 6e 74 50 6f 73 69 74 69 6f 6e (currentPosition
2d90: 28 29 2c 20 31 29 20 3a 20 63 6f 6e 64 3b 0d 0a (), 1) : cond;..
2da0: 09 7d 0d 0a 0d 0a 09 41 53 54 20 70 70 42 69 6e .}.....AST ppBin
2db0: 64 28 73 74 72 69 6e 67 20 70 6d 56 61 72 2c 20 d(string pmVar,
2dc0: 53 69 6e 67 6c 65 50 61 74 74 65 72 6e 5b 5d 20 SinglePattern[]
2dd0: 70 61 74 73 2c 20 41 53 54 20 74 68 65 6e 44 6f pats, AST thenDo
2de0: 54 68 69 73 29 0d 0a 09 7b 0d 0a 09 09 66 6f 72 This)...{....for
2df0: 65 61 63 68 28 70 3b 20 70 61 74 73 29 0d 0a 09 each(p; pats)...
2e00: 09 09 74 68 65 6e 44 6f 54 68 69 73 20 3d 20 70 ..thenDoThis = p
2e10: 2e 70 70 42 69 6e 64 28 70 6d 56 61 72 2c 20 74 .ppBind(pmVar, t
2e20: 68 65 6e 44 6f 54 68 69 73 29 3b 0d 0a 09 09 72 henDoThis);....r
2e30: 65 74 75 72 6e 20 74 68 65 6e 44 6f 54 68 69 73 eturn thenDoThis
2e40: 3b 0d 0a 09 7d 0d 0a 0d 0a 09 41 53 54 20 70 61 ;...}.....AST pa
2e50: 72 73 65 49 64 28 29 0d 0a 09 7b 0d 0a 09 09 73 rseId()...{....s
2e60: 63 6f 70 65 28 65 78 69 74 29 20 6c 65 78 2e 70 cope(exit) lex.p
2e70: 6f 70 46 72 6f 6e 74 3b 0d 0a 09 09 72 65 74 75 opFront;....retu
2e80: 72 6e 20 6e 65 77 20 53 74 72 28 63 75 72 72 65 rn new Str(curre
2e90: 6e 74 50 6f 73 69 74 69 6f 6e 28 29 2c 20 6c 65 ntPosition(), le
2ea0: 78 2e 66 72 6f 6e 74 2e 73 74 72 29 3b 0d 0a 09 x.front.str);...
2eb0: 7d 0d 0a 0d 0a 09 41 53 54 20 70 61 72 73 65 4c }.....AST parseL
2ec0: 61 6d 62 64 61 41 66 74 65 72 4f 70 65 6e 50 61 ambdaAfterOpenPa
2ed0: 72 65 6e 28 4c 65 78 50 6f 73 69 74 69 6f 6e 20 ren(LexPosition
2ee0: 70 6f 73 29 0d 0a 09 7b 0d 0a 09 09 50 61 72 61 pos)...{....Para
2ef0: 6d 65 74 65 72 5b 5d 20 70 61 72 61 6d 73 3b 0d meter[] params;.
2f00: 0a 09 09 77 68 69 6c 65 28 20 21 74 72 79 45 61 ...while( !tryEa
2f10: 74 28 22 29 22 29 20 29 0d 0a 09 09 7b 0d 0a 09 t(")") )....{...
2f20: 09 09 70 61 72 61 6d 73 20 7e 3d 20 70 61 72 73 ..params ~= pars
2f30: 65 50 61 72 61 6d 28 29 3b 0d 0a 09 09 09 69 66 eParam();.....if
2f40: 28 20 21 74 72 79 45 61 74 28 22 2c 22 29 20 29 ( !tryEat(",") )
2f50: 20 7b 0d 0a 09 09 09 09 65 61 74 28 22 29 22 2c {......eat(")",
2f60: 20 22 61 66 74 65 72 20 66 75 6e 63 74 69 6f 6e "after function
2f70: 20 70 61 72 61 6d 65 74 65 72 73 22 29 3b 0d 0a parameters");..
2f80: 09 09 09 09 62 72 65 61 6b 3b 0d 0a 09 09 09 7d ....break;.....}
2f90: 0d 0a 09 09 7d 0d 0a 09 09 65 61 74 28 22 7b 22 ....}....eat("{"
2fa0: 2c 20 22 61 66 74 65 72 20 66 75 6e 63 74 69 6f , "after functio
2fb0: 6e 20 70 61 72 61 6d 65 74 65 72 73 22 29 3b 0d n parameters");.
2fc0: 0a 09 09 61 75 74 6f 20 66 75 6e 62 6f 64 79 20 ...auto funbody
2fd0: 3d 20 42 6f 64 79 28 29 3b 0d 0a 09 09 65 61 74 = Body();....eat
2fe0: 28 22 7d 22 2c 20 22 61 66 74 65 72 20 66 75 6e ("}", "after fun
2ff0: 63 74 69 6f 6e 20 62 6f 64 79 22 29 3b 0d 0a 09 ction body");...
3000: 09 72 65 74 75 72 6e 20 6e 65 77 20 46 75 6e 28 .return new Fun(
3010: 70 6f 73 2c 20 70 61 72 61 6d 73 2c 20 66 75 6e pos, params, fun
3020: 62 6f 64 79 29 3b 0d 0a 09 7d 0d 0a 0d 0a 09 50 body);...}.....P
3030: 61 72 61 6d 65 74 65 72 20 70 61 72 73 65 50 61 arameter parsePa
3040: 72 61 6d 28 29 0d 0a 09 7b 0d 0a 09 09 73 74 72 ram()...{....str
3050: 69 6e 67 20 76 61 72 3b 0d 0a 09 09 73 74 72 69 ing var;....stri
3060: 6e 67 5b 5d 20 6c 61 79 3b 0d 0a 09 09 77 68 69 ng[] lay;....whi
3070: 6c 65 28 20 21 63 6c 6f 73 69 6e 67 42 72 61 63 le( !closingBrac
3080: 6b 65 74 28 29 20 26 26 20 21 6c 65 78 2e 65 6d ket() && !lex.em
3090: 70 74 79 20 26 26 20 6c 65 78 2e 66 72 6f 6e 74 pty && lex.front
30a0: 2e 73 74 72 21 3d 22 2c 22 20 29 0d 0a 09 09 7b .str!="," )....{
30b0: 0d 0a 09 09 09 61 75 74 6f 20 70 6f 73 20 3d 20 .....auto pos =
30c0: 63 75 72 72 65 6e 74 50 6f 73 69 74 69 6f 6e 28 currentPosition(
30d0: 29 3b 0d 0a 09 09 09 73 74 72 69 6e 67 20 70 20 );.....string p
30e0: 3d 20 65 61 74 49 64 28 22 66 6f 72 20 66 75 6e = eatId("for fun
30f0: 63 74 69 6f 6e 20 70 61 72 61 6d 65 74 65 72 22 ction parameter"
3100: 2c 20 41 6c 6c 6f 77 51 75 6f 74 65 64 29 3b 0d , AllowQuoted);.
3110: 0a 09 09 09 69 66 28 20 70 20 3d 3d 20 22 40 22 ....if( p == "@"
3120: 20 29 0d 0a 09 09 09 09 6c 61 79 20 7e 3d 20 22 )......lay ~= "
3130: 40 22 20 7e 20 65 61 74 49 64 28 22 61 66 74 65 @" ~ eatId("afte
3140: 72 20 40 22 2c 20 41 6c 6c 6f 77 51 75 6f 74 65 r @", AllowQuote
3150: 64 29 3b 0d 0a 09 09 09 65 6c 73 65 20 69 66 28 d);.....else if(
3160: 20 76 61 72 2e 65 6d 70 74 79 20 29 0d 0a 09 09 var.empty )....
3170: 09 09 76 61 72 20 3d 20 70 3b 0d 0a 09 09 09 65 ..var = p;.....e
3180: 6c 73 65 0d 0a 09 09 09 09 74 68 72 6f 77 20 67 lse......throw g
3190: 65 6e 65 78 21 50 61 72 73 65 45 78 63 65 70 74 enex!ParseExcept
31a0: 69 6f 6e 28 70 6f 73 2c 20 22 6f 6e 65 20 70 61 ion(pos, "one pa
31b0: 72 61 6d 65 74 65 72 20 68 61 73 20 74 77 6f 20 rameter has two
31c0: 6e 61 6d 65 73 22 29 3b 0d 0a 09 09 7d 0d 0a 09 names");....}...
31d0: 09 72 65 74 75 72 6e 20 6e 65 77 20 50 61 72 61 .return new Para
31e0: 6d 65 74 65 72 28 76 61 72 2c 20 6c 61 79 29 3b meter(var, lay);
31f0: 0d 0a 09 7d 0d 0a 0d 0a 70 72 69 76 61 74 65 3a ...}....private:
3200: 0d 0a 09 4c 65 78 65 72 20 6c 65 78 3b 0d 0a 09 ...Lexer lex;...
3210: 74 68 69 73 28 4c 65 78 65 72 20 6c 65 78 29 20 this(Lexer lex)
3220: 7b 20 74 68 69 73 2e 6c 65 78 20 3d 20 6c 65 78 { this.lex = lex
3230: 3b 20 7d 0d 0a 0d 0a 09 62 6f 6f 6c 20 69 73 4e ; }.....bool isN
3240: 75 6d 62 65 72 28 73 74 72 69 6e 67 20 73 29 0d umber(string s).
3250: 0a 09 7b 0d 0a 09 09 72 65 74 75 72 6e 20 66 69 ..{....return fi
3260: 6e 64 21 28 60 61 3c 27 30 27 20 7c 7c 20 27 39 nd!(`a<'0' || '9
3270: 27 3c 61 60 29 28 73 29 2e 65 6d 70 74 79 3b 0d '<a`)(s).empty;.
3280: 0a 09 7d 0d 0a 09 0d 0a 09 76 6f 69 64 20 65 61 ..}......void ea
3290: 74 28 73 74 72 69 6e 67 20 6b 77 64 2c 20 6c 61 t(string kwd, la
32a0: 7a 79 20 73 74 72 69 6e 67 20 6d 73 67 29 0d 0a zy string msg)..
32b0: 09 7b 0d 0a 09 09 69 66 28 20 21 74 72 79 45 61 .{....if( !tryEa
32c0: 74 28 6b 77 64 29 20 29 0d 0a 09 09 09 69 66 28 t(kwd) ).....if(
32d0: 20 6c 65 78 2e 65 6d 70 74 79 20 29 0d 0a 09 09 lex.empty )....
32e0: 09 09 74 68 72 6f 77 20 67 65 6e 65 78 21 55 6e ..throw genex!Un
32f0: 65 78 70 65 63 74 65 64 45 4f 46 28 0d 0a 09 09 expectedEOF(....
3300: 09 09 09 63 75 72 72 65 6e 74 50 6f 73 69 74 69 ...currentPositi
3310: 6f 6e 28 29 2c 20 73 70 72 69 6e 74 66 21 22 25 on(), sprintf!"%
3320: 73 20 69 73 20 65 78 70 65 63 74 65 64 20 25 73 s is expected %s
3330: 20 62 75 74 20 6e 6f 74 20 66 6f 75 6e 64 22 28 but not found"(
3340: 6b 77 64 2c 6d 73 67 29 29 3b 0d 0a 09 09 09 65 kwd,msg));.....e
3350: 6c 73 65 0d 0a 09 09 09 09 74 68 72 6f 77 20 67 lse......throw g
3360: 65 6e 65 78 21 50 61 72 73 65 45 78 63 65 70 74 enex!ParseExcept
3370: 69 6f 6e 28 0d 0a 09 09 09 09 09 63 75 72 72 65 ion(.......curre
3380: 6e 74 50 6f 73 69 74 69 6f 6e 28 29 2c 20 73 70 ntPosition(), sp
3390: 72 69 6e 74 66 21 22 25 73 20 69 73 20 65 78 70 rintf!"%s is exp
33a0: 65 63 74 65 64 20 66 6f 72 20 25 73 20 62 75 74 ected for %s but
33b0: 20 6e 6f 74 20 66 6f 75 6e 64 22 28 6b 77 64 2c not found"(kwd,
33c0: 6d 73 67 29 29 3b 0d 0a 09 7d 0d 0a 0d 0a 09 62 msg));...}.....b
33d0: 6f 6f 6c 20 74 72 79 45 61 74 28 73 74 72 69 6e ool tryEat(strin
33e0: 67 20 6b 77 64 29 0d 0a 09 7b 0d 0a 09 09 69 66 g kwd)...{....if
33f0: 28 20 6c 65 78 2e 65 6d 70 74 79 20 7c 7c 20 6c ( lex.empty || l
3400: 65 78 2e 66 72 6f 6e 74 2e 71 75 6f 74 65 64 20 ex.front.quoted
3410: 7c 7c 20 6c 65 78 2e 66 72 6f 6e 74 2e 73 74 72 || lex.front.str
3420: 21 3d 6b 77 64 20 29 0d 0a 09 09 09 72 65 74 75 !=kwd ).....retu
3430: 72 6e 20 66 61 6c 73 65 3b 0d 0a 09 09 6c 65 78 rn false;....lex
3440: 2e 70 6f 70 46 72 6f 6e 74 3b 0d 0a 09 09 72 65 .popFront;....re
3450: 74 75 72 6e 20 74 72 75 65 3b 0d 0a 09 7d 0d 0a turn true;...}..
3460: 0d 0a 09 65 6e 75 6d 20 7b 41 6c 6c 6f 77 51 75 ...enum {AllowQu
3470: 6f 74 65 64 3d 74 72 75 65 2c 20 44 69 73 61 6c oted=true, Disal
3480: 6c 6f 77 51 75 6f 74 65 64 3d 66 61 6c 73 65 7d lowQuoted=false}
3490: 3b 0d 0a 09 73 74 72 69 6e 67 20 65 61 74 49 64 ;...string eatId
34a0: 28 6c 61 7a 79 20 73 74 72 69 6e 67 20 6d 73 67 (lazy string msg
34b0: 2c 20 62 6f 6f 6c 20 61 71 3d 44 69 73 61 6c 6c , bool aq=Disall
34c0: 6f 77 51 75 6f 74 65 64 29 0d 0a 09 7b 0d 0a 09 owQuoted)...{...
34d0: 09 69 66 28 20 6c 65 78 2e 65 6d 70 74 79 20 29 .if( lex.empty )
34e0: 0d 0a 09 09 09 74 68 72 6f 77 20 67 65 6e 65 78 .....throw genex
34f0: 21 55 6e 65 78 70 65 63 74 65 64 45 4f 46 28 63 !UnexpectedEOF(c
3500: 75 72 72 65 6e 74 50 6f 73 69 74 69 6f 6e 28 29 urrentPosition()
3510: 2c 20 22 69 64 65 6e 74 69 66 69 65 72 20 69 73 , "identifier is
3520: 20 65 78 70 65 63 74 65 64 20 62 75 74 20 6e 6f expected but no
3530: 74 20 66 6f 75 6e 64 20 22 7e 6d 73 67 29 3b 0d t found "~msg);.
3540: 0a 09 09 69 66 28 20 21 61 71 20 26 26 20 6c 65 ...if( !aq && le
3550: 78 2e 66 72 6f 6e 74 2e 71 75 6f 74 65 64 20 29 x.front.quoted )
3560: 0d 0a 09 09 09 74 68 72 6f 77 20 67 65 6e 65 78 .....throw genex
3570: 21 50 61 72 73 65 45 78 63 65 70 74 69 6f 6e 28 !ParseException(
3580: 63 75 72 72 65 6e 74 50 6f 73 69 74 69 6f 6e 28 currentPosition(
3590: 29 2c 20 22 69 64 65 6e 74 69 66 69 65 72 20 69 ), "identifier i
35a0: 73 20 65 78 70 65 63 74 65 64 20 62 75 74 20 6e s expected but n
35b0: 6f 74 20 66 6f 75 6e 64 20 22 7e 6d 73 67 29 3b ot found "~msg);
35c0: 0d 0a 09 09 73 63 6f 70 65 28 65 78 69 74 29 20 ....scope(exit)
35d0: 6c 65 78 2e 70 6f 70 46 72 6f 6e 74 3b 0d 0a 09 lex.popFront;...
35e0: 09 72 65 74 75 72 6e 20 6c 65 78 2e 66 72 6f 6e .return lex.fron
35f0: 74 2e 73 74 72 3b 0d 0a 09 7d 0d 0a 0d 0a 09 41 t.str;...}.....A
3600: 53 54 20 64 6f 4e 6f 74 68 69 6e 67 45 78 70 72 ST doNothingExpr
3610: 65 73 73 69 6f 6e 28 29 0d 0a 09 7b 0d 0a 09 09 ession()...{....
3620: 72 65 74 75 72 6e 20 6e 65 77 20 53 74 72 28 63 return new Str(c
3630: 75 72 72 65 6e 74 50 6f 73 69 74 69 6f 6e 28 29 urrentPosition()
3640: 2c 20 22 28 65 6d 70 74 79 20 66 75 6e 63 74 69 , "(empty functi
3650: 6f 6e 20 62 6f 64 79 29 22 29 3b 0d 0a 09 7d 0d on body)");...}.
3660: 0a 0d 0a 09 4c 65 78 50 6f 73 69 74 69 6f 6e 20 ....LexPosition
3670: 63 75 72 72 65 6e 74 50 6f 73 69 74 69 6f 6e 28 currentPosition(
3680: 29 0d 0a 09 7b 0d 0a 09 09 72 65 74 75 72 6e 20 )...{....return
3690: 6c 65 78 2e 65 6d 70 74 79 20 3f 20 6e 75 6c 6c lex.empty ? null
36a0: 20 3a 20 6c 65 78 2e 66 72 6f 6e 74 2e 70 6f 73 : lex.front.pos
36b0: 3b 0d 0a 09 7d 0d 0a 7d 0d 0a 0d 0a 75 6e 69 74 ;...}..}....unit
36c0: 74 65 73 74 0d 0a 7b 0d 0a 09 6d 69 78 69 6e 20 test..{...mixin
36d0: 45 61 73 79 41 53 54 3b 0d 0a 0d 0a 09 61 73 73 EasyAST;.....ass
36e0: 65 72 74 5f 65 71 28 70 61 72 73 65 53 74 72 69 ert_eq(parseStri
36f0: 6e 67 28 60 31 32 33 60 29 2c 20 69 6e 74 6c 28 ng(`123`), intl(
3700: 31 32 33 29 29 3b 0d 0a 09 61 73 73 65 72 74 5f 123));...assert_
3710: 65 71 28 70 61 72 73 65 53 74 72 69 6e 67 28 60 eq(parseString(`
3720: 22 66 6f 6f 22 60 29 2c 20 73 74 72 6c 28 22 66 "foo"`), strl("f
3730: 6f 6f 22 29 29 3b 0d 0a 09 61 73 73 65 72 74 5f oo"));...assert_
3740: 65 71 28 70 61 72 73 65 53 74 72 69 6e 67 28 60 eq(parseString(`
3750: 66 75 6e 28 29 7b 31 7d 60 29 2c 20 66 75 6e 28 fun(){1}`), fun(
3760: 5b 5d 2c 69 6e 74 6c 28 31 29 29 29 3b 0d 0a 09 [],intl(1)));...
3770: 61 73 73 65 72 74 5f 65 71 28 70 61 72 73 65 53 assert_eq(parseS
3780: 74 72 69 6e 67 28 60 66 75 6e 28 78 29 7b 31 7d tring(`fun(x){1}
3790: 60 29 2c 20 66 75 6e 28 5b 22 78 22 5d 2c 69 6e `), fun(["x"],in
37a0: 74 6c 28 31 29 29 29 3b 0d 0a 09 61 73 73 65 72 tl(1)));...asser
37b0: 74 5f 65 71 28 70 61 72 73 65 53 74 72 69 6e 67 t_eq(parseString
37c0: 28 22 5c 75 30 33 42 42 28 29 7b 31 7d 22 29 2c ("\u03BB(){1}"),
37d0: 20 66 75 6e 28 5b 5d 2c 69 6e 74 6c 28 31 29 29 fun([],intl(1))
37e0: 29 3b 0d 0a 09 61 73 73 65 72 74 5f 65 71 28 70 );...assert_eq(p
37f0: 61 72 73 65 53 74 72 69 6e 67 28 22 5c 75 30 33 arseString("\u03
3800: 42 42 28 78 29 7b 31 7d 22 29 2c 20 66 75 6e 28 BB(x){1}"), fun(
3810: 5b 22 78 22 5d 2c 69 6e 74 6c 28 31 29 29 29 3b ["x"],intl(1)));
3820: 0d 0a 09 61 73 73 65 72 74 5f 65 71 28 70 61 72 ...assert_eq(par
3830: 73 65 53 74 72 69 6e 67 28 60 31 3b 32 60 29 2c seString(`1;2`),
3840: 20 6c 65 74 28 22 5f 22 2c 22 22 2c 69 6e 74 6c let("_","",intl
3850: 28 31 29 2c 69 6e 74 6c 28 32 29 29 29 3b 0d 0a (1),intl(2)));..
3860: 09 61 73 73 65 72 74 5f 65 71 28 70 61 72 73 65 .assert_eq(parse
3870: 53 74 72 69 6e 67 28 60 31 3b 32 3b 60 29 2c 20 String(`1;2;`),
3880: 6c 65 74 28 22 5f 22 2c 22 22 2c 69 6e 74 6c 28 let("_","",intl(
3890: 31 29 2c 69 6e 74 6c 28 32 29 29 29 3b 0d 0a 09 1),intl(2)));...
38a0: 61 73 73 65 72 74 5f 65 71 28 70 61 72 73 65 53 assert_eq(parseS
38b0: 74 72 69 6e 67 28 60 6c 65 74 20 78 3d 31 20 69 tring(`let x=1 i
38c0: 6e 20 32 60 29 2c 20 6c 65 74 28 22 78 22 2c 22 n 2`), let("x","
38d0: 22 2c 69 6e 74 6c 28 31 29 2c 69 6e 74 6c 28 32 ",intl(1),intl(2
38e0: 29 29 29 3b 0d 0a 09 61 73 73 65 72 74 5f 65 71 )));...assert_eq
38f0: 28 70 61 72 73 65 53 74 72 69 6e 67 28 60 76 61 (parseString(`va
3900: 72 20 78 3d 31 3b 32 3b 60 29 2c 20 6c 65 74 28 r x=1;2;`), let(
3910: 22 78 22 2c 22 22 2c 69 6e 74 6c 28 31 29 2c 69 "x","",intl(1),i
3920: 6e 74 6c 28 32 29 29 29 3b 0d 0a 09 61 73 73 65 ntl(2)));...asse
3930: 72 74 5f 65 71 28 70 61 72 73 65 53 74 72 69 6e rt_eq(parseStrin
3940: 67 28 60 64 65 66 20 78 3d 31 60 29 2c 20 6c 65 g(`def x=1`), le
3950: 74 28 22 78 22 2c 22 22 2c 69 6e 74 6c 28 31 29 t("x","",intl(1)
3960: 2c 76 61 72 28 22 78 22 29 29 29 3b 0d 0a 09 61 ,var("x")));...a
3970: 73 73 65 72 74 5f 65 71 28 70 61 72 73 65 53 74 ssert_eq(parseSt
3980: 72 69 6e 67 28 60 40 76 61 6c 20 78 3d 31 3b 60 ring(`@val x=1;`
3990: 29 2c 20 6c 65 74 28 22 78 22 2c 22 40 76 61 6c ), let("x","@val
39a0: 22 2c 69 6e 74 6c 28 31 29 2c 76 61 72 28 22 78 ",intl(1),var("x
39b0: 22 29 29 29 3b 0d 0a 09 61 73 73 65 72 74 5f 65 ")));...assert_e
39c0: 71 28 70 61 72 73 65 53 74 72 69 6e 67 28 60 40 q(parseString(`@
39d0: 74 79 70 20 78 3d 22 23 69 6e 74 22 3b 60 29 2c typ x="#int";`),
39e0: 20 6c 65 74 28 22 78 22 2c 22 40 74 79 70 22 2c let("x","@typ",
39f0: 73 74 72 6c 28 22 23 69 6e 74 22 29 2c 76 61 72 strl("#int"),var
3a00: 28 22 78 22 29 29 29 3b 0d 0a 09 61 73 73 65 72 ("x")));...asser
3a10: 74 5f 65 71 28 70 61 72 73 65 53 74 72 69 6e 67 t_eq(parseString
3a20: 28 60 66 28 31 2c 32 29 60 29 2c 20 63 61 6c 6c (`f(1,2)`), call
3a30: 28 76 61 72 28 22 66 22 29 2c 69 6e 74 6c 28 31 (var("f"),intl(1
3a40: 29 2c 69 6e 74 6c 28 32 29 29 29 3b 0d 0a 09 61 ),intl(2)));...a
3a50: 73 73 65 72 74 5f 65 71 28 70 61 72 73 65 53 74 ssert_eq(parseSt
3a60: 72 69 6e 67 28 60 69 66 28 31 29 7b 32 7d 60 29 ring(`if(1){2}`)
3a70: 2c 20 63 61 6c 6c 28 76 61 72 28 22 69 66 22 29 , call(var("if")
3a80: 2c 69 6e 74 6c 28 31 29 2c 66 75 6e 28 5b 5d 2c ,intl(1),fun([],
3a90: 69 6e 74 6c 28 32 29 29 2c 66 75 6e 28 5b 5d 2c intl(2)),fun([],
3aa0: 73 74 72 6c 28 22 28 65 6d 70 74 79 20 66 75 6e strl("(empty fun
3ab0: 63 74 69 6f 6e 20 62 6f 64 79 29 22 29 29 29 29 ction body)"))))
3ac0: 3b 0d 0a 09 61 73 73 65 72 74 5f 65 71 28 70 61 ;...assert_eq(pa
3ad0: 72 73 65 53 74 72 69 6e 67 28 60 69 66 28 31 29 rseString(`if(1)
3ae0: 7b 32 7d 65 6c 73 65 7b 33 7d 60 29 2c 20 63 61 {2}else{3}`), ca
3af0: 6c 6c 28 76 61 72 28 22 69 66 22 29 2c 69 6e 74 ll(var("if"),int
3b00: 6c 28 31 29 2c 66 75 6e 28 5b 5d 2c 69 6e 74 6c l(1),fun([],intl
3b10: 28 32 29 29 2c 66 75 6e 28 5b 5d 2c 69 6e 74 6c (2)),fun([],intl
3b20: 28 33 29 29 29 29 3b 0d 0a 09 61 73 73 65 72 74 (3))));...assert
3b30: 5f 65 71 28 70 61 72 73 65 53 74 72 69 6e 67 28 _eq(parseString(
3b40: 60 69 66 28 31 29 7b 7d 65 6c 73 65 7b 33 7d 28 `if(1){}else{3}(
3b50: 29 28 29 60 29 2c 0d 0a 09 09 63 61 6c 6c 28 63 )()`),....call(c
3b60: 61 6c 6c 28 63 61 6c 6c 28 76 61 72 28 22 69 66 all(call(var("if
3b70: 22 29 2c 69 6e 74 6c 28 31 29 2c 66 75 6e 28 5b "),intl(1),fun([
3b80: 5d 2c 73 74 72 6c 28 22 28 65 6d 70 74 79 20 66 ],strl("(empty f
3b90: 75 6e 63 74 69 6f 6e 20 62 6f 64 79 29 22 29 29 unction body)"))
3ba0: 2c 66 75 6e 28 5b 5d 2c 69 6e 74 6c 28 33 29 29 ,fun([],intl(3))
3bb0: 29 29 29 29 3b 0d 0a 09 61 73 73 65 72 74 5f 65 ))));...assert_e
3bc0: 71 28 70 61 72 73 65 53 74 72 69 6e 67 28 60 31 q(parseString(`1
3bd0: 2b 32 2a 33 60 29 2c 20 63 61 6c 6c 28 76 61 72 +2*3`), call(var
3be0: 28 22 2b 22 29 2c 69 6e 74 6c 28 31 29 2c 63 61 ("+"),intl(1),ca
3bf0: 6c 6c 28 76 61 72 28 22 2a 22 29 2c 69 6e 74 6c ll(var("*"),intl
3c00: 28 32 29 2c 69 6e 74 6c 28 33 29 29 29 29 3b 0d (2),intl(3))));.
3c10: 0a 09 61 73 73 65 72 74 5f 65 71 28 70 61 72 73 ..assert_eq(pars
3c20: 65 53 74 72 69 6e 67 28 60 28 31 2b 32 29 2a 33 eString(`(1+2)*3
3c30: 60 29 2c 20 63 61 6c 6c 28 76 61 72 28 22 2a 22 `), call(var("*"
3c40: 29 2c 63 61 6c 6c 28 76 61 72 28 22 2b 22 29 2c ),call(var("+"),
3c50: 69 6e 74 6c 28 31 29 2c 69 6e 74 6c 28 32 29 29 intl(1),intl(2))
3c60: 2c 69 6e 74 6c 28 33 29 29 29 3b 0d 0a 09 61 73 ,intl(3)));...as
3c70: 73 65 72 74 5f 65 71 28 70 61 72 73 65 53 74 72 sert_eq(parseStr
3c80: 69 6e 67 28 60 31 2a 28 32 2b 33 29 60 29 2c 20 ing(`1*(2+3)`),
3c90: 63 61 6c 6c 28 76 61 72 28 22 2a 22 29 2c 69 6e call(var("*"),in
3ca0: 74 6c 28 31 29 2c 63 61 6c 6c 28 76 61 72 28 22 tl(1),call(var("
3cb0: 2b 22 29 2c 69 6e 74 6c 28 32 29 2c 69 6e 74 6c +"),intl(2),intl
3cc0: 28 33 29 29 29 29 3b 0d 0a 09 61 73 73 65 72 74 (3))));...assert
3cd0: 5f 65 71 28 70 61 72 73 65 53 74 72 69 6e 67 28 _eq(parseString(
3ce0: 60 31 2a 32 2b 33 60 29 2c 20 63 61 6c 6c 28 76 `1*2+3`), call(v
3cf0: 61 72 28 22 2b 22 29 2c 63 61 6c 6c 28 76 61 72 ar("+"),call(var
3d00: 28 22 2a 22 29 2c 69 6e 74 6c 28 31 29 2c 69 6e ("*"),intl(1),in
3d10: 74 6c 28 32 29 29 2c 69 6e 74 6c 28 33 29 29 29 tl(2)),intl(3)))
3d20: 3b 0d 0a 09 61 73 73 65 72 74 5f 65 71 28 70 61 ;...assert_eq(pa
3d30: 72 73 65 53 74 72 69 6e 67 28 60 40 78 28 31 29 rseString(`@x(1)
3d40: 60 29 2c 20 6c 61 79 28 22 40 78 22 2c 20 69 6e `), lay("@x", in
3d50: 74 6c 28 31 29 29 29 3b 0d 0a 09 61 73 73 65 72 tl(1)));...asser
3d60: 74 5f 65 71 28 70 61 72 73 65 53 74 72 69 6e 67 t_eq(parseString
3d70: 28 60 66 75 6e 28 78 20 40 76 20 40 74 2c 20 79 (`fun(x @v @t, y
3d80: 2c 20 7a 20 40 74 29 7b 7d 60 29 2c 0d 0a 09 09 , z @t){}`),....
3d90: 66 75 6e 70 28 5b 70 61 72 61 6d 28 22 78 22 2c funp([param("x",
3da0: 5b 22 40 76 22 2c 22 40 74 22 5d 29 2c 20 70 61 ["@v","@t"]), pa
3db0: 72 61 6d 28 22 79 22 2c 5b 5d 29 2c 20 70 61 72 ram("y",[]), par
3dc0: 61 6d 28 22 7a 22 2c 5b 22 40 74 22 5d 29 5d 2c am("z",["@t"])],
3dd0: 20 73 74 72 6c 28 22 28 65 6d 70 74 79 20 66 75 strl("(empty fu
3de0: 6e 63 74 69 6f 6e 20 62 6f 64 79 29 22 29 29 29 nction body)")))
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 6c 65 74 20 78 20 3d 20 31 30 30 3b 20 23 63 .let x = 100; #c
3e20: 6f 6d 6d 65 6e 74 0d 0a 09 09 6c 65 74 20 79 20 omment....let y
3e30: 3d 20 32 30 30 3b 20 23 63 6f 6d 6d 65 6e 74 21 = 200; #comment!
3e40: 21 21 21 21 0d 0a 09 09 09 78 2b 79 0d 0a 09 60 !!!!.....x+y...`
3e50: 29 2c 0d 0a 09 09 6c 65 74 28 22 78 22 2c 20 22 ),....let("x", "
3e60: 22 2c 20 69 6e 74 6c 28 31 30 30 29 2c 20 6c 65 ", intl(100), le
3e70: 74 28 22 79 22 2c 20 22 22 2c 20 69 6e 74 6c 28 t("y", "", intl(
3e80: 32 30 30 29 2c 20 63 61 6c 6c 28 76 61 72 28 22 200), call(var("
3e90: 2b 22 29 2c 20 76 61 72 28 22 78 22 29 2c 20 76 +"), var("x"), v
3ea0: 61 72 28 22 79 22 29 29 29 29 0d 0a 09 29 3b 0d ar("y"))))...);.
3eb0: 0a 0d 0a 09 61 73 73 65 72 74 5f 65 71 28 70 61 ....assert_eq(pa
3ec0: 72 73 65 53 74 72 69 6e 67 28 60 0d 0a 09 09 76 rseString(`....v
3ed0: 61 72 20 66 61 63 20 3d 20 66 75 6e 28 78 29 7b ar fac = fun(x){
3ee0: 20 69 66 28 78 20 3c 3d 20 31 29 20 7b 31 7d 20 if(x <= 1) {1}
3ef0: 65 6c 73 65 20 7b 78 2a 66 61 63 28 78 2d 31 29 else {x*fac(x-1)
3f00: 7d 20 7d 3b 0d 0a 09 09 66 61 63 28 31 30 29 0d } };....fac(10).
3f10: 0a 09 60 29 2c 0d 0a 09 09 6c 65 74 28 22 66 61 ..`),....let("fa
3f20: 63 22 2c 20 22 22 2c 20 66 75 6e 28 5b 22 78 22 c", "", fun(["x"
3f30: 5d 2c 0d 0a 09 09 09 63 61 6c 6c 28 76 61 72 28 ],.....call(var(
3f40: 22 69 66 22 29 2c 0d 0a 09 09 09 09 63 61 6c 6c "if"),......call
3f50: 28 76 61 72 28 22 3c 3d 22 29 2c 20 76 61 72 28 (var("<="), var(
3f60: 22 78 22 29 2c 20 69 6e 74 6c 28 31 29 29 2c 0d "x"), intl(1)),.
3f70: 0a 09 09 09 09 66 75 6e 28 5b 5d 2c 20 69 6e 74 .....fun([], int
3f80: 6c 28 31 29 29 2c 0d 0a 09 09 09 09 66 75 6e 28 l(1)),......fun(
3f90: 5b 5d 2c 20 63 61 6c 6c 28 76 61 72 28 22 2a 22 [], call(var("*"
3fa0: 29 2c 20 76 61 72 28 22 78 22 29 2c 20 63 61 6c ), var("x"), cal
3fb0: 6c 28 76 61 72 28 22 66 61 63 22 29 2c 63 61 6c l(var("fac"),cal
3fc0: 6c 28 76 61 72 28 22 2d 22 29 2c 76 61 72 28 22 l(var("-"),var("
3fd0: 78 22 29 2c 69 6e 74 6c 28 31 29 29 29 29 29 0d x"),intl(1))))).
3fe0: 0a 09 09 09 29 29 2c 0d 0a 09 09 09 63 61 6c 6c ....)),.....call
3ff0: 28 76 61 72 28 22 66 61 63 22 29 2c 69 6e 74 6c (var("fac"),intl
4000: 28 31 30 29 29 0d 0a 09 09 29 0d 0a 09 29 3b 0d (10))....)...);.
4010: 0a 7d 0d 0a 0d 0a 75 6e 69 74 74 65 73 74 0d 0a .}....unittest..
4020: 7b 0d 0a 09 61 73 73 65 72 74 5f 74 68 72 6f 77 {...assert_throw
4030: 21 55 6e 65 78 70 65 63 74 65 64 45 4f 46 28 70 !UnexpectedEOF(p
4040: 61 72 73 65 53 74 72 69 6e 67 28 60 31 2b 60 29 arseString(`1+`)
4050: 29 3b 0d 0a 09 61 73 73 65 72 74 5f 74 68 72 6f );...assert_thro
4060: 77 21 50 61 72 73 65 45 78 63 65 70 74 69 6f 6e w!ParseException
4070: 28 70 61 72 73 65 53 74 72 69 6e 67 28 60 31 2b (parseString(`1+
4080: 32 7d 60 29 29 3b 0d 0a 09 61 73 73 65 72 74 5f 2}`));...assert_
4090: 74 68 72 6f 77 21 55 6e 65 78 70 65 63 74 65 64 throw!Unexpected
40a0: 45 4f 46 28 70 61 72 73 65 53 74 72 69 6e 67 28 EOF(parseString(
40b0: 60 6c 65 74 20 22 78 22 60 29 29 3b 0d 0a 09 61 `let "x"`));...a
40c0: 73 73 65 72 74 5f 74 68 72 6f 77 21 55 6e 65 78 ssert_throw!Unex
40d0: 70 65 63 74 65 64 45 4f 46 28 70 61 72 73 65 53 pectedEOF(parseS
40e0: 74 72 69 6e 67 28 60 76 61 72 60 29 29 3b 0d 0a tring(`var`));..
40f0: 09 61 73 73 65 72 74 5f 74 68 72 6f 77 21 50 61 .assert_throw!Pa
4100: 72 73 65 45 78 63 65 70 74 69 6f 6e 28 70 61 72 rseException(par
4110: 73 65 53 74 72 69 6e 67 28 60 40 76 61 6c 20 78 seString(`@val x
4120: 20 3d 3d 60 29 29 3b 0d 0a 09 61 73 73 65 72 74 ==`));...assert
4130: 5f 74 68 72 6f 77 21 50 61 72 73 65 45 78 63 65 _throw!ParseExce
4140: 70 74 69 6f 6e 28 70 61 72 73 65 53 74 72 69 6e ption(parseStrin
4150: 67 28 60 69 66 28 29 7b 31 7d 60 29 29 3b 0d 0a g(`if(){1}`));..
4160: 09 61 73 73 65 72 74 5f 74 68 72 6f 77 21 55 6e .assert_throw!Un
4170: 65 78 70 65 63 74 65 64 45 4f 46 28 70 61 72 73 expectedEOF(pars
4180: 65 53 74 72 69 6e 67 28 60 66 28 60 29 29 3b 0d eString(`f(`));.
4190: 0a 7d 0d 0a 0d 0a 75 6e 69 74 74 65 73 74 0d 0a .}....unittest..
41a0: 7b 0d 0a 09 6d 69 78 69 6e 20 45 61 73 79 41 53 {...mixin EasyAS
41b0: 54 3b 0d 0a 09 61 73 73 65 72 74 5f 65 71 28 70 T;...assert_eq(p
41c0: 61 72 73 65 53 74 72 69 6e 67 28 60 64 65 66 20 arseString(`def
41d0: 66 6f 6f 28 78 29 20 7b 20 78 2b 31 20 7d 3b 20 foo(x) { x+1 };
41e0: 66 6f 6f 60 29 2c 0d 0a 09 09 6c 65 74 28 22 66 foo`),....let("f
41f0: 6f 6f 22 2c 20 22 22 2c 0d 0a 09 09 09 66 75 6e oo", "",.....fun
4200: 28 5b 22 78 22 5d 2c 20 63 61 6c 6c 28 76 61 72 (["x"], call(var
4210: 28 22 2b 22 29 2c 20 76 61 72 28 22 78 22 29 2c ("+"), var("x"),
4220: 20 69 6e 74 6c 28 31 29 29 29 2c 0d 0a 09 09 09 intl(1))),.....
4230: 76 61 72 28 22 66 6f 6f 22 29 29 0d 0a 09 29 3b var("foo"))...);
4240: 0d 0a 0d 0a 09 61 73 73 65 72 74 5f 65 71 28 70 .....assert_eq(p
4250: 61 72 73 65 53 74 72 69 6e 67 28 60 40 40 74 79 arseString(`@@ty
4260: 70 65 20 28 20 78 20 29 20 7b 20 78 20 7d 60 29 pe ( x ) { x }`)
4270: 2c 0d 0a 09 09 6c 65 74 28 22 40 74 79 70 65 22 ,....let("@type"
4280: 2c 20 53 79 73 74 65 6d 4c 61 79 65 72 2c 20 66 , SystemLayer, f
4290: 75 6e 28 5b 22 78 22 5d 2c 20 76 61 72 28 22 78 un(["x"], var("x
42a0: 22 29 29 2c 20 6c 61 79 28 53 79 73 74 65 6d 4c ")), lay(SystemL
42b0: 61 79 65 72 2c 20 76 61 72 28 22 40 74 79 70 65 ayer, var("@type
42c0: 22 29 29 29 20 29 3b 0d 0a 0d 0a 09 61 73 73 65 "))) );.....asse
42d0: 72 74 5f 65 71 28 70 61 72 73 65 53 74 72 69 6e rt_eq(parseStrin
42e0: 67 28 60 7b 7d 60 29 2c 20 63 61 6c 6c 28 76 61 g(`{}`), call(va
42f0: 72 28 22 7b 7d 22 29 29 29 3b 0d 0a 09 61 73 73 r("{}")));...ass
4300: 65 72 74 5f 65 71 28 70 61 72 73 65 53 74 72 69 ert_eq(parseStri
4310: 6e 67 28 60 7b 66 6f 6f 3a 31 2c 22 62 61 72 22 ng(`{foo:1,"bar"
4320: 3a 32 7d 60 29 2c 0d 0a 09 09 63 61 6c 6c 28 76 :2}`),....call(v
4330: 61 72 28 22 2e 3d 22 29 2c 20 63 61 6c 6c 28 76 ar(".="), call(v
4340: 61 72 28 22 2e 3d 22 29 2c 20 63 61 6c 6c 28 76 ar(".="), call(v
4350: 61 72 28 22 7b 7d 22 29 29 2c 20 73 74 72 6c 28 ar("{}")), strl(
4360: 22 66 6f 6f 22 29 2c 20 69 6e 74 6c 28 31 29 29 "foo"), intl(1))
4370: 2c 20 73 74 72 6c 28 22 62 61 72 22 29 2c 20 69 , strl("bar"), i
4380: 6e 74 6c 28 32 29 29 29 3b 0d 0a 09 61 73 73 65 ntl(2)));...asse
4390: 72 74 5f 65 71 28 70 61 72 73 65 53 74 72 69 6e rt_eq(parseStrin
43a0: 67 28 60 7b 7d 2e 66 6f 6f 60 29 2c 20 63 61 6c g(`{}.foo`), cal
43b0: 6c 28 76 61 72 28 22 2e 22 29 2c 63 61 6c 6c 28 l(var("."),call(
43c0: 76 61 72 28 22 7b 7d 22 29 29 2c 73 74 72 6c 28 var("{}")),strl(
43d0: 22 66 6f 6f 22 29 29 29 3b 0d 0a 09 61 73 73 65 "foo")));...asse
43e0: 72 74 5f 65 71 28 70 61 72 73 65 53 74 72 69 6e rt_eq(parseStrin
43f0: 67 28 60 7b 7d 2e 3f 66 6f 6f 60 29 2c 20 63 61 g(`{}.?foo`), ca
4400: 6c 6c 28 76 61 72 28 22 2e 3f 22 29 2c 63 61 6c ll(var(".?"),cal
4410: 6c 28 76 61 72 28 22 7b 7d 22 29 29 2c 73 74 72 l(var("{}")),str
4420: 6c 28 22 66 6f 6f 22 29 29 29 3b 0d 0a 09 61 73 l("foo")));...as
4430: 73 65 72 74 5f 65 71 28 70 61 72 73 65 53 74 72 sert_eq(parseStr
4440: 69 6e 67 28 60 78 7b 79 3a 31 7d 60 29 2c 20 63 ing(`x{y:1}`), c
4450: 61 6c 6c 28 76 61 72 28 22 2e 3d 22 29 2c 76 61 all(var(".="),va
4460: 72 28 22 78 22 29 2c 73 74 72 6c 28 22 79 22 29 r("x"),strl("y")
4470: 2c 69 6e 74 6c 28 31 29 29 29 3b 0d 0a 7d 0d 0a ,intl(1)));..}..
4480: 0d 0a 75 6e 69 74 74 65 73 74 0d 0a 7b 0d 0a 09 ..unittest..{...
4490: 61 73 73 65 72 74 5f 6e 6f 74 68 72 6f 77 28 70 assert_nothrow(p
44a0: 61 72 73 65 53 74 72 69 6e 67 28 60 0d 0a 09 09 arseString(`....
44b0: 63 61 73 65 28 20 31 20 29 0d 0a 09 09 09 77 68 case( 1 ).....wh
44c0: 65 6e 28 78 29 7b 31 7d 0d 0a 09 60 29 29 3b 0d en(x){1}...`));.
44d0: 0a 09 61 73 73 65 72 74 5f 6e 6f 74 68 72 6f 77 ..assert_nothrow
44e0: 28 70 61 72 73 65 53 74 72 69 6e 67 28 60 0d 0a (parseString(`..
44f0: 09 09 63 61 73 65 28 20 31 20 29 0d 0a 09 09 09 ..case( 1 ).....
4500: 77 68 65 6e 28 7b 61 61 61 61 3a 5f 7d 29 7b 31 when({aaaa:_}){1
4510: 7d 0d 0a 09 60 29 29 3b 0d 0a 09 61 73 73 65 72 }...`));...asser
4520: 74 5f 6e 6f 74 68 72 6f 77 28 70 61 72 73 65 53 t_nothrow(parseS
4530: 74 72 69 6e 67 28 60 0d 0a 09 09 63 61 73 65 28 tring(`....case(
4540: 20 31 20 29 0d 0a 09 09 09 77 68 65 6e 28 7b 61 1 ).....when({a
4550: 61 61 61 3a 40 76 61 6c 75 65 28 78 29 7d 29 7b aaa:@value(x)}){
4560: 31 7d 0d 0a 09 09 09 77 68 65 6e 28 7b 61 61 61 1}.....when({aaa
4570: 61 3a 7b 62 62 62 3a 5f 7d 2c 20 63 63 63 3a 31 a:{bbb:_}, ccc:1
4580: 32 33 7d 29 7b 31 7d 0d 0a 09 60 29 29 3b 0d 0a 23}){1}...`));..
4590: 7d }