Dmitriy Novozhilov
68d2cbf91f
Extract classes used in control flow analysis of variable into variable package
2019-01-31 17:25:13 +03:00
Dmitriy Novozhilov
1dd7365e9f
Reformat some classes in org.jetbrains.kotlin.cfg according to code style
2019-01-31 17:25:13 +03:00
Dmitriy Novozhilov
fa79f7bf30
Reformat ControlFlowProcessor according to code style
2019-01-31 17:25:13 +03:00
Dmitriy Novozhilov
80835fe6ea
Add ability to configure environment in AbstractLoadJavaTest
...
There is two methods added into `AbstractLoadJavaTest`:
- `configureEnvironment(KotlinCoreEnvironment environment)` allow to
configure environment that will be used two compilation of source test
data and loading generated `.class` files (e.g. you can register extensions)
- `getExtraClasspath()` allow to add custom libraries to classpath of
compiler
Similar methods exists in `AbstractDiagnosticsTest`
2019-01-31 17:25:13 +03:00
Dmitriy Novozhilov
68d7e51d32
Support test directive for rendering full diagnostic messages
...
New `RENDER_DIAGNOSTICS_MESSAGES` directive forces test system render
full messages for all diagnostics that found in test file
2019-01-31 17:25:13 +03:00
Dmitriy Novozhilov
2866bd84a1
Reformat BaseDiagnosticTest according to code style
2019-01-31 17:25:13 +03:00
Dmitriy Novozhilov
047f9abaf7
Make order of rendered diagnostics more stable
...
There was a bug that sometimes diagnostics on the same element with
same names but with different parameters had been reshuffled.
2019-01-31 17:25:13 +03:00
Tor Norbye
a42406f2aa
KT-29586: Add android.annotation annotations
...
KT-29586 Fixed
2019-01-31 17:12:56 +03:00
Pavel V. Talanov
f1f2d5b4d3
Change dsl marker gutter icon to use different colors
...
#KT-27769 Fixed
2019-01-31 14:06:10 +01:00
Ilya Matveev
6b14271931
Declare K/N platform libraries as files instead of modules
...
Earlier the K/N platform libraries were looked for in a local ivy
repository created on basis of a K/N compiler distribution. Such
an approach allowed correctly showing such dependencies in
IDEA using the "group:name:version" format (e.g.
"Kotlin/Native:Accounts:ios_arm64:1.1.1"). But it caused looking
for there libraries in all other declared repositories too
making IDE import slower (see KT-28128).
This patch declares these dependencies as files and gets rid of
the local repo to avoid this problem. The downside of this change
is less informative output in the IDE:
"Kotlin/Native:Accounts:ios_arm64:1.1.1" -> "Accounts".
Issue #KT-28128 Fixed
2019-01-31 19:32:26 +07:00
Ilya Matveev
88d35cb798
Don't embed bitcode for ios simulator
2019-01-31 19:32:26 +07:00
Sergey Igushkin
c5ce32653d
Fix POM not rewritten correctly with custom artifact IDs (KT-29485)
...
When the plugin rewrites a POM, it establishes the mapping of the
original Maven coordinates to the modified ones. As one of the steps,
this requires finding the original Maven coordinates to rewrite – these
should be exactly the coordinates that Gradle writes to the POM.
In MPP, these are the coordinates of the 'root' (Gradle module metadata)
publication. If those are modified in the publication, the plugin relies
on delegating to the publication in the root module's SotwareComponent
(the only reasonable fallback is the project's name, and in this case
it obviously doesn't match the Maven artifact ID that was modified).
In 1.3.20, the publication delegate was never assigned. To fix the
issue, it is enough to correctly assign the publication delegate for the
root module's SoftwareComponent.
Issue #KT-29485 Fixed
2019-01-31 15:18:15 +03:00
Sergey Igushkin
55cc5e84fc
Fix publishing dependencies of Android libraries (KT-29476)
...
* Add the extendsFrom relation between the Kotlin MPP compilation's
configurations (`*Api`, `*Implementation`, `*RuntimeOnly`) and
the Android variant's `*Elements` configurations, as those
dependencies currently are not added to the Android source sets and
are thus missing from the published dependencies.
* Fix a `this is KotlinCompilationToRunnableFiles` check that
mistakenly referenced the Project receiver of `whenEvaluated { ... }`
Issue #KT-29476 Fixed
2019-01-31 15:16:06 +03:00
Nikolay Krasko
64b2527e31
Revert allowing upper case letters in packages (KT-27900)
2019-01-31 13:40:37 +03:00
Nikolay Krasko
726e18333d
Fix infinite recursion during indexing types (EA-86494)
2019-01-31 12:39:08 +03:00
Nikolay Krasko
d95189281d
Regenerate AddImportTestGenerated
2019-01-31 12:39:08 +03:00
Dmitry Savvinov
4694a7963b
Allow actuals with more permissive visibility
...
Allow non-virtual expects to have actuals with more permissive
visibility.
^KT-19664 Fixed
2019-01-31 12:29:27 +03:00
Dmitry Savvinov
0338753c11
Add test on actual with more permissive visibility
...
Currently the behaviour is undesired, see KT-19664. The next commit
fixes it.
2019-01-31 12:26:58 +03:00
Mikhael Bogdanov
a122cba862
Switch Kotlin project to jvm-target 1.8
...
#KT-29405
2019-01-31 07:43:05 +01:00
Georgy Bronnikov
3e9c290a3a
Remove references to invisible fakes from IR backend
2019-01-31 07:55:39 +03:00
Georgy Bronnikov
ee43b5f1e9
IR. Do not generate invisible fakes
2019-01-31 07:55:39 +03:00
Leonid Startsev
8eeb9d4faa
[kx.serialization] Fix serializer resolving for file-level annotations:
...
Instantiating ContextSerializer for primitives with boxing (fixes https://github.com/Kotlin/kotlinx.serialization/issues/349 )
Unwrap nullable type when looking for general-defined serializer (fixes https://github.com/Kotlin/kotlinx.serialization/issues/351 )
Add lost java collection types and fix annotation name (fixes https://github.com/Kotlin/kotlinx.serialization/issues/343 )
2019-01-30 19:42:08 +03:00
Mikhail Zarechenskiy
738271aba6
Refactoring: rename CheckArguments -> CheckArgumentsInParenthesis
2019-01-30 14:56:33 +03:00
Mikhail Zarechenskiy
6705803d83
[NI] Fix coercion to Unit for lambdas with empty labeled return
2019-01-30 14:56:31 +03:00
Mikhail Zarechenskiy
147d7844bc
[NI] Dont' add trivial constraints with Nothing from incorporation
...
#KT-24490 Fixed
#KT-26816 Fixed
2019-01-30 13:48:33 +03:00
Mikhail Zarechenskiy
662e2287cc
[NI] Discriminate resulting type Nothing(?) at fixation stage
2019-01-30 13:48:28 +03:00
Mikhail Zarechenskiy
0b0e335cdd
[NI] Discriminate constraints with Nothing(?) lower bounds
2019-01-30 13:44:48 +03:00
Nicolay Mitropolsky
dcbd441814
Uast: aligning bunches after moving all convert* methods to KotlinConverter in 191
2019-01-30 12:42:37 +03:00
Nicolay Mitropolsky
b45172a7f8
191: Uast: support convertToAlternatives for KtFile
2019-01-30 12:42:37 +03:00
Nicolay Mitropolsky
4df72b4f79
191: Uast: refactoring: all convert* methods were moved to KotlinConverter
2019-01-30 12:42:37 +03:00
Nicolay Mitropolsky
28e19ed8c7
191: Uast: AlternativesRenderLogTest introduced
2019-01-30 12:42:37 +03:00
Nicolay Mitropolsky
8ad06314f0
191: Uast: support convertToAlternatives for KtClassOrObject
2019-01-30 12:42:37 +03:00
Nicolay Mitropolsky
9e2358e8ff
191: Uast: support convertToAlternatives for KtParameter
2019-01-30 12:42:37 +03:00
Nicolay Mitropolsky
f4c51dc6d0
191: Uast: support convertToAlternatives for KtProperty
2019-01-30 12:42:37 +03:00
Nicolay Mitropolsky
114c3be632
191: Uast: KtParameter can be converted to field
2019-01-30 12:42:37 +03:00
Nicolay Mitropolsky
529d0b8326
191: Uast: initial support for multiple required types
2019-01-30 12:42:37 +03:00
Nicolay Mitropolsky
731956db71
191: Uast: UInjectionHost moved under flag kotlin.uast.force.uinjectionhost (KT-27283)
2019-01-30 12:42:37 +03:00
Nicolay Mitropolsky
9ecd69760b
191: Revert KotlinStringTemplateUPolyadicExpression implement UInjectionHost testdata changes
2019-01-30 12:42:37 +03:00
Nicolay Mitropolsky
56dfde0428
191: Uast: making KotlinStringTemplateUPolyadicExpression implement UInjectionHost (KT-27283)
2019-01-30 12:35:17 +03:00
victor.petukhov
6f04deff0e
Remove old grammar files
...
The new grammar is located in the Kotlin spec repo: https://github.com/JetBrains/kotlin-spec/tree/spec-rework/src/grammar
2019-01-30 11:48:01 +03:00
kenji tomita
cbf6aa4ac3
Fix #KT-29567 "Remove empty class body" is a poor name for inspection text
2019-01-30 09:53:16 +03:00
Nikolay Krasko
52c46811ff
Enable JPS test runner for new JPS build (KT-29368)
...
#KT-29368 Fixed
2019-01-30 01:13:23 +03:00
Svyatoslav Kuzmich
c9e2ed4e1f
Undo unnecessary changes to stdlib
...
Partially revert "[stdlib] Reduce usage of extension functions"
2019-01-29 19:06:32 +03:00
Svyatoslav Kuzmich
0ef4194770
[JS IR BE] Support String companion object
2019-01-29 19:06:31 +03:00
Svyatoslav Kuzmich
24ab36616e
[JS] Fix runtime file order in runIrTestInNode.js
2019-01-29 19:06:31 +03:00
Svyatoslav Kuzmich
b239c80531
[JS IR BE] Add a few kotlin.test stubs to IR runtime
2019-01-29 19:06:31 +03:00
Svyatoslav Kuzmich
b49ec3edb8
Disable generation of 1.2 coroutine tests for JS_IR
...
Add directive DONT_TARGET_EXACT_BACKEND.
This directive is needed to exclude JS_IR backned but keep "compatible"
JS backend.
2019-01-29 19:06:31 +03:00
Svyatoslav Kuzmich
ab3eb06a62
[JS IR BE] Fix lowering Long comprising operators
2019-01-29 19:06:31 +03:00
Mikhail Zarechenskiy
5bcd974944
Temporary remove failing test for new inference about SAM conversions
...
Currently, it's easier to remove test completely rather than mute it
somehow as it throws exception at compile-time
#KT-29561 Open
2019-01-29 17:24:49 +03:00
Ilya Chernikov
f125600af1
Restore returning of functional types from repl eval
...
add tests for the broken case as well for the return value representation
#KT-29490 fixed
2019-01-29 15:05:37 +01:00