Ilya Gorbunov
0eabb6c8d4
Fix js test results interpretation.
2015-03-20 23:13:07 +03:00
Dmitry Jemerov
de7fb22100
fix path mapping for source links
2015-03-20 17:00:58 +01:00
Dmitry Jemerov
75fe342969
fix source links in generated API docs
...
#KT-7062 Fixed
2015-03-20 16:41:59 +01:00
Dmitry Jemerov
b37af0b9e7
Merge pull request #603 from JetBrains/rr/yole/delete-old-website
...
delete old Kotlin website and old API generation target
2015-03-20 15:28:47 +01:00
Dmitry Jemerov
15c253e54f
remove obsolete modules from pom.xml
2015-03-19 19:59:47 +01:00
Dmitry Jemerov
57bb7236cc
delete old Kotlin website and old API generation target
2015-03-19 16:37:02 +01:00
Dmitry Jemerov
17fddbac18
change target path
2015-03-19 15:43:06 +01:00
Dmitry Jemerov
ce39a27869
build script to generate standard library documentation with Dokka
2015-03-19 15:28:35 +01:00
Natalia Ukhorskaya
77139f20b9
Inline ${protobuf.version} into kotlin-reflect pom.xml (it couldn't be resolved from gradle)
2015-03-18 15:36:19 +03:00
Alexander Udalov
2f001ca696
Pack built-ins metadata to kotlin-runtime Maven artifact
...
This fixes reflection usage against Maven's kotlin-reflect
2015-03-18 14:38:26 +03:00
Michael Nedzelsky
3bf14518e8
JS backend: add -meta-info command line option for cli compiler
2015-03-18 09:38:53 +03:00
Pavel V. Talanov
06916d98c6
default -> companion: replace all mentions of default and default object
2015-03-17 15:47:39 +03:00
Pavel V. Talanov
a0783757e8
Delete libraries/sandbox folder with old experimental stuff
2015-03-17 15:46:52 +03:00
Pavel V. Talanov
2a6facaef6
default -> companion: default object -> class object in project code, builtins and libs code
2015-03-17 15:46:48 +03:00
Alexander Udalov
9d6f4e99a1
Move reflection interfaces to module 'builtins'
...
They are considered to be built-ins everywhere anyway
2015-03-16 20:29:39 +03:00
Yan Zhulanow
6fb5dacde4
Fix a "property not found" exception in Gradle 2.x
2015-03-16 18:56:42 +03:00
Yan Zhulanow
6d9d3f00a2
Fix kotlin-android-extensions artifact name in subplugin
2015-03-16 18:56:41 +03:00
Yan Zhulanow
8e5b960e3d
Remove assert with broken separators on Windows in Gradle subplugin test
2015-03-13 20:31:22 +03:00
Ilya Ryzhenkov
4fa5d9cb48
Fix double "deprecated" annotation in generated sources which confuses DX compiler.
2015-03-13 19:30:46 +03:00
Yan Zhulanow
33a1aa342f
Rename kotlin-android-compiler-plugin to kotlin-android-extensions
2015-03-13 15:46:41 +03:00
Yan Zhulanow
8760beeed1
Gradle subplugin test
2015-03-13 15:46:38 +03:00
Yan Zhulanow
9be33338ef
Log Kotlin Gradle subplugin loading
2015-03-13 15:46:38 +03:00
Yan Zhulanow
2f83e600f5
Use Gradle properties to pass plugin-related arguments
2015-03-13 15:46:37 +03:00
Yan Zhulanow
eebed9a8b1
Add all layout directories to sources in Android Gradle subplugin
2015-03-13 15:46:37 +03:00
Ilya Ryzhenkov
e448f40756
Rename Stream<T> to Sequence<T> and provide migration path via deprecated types and functions.
2015-03-12 22:56:43 +03:00
Dmitry Jemerov
32072d0a4f
More standard library documentation.
2015-03-12 16:52:20 +01:00
Alexander Udalov
2b090e02a1
Build kotlin-reflect.jar in build.xml and for Maven
...
Reflection will be distributed in a separate jar and not in kotlin-runtime.jar
for two primary reasons:
- Reflection implementation at the moment takes almost 2Mb
- Separate libraries for separate features is a technique encouraged by Maven,
and it's inconvenient to make it different in the compiler distribution
2015-03-11 16:42:28 +03:00
Alexander Udalov
a01ffd70e7
Fix NoInternalVisibilityInStdLibTest in maven build
...
Create disposable in setUp(), destroy in tearDown()
2015-03-10 16:13:50 +03:00
Alexander Udalov
611700c998
Fix "mvn clean" in libraries/ project
...
JS examples were failing on "clean" because no phases were set for compilation
and thus they required kotlin-maven-plugin on every phase which is obviously
not built yet when we're running "clean"
2015-03-10 16:13:45 +03:00
Ilya Ryzhenkov
e00cdfc8e1
toSortedMap() without a comparator requires keys that are Comparable.
2015-03-10 11:21:41 +03:00
Ilya Ryzhenkov
bfeb21afb0
stdlib: stream() for Map #KT-6547 Fixed
2015-03-10 11:21:41 +03:00
Valery Kharitonov
8873be22d5
Implemented asList() method for arrays. #KT-1313 Fixed
2015-03-10 11:21:40 +03:00
Valery Kharitonov
c8094e7587
Implemented indexOfFirst/Last(predicate). #KT-6577 Fixed
2015-03-10 11:21:40 +03:00
Valery Kharitonov
38a4f86db2
Implemented asIterable method for arrays. #KT-1313 Fixed
2015-03-10 11:21:39 +03:00
Laszlo Hornyak
3954215b50
Add support for + and - operators in immutable maps #KT-6594 Fixed
2015-03-10 11:21:38 +03:00
Ilya Ryzhenkov
1a67e35739
Add more tests to cover stdlib
2015-03-10 11:21:38 +03:00
Alexander Udalov
eced3003ad
Introduce kotlin-reflect Maven artifact
2015-03-07 02:31:00 +03:00
Andrey Breslav
bbb59773aa
filesToAnalyzeCompletely removed
2015-03-06 21:59:05 +03:00
Pavel V. Talanov
59f192ef90
Replace 'class object' with 'default object' in renderers and test data
...
Includes changes to decompiled text
Old syntax is used in builtins and project code for now
2015-03-06 19:36:54 +03:00
Evgeny Gerashchenko
06e3b5937f
Fixed compilation.
2015-03-06 13:43:02 +03:00
Dmitry Jemerov
dbe9a70fbd
standard library deprecations, now with proper messages
2015-03-05 16:32:22 +01:00
Nikolay Krasko
d827038f7c
Fix test
2015-03-05 12:01:42 +03:00
Nikolay Krasko
30a50746b5
Intrinsic default objects implementation: tests
2015-03-05 01:30:38 +03:00
Nikolay Krasko
1f79e0905f
Intrinsic default objects implementation
2015-03-05 01:30:37 +03:00
Dmitry Jemerov
2cc291efdb
Standard library documentation continued.
2015-03-03 11:20:30 +01:00
Pavel V. Talanov
b012b9d8a3
Stdlib: Move classes out of class object in FunctionalList
2015-03-03 13:04:29 +03:00
Dmitry Jemerov
2e208c4294
revert incorrect deprecations
2015-03-02 22:16:52 +01:00
Dmitry Jemerov
f41a0a328f
don't deprecate AbstractIterator for now
2015-03-02 18:19:56 +01:00
Dmitry Jemerov
afafdb31ee
deprecate some legacy code in the standard library
2015-03-02 18:17:17 +01:00
Natalia Ukhorskaya
09435ad0e3
Gradle: fix warning about annotations path entry points to a non-existent location
...
#KT-6865 Fixed
2015-02-27 10:30:28 +03:00