Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
curry-frontend
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
62
Issues
62
List
Boards
Labels
Service Desk
Milestones
Merge Requests
3
Merge Requests
3
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
curry
curry-frontend
Commits
3bbe6ee2
Commit
3bbe6ee2
authored
Dec 03, 2013
by
Björn Peemöller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CHANGELOG.md added
parent
f5499f5f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
121 additions
and
0 deletions
+121
-0
CHANGELOG.md
CHANGELOG.md
+121
-0
No files found.
CHANGELOG.md
0 → 100644
View file @
3bbe6ee2
Change log for curry-frontend
=============================
Version 0.3.9 (under development)
=================================
*
Implementation of module pragmas added. Module pragmas of the following
types are now parsed and represented in the abstract syntax tree:
~~~ {.curry}
{-# LANGUAGE LANG_EXT+ #-}
{-# OPTIONS "string" #-}
{-# OPTIONS_TOOL "string" #-}
module Main where
~~~
where
- `LANGEXT+` is a non-empty, comma-separated list of the following
language extensions: `AnonFreeVars`, `FunctionalPatterns`,
`NoImplicitPrelude`, `Records`
- `TOOL` is either `KICS2`, `PAKCS`, or some other tool, represented
as `Unknown String`.
While the distinct language pragmas enable the respective language
extensions, the OPTIONS pragma is ignored.
All other texts given in the pragma braces is ignored and treated as
a nested comment.
*
Error message for different arities of function equations now also
report the corresponding source code positions.
Version 0.3.8
=============
*
Implemented warnings for non-exhaustive pattern matchings
both in function declarations and
`case`
-expressions - fixes #349.
*
Extended options to enable/disable certain types of warnings.
*
Fixed problem when defining an operator directly after an import statement
without import restrictions - fixes #494.
*
Fixed bug w.r.t. polymorphically typed local variables - fixes #480.
*
Fixed missing polymorphism in record labels - fixes #445.
*
Dumping of intermediate structures improved.
*
Fixed bug in type checking w.r.t. recursive type synonyms - fixes 489.
*
Reactivation of Curry interface files.
During adaption of the MCC frontend to FlatCurry the Curry interface
files have been deactivated and replaced by FlatCurry's interface
files. To allow the later addition of type classes to Curry,
they have now been reactivated.
*
Implemented missing semantics of functional patterns in combination
with non-linear left-hand-sides and as-patterns.
*
Various improvements.
Version 0.3.7
=============
*
Support for typed FlatCurry expressions added. Now additional type
information given by the programmer as in
~~~ {.curry}
null (unknown :: [()])
~~~
is represented in FlatCurry and cann therefore be processed by other
programs like PAKCS or KICS2.
Version 0.3.6
=============
*
Error messages are now sorted according to their source code position.
Version 0.3.5
=============
*
Improved reporting of mutiple type signatures.
Version 0.3.4
=============
*
Bug in renaming phase fixed.
Version 0.3.3
=============
*
Corrected translation of
`fcase`
-expressions.
Version 0.3.2
=============
*
Non-linear left-hand-sides now work with guarded expressions - fixes #328.
*
Implemented precedence check - fixes #327.
*
Case completion refactored and corrected - fixes #323.
*
Various improvements and refactorings.
Version 0.3.1
=============
*
Corrected renaming of anonymous free variables - fixes #288.
Version 0.3.0
=============
*
Massive refactoring of the previous version.
*
All compiler warnings removed.
*
Fixed various implementation bugs (#9, #16, #19, #29, #289).
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