From: Francis Russell Date: Tue, 18 Sep 2012 14:00:06 +0000 (+0100) Subject: Rename HighLevel to TopLevel. X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=00456a8a32cba3cd3b85f25dfa275789a4bd1732;p=francis%2Fofc.git Rename HighLevel to TopLevel. --- diff --git a/src/Main.hs b/src/Main.hs index 1878493..d397356 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -1,7 +1,7 @@ module Main (main) where import System.Environment (getArgs) import Parser (runOFLParser) -import HighLevel (prettyPrint) +import TopLevel (prettyPrint) main :: IO() main = do diff --git a/src/Parser.hs b/src/Parser.hs index dd9f026..e5f920e 100644 --- a/src/Parser.hs +++ b/src/Parser.hs @@ -1,5 +1,5 @@ module Parser (runOFLParser) where -import HighLevel +import TopLevel import TargetMapping import Data.List (foldl1') import Text.Parsec diff --git a/src/HighLevel.hs b/src/TopLevel.hs similarity index 99% rename from src/HighLevel.hs rename to src/TopLevel.hs index 8e0703b..3b4fe20 100644 --- a/src/HighLevel.hs +++ b/src/TopLevel.hs @@ -1,4 +1,4 @@ -module HighLevel where +module TopLevel where import TargetMapping import Text.PrettyPrint import Data.List (foldl')