Renamed NumberSequence to Progression.

This commit is contained in:
Evgeny Gerashchenko
2013-01-29 21:54:55 +04:00
parent dd4b508213
commit 58f37f38f4
34 changed files with 326 additions and 327 deletions
+2 -2
View File
@@ -68,7 +68,7 @@ var kotlin = {set:function (receiver, key, value) {
};
Kotlin.intDownto = function (from, to) {
return Kotlin.$new(Kotlin.NumberSequence)(from, to, -1);
return Kotlin.$new(Kotlin.Progression)(from, to, -1);
};
Kotlin.modules = {};
@@ -394,7 +394,7 @@ var kotlin = {set:function (receiver, key, value) {
}
});
Kotlin.NumberSequence = Kotlin.$createClass({
Kotlin.Progression = Kotlin.$createClass({
initialize: function (start, end, increment) {
this.$start = start;
this.$end = end;