Commit Graph

19785 Commits

Author SHA1 Message Date
Dmitry Jemerov 657b507371 Improve code coverage performance: always get the .class files corresponding to a source file by looking at the output directory, not by analyzing the source file. 2015-01-13 15:42:15 +01:00
Alexander Udalov ba46df61de Rename jet -> kotlin in stub index external ids 2015-01-13 15:11:08 +03:00
Alexander Udalov 053b5a7700 Drop JetTestCaseBuilder, move methods to JetTestUtils 2015-01-13 15:11:06 +03:00
Alexander Udalov edf054ddf3 Remove duplicate copyright file, use license/LICENSE.txt instead 2015-01-13 15:02:17 +03:00
Alexander Udalov 348d9dfce4 Add test against code in package org.jetbrains.jet 2015-01-13 15:02:16 +03:00
Alexander Udalov f3b2193afd Delete traces of "jet" in test data and unimportant code 2015-01-13 15:02:16 +03:00
Nikolay Krasko 8a77fca449 Add icon for declarations without modifier list 2015-01-13 12:37:22 +03:00
Nikolay Krasko 6215b3962c Fix warning and and test fail 2015-01-13 12:37:19 +03:00
Nikolay Krasko 4bde4a2be4 VfsRootAccess for BuiltInsReferenceResolverTest.java 2015-01-13 12:37:18 +03:00
Nikolay Krasko d149ecdc15 Add base test KotlinMultiFileTestCase with access root disable 2015-01-13 12:35:04 +03:00
Alexander Udalov 21b2fa2509 Update copyrights to 2015 2015-01-13 01:15:18 +03:00
Alexander Udalov 662e8707b2 Minor, drop copyright from test data 2015-01-13 01:15:17 +03:00
Alexander Udalov ff5517621f Minor, fix package check in parser test 2015-01-13 01:15:16 +03:00
Alexander Udalov 6873e34a09 Drop org.jetbrains.jet exception in proguard 2015-01-13 01:15:16 +03:00
Alexander Udalov 093839b860 Rename jet -> kotlin in run configurations 2015-01-13 01:15:15 +03:00
Alexander Udalov c82308d3be Rename jet -> kotlin in idea 2015-01-13 01:15:14 +03:00
Alexander Udalov af24a17a92 Rename jet -> kotlin in idea: actions, compiler, formatter, project 2015-01-13 01:15:12 +03:00
Alexander Udalov 49f3c31e29 Rename jet -> kotlin in idea: configuration, editor, framework, search 2015-01-13 01:15:11 +03:00
Alexander Udalov 44840d07a8 Rename jet -> kotlin in idea: caches, findUsages, references, stubindex 2015-01-13 01:15:10 +03:00
Alexander Udalov a9a15978e0 Rename jet -> kotlin in idea: completion, debugger, decompiler, highlighter
org.jetbrains.jet.plugin.* -> org.jetbrains.kotlin.idea.*
2015-01-13 01:15:09 +03:00
Alexander Udalov 044f7b6156 Rename jet -> kotlin in idea: refactoring, codeInsight
org.jetbrains.jet.plugin.* -> org.jetbrains.kotlin.idea.*
2015-01-13 01:15:08 +03:00
Alexander Udalov fe544eaf71 Rename jet -> kotlin in idea: intentions
org.jetbrains.jet.plugin.intentions -> org.jetbrains.kotlin.idea.intentions
2015-01-13 01:14:37 +03:00
Alexander Udalov 0b64f028b6 Rename jet -> kotlin in idea: quickfixes
org.jetbrains.jet.plugin.quickfix -> org.jetbrains.kotlin.idea.quickfix
2015-01-13 01:14:36 +03:00
Alexander Udalov 17227bb4fe Rename org.jetbrains.kotlin.plugin -> org.jetbrains.kotlin.idea 2015-01-13 01:14:31 +03:00
Nikolay Krasko d4507226a1 Equals and hashCode() methods are not created for data classes without properties 2015-01-12 23:38:18 +03:00
Alexey Sedunov 86d5bd9365 Extract Function: Do not suggest "unit" as function name
#KT-6402 Fixed
2015-01-12 22:55:33 +03:00
Alexey Sedunov 64ddd52e60 Extract Function: Fix type candidates for parameters with flexibly nullable types
#KT-6546 Fixed
2015-01-12 22:55:32 +03:00
Alexey Sedunov c8cb5f8c29 Find Usages: Fix reference matching for declarations located in libraries
#KT-5762 Fixed
2015-01-12 22:55:31 +03:00
Alexey Sedunov 59d646bc16 Extract Function: Generate function in property's enclosing declaration if original expression belongs to initializer of that property
#KT-6290 Fixed
2015-01-12 22:55:30 +03:00
Evgeny Gerashchenko 22f4caa78d Fixed test for KT-6530 Do not report "useless cast" when RHS is unresolved 2015-01-12 21:34:12 +03:00
Evgeny Gerashchenko c64cb06180 KT-6530 Do not report "useless cast" when RHS is unresolved
#KT-6530 fixed
2015-01-12 19:26:44 +03:00
nik 6e9f94d1ea incremental compiler caches: code cleanup and simplification 2015-01-12 17:15:13 +03:00
Alexander Udalov 09942d7c09 Rename jet -> kotlin in idea tests
org.jetbrains.jet -> org.jetbrains.kotlin (except 'plugin' subpackage)
2015-01-12 15:40:24 +03:00
Alexander Udalov 0e8b00c1f4 Rename jet -> kotlin in compiler-tests: resolve
org.jetbrains.jet.resolve -> org.jetbrains.kotlin.resolve
2015-01-12 15:40:22 +03:00
Alexander Udalov 0866d0517f Rename jet -> kotlin in idea resolve tests
org.jetbrains.jet.resolve -> org.jetbrains.kotlin.plugin.resolve
2015-01-12 15:40:22 +03:00
Alexander Udalov 587a92717c Update copyright in frontend (cfg), tests 2015-01-12 15:40:16 +03:00
Alexander Udalov 7d496377c4 Remove bootstrap workarounds 2015-01-12 15:40:15 +03:00
Alexander Udalov 6a11983f9e Minor, delete unused deprecated method 2015-01-12 15:40:14 +03:00
Alexander Udalov 869cfaaabe Remove "Integration Tests" run configuration
Integration tests are now merged into All Tests
2015-01-12 15:40:14 +03:00
Natalia Ukhorskaya e363e70e44 Suggest 'Make Abstract' quickfix for class which doesn't implement all methods from its base class interfaces
#KT-6321 Fixed
2015-01-12 14:16:31 +03:00
Natalia Ukhorskaya 2aaa94cccb Debugger: implement Jump to Source for localVariables 2015-01-12 14:16:29 +03:00
Natalia Ukhorskaya 8dcb4ab5bb Debugger: suppress UNSAFE_CALL diagnostic in debug mode 2015-01-12 14:16:26 +03:00
Natalia Ukhorskaya b709baa9b4 Minor: rename 2015-01-12 14:16:24 +03:00
Alexander Udalov 3b81d63334 Rename jet -> kotlin in compiler-tests (except resolve)
Move test-related code to org.jetbrains.kotlin.test, also move some tests to
packages with better names
2015-01-12 00:24:12 +03:00
Alexander Udalov 663d31709b Remove outdated code from compiler-tests 2015-01-11 18:01:48 +03:00
Alexander Udalov 63cefea6e9 Rename jet -> kotlin in frontend
org.jetbrains.jet -> org.jetbrains.kotlin

Also rename package slicedmap to slicedMap
2015-01-11 15:20:51 +03:00
Alexander Udalov 36a469ccd5 Rename jet -> kotlin in idea: JetBundle 2015-01-11 07:03:44 +03:00
Alexander Udalov 9f4513dd75 Rename jet -> kotlin in idea: icons 2015-01-11 05:09:03 +03:00
Alexander Udalov 2b8c358614 Minor, drop irrelevant package from test data comment 2015-01-11 05:09:03 +03:00
Alexander Udalov 64a9585a4d Rename jet -> kotlin in ide-common
org.jetbrains.jet.plugin -> org.jetbrains.kotlin.plugin
2015-01-11 05:09:02 +03:00