File tree Expand file tree Collapse file tree 2 files changed +58
-0
lines changed
transpiler/javatests/com/google/j2cl/readable/java/j2kt Expand file tree Collapse file tree 2 files changed +58
-0
lines changed Original file line number Diff line number Diff line change 1+ /*
2+ * Copyright 2026 Google Inc.
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * https://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ */
16+ package j2kt ;
17+
18+ public final class VisibilityModifiers {
19+ public static class Public {}
20+
21+ static class PackagePrivate {}
22+
23+ protected static class Protected {}
24+
25+ private static class Private {}
26+ }
Original file line number Diff line number Diff line change 1+ // Generated from "j2kt/VisibilityModifiers.java"
2+ @file:Suppress(
3+ "ALWAYS_NULL",
4+ "PARAMETER_NAME_CHANGED_ON_OVERRIDE",
5+ "SENSELESS_COMPARISON",
6+ "UNCHECKED_CAST",
7+ "UNNECESSARY_LATEINIT",
8+ "UNNECESSARY_NOT_NULL_ASSERTION",
9+ "UNREACHABLE_CODE",
10+ "UNUSED_ANONYMOUS_PARAMETER",
11+ "UNUSED_PARAMETER",
12+ "UNUSED_VARIABLE",
13+ "USELESS_CAST",
14+ "VARIABLE_IN_SINGLETON_WITHOUT_THREAD_LOCAL",
15+ "VARIABLE_WITH_REDUNDANT_INITIALIZER",
16+ "REDUNDANT_ELSE_IN_WHEN",
17+ "ACCIDENTAL_OVERRIDE")
18+
19+ package j2kt
20+
21+ import javaemul.lang.*
22+ import kotlin.Suppress
23+
24+ class VisibilityModifiers {
25+ open class Public
26+
27+ open class PackagePrivate internal constructor()
28+
29+ open class Protected
30+
31+ open class Private internal constructor()
32+ }
You can’t perform that action at this time.
0 commit comments