From 0dd6ea4a272d9b86f145e2c9485f07a49a6b1679 Mon Sep 17 00:00:00 2001 From: Jean Privat Date: Tue, 27 Jan 2009 14:37:05 -0500 Subject: [PATCH] Fill BUGS file. --- BUGS | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/BUGS b/BUGS index e69de29..8a74bee 100644 --- a/BUGS +++ b/BUGS @@ -0,0 +1,21 @@ +Known big bugs and limitations + += Primitive types and null = + +Currently, the implementation of primitive types expects their values are not null. +However, the NIT syntax allows null to be assigned to primitive variable and attributes. + +Thus, using null and primitive may yield to unexpected results. +A temporal ugly fix to avoid bad surprises is that primitive attribute are implicitly initialized with a non null default value. + +Change required: + - wait nullable + - remove implicitly initialization + += Closures redefinition = + +No checks are done to verify that closure signatures are conform among redefinitions + +Change required: + - add the checks + -- 1.7.9.5