Natalia Ukhorskaya
e2d2d696c0
Add function name to fake local variable for inline argument
2016-03-15 13:25:49 +03:00
Mikhail Glukhikh
a830d80dac
Values equality no more provides guarantee for their types equality (for open types or types with overridden equals) #KT-11280 Fixed
2016-03-15 11:01:39 +03:00
Michael Bogdanov
3eb6749377
Call done on when mapping transformation end
2016-03-15 10:04:28 +03:00
Alexander Udalov
4f77b02a58
Rename 'ins' -> 'Ins' in BuiltinsPackageFragment and related classes
2016-03-14 20:41:46 +03:00
Alexander Udalov
777ef32d65
Move AnnotationsImpl to frontend, delete unused DefaultAnnotationArgumentVisitor
2016-03-14 20:05:19 +03:00
Alexander Udalov
11409ec6cf
Move some function type utilities from descriptors to frontend
2016-03-14 19:45:09 +03:00
Alexander Udalov
63eb6712eb
Rename getParameterTypeProjectionsFromFunctionType -> getValueParameterTypesFromFunctionType
...
Also add getValueParametersCountFromFunctionType which doesn't create a new
list every time but only returns the number of value parameters
2016-03-14 19:45:08 +03:00
Alexander Udalov
5b7115dc38
Minor, drop deprecated KotlinBuiltIns.getExtensionFunction
2016-03-14 19:45:08 +03:00
Alexander Udalov
516484c905
Use DFS in isFunctionTypeOrSubtype
...
To prevent exponential working time on weird hierarchies
2016-03-14 19:24:18 +03:00
Alexander Udalov
117d0bcf03
Fix multiple exceptions related to subtypes of function types
...
The main change is in FunctionsTypingVisitor#visitLambdaExpression, where we
incorrectly allowed subtypes of function types to be expected type during
resolution of lambdas
Also see EA-70485
#KT-9820 Fixed
2016-03-14 19:24:17 +03:00
Alexander Udalov
33ff1e1e29
Use correct function to check for function type in InlineParameterChecker
...
There's no use of noinline/crossinline modifiers on parameters of _subtypes_ of
function types
#KT-11411 Fixed
2016-03-14 19:24:08 +03:00
Alexander Udalov
c18fab82e5
Simplify and rename function type utilities
...
- isFunctionType -> change the only usage in TracingStrategyForInvoke to check
for exact function type
- isExtensionFunctionType -> change all usages to check for exact extension
function type because extension function types are uninheritable in Kotlin
- isExactFunctionType -> isNonExtensionFunctionType
- isExactExtensionFunctionType -> isExtensionFunctionType
- isExactFunctionOrExtensionFunctionType -> isFunctionType
- isFunctionOrExtensionFunctionType -> isFunctionTypeOrSubtype
2016-03-14 19:24:07 +03:00
Alexander Udalov
e308f2acdb
Minor, fix warnings and remove weird comments in KotlinBuiltIns
2016-03-14 19:24:07 +03:00
Alexander Udalov
2ce661af98
Rename KotlinBuiltIns.getFunctionType -> createFunctionType, move to functionTypes.kt
2016-03-14 19:24:06 +03:00
Alexander Udalov
fd344561fc
Move static function type utilities from KotlinBuiltIns to functionTypes.kt
2016-03-14 19:24:05 +03:00
Mikhail Glukhikh
569a5888ff
do...while (true) is now considered infinite loop in CFA #KT-3896 Fixed
...
Also #KT-3883 Fixed
Also #KT-4986 Fixed
2016-03-14 16:13:14 +03:00
Mikhail Glukhikh
4cf3ec3df2
Minor: ControlFlowInformationProvider cleanup
2016-03-14 16:13:05 +03:00
Mikhail Glukhikh
7232c5ccc1
Minor: FILE directives fixed in two tests
2016-03-14 15:49:50 +03:00
Michael Bogdanov
92f1a20d5f
New name generation for transformed when classes
2016-03-14 12:22:06 +03:00
Michael Bogdanov
a72636afb8
Code clean
2016-03-14 11:26:51 +03:00
Michael Bogdanov
bec6126b06
Support when mapping transformation on inlining
2016-03-14 11:24:39 +03:00
Michael Bogdanov
b88260b4f9
RegenerationInfo renamed to TransformationInfo
2016-03-14 10:45:39 +03:00
Michael Bogdanov
c062fff633
All regeneration infos moved to one file
2016-03-14 10:45:38 +03:00
Michael Bogdanov
56d8e4d170
Old/NewClassName funs in RefenerationInfo converted to properties
2016-03-14 10:45:38 +03:00
Michael Bogdanov
bbb838765c
Obtain regenerated class name through RegeneratedInfo
2016-03-14 10:45:37 +03:00
Michael Bogdanov
ddd992d3dd
AnonymousObjectRegenerationInfo java->kotlin convertion
2016-03-14 10:45:37 +03:00
Michael Bogdanov
da76bf7b03
AnonymousObjectRegenerationInfo.java->AnonymousObjectRegenerationInfo.kt
2016-03-14 10:45:36 +03:00
Michael Bogdanov
7e3e1554fa
Added canRemoveAfterTransformation method
2016-03-14 10:45:36 +03:00
Michael Bogdanov
8c9d8778eb
Introduced base class for AnonymousObjectGeneration
2016-03-14 10:45:35 +03:00
Michael Bogdanov
c6007c91f7
AnonymousObjectGeneration refactoring
2016-03-14 10:45:35 +03:00
Michael Bogdanov
a0f050fc69
Removed AnonymousObjectGeneration from RegeneratedClassContext
2016-03-14 10:45:34 +03:00
Nikolay Krasko
60ee5441cf
Update links in Editing Kotlin section
2016-03-13 19:53:18 +03:00
Mikhail Glukhikh
f76efb68f2
Strictfp on a class is now a warning #KT-11109 Fixed
2016-03-12 13:17:11 +03:00
Alexander Udalov
173a838f8c
Minor, improve some usages of function type utilities
...
Re change in FunctionsHighlightingVisitor:
KBI#isFunctionOrExtensionFunctionType already takes care of supertypes, no need
to do additional loop
2016-03-11 21:11:25 +03:00
Alexander Udalov
52309cd10e
Minor, drop handling of deprecated kotlin.Extension annotation
2016-03-11 21:11:24 +03:00
Alexander Udalov
90a48d3b35
Minor, move some utilities out of FunctionDescriptorUtil
2016-03-11 21:11:24 +03:00
Alexander Udalov
994dc46bcd
Write nullability annotations on extension receiver parameters
...
#KT-5429 Fixed
2016-03-11 15:20:32 +03:00
Pavel V. Talanov
597c571f25
Fix diagnostic range when some qualifier is unresolved in "@a.b.c.Anno"
...
#KT-7747 Fixed
2016-03-11 15:00:02 +03:00
Natalia Ukhorskaya
35271af07c
Do not convert invalid files to Kotlin
2016-03-11 13:56:10 +03:00
Natalia Ukhorskaya
468c869c0c
Show notification for files converted to Kotlin after project sync
2016-03-11 13:56:07 +03:00
Natalia Ukhorskaya
ebaf9899b0
Convert Java Activity to Kotlin after gradle sync finished
2016-03-11 13:56:05 +03:00
Natalia Ukhorskaya
40e89c76a9
Android: add action to create new activity on Kotlin
...
#KT-11264 Fixed
2016-03-11 13:56:02 +03:00
Natalia Ukhorskaya
b50f2dc6e5
J2K: Use parameters nullability for method call
2016-03-11 12:08:10 +03:00
Natalia Ukhorskaya
c1df0e4aeb
Minor: include AbstractJavaToKotlinCopyPasteConversionTest from idea module to J2K Tests run configuration
2016-03-11 12:08:10 +03:00
Natalia Ukhorskaya
c928237699
J2K: drop line breaks in some polyadic expressions
2016-03-11 12:08:10 +03:00
Natalia Ukhorskaya
f1b6bf7817
J2K: convert comments inside qualified expression correctly
2016-03-11 12:08:10 +03:00
Natalia Ukhorskaya
405b0b1df6
J2K: convert annotations in annotations parameters correctly
...
#KT-11126 Fixed
2016-03-11 12:08:10 +03:00
Natalia Ukhorskaya
7d594970ff
J2K: convert protected member used outside of inheritors as public
2016-03-11 12:08:10 +03:00
Alexey Tsvetkov
52be775f28
Minor: add two accidentally deleted files to test case
2016-03-11 02:43:31 +03:00
Alexey Tsvetkov
d352905a72
Add incremental tests for parameters with default values
2016-03-10 23:36:40 +03:00