X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=blobdiff_plain;f=code%2Fparse.js;h=08bc9a0ede9545529a2135c8447209d6032de8c4;hp=4d2bc8d6b027d3b40b96d12737b8c33b5fa11b3f;hb=9731d7ed813516ee7c8c7ee8f24f3295789295d3;hpb=492cb946fbc21f0d3db9de9bd57bd755bf4ca620 diff --git a/code/parse.js b/code/parse.js index 4d2bc8d6..08bc9a0e 100644 --- a/code/parse.js +++ b/code/parse.js @@ -233,8 +233,8 @@ var make_parse = function () { return t; } else { t.first = []; - while (token.arity === "name") { - t.first.push(n); + while (token.arity === "name" || token.id === "\\") { + if (token.id !=== "\\") {t.first.push(n);} n = token; advance(); }