Pavel Kunyavskiy
0179b45840
Introduce compiler.common.native module
2023-07-10 08:59:16 +00:00
Pavel Mikhailovskii
083f54aceb
[KAPT4] Create basic infrastructure for KAPT4
2023-07-07 11:09:16 +00:00
Dmitriy Novozhilov
c8190707b3
[CODEOWNERS] Change owner of psi2ir from Compiler Core to JVM team
2023-07-03 11:29:20 +00:00
Alexander Shabalin
c40bf720d9
[OWNERS] Add Sergey to K/N runtime .mm files owners
2023-06-20 07:21:44 +00:00
Alexander Shabalin
a594b6e914
[OWNERS] Replace Pavel with Aleksei in K/N runtime owners
2023-06-20 07:21:44 +00:00
Vladimir Dolzhenko
f9d67feb05
Fix the owner list
...
Merge-request: KT-MR-10559
Merged-by: Vladimir Dolzhenko <Vladimir.Dolzhenko@jetbrains.com >
2023-06-12 07:26:17 +00:00
Bogdan Mukvich
1dbe47c039
[CODEOWNERS] Add IntelliJ Kotlin Plugin to OWNER_LIST
2023-06-09 11:56:36 +02:00
Vladimir Dolzhenko
7f74950993
Adjust name of IntelliJ Kotlin Plugin team
...
Merge-request: KT-MR-10425
Merged-by: Vladimir Dolzhenko <Vladimir.Dolzhenko@jetbrains.com >
2023-06-06 07:10:22 +00:00
Dmitrii Gridin
4807a714ec
[CODEOWNERS] introduce owner for light classes
2023-05-12 13:41:29 +00:00
Alexander Udalov
59ea7717dd
Codeowners: add JVM team to kapt tests
2023-05-05 13:51:25 +00:00
Ilya Chernikov
8c8ca7bb70
Remove examples/tests based on obsolete script-util
...
also mark the rest of the API as Obsolete
related to #KT-58367
2023-05-04 11:35:08 +00:00
Ilya Goncharov
e06606aa3f
[Gradle, JS] Fix kotlin-gradle-plugin-npm-versions-codegen in codeowners
2023-04-24 17:12:19 +00:00
Yahor Berdnikau
eb4e96a113
Add kotlin-build-tools-enum-compat workaround
...
It acts as a workaround for the case when build tools or dependencies
are compiled with latest 'kotlin-stdlib' version, but at a runtime older
'kotlin-stdlib' is provided, which does not know about new
`EnumEntries`.
^KT-57317 Fixed
2023-04-21 14:57:17 +00:00
Alexander.Likhachev
3a8d7c0839
[Build] Add build-tools-api and build-tools-impl modules
...
#KT-57396 In Progress
2023-04-18 18:19:23 +00:00
Yahor Berdnikau
1eb27f2aac
Update publishing and usage of kotlin-annotation-processing plugin
...
- removed 'kotlin-annotation-processing-gradle' publication as it
duplicated 'kotlin-annotation-processing-embeddable'
- removed 'kotlin-annotation-processing-maven' as it is embedded into
'kotlin-maven-plugin'. Instead 'kotlin-maven-plugin' now depends on
'kotlin-annotation-processing' directly.
^KT-52811 In Progress
2023-04-17 14:40:51 +00:00
Zalim Bashorov
1e6626338d
[CODEOWNERS] Changes in wasm output size tests must be shown to Zalim.Bashorov
2023-04-06 10:14:06 +00:00
Dmitrii Gridin
d1282b6195
[CODEOWNERS] change owners of generated diagnostics to core team
2023-04-05 16:47:34 +00:00
Bogdan Mukvich
18cfc9fcf1
Add space Safe-Merge feature config
...
KTI-1108
2023-03-27 15:43:47 +02:00
Sergej Jaskiewicz
17a8fd2c0b
[test] Move irJsText tests to irText directory
...
So that all irText tests could be found in one place
2023-03-22 15:18:15 +00:00
Dmitrii Gridin
fae4cbb415
[LL FIR] fix test naming
...
^KT-55750
2023-03-20 20:25:46 +01:00
Nikolay Krasko
e42e2b28db
Remove bunch tool chunks
2023-03-14 21:30:26 +00:00
Ilya Gorbunov
9bceb6cd0a
Move/copy legacy docs build to a separate directory
2023-02-22 23:52:37 +00:00
Ilya Goncharov
b6686d4ecb
[Gradle, JS] Codeowners of kotlin-dom-api-compat
...
This reverts commit 680f644265 .
2023-02-22 11:00:12 +00:00
Svyatoslav Scherbina
dd7a1a8c1c
[CODEOWNERS] Move kotlin-native/backend.native/tests/**.gradle.kts to Native
...
These files are in fact tests.
The **.gradle files in this directory are already owned by the
Kotlin Native team.
2023-02-17 10:33:30 +00:00
Zalim Bashorov
95a1218996
[CODEOWNERS] Change owner of wasm intrinsics to "Kotlin Wasm"
...
And make "Kotlin Wasm" co-owner of /js/js.translator/testData/
2023-02-01 00:36:11 +01:00
Svyatoslav Kuzmich
bebb9b1392
[Wasm] Move compiler tests to :wasm:wasm.tests module
...
They don't belong in K/JS test module.
2023-01-31 13:12:12 +00:00
Alexander Udalov
99b38ccb74
Reflection: fix exceptions on concurrent access to some properties
...
Using `ReflectionProperties.lazy` is incorrect because it allows several
threads to observe different resulting values if they're computing it
simultaneously (unlike `lazy(PUBLICATION)`, which always returns the
value that "won the race").
In the case of property delegates, for example, if we're invoking
`isAccessible = true` and then `getDelegate()` concurrently, it might
happen that when some thread invokes `getDelegate()`, it gets the
underlying Field object which was written by another thread and which
has not yet been made accessible, leading to
IllegalPropertyDelegateAccessException.
#KT-27585 Fixed
2023-01-27 20:23:23 +00:00
Ivan Kylchik
bc21753877
Move IR interpreter's tests from ir/loweredIr directory into box
2023-01-27 10:52:56 +00:00
Ilya Goncharov
42ded7be09
[Gradle, JS] Disable optimization in webpack for karma tests
...
^KT-56192 fixed
2023-01-25 16:06:29 +00:00
Nikolay Lunyak
f422a3a4e8
[FIR JS] Report WRONG_JS_QUALIFIER for the argument of JsQualifier
2023-01-09 08:57:08 +00:00
Ilya Goncharov
680f644265
[Gradle, JS] Revert codeowners
2023-01-04 16:30:33 +00:00
Dmitrii Gridin
eb3ad7e6b1
[LC] move light class related tests to one directory
2023-01-02 15:05:36 +00:00
Ilya Goncharov
b794496bb9
[JS] Fix codeowners of JS
2022-12-22 15:45:24 +00:00
Pavel Kunyavskiy
17e9a6a781
[klib] Fix serialization of missing annotations
...
^KT-42490
^KT-44625
2022-12-20 20:06:51 +00:00
Sergey Bogolepov
f5fa8f2b83
[CODEOWNERS] K2NativeCompilerArguments.kt to native team
2022-12-19 17:41:48 +00:00
Yahor Berdnikau
dc4ddebe2f
Change compiler/daemon owner to Kotlin Build Tools
2022-12-19 15:58:05 +00:00
Dmitrii Gridin
4dec14eb8e
CODEOWNERS: don't require separate review of generated files
2022-12-14 12:51:51 +00:00
Mikhail Glukhikh
7e407585fc
CODEOWNERS: don't require separate review of generated files
2022-12-08 10:18:05 +00:00
Nikolay Krasko
edc562e8b9
Remove old android-studio jps module
2022-12-05 20:11:24 +00:00
Sebastian Sellmair
734b0a80e1
[CODEOWNERS] Add mpp team to kotlin-tooling-core and kotlin-tooling-metadata
...
KT-55189
2022-12-02 07:47:30 +00:00
Simon Ogorodnik
16476dec61
Owners. Make Evolution Team responsible for LanguageVersionSettings
2022-11-30 21:53:33 +00:00
Mikhail Glukhikh
8a74c1956a
Add compiler core team as an alternative owner of JVM bytecode tests
2022-11-29 15:24:18 +00:00
Dmitrii Gridin
066677b598
[CODEOWNERS]: move light classes testData to Kotlin IDE team
2022-11-28 13:37:56 +00:00
Pavel Punegov
92fb41e1fc
[K/N][codeowners] Performance,tests and tools related gradle files
...
- Performance builds are separated from the main build execution and are
part of the Native infrastructure.
- Old test infrastructure contains tests that is written in gradle
build files and hence should belong to K/N team.
- New test infrastructure build gradle file is also a part of tests.
Merge-request: KT-MR-7768
Merged-by: Pavel Punegov <Pavel.Punegov@jetbrains.com >
2022-11-28 11:35:55 +00:00
Zalim Bashorov
3ac90cf0e4
[CODEOWNERS] Add missed leading slash in the paths
2022-11-25 14:54:08 +01:00
Nikolay Krasko
c414b4b29a
Update CODEOWNERS for scripts directory
2022-11-22 20:29:22 +00:00
Stanislav Erokhin
efdfcdff63
Update CODEOWNERS for /libraries/tools/kotlin-gradle-* folders
2022-11-18 12:09:05 +00:00
Yahor Berdnikau
53adf097c2
Exclude Kotlin Gradle Plugins test data from to be owned by infra team
2022-11-18 09:50:02 +00:00
Anton Bannykh
84650d08af
CODEOWNERS: cli-js belongs to JS and WASM
2022-11-16 17:21:31 +00:00
Denis.Zharkov
3429bccf9a
Change ownership for generated diagnostic tests to Compiler Core
2022-11-16 14:38:39 +00:00