Skip to content

Commit 6d8ab46

Browse files
committed
Internal.Flag, and Internal.Model
1 parent 4b257f2 commit 6d8ab46

File tree

3 files changed

+3664
-2
lines changed

3 files changed

+3664
-2
lines changed

spago.dhall

+9-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,15 @@ You can edit this file as you like.
44
-}
55
{ name = "my-project"
66
, dependencies =
7-
[ "concur-core", "concur-react", "console", "effect", "psci-support" ]
7+
[ "concur-core"
8+
, "concur-react"
9+
, "console"
10+
, "effect"
11+
, "integers"
12+
, "psci-support"
13+
, "strings-extra"
14+
, "tuples"
15+
]
816
, packages = ./packages.dhall
917
, sources = [ "src/**/*.purs", "test/**/*.purs" ]
1018
}

src/Internal/Flag.purs

+2-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ module Internal.Flag
5656
, yAlign
5757
) where
5858

59-
import Data.Eq ((==))
59+
import Data.Eq (class Eq, (==))
6060
import Data.Field ((+), (/))
6161
import Data.Int (round, toNumber)
6262
import Data.Int.Bits as Bitwise
@@ -73,6 +73,7 @@ data Flag
7373
= Flag Int
7474
| Second Int
7575

76+
derive instance eqFlag :: Eq Flag
7677

7778
none :: Field
7879
none =

0 commit comments

Comments
 (0)