Skip to content

Commit

Permalink
Restructing things.
Browse files Browse the repository at this point in the history
I backed out the stack package stuff.  Lets get a protype running, then
make it a stack package.  I actually think that's eaiser, because it
will infer all of the depends.
  • Loading branch information
Harley Eades committed Apr 5, 2017
1 parent 5e10d17 commit 7f34a7c
Show file tree
Hide file tree
Showing 27 changed files with 12 additions and 1,333 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
\\.\\#.*
19 changes: 9 additions & 10 deletions Source/Interface.hs → Source/ALL/Languages/FILL/Interface.hs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
-- Haskell front end to the Agda back end. Both sides must
-- implement these data types.

module Interface (ITerm(..),
IPattern(..)) where

import TypeSyntax
module Languages.FILL.Interface (ITerm(..),
IPattern(..)) where

import Languages.FILL.TypeSyntax

data ITerm = Var String
| Triv
| Void
Expand All @@ -16,11 +16,10 @@ data ITerm = Var String
| Let ITerm Type IPattern ITerm
deriving Show

data IPattern =
PTriv |
Block |
PVar String |
PTensr IPattern IPattern |
PPar IPattern IPattern
data IPattern = PTriv
| Block
| PVar String
| PTensr IPattern IPattern
| PPar IPattern IPattern
deriving Show

File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ LANGUAGE
MultiParamTypeClasses,
UndecidableInstances
#-}
module TypeSyntax where
module Languages.FILL.TypeSyntax where

data Type = FillMeIn
deriving Show
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion Source/Queue.hs → Source/ALL/Utils/Queue.hs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
-- combinator over queues to make complex function definitions easier. --
--------------------------------------------------------------------------

module Queue where
module Utils.Queue where

data Queue a = Queue [a] [a]

Expand Down
26 changes: 0 additions & 26 deletions Source/Agda-LLS.cabal

This file was deleted.

41 changes: 0 additions & 41 deletions Source/Agda-LLS/Agda-LLS.cabal

This file was deleted.

30 changes: 0 additions & 30 deletions Source/Agda-LLS/LICENSE

This file was deleted.

2 changes: 0 additions & 2 deletions Source/Agda-LLS/Setup.hs

This file was deleted.

6 changes: 0 additions & 6 deletions Source/Agda-LLS/app/Main.hs

This file was deleted.

6 changes: 0 additions & 6 deletions Source/Agda-LLS/src/Lib.hs

This file was deleted.

66 changes: 0 additions & 66 deletions Source/Agda-LLS/stack.yaml

This file was deleted.

2 changes: 0 additions & 2 deletions Source/Agda-LLS/test/Spec.hs

This file was deleted.

5 changes: 0 additions & 5 deletions Source/ChangeLog.md

This file was deleted.

89 changes: 0 additions & 89 deletions Source/Eval.hs

This file was deleted.

30 changes: 0 additions & 30 deletions Source/LICENSE

This file was deleted.

Loading

0 comments on commit 7f34a7c

Please sign in to comment.