From d286d05537a9403e6d7a6cce93c9f255a2289511 Mon Sep 17 00:00:00 2001 From: "Elf M. Sternberg" Date: Wed, 29 Jun 2016 07:36:58 -0700 Subject: [PATCH] Revised some commentary. I had an idea to try and merge the lexer and the parser. It is, after all, a PEG-generated lexer, and PEGs are supposed to generate parsers, right? But the elegance of the separation at this point is so nice and straightforward that I don't think I win anything by merging them. --- src/parser.coffee | 1 + 1 file changed, 1 insertion(+) diff --git a/src/parser.coffee b/src/parser.coffee index d90ab4e..5890a2f 100644 --- a/src/parser.coffee +++ b/src/parser.coffee @@ -79,6 +79,7 @@ class Contexter else "" +# This is really the compiler at this point... module.exports = (ast, data) -> context = new Contexter(data)