Yan Zhulanow
|
87799e9b6b
|
Fix "operator modifier required" errors in project
|
2015-11-27 15:51:11 +03:00 |
|
Yan Zhulanow
|
46ac3571d5
|
Fix "infix modifier required" errors in project
|
2015-11-27 15:51:11 +03:00 |
|
Zalim Bashorov
|
d1c5bd4526
|
Minor: remove unused parameter from LookupTracker.record
|
2015-11-27 15:08:06 +03:00 |
|
Michael Nedzelsky
|
5f13dc31f1
|
ConstantExpressionEvaluator: code cleanup, get rid of weak warnings
|
2015-11-27 14:29:47 +03:00 |
|
Michael Nedzelsky
|
9aae5e6457
|
fix KT-9553 Invalid const initializers must be compile-time errors
#KT-9553 Fixed
|
2015-11-27 14:29:44 +03:00 |
|
Alexey Sedunov
|
7a40239e64
|
Introduce Variable: Support destructuring declarations
#KT-6262
|
2015-11-26 21:22:16 +03:00 |
|
Michael Nedzelsky
|
2fa34ae170
|
KT-9883 prohibit using spread operator for nullable value
#KT-9883 Fixed
|
2015-11-26 19:42:34 +03:00 |
|
Stanislav Erokhin
|
63fa71606f
|
Create new Tower Resolve
|
2015-11-26 16:21:49 +03:00 |
|
Stanislav Erokhin
|
c08545359e
|
Minor. Changes after review
|
2015-11-26 16:21:47 +03:00 |
|
Stanislav Erokhin
|
ebc3ccbb2a
|
Fixed scope kind for default values
|
2015-11-26 16:21:47 +03:00 |
|
Stanislav Erokhin
|
a502405779
|
Fixed scope creations for properties scopes.
|
2015-11-26 16:21:46 +03:00 |
|
Stanislav Erokhin
|
67abdd755f
|
Created kind in LexicalScope
|
2015-11-26 15:40:00 +03:00 |
|
Stanislav Erokhin
|
f06f557dae
|
Minor. introduce CallResolver.TaskContextForMigration
|
2015-11-26 15:38:17 +03:00 |
|
Michael Bogdanov
|
2d3d526ccd
|
Fix for KT-10110: ClassReader$BadClassFile undeclared type variable: E
#KT-10110 Fixed
|
2015-11-26 13:29:30 +03:00 |
|
Dmitry Petrov
|
9ccb1fd506
|
KT-9601, KT-10103:
Chose maximally specific function in callable reference
#KT-9601 Fixed
#KT-10103 Fixed
|
2015-11-26 12:52:12 +03:00 |
|
Natalia Ukhorskaya
|
67dd97b918
|
Mark bridge methods in lambdas classes as synthetic
#KT-10101 Fixed
|
2015-11-26 11:39:19 +03:00 |
|
Natalia Ukhorskaya
|
cb80a3e83a
|
Write lineNumber for function literal with void return value
#KT-9865 Fixed
|
2015-11-26 11:39:18 +03:00 |
|
Natalia Ukhorskaya
|
4a2e4312ea
|
Write lineNumber when inline function result is written to property
|
2015-11-26 11:39:17 +03:00 |
|
Nikolay Krasko
|
29a9ba64ca
|
Move creating sink for extra diagnostics into generation state to take responsibility for correct diagnostics suppression
|
2015-11-26 00:24:38 +03:00 |
|
Nikolay Krasko
|
652eeca872
|
Allow suppress additional diagnostics for JVM target
Suppression doesn't work without resolved annotation in binding context.
|
2015-11-26 00:24:38 +03:00 |
|
Nikolay Krasko
|
5bb141381b
|
Refactoring: replace condition with function
|
2015-11-26 00:24:38 +03:00 |
|
Nikolay Krasko
|
7622e90438
|
Filter diagnostics during creating cache
|
2015-11-26 00:24:38 +03:00 |
|
Nikolay Krasko
|
7baf58b5de
|
Refactoring: mark all fields in PositionStrategies with @JvmFileld and fix warnings
|
2015-11-26 00:24:38 +03:00 |
|
Nikolay Krasko
|
d80c5ec7f7
|
Minor: clean warnings in ErrorsJvm
|
2015-11-26 00:24:38 +03:00 |
|
Nikolay Krasko
|
03fe5125cb
|
Minor: remove warnings
|
2015-11-26 00:24:38 +03:00 |
|
Stanislav Erokhin
|
28226906da
|
Minor. removed usages ExpressionReceiverImp
|
2015-11-25 20:53:40 +03:00 |
|
Stanislav Erokhin
|
f0cefd5583
|
Create hacks for magic annotations NoInfer, OnlyInputTypes and LowPriorityInOverloadResolution.
|
2015-11-25 20:53:39 +03:00 |
|
Mikhail Glukhikh
|
a53ad098d6
|
Codegen test for smart cast to Nothing?
|
2015-11-25 18:26:25 +03:00 |
|
Mikhail Glukhikh
|
9a6d4c32c5
|
More accurate handling of "always null" for receivers
|
2015-11-25 18:26:15 +03:00 |
|
Mikhail Glukhikh
|
89e56093a2
|
Limit "always null" scope: only for !!, is and dot; senseless comparison rolled back; "smart constant" information for nulls #KT-10029 Fixed
|
2015-11-25 18:26:08 +03:00 |
|
Dmitry Petrov
|
db42941586
|
Allow annotation constructor calls
in default parameter value expressions of anonymous classes
(if it is not a compile-time constant, it will be reported separately).
#KT-10136 Fixed
|
2015-11-25 18:06:08 +03:00 |
|
Mikhail Glukhikh
|
46f4191185
|
Unnecessary safe call is now reported in CallExpressionResolver, removed code duplication for safe call receivers
See also KT-10175
|
2015-11-25 16:19:48 +03:00 |
|
Dmitry Petrov
|
da90c21284
|
Warn about comma-separated conditions in when without argument.
See KT-5143.
|
2015-11-25 15:39:23 +03:00 |
|
Mikhail Glukhikh
|
b9e9c47b28
|
Using of enum entries as types is now forbidden #KT-5401 Fixed
|
2015-11-25 13:33:16 +03:00 |
|
Alexey Sedunov
|
f4b4b023a3
|
Introduce Variable: Support extraction of string template fragments
#KT-2089 Fixed
|
2015-11-24 20:40:15 +03:00 |
|
Alexey Sedunov
|
5889971d62
|
Introduce Variable: Allow choosing extraction scope for expressions in the lambda body
#KT-7720 Fixed
|
2015-11-24 20:40:07 +03:00 |
|
Michael Bogdanov
|
3da463be27
|
Fix for KT-10137: Internal error: couldn't inline method call on lambda taking extension function parameter
#KT-10137 Fixed
|
2015-11-24 16:32:06 +03:00 |
|
Michael Bogdanov
|
a19bdaeb23
|
Fix duplicate field error on inlining several lambdas
|
2015-11-24 16:32:06 +03:00 |
|
Michael Bogdanov
|
d3f7e9f74b
|
Rename this$0 on decl site
|
2015-11-24 16:32:06 +03:00 |
|
Michael Bogdanov
|
d4369c1df9
|
Keep inline transformation invariant: all captured parameters stored in topmost lambda/object
Fix for KT-8668: java.lang.ClassFormatError: Duplicate field name&signature (based on property access)
#KT-8668 Fixed
|
2015-11-24 16:32:05 +03:00 |
|
Alexey Sedunov
|
b75665a96a
|
Misc: Do not use resolved call of outer expression if current call expression has no callee
#KT-10105 Fixed
|
2015-11-24 14:03:42 +03:00 |
|
Michael Nedzelsky
|
a01a18cb1a
|
fix test data for K2JsCliTest
|
2015-11-24 13:30:16 +03:00 |
|
Dmitry Petrov
|
931463af0d
|
- Fix code generation for inlined String::plus
#KT-10131 Fixed.
- Make extra factory methods in IntrinsicMethod protected.
This ensures that any of them can be properly overridden.
|
2015-11-24 12:09:34 +03:00 |
|
Michael Nedzelsky
|
a7636126a1
|
fix tests for js
|
2015-11-23 22:32:40 +03:00 |
|
Michael Nedzelsky
|
c80c33efb6
|
add kjsm option for kotlin js command line compiler
|
2015-11-23 22:32:32 +03:00 |
|
Nikolay Krasko
|
a62e6f7737
|
Refactoring: extract ObservableStorageManager from LoggingStorageManager
|
2015-11-23 22:03:32 +03:00 |
|
Mikhail Glukhikh
|
dc60c62781
|
Enum.values is now deprecated but Enum.values() is no more deprecated
|
2015-11-23 17:29:36 +03:00 |
|
Mikhail Glukhikh
|
6e733f708e
|
DeclarationsChecker: converted to Kt + EffectiveVisibility related refactoring
|
2015-11-23 17:29:29 +03:00 |
|
Mikhail Glukhikh
|
fe2fb7e5a5
|
DeclarationsChecker: rename to Kt
|
2015-11-23 17:29:26 +03:00 |
|
Mikhail Glukhikh
|
1c609663a4
|
Private setters are now deprecated for open properties
|
2015-11-23 17:29:23 +03:00 |
|