From 0bd641e5f5d4ce7daf998e46861579db984bcaeb Mon Sep 17 00:00:00 2001 From: Corbin McNeely-Smith Date: Fri, 10 Nov 2023 15:21:05 -0600 Subject: [PATCH] Update docs --- docs/kotlin.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/kotlin.md b/docs/kotlin.md index 814e52dec..aaa1b9ba7 100755 --- a/docs/kotlin.md +++ b/docs/kotlin.md @@ -48,8 +48,8 @@ kt_js_library(name, name, release, warn, x_ep_disable_all_checks, x_explicit_api_mode, x_lint, - xd_suppress_notes) +kt_javac_options(name, add_exports, release, warn, x_ep_disable_all_checks, x_explicit_api_mode, + x_lint, xd_suppress_notes) Define java compiler options for `kt_jvm_*` rules with java sources. @@ -61,6 +61,7 @@ kt_javac_options(name, name | A unique name for this target. | Name | required | | +|add_exports | Export internal jdk apis | List of strings | optional | [] | |release | Compile for the specified Java SE release | String | optional | "default" | |warn | Control warning behaviour. | String | optional | "report" | |x_ep_disable_all_checks | See javac -XepDisableAllChecks documentation | Boolean | optional | False | @@ -369,8 +370,8 @@ kt_compiler_plugin(name, name, release, warn, x_ep_disable_all_checks, x_explicit_api_mode, x_lint, - xd_suppress_notes) +kt_javac_options(name, add_exports, release, warn, x_ep_disable_all_checks, x_explicit_api_mode, + x_lint, xd_suppress_notes) Define java compiler options for `kt_jvm_*` rules with java sources. @@ -382,6 +383,7 @@ kt_javac_options(name, name | A unique name for this target. | Name | required | | +|add_exports | Export internal jdk apis | List of strings | optional | [] | |release | Compile for the specified Java SE release | String | optional | "default" | |warn | Control warning behaviour. | String | optional | "report" | |x_ep_disable_all_checks | See javac -XepDisableAllChecks documentation | Boolean | optional | False |