Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
clean-ide
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
6
Issues
6
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
clean-and-itasks
clean-ide
Commits
56b40207
Commit
56b40207
authored
Apr 21, 2011
by
John van Groningen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix strictness annotations of instance member types
parent
7007d7b0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
Pm/PmCompilerOptions.icl
Pm/PmCompilerOptions.icl
+2
-2
Pm/PmTypes.icl
Pm/PmTypes.icl
+6
-6
No files found.
Pm/PmCompilerOptions.icl
View file @
56b40207
...
...
@@ -22,7 +22,7 @@ UnexpectedReport message
instance
==
ListTypes
where
(==)
::
ListTypes
ListTypes
->
Bool
(==)
::
!
ListTypes
!
ListTypes
->
Bool
(==)
NoTypes
NoTypes
=
True
(==)
InferredTypes
InferredTypes
...
...
@@ -48,7 +48,7 @@ where
instance
fromString
ListTypes
where
fromString
::
{#
Char
}
->
ListTypes
fromString
::
!
{#
Char
}
->
ListTypes
fromString
"NoTypes"
=
NoTypes
fromString
"InferredTypes"
...
...
Pm/PmTypes.icl
View file @
56b40207
...
...
@@ -62,7 +62,7 @@ ProcessorSuffix I386 = ".o"
instance
==
Processor
where
(==)
::
Processor
Processor
->
Bool
(==)
::
!
Processor
!
Processor
->
Bool
(==)
CurrentProcessor
CurrentProcessor
=
True
(==)
MC68000
MC68000
=
True
(==)
MC68020
MC68020
=
True
...
...
@@ -75,7 +75,7 @@ where
instance
fromString
Processor
where
fromString
::
{#
Char
}
->
Processor
fromString
::
!
{#
Char
}
->
Processor
fromString
"CurrentProcessor"
=
CurrentProcessor
fromString
"MC68000"
=
MC68000
fromString
"MC68020"
=
MC68020
...
...
@@ -88,7 +88,7 @@ where
instance
toString
Processor
where
toString
::
Processor
->
{#
Char
}
toString
::
!
Processor
->
{#
Char
}
toString
MC68000
=
"MC68000"
toString
MC68020
=
"MC68020"
toString
MC68020_and_68881
=
"MC68020_and_68881"
...
...
@@ -345,7 +345,7 @@ DefApplicationOptions =
instance
==
Output
where
(==)
::
Output
Output
->
Bool
(==)
::
!
Output
!
Output
->
Bool
(==)
BasicValuesOnly
BasicValuesOnly
=
True
(==)
ShowConstructors
ShowConstructors
...
...
@@ -359,7 +359,7 @@ where
instance
fromString
Output
where
fromString
::
{#
Char
}
->
Output
fromString
::
!
{#
Char
}
->
Output
fromString
"BasicValuesOnly"
=
BasicValuesOnly
fromString
"ShowConstructors"
...
...
@@ -373,7 +373,7 @@ where
instance
toString
Output
where
toString
::
Output
->
{#
Char
}
toString
::
!
Output
->
{#
Char
}
toString
BasicValuesOnly
=
"BasicValuesOnly"
toString
ShowConstructors
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment