Remove deprecated size property usage from generated code.

This commit is contained in:
Ilya Gorbunov
2015-05-22 18:28:49 +03:00
parent 58ef7f2691
commit 01a0348685
2 changed files with 10 additions and 10 deletions
@@ -41,7 +41,7 @@ fun arrays(): List<GenericFunction> {
doc { "Returns the last valid index for the array" }
returns("Int")
body {
"get() = size - 1"
"get() = size() - 1"
}
}