Skip to content

Commit

Permalink
[ #6 ] Rename module
Browse files Browse the repository at this point in the history
  • Loading branch information
ice1000 committed Nov 27, 2018
1 parent 5c4ee44 commit 0122b7c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion OwO.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ library
, OwO.Main
, OwO.Version

, OwO.Syntax.AbsSyntaxTree
, OwO.Syntax.Abstract
, OwO.Syntax.Common
, OwO.Syntax.Position
, OwO.Syntax.TokenType
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE TypeOperators #-}

module OwO.Syntax.AbsSyntaxTree
module OwO.Syntax.Abstract
( Name(..)
, locationOfName
, textOfName
Expand Down
2 changes: 1 addition & 1 deletion src/full/OwO/TypeChecking.hs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module OwO.TypeChecking where
import Data.Functor ((<&>))
import Data.Maybe (catMaybes)

import OwO.Syntax.AbsSyntaxTree
import OwO.Syntax.Abstract
import OwO.TypeChecking.Core
import OwO.TypeChecking.Match
import OwO.TypeChecking.Monad
Expand Down
2 changes: 1 addition & 1 deletion src/full/OwO/TypeChecking/Core.hs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module OwO.TypeChecking.Core

import qualified Data.Text as T

import OwO.Syntax.AbsSyntaxTree
import OwO.Syntax.Abstract
import OwO.Syntax.Common
import OwO.Syntax.Position

Expand Down
2 changes: 1 addition & 1 deletion src/full/OwO/TypeChecking/Match.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
-- | Dependent pattern matching
module OwO.TypeChecking.Match where

import OwO.Syntax.AbsSyntaxTree
import OwO.Syntax.Abstract

#include <impossible.h>
2 changes: 1 addition & 1 deletion src/full/OwO/TypeChecking/Monad.hs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import qualified Data.Map as Map
import qualified Data.Text as T

import OwO.Options
import OwO.Syntax.AbsSyntaxTree
import OwO.Syntax.Abstract
import OwO.Syntax.Common
import OwO.Syntax.Position
import OwO.TypeChecking.Core
Expand Down

0 comments on commit 0122b7c

Please sign in to comment.