nitc: fix calling extern constructors from extern code in separate compiler
[nit.git] / tests / example_point.nit
index 8a568f6..a7b89ea 100644 (file)
 
 class Point
 private
-       var _x: Int     # Abscisse
-       var _y: Int     # OrdonnĂ©e
-
-
-       fun x: Int
-       do
-               return _x
-       end
-       fun x=(i: Int)
-       do
-               _x = i
-       end
-
-       fun y: Int
-       do
-               return _y
-       end
-       fun y=(i: Int)
-       do
-               _y = i
-       end
+       var x: Int = 0  # Abscisse
+       var y: Int = 0  # OrdonnĂ©e
 
        # Change la position d'un point
        fun moveto(x: Int, y: Int)
@@ -57,11 +38,6 @@ private
        end
 
 
-       init
-       do
-               moveto(0, 0)
-       end
-
        init at(x: Int, y: Int)
        do
                moveto(x, y)