From 46e1f6e3808d197bbfe67b2978240b23774f154a Mon Sep 17 00:00:00 2001 From: Andrey Breslav Date: Mon, 19 Sep 2011 05:15:38 -0500 Subject: [PATCH] Constructor added to IntList --- compiler/frontend/src/jet/Library.jet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/frontend/src/jet/Library.jet b/compiler/frontend/src/jet/Library.jet index 41bbd9ae238..4f1d451144c 100644 --- a/compiler/frontend/src/jet/Library.jet +++ b/compiler/frontend/src/jet/Library.jet @@ -96,7 +96,7 @@ trait Range> { fun contains(item : T) : Boolean } -class IntRange> : Range, Iterable { +class IntRange>(val start : Int, val end : Int) : Range, Iterable { }