- 06 Jun, 2000 3 commits
-
-
Martijn Vervoort authored
-
Martin Wierich authored
-
Martin Wierich authored
module t /*2.0 from m import :: T(C1) 0.2*/ //1.3 from m import T, C1 //3.1 will be transformed into module t /***/ from m import :: T(C1) /***/ /*1.3 from m import T, C1 3.1*/ before scanning. In this way we achieve that the upper source can be compiled with the 2.0 compiler as well as with the 1.3 compiler The comments _must_ begin the line (no leading whitespaces are allowed).
-
- 05 Jun, 2000 2 commits
-
-
Martin Wierich authored
that are imported
-
Martijn Vervoort authored
-
- 31 May, 2000 4 commits
-
-
Martin Wierich authored
-
Martin Wierich authored
-
Martin Wierich authored
to solve the following bug: f # x = undef #! y = x | True = 2 = y After checking this will be like f # x = undef | True = 2 = x To really solve this bug we have to invent something new, because aliases like (#! y = x) are _not_ allowed. We could either introduce a dummy identity function: f # x = undef #! y = dummy_id x | True = 2 = y or we could introduce constructs like f # x = undef #! y | True = 2 = y
-
Martin Wierich authored
follows: In a first phase bind type variables to their instantiation for all producers. In the second phase apply the substitution. This didn't work for consumers that are fused with multiple producers, e.g: cons :: (a->b) (b->c) a -> c prod1 :: Int -> Int prod2 :: d->e During producer-wise binding a and b were first bound to Int and Int. _Then_ b and c were bound to d and e (b was overwritten) Solution: Apply the one substitution for each producer
-
- 30 May, 2000 1 commit
-
-
Martijn Vervoort authored
-
- 26 May, 2000 1 commit
-
-
Martin Wierich authored
#! (a, b) = f was originally translated into #! _x = f #! a = _x.0 #! b = _x.1 which is wrong. Now a an b are in a lazy context
-
- 22 May, 2000 1 commit
-
-
Sjaak Smetsers authored
-
- 17 May, 2000 2 commits
-
-
Martin Wierich authored
-
Martin Wierich authored
-
- 16 May, 2000 1 commit
-
-
Martijn Vervoort authored
did not recognise a dynamic.
-
- 11 May, 2000 3 commits
-
-
Sjaak Smetsers authored
-
Sjaak Smetsers authored
-
Pieter Koopman authored
funny constructors in algebraic typedefs
-
- 03 May, 2000 3 commits
-
-
Martin Wierich authored
this into account)
-
Martin Wierich authored
-
Sjaak Smetsers authored
-
- 27 Apr, 2000 1 commit
-
-
clean authored
-
- 26 Apr, 2000 5 commits
-
-
Martin Wierich authored
-
Martin Wierich authored
-
clean authored
-
clean authored
-
Martin Wierich authored
-
- 12 Apr, 2000 1 commit
-
-
Martin Wierich authored
-
- 30 Mar, 2000 2 commits
-
-
Martin Wierich authored
-
Martin Wierich authored
-
- 24 Mar, 2000 1 commit
-
-
Martin Wierich authored
-
- 22 Mar, 2000 1 commit
-
-
Sjaak Smetsers authored
-
- 20 Mar, 2000 6 commits
-
-
clean authored
-
clean authored
-
clean authored
-
Sjaak Smetsers authored
-
Sjaak Smetsers authored
-
Sjaak Smetsers authored
-
- 17 Mar, 2000 1 commit
-
-
Martin Wierich authored
in "convertCasesOfFunctionsIntoPatterns" and "collectVariables") - new switch "SwitchUniquenessBug" in module checksupport - several bugfixes
-
- 16 Mar, 2000 1 commit
-
-
clean authored
fixed bug in arity check for local functions
-