diff options
author | Erin van der Veen | 2018-02-07 10:55:09 +0100 |
---|---|---|
committer | Erin van der Veen | 2018-02-07 10:55:09 +0100 |
commit | 6003941ec469ad5ba7dd0075379edf3a19a51a80 (patch) | |
tree | 4efec0e2385dc8827b52366808849b921ff101b0 /src/SPL | |
parent | Change order of Lexing, we do not want True to be considered an Ident (diff) |
Rename Parse.hs to Lex.hs, to serpate lexing and parsing
Diffstat (limited to 'src/SPL')
-rw-r--r-- | src/SPL/Lex.hs (renamed from src/SPL/Parse.hs) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SPL/Parse.hs b/src/SPL/Lex.hs index ff8f619..23a697d 100644 --- a/src/SPL/Parse.hs +++ b/src/SPL/Lex.hs @@ -1,6 +1,6 @@ -- vim: et ts=2 sw=2 ai: {-# LANGUAGE LambdaCase #-} -module SPL.Parse +module SPL.Lex where import Prelude hiding(lex) |