├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── CONCURRENCY.md ├── DEBUGGING.md ├── DISTRO_README.md ├── FAQ.md ├── GRADLE_PLUGIN.md ├── HACKING.md ├── INTEROP.md ├── Interop ├── .idea │ ├── compiler.xml │ ├── gradle.xml │ ├── libraries │ │ ├── Gradle__org_jetbrains_kotlin_kotlin_runtime_1_0_3.xml │ │ └── Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_0_3.xml │ ├── modules.xml │ └── modules │ │ ├── Indexer │ │ └── Indexer.iml │ │ ├── Runtime │ │ └── Runtime.iml │ │ └── StubGenerator │ │ └── StubGenerator.iml ├── Indexer │ ├── build.gradle │ ├── clang.def │ ├── prebuilt │ │ └── nativeInteropStubs │ │ │ ├── c │ │ │ └── clangstubs.c │ │ │ ├── cpp │ │ │ └── disable-abi-checks.cpp │ │ │ └── kotlin │ │ │ └── clang │ │ │ └── clang.kt │ └── src │ │ └── main │ │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── kotlin │ │ └── native │ │ └── interop │ │ └── indexer │ │ ├── HeaderToIdMapper.kt │ │ ├── Indexer.kt │ │ ├── MacroConstants.kt │ │ ├── NativeIndex.kt │ │ └── Utils.kt ├── JsRuntime │ ├── build.gradle │ └── src │ │ └── main │ │ ├── js │ │ └── jsinterop.js │ │ └── kotlin │ │ └── jsinterop.kt ├── README.md ├── Runtime │ ├── build.gradle │ └── src │ │ ├── callbacks │ │ └── c │ │ │ └── callbacks.c │ │ ├── jvm │ │ └── kotlin │ │ │ └── kotlinx │ │ │ └── cinterop │ │ │ ├── JvmCallbacks.kt │ │ │ ├── JvmNativeMem.kt │ │ │ ├── JvmTypes.kt │ │ │ └── JvmUtils.kt │ │ ├── main │ │ └── kotlin │ │ │ └── kotlinx │ │ │ └── cinterop │ │ │ ├── Generated.kt │ │ │ ├── StableRef.kt │ │ │ ├── Types.kt │ │ │ ├── Utils.kt │ │ │ └── package-info.java │ │ └── native │ │ └── kotlin │ │ └── kotlinx │ │ └── cinterop │ │ ├── FunctionPointers.kt │ │ ├── NativeMem.kt │ │ ├── NativeStableRef.kt │ │ ├── NativeTypes.kt │ │ ├── NativeUtils.kt │ │ ├── ObjectiveCImpl.kt │ │ ├── ObjectiveCUtils.kt │ │ ├── Pinning.kt │ │ └── Varargs.kt └── StubGenerator │ ├── build.gradle │ └── src │ └── main │ └── kotlin │ └── org │ └── jetbrains │ └── kotlin │ └── native │ └── interop │ └── gen │ ├── CodeBuilders.kt │ ├── CodeUtils.kt │ ├── GlobalVariableStub.kt │ ├── Imports.kt │ ├── KotlinCodeModel.kt │ ├── LibraryUtils.kt │ ├── MappingBridgeGenerator.kt │ ├── MappingBridgeGeneratorImpl.kt │ ├── Mappings.kt │ ├── ObjCStubs.kt │ ├── SimpleBridgeGenerator.kt │ ├── SimpleBridgeGeneratorImpl.kt │ ├── TypeUtils.kt │ ├── jvm │ ├── CommandLine.kt │ ├── InteropConfiguration.kt │ ├── StubGenerator.kt │ ├── ToolConfig.kt │ └── main.kt │ └── wasm │ ├── StubGenerator.kt │ └── idl │ ├── dom.kt │ ├── idl.kt │ └── idlMath.kt ├── LIBRARIES.md ├── LICENSE ├── MULTIPLATFORM.md ├── OBJC_INTEROP.md ├── PLATFORM_LIBS.md ├── README.md ├── RELEASE_NOTES.md ├── RELEASE_PROCESS.md ├── backend.native ├── backend.native.iml ├── bc.frontend │ └── bc.frontend.iml ├── build.gradle ├── cli.bc │ ├── cli.bc.iml │ └── src │ │ └── org │ │ └── jetbrains │ │ └── kotlin │ │ └── cli │ │ └── bc │ │ ├── K2Native.kt │ │ └── K2NativeCompilerArguments.kt ├── compiler │ └── ir │ │ └── backend.native │ │ ├── resources │ │ └── META-INF │ │ │ └── services │ │ │ └── org.jetbrains.kotlin.resolve.ExternalOverridabilityCondition │ │ └── src │ │ └── org │ │ └── jetbrains │ │ └── kotlin │ │ ├── backend │ │ ├── common │ │ │ └── AbstractValueUsageTransformer.kt │ │ └── konan │ │ │ ├── Boxing.kt │ │ │ ├── CAdapterCompile.kt │ │ │ ├── CAdapterGenerator.kt │ │ │ ├── CompilerOutput.kt │ │ │ ├── Context.kt │ │ │ ├── EnumSpecialDescriptorsFactory.kt │ │ │ ├── Exceptions.kt │ │ │ ├── GraphAlgorithms.kt │ │ │ ├── Helper0.kt │ │ │ ├── InteropUtils.kt │ │ │ ├── KonanBackendContext.kt │ │ │ ├── KonanBuiltInClassDescriptorFactory.kt │ │ │ ├── KonanConfig.kt │ │ │ ├── KonanConfigurationKeys.kt │ │ │ ├── KonanDriver.kt │ │ │ ├── KonanLower.kt │ │ │ ├── KonanPhases.kt │ │ │ ├── KonanPlatform.kt │ │ │ ├── KonanPlatformConfigurator.kt │ │ │ ├── LinkStage.kt │ │ │ ├── ObjCInterop.kt │ │ │ ├── OutputFiles.kt │ │ │ ├── Reporting.kt │ │ │ ├── TopDownAnalyzerFacadeForKonan.kt │ │ │ ├── ValueTypes.kt │ │ │ ├── descriptors │ │ │ ├── ClassVtablesBuilder.kt │ │ │ ├── DeepPrintVisitor.kt │ │ │ ├── DeepVisitor.kt │ │ │ ├── DescriptorUtils.kt │ │ │ ├── InteropDescriptors.kt │ │ │ ├── KonanModuleDescriptors.kt │ │ │ ├── KonanSharedVariablesManager.kt │ │ │ ├── LegacyDescriptorUtils.kt │ │ │ └── utils.kt │ │ │ ├── injection.kt │ │ │ ├── ir │ │ │ ├── Ir.kt │ │ │ ├── KonanIr.kt │ │ │ └── ModuleIndex.kt │ │ │ ├── irasdescriptors │ │ │ ├── FakeIrUtils.kt │ │ │ ├── IrAsDescriptors.kt │ │ │ └── NewIrUtils.kt │ │ │ ├── library │ │ │ ├── KonanLibrary.kt │ │ │ ├── KonanLibraryReader.kt │ │ │ ├── KonanLibraryWriter.kt │ │ │ ├── SearchPathResolverExtensions.kt │ │ │ └── impl │ │ │ │ ├── KonanLibrary.kt │ │ │ │ ├── KonanLibraryReaderImpl.kt │ │ │ │ ├── KonanLibraryWriterImpl.kt │ │ │ │ ├── MetadataReaderImpl.kt │ │ │ │ └── MetadataWriterImpl.kt │ │ │ ├── llvm │ │ │ ├── BinaryInterface.kt │ │ │ ├── CodeGenerator.kt │ │ │ ├── ContextUtils.kt │ │ │ ├── DataLayout.kt │ │ │ ├── DebugUtils.kt │ │ │ ├── Dwarf.kt │ │ │ ├── EntryPoint.kt │ │ │ ├── HashUtils.kt │ │ │ ├── Imports.kt │ │ │ ├── IrToBitcode.kt │ │ │ ├── KotlinObjCClassInfoGenerator.kt │ │ │ ├── LlvmDeclarations.kt │ │ │ ├── LlvmUtils.kt │ │ │ ├── RTTIGenerator.kt │ │ │ ├── Runtime.kt │ │ │ ├── StaticData.kt │ │ │ ├── StaticDataUtils.kt │ │ │ ├── StaticObjects.kt │ │ │ ├── UsedAnnotation.kt │ │ │ ├── VariableManager.kt │ │ │ ├── objc │ │ │ │ ├── ObjCCodeGenerator.kt │ │ │ │ └── ObjCDataGenerator.kt │ │ │ └── objcexport │ │ │ │ ├── BlockPointerSupport.kt │ │ │ │ └── ObjCExportCodeGenerator.kt │ │ │ ├── lower │ │ │ ├── Autoboxing.kt │ │ │ ├── BridgesBuilding.kt │ │ │ ├── BuiltinOperatorLowering.kt │ │ │ ├── CallableReferenceLowering.kt │ │ │ ├── CompileTimeEvaluateLowering.kt │ │ │ ├── DataClassOperatorsLowering.kt │ │ │ ├── DeepCopyIrTreeWithDescriptors.kt │ │ │ ├── DefaultArgumentsStubGenerator.kt │ │ │ ├── DelegationLowering.kt │ │ │ ├── EnumClassLowering.kt │ │ │ ├── ExpectDeclarationsRemoving.kt │ │ │ ├── FinallyBlocksLowering.kt │ │ │ ├── ForLoopsLowering.kt │ │ │ ├── FunctionInlining.kt │ │ │ ├── InitializersLowering.kt │ │ │ ├── InnerClassLowering.kt │ │ │ ├── InteropLowering.kt │ │ │ ├── LateinitLowering.kt │ │ │ ├── LocalDeclarationsLowering.kt │ │ │ ├── PostInlineLowering.kt │ │ │ ├── PreInlineLowering.kt │ │ │ ├── ReturnsInsertionLowering.kt │ │ │ ├── SharedVariablesLowering.kt │ │ │ ├── SuspendFunctionsLowering.kt │ │ │ ├── TestProcessor.kt │ │ │ └── TypeOperatorLowering.kt │ │ │ ├── objcexport │ │ │ ├── ObjCExport.kt │ │ │ ├── ObjCExportHeaderGenerator.kt │ │ │ ├── ObjCExportMapper.kt │ │ │ └── ObjCExportNamer.kt │ │ │ ├── optimizations │ │ │ ├── CallGraphBuilder.kt │ │ │ ├── DFGBuilder.kt │ │ │ ├── DFGSerializer.kt │ │ │ ├── DataFlowIR.kt │ │ │ ├── Devirtualization.kt │ │ │ └── EscapeAnalysis.kt │ │ │ └── serialization │ │ │ ├── BackingFieldVisitor.kt │ │ │ ├── CapturedTypes.kt │ │ │ ├── DescriptorTable.kt │ │ │ ├── DeserializerDriver.kt │ │ │ ├── IrDescriptorDeserializer.kt │ │ │ ├── IrDescriptorSerializer.kt │ │ │ ├── KonanClassDataFinder.kt │ │ │ ├── KonanDescriptorSerializer.kt │ │ │ ├── KonanIr.proto │ │ │ ├── KonanLinkData.proto │ │ │ ├── KonanPackageFragment.kt │ │ │ ├── KonanSerializationUtil.kt │ │ │ ├── KonanSerializerExtension.kt │ │ │ ├── KonanStringTable.kt │ │ │ ├── LocalDeclarationDeserializer.kt │ │ │ ├── LocalDeclarationSerializer.kt │ │ │ ├── ProtobufUtil.kt │ │ │ ├── SerializeIr.kt │ │ │ ├── StringTableUtil.kt │ │ │ ├── ext_options.proto1 │ │ │ ├── google_descriptor.proto1 │ │ │ └── metadata.proto1 │ │ └── ir │ │ └── util │ │ ├── IrUnboundSymbolReplacer.kt │ │ └── IrUtils2.kt ├── debugger-tests │ ├── build.gradle │ └── src │ │ ├── main │ │ └── kotlin │ │ │ └── org │ │ │ └── jetbrains │ │ │ └── kotlin │ │ │ └── compiletest │ │ │ ├── DistProperties.kt │ │ │ ├── Driver.kt │ │ │ └── Matchers.kt │ │ └── test │ │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── kotlin │ │ └── compiletest │ │ └── LldbTests.kt ├── llvm.def └── tests │ ├── build.gradle │ ├── codegen │ ├── basics │ │ ├── array_to_any.kt │ │ ├── canonical_name.kt │ │ ├── cast_null.kt │ │ ├── cast_simple.kt │ │ ├── check_type.kt │ │ ├── companion.kt │ │ ├── concatenation.kt │ │ ├── expression_as_statement.kt │ │ ├── local_variable.kt │ │ ├── null_check.kt │ │ ├── safe_cast.kt │ │ ├── spread_operator_0.kt │ │ ├── superFunCall.kt │ │ ├── superGetterCall.kt │ │ ├── superSetterCall.kt │ │ ├── typealias1.kt │ │ ├── unchecked_cast1.kt │ │ ├── unchecked_cast2.kt │ │ ├── unchecked_cast3.kt │ │ ├── unit1.kt │ │ ├── unit2.kt │ │ ├── unit3.kt │ │ └── unit4.kt │ ├── boxing │ │ ├── box_cache0.kt │ │ ├── boxing0.kt │ │ ├── boxing1.kt │ │ ├── boxing10.kt │ │ ├── boxing11.kt │ │ ├── boxing12.kt │ │ ├── boxing13.kt │ │ ├── boxing14.kt │ │ ├── boxing15.kt │ │ ├── boxing2.kt │ │ ├── boxing3.kt │ │ ├── boxing4.kt │ │ ├── boxing5.kt │ │ ├── boxing6.kt │ │ ├── boxing7.kt │ │ ├── boxing8.kt │ │ └── boxing9.kt │ ├── branching │ │ ├── advanced_when2.kt │ │ ├── advanced_when5.kt │ │ ├── if_else.kt │ │ ├── when2.kt │ │ ├── when4.kt │ │ ├── when5.kt │ │ ├── when6.kt │ │ ├── when7.kt │ │ ├── when8.kt │ │ ├── when9.kt │ │ └── when_through.kt │ ├── bridges │ │ ├── linkTest2_lib.kt │ │ ├── linkTest2_main.kt │ │ ├── linkTest_lib.kt │ │ ├── linkTest_main.kt │ │ ├── returnTypeSignature.kt │ │ ├── special.kt │ │ ├── test0.kt │ │ ├── test1.kt │ │ ├── test10.kt │ │ ├── test11.kt │ │ ├── test12.kt │ │ ├── test13.kt │ │ ├── test14.kt │ │ ├── test15.kt │ │ ├── test16.kt │ │ ├── test17.kt │ │ ├── test18.kt │ │ ├── test2.kt │ │ ├── test3.kt │ │ ├── test4.kt │ │ ├── test5.kt │ │ ├── test6.kt │ │ ├── test7.kt │ │ ├── test8.kt │ │ └── test9.kt │ ├── classDelegation │ │ ├── generic.kt │ │ ├── method.kt │ │ ├── property.kt │ │ └── withBridge.kt │ ├── controlflow │ │ ├── break.kt │ │ ├── break1.kt │ │ ├── for_loops.kt │ │ ├── for_loops_call_order.kt │ │ ├── for_loops_coroutines.kt │ │ ├── for_loops_empty_range.kt │ │ ├── for_loops_errors.kt │ │ ├── for_loops_let_with_nullable.kt │ │ ├── for_loops_lowering │ │ │ ├── test1.kt │ │ │ ├── test1.out │ │ │ ├── test10.kt │ │ │ ├── test10.out │ │ │ ├── test11.kt │ │ │ ├── test11.out │ │ │ ├── test12.kt │ │ │ ├── test12.out │ │ │ ├── test13.kt │ │ │ ├── test13.out │ │ │ ├── test14.kt │ │ │ ├── test14.out │ │ │ ├── test15.kt │ │ │ ├── test15.out │ │ │ ├── test16.kt │ │ │ ├── test16.out │ │ │ ├── test17.kt │ │ │ ├── test17.out │ │ │ ├── test18.kt │ │ │ ├── test18.out │ │ │ ├── test19.kt │ │ │ ├── test19.out │ │ │ ├── test2.kt │ │ │ ├── test2.out │ │ │ ├── test20.kt │ │ │ ├── test20.out │ │ │ ├── test21.kt │ │ │ ├── test21.out │ │ │ ├── test22.kt │ │ │ ├── test22.out │ │ │ ├── test23.kt │ │ │ ├── test23.out │ │ │ ├── test24.kt │ │ │ ├── test24.out │ │ │ ├── test25.kt │ │ │ ├── test25.out │ │ │ ├── test26.kt │ │ │ ├── test26.out │ │ │ ├── test27.kt │ │ │ ├── test27.out │ │ │ ├── test28.kt │ │ │ ├── test28.out │ │ │ ├── test29.kt │ │ │ ├── test29.out │ │ │ ├── test3.kt │ │ │ ├── test3.out │ │ │ ├── test30.kt │ │ │ ├── test30.out │ │ │ ├── test31.kt │ │ │ ├── test31.out │ │ │ ├── test32.kt │ │ │ ├── test32.out │ │ │ ├── test33.kt │ │ │ ├── test33.out │ │ │ ├── test34.kt │ │ │ ├── test34.out │ │ │ ├── test35.kt │ │ │ ├── test35.out │ │ │ ├── test4.kt │ │ │ ├── test4.out │ │ │ ├── test5.kt │ │ │ ├── test5.out │ │ │ ├── test6.kt │ │ │ ├── test6.out │ │ │ ├── test7.kt │ │ │ ├── test7.out │ │ │ ├── test8.kt │ │ │ ├── test8.out │ │ │ ├── test9.kt │ │ │ └── test9.out │ │ ├── for_loops_nested.kt │ │ ├── for_loops_overflow.kt │ │ ├── for_loops_types.kt │ │ └── unreachable1.kt │ ├── coroutines │ │ ├── controlFlow_finally1.kt │ │ ├── controlFlow_finally2.kt │ │ ├── controlFlow_finally3.kt │ │ ├── controlFlow_finally4.kt │ │ ├── controlFlow_finally5.kt │ │ ├── controlFlow_finally6.kt │ │ ├── controlFlow_finally7.kt │ │ ├── controlFlow_if1.kt │ │ ├── controlFlow_if2.kt │ │ ├── controlFlow_inline1.kt │ │ ├── controlFlow_inline2.kt │ │ ├── controlFlow_inline3.kt │ │ ├── controlFlow_tryCatch1.kt │ │ ├── controlFlow_tryCatch2.kt │ │ ├── controlFlow_tryCatch3.kt │ │ ├── controlFlow_tryCatch4.kt │ │ ├── controlFlow_tryCatch5.kt │ │ ├── controlFlow_while1.kt │ │ ├── controlFlow_while2.kt │ │ ├── correctOrder1.kt │ │ ├── degenerate1.kt │ │ ├── degenerate2.kt │ │ ├── returnsUnit1.kt │ │ ├── simple.kt │ │ └── withReceiver.kt │ ├── cycles │ │ ├── cycle.kt │ │ ├── cycle_do.kt │ │ └── cycle_for.kt │ ├── dataflow │ │ ├── scope1.kt │ │ └── uninitialized_val.kt │ ├── delegatedProperty │ │ ├── delegatedOverride_lib.kt │ │ ├── delegatedOverride_main.kt │ │ ├── lazy.kt │ │ ├── local.kt │ │ ├── map.kt │ │ ├── observable.kt │ │ ├── packageLevel.kt │ │ ├── simpleVal.kt │ │ └── simpleVar.kt │ ├── enum │ │ ├── companionObject.kt │ │ ├── interfaceCallNoEntryClass.kt │ │ ├── interfaceCallWithEntryClass.kt │ │ ├── isFrozen.kt │ │ ├── linkTest_lib.kt │ │ ├── linkTest_main.kt │ │ ├── loop.kt │ │ ├── nested.kt │ │ ├── test0.kt │ │ ├── test1.kt │ │ ├── vCallNoEntryClass.kt │ │ ├── vCallWithEntryClass.kt │ │ ├── valueOf.kt │ │ ├── values.kt │ │ └── varargParam.kt │ ├── function │ │ ├── arithmetic.kt │ │ ├── boolean.kt │ │ ├── defaults.kt │ │ ├── defaults1.kt │ │ ├── defaults10.kt │ │ ├── defaults2.kt │ │ ├── defaults3.kt │ │ ├── defaults4.kt │ │ ├── defaults5.kt │ │ ├── defaults6.kt │ │ ├── defaults7.kt │ │ ├── defaults8.kt │ │ ├── defaults9.kt │ │ ├── defaultsFromFakeOverride.kt │ │ ├── defaultsWithVarArg1.kt │ │ ├── defaultsWithVarArg2.kt │ │ ├── eqeq.kt │ │ ├── extension.kt │ │ ├── intrinsic.kt │ │ ├── localFunction.kt │ │ ├── localFunction2.kt │ │ ├── localFunction3.kt │ │ ├── minus_eq.kt │ │ ├── named.kt │ │ ├── plus_eq.kt │ │ ├── sum.kt │ │ ├── sum_3const.kt │ │ ├── sum_foo_bar.kt │ │ ├── sum_func.kt │ │ ├── sum_imm.kt │ │ ├── sum_mixed.kt │ │ └── sum_silly.kt │ ├── initializers │ │ ├── correctOrder1.kt │ │ └── correctOrder2.kt │ ├── inline │ │ ├── defaultArgs_linkTest_lib.kt │ │ ├── defaultArgs_linkTest_main.kt │ │ ├── getClass.kt │ │ ├── inline0.kt │ │ ├── inline1.kt │ │ ├── inline10.kt │ │ ├── inline11.kt │ │ ├── inline12.kt │ │ ├── inline13.kt │ │ ├── inline14.kt │ │ ├── inline15.kt │ │ ├── inline16.kt │ │ ├── inline17.kt │ │ ├── inline18.kt │ │ ├── inline19.kt │ │ ├── inline2.kt │ │ ├── inline20.kt │ │ ├── inline21.kt │ │ ├── inline22.kt │ │ ├── inline23.kt │ │ ├── inline24.kt │ │ ├── inline25.kt │ │ ├── inline26.kt │ │ ├── inline3.kt │ │ ├── inline4.kt │ │ ├── inline5.kt │ │ ├── inline6.kt │ │ ├── inline7.kt │ │ ├── inline8.kt │ │ ├── inline9.kt │ │ ├── lambdaAsAny.kt │ │ ├── lambdaInDefaultValue.kt │ │ ├── localFunctionInInitializerBlock.kt │ │ ├── statementAsLastExprInBlock.kt │ │ └── typeSubstitutionInFakeOverride.kt │ ├── innerClass │ │ ├── doubleInner.kt │ │ ├── generic.kt │ │ ├── getOuterVal.kt │ │ ├── noPrimaryConstructor.kt │ │ ├── qualifiedThis.kt │ │ ├── secondaryConstructor.kt │ │ ├── simple.kt │ │ └── superOuter.kt │ ├── kclass │ │ ├── kclass0.kt │ │ └── kclass1.kt │ ├── lambda │ │ ├── lambda1.kt │ │ ├── lambda10.kt │ │ ├── lambda11.kt │ │ ├── lambda12.kt │ │ ├── lambda13.kt │ │ ├── lambda14.kt │ │ ├── lambda2.kt │ │ ├── lambda3.kt │ │ ├── lambda4.kt │ │ ├── lambda5.kt │ │ ├── lambda6.kt │ │ ├── lambda7.kt │ │ ├── lambda8.kt │ │ └── lambda9.kt │ ├── lateinit │ │ ├── globalIsInitialized.kt │ │ ├── inBaseClass.kt │ │ ├── initialized.kt │ │ ├── innerIsInitialized.kt │ │ ├── isInitialized.kt │ │ ├── localCapturedInitialized.kt │ │ ├── localCapturedNotInitialized.kt │ │ ├── localInitialized.kt │ │ ├── localNotInitialized.kt │ │ └── notInitialized.kt │ ├── localClass │ │ ├── innerTakesCapturedFromOuter.kt │ │ ├── innerWithCapture.kt │ │ ├── localFunctionCallFromLocalClass.kt │ │ ├── localFunctionInLocalClass.kt │ │ ├── localHierarchy.kt │ │ ├── noPrimaryConstructor.kt │ │ ├── objectExpressionInInitializer.kt │ │ ├── objectExpressionInProperty.kt │ │ ├── tryCatch.kt │ │ └── virtualCallFromConstructor.kt │ ├── mpp │ │ ├── libmpp2.kt │ │ ├── mpp1.kt │ │ ├── mpp2.kt │ │ └── mpp_default_args.kt │ ├── object │ │ ├── constructor.kt │ │ ├── constructor0.kt │ │ ├── fields.kt │ │ ├── fields1.kt │ │ ├── fields2.kt │ │ ├── init0.kt │ │ ├── initialization.kt │ │ ├── initialization1.kt │ │ └── method_call.kt │ ├── objectExpression │ │ ├── expr1.kt │ │ ├── expr2.kt │ │ └── expr3.kt │ ├── propertyCallableReference │ │ ├── dynamicReceiver.kt │ │ ├── linkTest_lib.kt │ │ ├── linkTest_main.kt │ │ ├── valClass.kt │ │ ├── valExtension.kt │ │ ├── valModule.kt │ │ ├── varClass.kt │ │ ├── varExtension.kt │ │ └── varModule.kt │ └── try │ │ ├── catch3.kt │ │ ├── catch4.kt │ │ ├── catch5.kt │ │ ├── catch6.kt │ │ ├── catch8.kt │ │ ├── finally1.kt │ │ ├── finally10.kt │ │ ├── finally11.kt │ │ ├── finally2.kt │ │ ├── finally3.kt │ │ ├── finally4.kt │ │ ├── finally5.kt │ │ ├── finally6.kt │ │ ├── finally7.kt │ │ ├── finally8.kt │ │ ├── finally9.kt │ │ ├── try1.kt │ │ ├── try2.kt │ │ ├── try3.kt │ │ └── try4.kt │ ├── datagen │ ├── literals │ │ ├── empty_string.kt │ │ ├── listof1.kt │ │ ├── strdedup1.kt │ │ └── strdedup2.kt │ └── rtti │ │ ├── abstract_super.kt │ │ └── vtable1.kt │ ├── external │ ├── codegen │ │ ├── box │ │ │ ├── annotations │ │ │ │ ├── annotatedEnumEntry.kt │ │ │ │ ├── annotatedLambda │ │ │ │ │ ├── funExpression.kt │ │ │ │ │ ├── lambda.kt │ │ │ │ │ ├── samFunExpression.kt │ │ │ │ │ └── samLambda.kt │ │ │ │ ├── annotatedObjectLiteral.kt │ │ │ │ ├── annotationWithKotlinProperty.kt │ │ │ │ ├── annotationWithKotlinPropertyFromInterfaceCompanion.kt │ │ │ │ ├── annotationsOnDefault.kt │ │ │ │ ├── annotationsOnTypeAliases.kt │ │ │ │ ├── defaultParameterValues.kt │ │ │ │ ├── delegatedPropertySetter.kt │ │ │ │ ├── fileClassWithFileAnnotation.kt │ │ │ │ ├── jvmAnnotationFlags.kt │ │ │ │ ├── kotlinPropertyFromClassObjectAsParameter.kt │ │ │ │ ├── kotlinTopLevelPropertyAsParameter.kt │ │ │ │ ├── kt10136.kt │ │ │ │ ├── nestedClassPropertyAsParameter.kt │ │ │ │ ├── parameterWithPrimitiveType.kt │ │ │ │ ├── propertyWithPropertyInInitializerAsParameter.kt │ │ │ │ ├── resolveWithLowPriorityAnnotation.kt │ │ │ │ ├── varargInAnnotationParameter.kt │ │ │ │ └── wrongAnnotationArgumentInCtor.kt │ │ │ ├── argumentOrder │ │ │ │ ├── argumentOrderInObjectSuperCall.kt │ │ │ │ ├── argumentOrderInSuperCall.kt │ │ │ │ ├── arguments.kt │ │ │ │ ├── captured.kt │ │ │ │ ├── capturedInExtension.kt │ │ │ │ ├── defaults.kt │ │ │ │ ├── extension.kt │ │ │ │ ├── extensionInClass.kt │ │ │ │ ├── kt9277.kt │ │ │ │ ├── lambdaMigration.kt │ │ │ │ ├── lambdaMigrationInClass.kt │ │ │ │ ├── simple.kt │ │ │ │ ├── simpleInClass.kt │ │ │ │ └── varargAndDefaultParameters_ForNative.kt │ │ │ ├── arrays │ │ │ │ ├── arrayConstructorsSimple.kt │ │ │ │ ├── arrayGetAssignMultiIndex.kt │ │ │ │ ├── arrayGetMultiIndex.kt │ │ │ │ ├── arrayInstanceOf.kt │ │ │ │ ├── arrayPlusAssign.kt │ │ │ │ ├── arraysAreCloneable.kt │ │ │ │ ├── cloneArray.kt │ │ │ │ ├── clonePrimitiveArrays.kt │ │ │ │ ├── collectionAssignGetMultiIndex.kt │ │ │ │ ├── collectionGetMultiIndex.kt │ │ │ │ ├── forEachBooleanArray.kt │ │ │ │ ├── forEachByteArray.kt │ │ │ │ ├── forEachCharArray.kt │ │ │ │ ├── forEachDoubleArray.kt │ │ │ │ ├── forEachFloatArray.kt │ │ │ │ ├── forEachIntArray.kt │ │ │ │ ├── forEachLongArray.kt │ │ │ │ ├── forEachShortArray.kt │ │ │ │ ├── genericArrayInObjectLiteralConstructor.kt │ │ │ │ ├── hashMap.kt │ │ │ │ ├── inProjectionAsParameter.kt │ │ │ │ ├── inProjectionOfArray.kt │ │ │ │ ├── inProjectionOfList.kt │ │ │ │ ├── indices.kt │ │ │ │ ├── indicesChar.kt │ │ │ │ ├── iterator.kt │ │ │ │ ├── iteratorBooleanArray.kt │ │ │ │ ├── iteratorByteArray.kt │ │ │ │ ├── iteratorByteArrayNextByte.kt │ │ │ │ ├── iteratorCharArray.kt │ │ │ │ ├── iteratorDoubleArray.kt │ │ │ │ ├── iteratorFloatArray.kt │ │ │ │ ├── iteratorIntArray.kt │ │ │ │ ├── iteratorLongArray.kt │ │ │ │ ├── iteratorLongArrayNextLong.kt │ │ │ │ ├── iteratorShortArray.kt │ │ │ │ ├── kt1291.kt │ │ │ │ ├── kt17134.kt │ │ │ │ ├── kt238.kt │ │ │ │ ├── kt2997.kt │ │ │ │ ├── kt33.kt │ │ │ │ ├── kt3771.kt │ │ │ │ ├── kt4118.kt │ │ │ │ ├── kt4348.kt │ │ │ │ ├── kt4357.kt │ │ │ │ ├── kt503.kt │ │ │ │ ├── kt594.kt │ │ │ │ ├── kt602.kt │ │ │ │ ├── kt7009.kt │ │ │ │ ├── kt7288.kt │ │ │ │ ├── kt7338.kt │ │ │ │ ├── kt779.kt │ │ │ │ ├── kt945.kt │ │ │ │ ├── kt950.kt │ │ │ │ ├── longAsIndex.kt │ │ │ │ ├── multiArrayConstructors.kt │ │ │ │ ├── multiDecl │ │ │ │ │ ├── MultiDeclFor.kt │ │ │ │ │ ├── MultiDeclForComponentExtensions.kt │ │ │ │ │ ├── MultiDeclForComponentMemberExtensions.kt │ │ │ │ │ ├── MultiDeclForComponentMemberExtensionsInExtensionFunction.kt │ │ │ │ │ ├── MultiDeclForValCaptured.kt │ │ │ │ │ ├── int │ │ │ │ │ │ ├── MultiDeclForComponentExtensions.kt │ │ │ │ │ │ ├── MultiDeclForComponentExtensionsValCaptured.kt │ │ │ │ │ │ ├── MultiDeclForComponentMemberExtensions.kt │ │ │ │ │ │ └── MultiDeclForComponentMemberExtensionsInExtensionFunction.kt │ │ │ │ │ ├── kt15560.kt │ │ │ │ │ ├── kt15568.kt │ │ │ │ │ ├── kt15575.kt │ │ │ │ │ └── long │ │ │ │ │ │ ├── MultiDeclForComponentExtensions.kt │ │ │ │ │ │ ├── MultiDeclForComponentExtensionsValCaptured.kt │ │ │ │ │ │ ├── MultiDeclForComponentMemberExtensions.kt │ │ │ │ │ │ └── MultiDeclForComponentMemberExtensionsInExtensionFunction.kt │ │ │ │ ├── nonLocalReturnArrayConstructor.kt │ │ │ │ ├── nonNullArray.kt │ │ │ │ ├── primitiveArrays.kt │ │ │ │ ├── stdlib.kt │ │ │ │ └── varargsWithJava.kt │ │ │ ├── binaryOp │ │ │ │ ├── bitwiseOp.kt │ │ │ │ ├── bitwiseOpAny.kt │ │ │ │ ├── bitwiseOpNullable.kt │ │ │ │ ├── call.kt │ │ │ │ ├── callAny.kt │ │ │ │ ├── callNullable.kt │ │ │ │ ├── compareBoxedChars.kt │ │ │ │ ├── compareWithBoxedDouble.kt │ │ │ │ ├── compareWithBoxedLong.kt │ │ │ │ ├── divisionByZero.kt │ │ │ │ ├── intrinsic.kt │ │ │ │ ├── intrinsicAny.kt │ │ │ │ ├── intrinsicNullable.kt │ │ │ │ ├── kt11163.kt │ │ │ │ ├── kt6747_identityEquals.kt │ │ │ │ ├── overflowChar.kt │ │ │ │ ├── overflowInt.kt │ │ │ │ └── overflowLong.kt │ │ │ ├── boxingOptimization │ │ │ │ ├── boxedIntegersCmp.kt │ │ │ │ ├── boxedPrimitivesAreEqual.kt │ │ │ │ ├── boxedRealsCmp.kt │ │ │ │ ├── casts.kt │ │ │ │ ├── checkcastAndInstanceOf.kt │ │ │ │ ├── explicitEqualsOnDouble.kt │ │ │ │ ├── fold.kt │ │ │ │ ├── foldRange.kt │ │ │ │ ├── intCompareTo.kt │ │ │ │ ├── kClassEquals.kt │ │ │ │ ├── kt15871.kt │ │ │ │ ├── kt17748.kt │ │ │ │ ├── kt19767.kt │ │ │ │ ├── kt19767_2.kt │ │ │ │ ├── kt19767_3.kt │ │ │ │ ├── kt19767_chain.kt │ │ │ │ ├── kt5493.kt │ │ │ │ ├── kt5588.kt │ │ │ │ ├── kt5844.kt │ │ │ │ ├── kt6047.kt │ │ │ │ ├── kt6842.kt │ │ │ │ ├── maxMinBy.kt │ │ │ │ ├── nullCheck.kt │ │ │ │ ├── progressions.kt │ │ │ │ ├── safeCallWithElvis.kt │ │ │ │ ├── simple.kt │ │ │ │ ├── simpleUninitializedMerge.kt │ │ │ │ ├── taintedValues.kt │ │ │ │ ├── taintedValuesBox.kt │ │ │ │ ├── unsafeRemoving.kt │ │ │ │ └── variables.kt │ │ │ ├── bridges │ │ │ │ ├── complexMultiInheritance.kt │ │ │ │ ├── complexTraitImpl.kt │ │ │ │ ├── delegation.kt │ │ │ │ ├── delegationComplex.kt │ │ │ │ ├── delegationComplexWithList.kt │ │ │ │ ├── delegationProperty.kt │ │ │ │ ├── diamond.kt │ │ │ │ ├── fakeCovariantOverride.kt │ │ │ │ ├── fakeGenericCovariantOverride.kt │ │ │ │ ├── fakeGenericCovariantOverrideWithDelegation.kt │ │ │ │ ├── fakeOverrideOfTraitImpl.kt │ │ │ │ ├── fakeOverrideWithSeveralSuperDeclarations.kt │ │ │ │ ├── fakeOverrideWithSynthesizedImplementation.kt │ │ │ │ ├── genericProperty.kt │ │ │ │ ├── jsName.kt │ │ │ │ ├── jsNative.kt │ │ │ │ ├── kt12416.kt │ │ │ │ ├── kt1939.kt │ │ │ │ ├── kt1959.kt │ │ │ │ ├── kt2498.kt │ │ │ │ ├── kt2702.kt │ │ │ │ ├── kt2833.kt │ │ │ │ ├── kt2920.kt │ │ │ │ ├── kt318.kt │ │ │ │ ├── longChainOneBridge.kt │ │ │ │ ├── manyTypeArgumentsSubstitutedSuccessively.kt │ │ │ │ ├── methodFromTrait.kt │ │ │ │ ├── noBridgeOnMutableCollectionInheritance.kt │ │ │ │ ├── objectClone.kt │ │ │ │ ├── overrideAbstractProperty.kt │ │ │ │ ├── overrideReturnType.kt │ │ │ │ ├── propertyAccessorsWithoutBody.kt │ │ │ │ ├── propertyDiamond.kt │ │ │ │ ├── propertyInConstructor.kt │ │ │ │ ├── propertySetter.kt │ │ │ │ ├── simple.kt │ │ │ │ ├── simpleEnum.kt │ │ │ │ ├── simpleGenericMethod.kt │ │ │ │ ├── simpleObject.kt │ │ │ │ ├── simpleReturnType.kt │ │ │ │ ├── simpleTraitImpl.kt │ │ │ │ ├── simpleUpperBound.kt │ │ │ │ ├── strListContains.kt │ │ │ │ ├── substitutionInSuperClass │ │ │ │ │ ├── abstractFun.kt │ │ │ │ │ ├── boundedTypeArguments.kt │ │ │ │ │ ├── delegation.kt │ │ │ │ │ ├── differentErasureInSuperClass.kt │ │ │ │ │ ├── differentErasureInSuperClassComplex.kt │ │ │ │ │ ├── enum.kt │ │ │ │ │ ├── genericMethod.kt │ │ │ │ │ ├── object.kt │ │ │ │ │ ├── property.kt │ │ │ │ │ ├── simple.kt │ │ │ │ │ └── upperBound.kt │ │ │ │ ├── traitImplInheritsTraitImpl.kt │ │ │ │ ├── twoParentsWithDifferentMethodsTwoBridges.kt │ │ │ │ ├── twoParentsWithDifferentMethodsTwoBridges2.kt │ │ │ │ └── twoParentsWithTheSameMethodOneBridge.kt │ │ │ ├── builtinStubMethods │ │ │ │ ├── Collection.kt │ │ │ │ ├── Iterator.kt │ │ │ │ ├── IteratorWithRemove.kt │ │ │ │ ├── List.kt │ │ │ │ ├── ListIterator.kt │ │ │ │ ├── ListWithAllImplementations.kt │ │ │ │ ├── ListWithAllInheritedImplementations.kt │ │ │ │ ├── Map.kt │ │ │ │ ├── MapEntry.kt │ │ │ │ ├── MapEntryWithSetValue.kt │ │ │ │ ├── MapWithAllImplementations.kt │ │ │ │ ├── SubstitutedList.kt │ │ │ │ ├── abstractMember.kt │ │ │ │ ├── customReadOnlyIterator.kt │ │ │ │ ├── delegationToArrayList.kt │ │ │ │ ├── extendJavaCollections │ │ │ │ │ ├── abstractList.kt │ │ │ │ │ ├── abstractMap.kt │ │ │ │ │ ├── abstractSet.kt │ │ │ │ │ ├── arrayList.kt │ │ │ │ │ ├── hashMap.kt │ │ │ │ │ ├── hashSet.kt │ │ │ │ │ └── mapEntry.kt │ │ │ │ ├── implementationInTrait.kt │ │ │ │ ├── inheritedImplementations.kt │ │ │ │ ├── manyTypeParametersWithUpperBounds.kt │ │ │ │ ├── nonTrivialSubstitution.kt │ │ │ │ ├── nonTrivialUpperBound.kt │ │ │ │ ├── substitutedIterable.kt │ │ │ │ └── substitutedListWithExtraSuperInterface.kt │ │ │ ├── callableReference │ │ │ │ ├── bound │ │ │ │ │ ├── array.kt │ │ │ │ │ ├── companionObjectReceiver.kt │ │ │ │ │ ├── emptyLHS.kt │ │ │ │ │ ├── enumEntryMember.kt │ │ │ │ │ ├── equals │ │ │ │ │ │ ├── nullableReceiverInEquals.kt │ │ │ │ │ │ ├── propertyAccessors.kt │ │ │ │ │ │ ├── receiverInEquals.kt │ │ │ │ │ │ └── reflectionReference.kt │ │ │ │ │ ├── genericValOnLHS.kt │ │ │ │ │ ├── inline │ │ │ │ │ │ ├── simple.kt │ │ │ │ │ │ └── simpleVal.kt │ │ │ │ │ ├── kCallableNameIntrinsic.kt │ │ │ │ │ ├── kt12738.kt │ │ │ │ │ ├── kt15446.kt │ │ │ │ │ ├── localUnitFunction.kt │ │ │ │ │ ├── multiCase.kt │ │ │ │ │ ├── nullReceiver.kt │ │ │ │ │ ├── objectReceiver.kt │ │ │ │ │ ├── primitiveReceiver.kt │ │ │ │ │ ├── simpleFunction.kt │ │ │ │ │ ├── simpleProperty.kt │ │ │ │ │ ├── smartCastForExtensionReceiver.kt │ │ │ │ │ └── syntheticExtensionOnLHS.kt │ │ │ │ ├── function │ │ │ │ │ ├── abstractClassMember.kt │ │ │ │ │ ├── booleanNotIntrinsic.kt │ │ │ │ │ ├── classMemberFromClass.kt │ │ │ │ │ ├── classMemberFromExtension.kt │ │ │ │ │ ├── classMemberFromTopLevelStringNoArgs.kt │ │ │ │ │ ├── classMemberFromTopLevelStringOneStringArg.kt │ │ │ │ │ ├── classMemberFromTopLevelUnitNoArgs.kt │ │ │ │ │ ├── classMemberFromTopLevelUnitOneStringArg.kt │ │ │ │ │ ├── constructorFromTopLevelNoArgs.kt │ │ │ │ │ ├── constructorFromTopLevelOneStringArg.kt │ │ │ │ │ ├── enumValueOfMethod.kt │ │ │ │ │ ├── equalsIntrinsic.kt │ │ │ │ │ ├── extensionFromClass.kt │ │ │ │ │ ├── extensionFromExtension.kt │ │ │ │ │ ├── extensionFromTopLevelStringNoArgs.kt │ │ │ │ │ ├── extensionFromTopLevelStringOneStringArg.kt │ │ │ │ │ ├── extensionFromTopLevelUnitNoArgs.kt │ │ │ │ │ ├── extensionFromTopLevelUnitOneStringArg.kt │ │ │ │ │ ├── genericCallableReferenceArguments.kt │ │ │ │ │ ├── genericCallableReferencesWithNullableTypes.kt │ │ │ │ │ ├── genericCallableReferencesWithOverload.kt │ │ │ │ │ ├── genericMember.kt │ │ │ │ │ ├── genericWithDependentType.kt │ │ │ │ │ ├── getArityViaFunctionImpl.kt │ │ │ │ │ ├── innerClassConstructorWithTwoReceivers.kt │ │ │ │ │ ├── innerConstructorFromClass.kt │ │ │ │ │ ├── innerConstructorFromExtension.kt │ │ │ │ │ ├── innerConstructorFromTopLevelNoArgs.kt │ │ │ │ │ ├── innerConstructorFromTopLevelOneStringArg.kt │ │ │ │ │ ├── javaCollectionsStaticMethod.kt │ │ │ │ │ ├── local │ │ │ │ │ │ ├── captureOuter.kt │ │ │ │ │ │ ├── classMember.kt │ │ │ │ │ │ ├── closureWithSideEffect.kt │ │ │ │ │ │ ├── constructor.kt │ │ │ │ │ │ ├── constructorWithInitializer.kt │ │ │ │ │ │ ├── enumExtendsTrait.kt │ │ │ │ │ │ ├── equalsHashCode.kt │ │ │ │ │ │ ├── extension.kt │ │ │ │ │ │ ├── extensionToLocalClass.kt │ │ │ │ │ │ ├── extensionToPrimitive.kt │ │ │ │ │ │ ├── extensionWithClosure.kt │ │ │ │ │ │ ├── genericMember.kt │ │ │ │ │ │ ├── localClassMember.kt │ │ │ │ │ │ ├── localFunctionName.kt │ │ │ │ │ │ ├── localLocal.kt │ │ │ │ │ │ ├── recursiveClosure.kt │ │ │ │ │ │ ├── simple.kt │ │ │ │ │ │ ├── simpleClosure.kt │ │ │ │ │ │ ├── simpleWithArg.kt │ │ │ │ │ │ └── unitWithSideEffect.kt │ │ │ │ │ ├── nestedConstructorFromClass.kt │ │ │ │ │ ├── nestedConstructorFromTopLevelNoArgs.kt │ │ │ │ │ ├── nestedConstructorFromTopLevelOneStringArg.kt │ │ │ │ │ ├── newArray.kt │ │ │ │ │ ├── overloadedFun.kt │ │ │ │ │ ├── overloadedFunVsVal.kt │ │ │ │ │ ├── privateClassMember.kt │ │ │ │ │ ├── sortListOfStrings.kt │ │ │ │ │ ├── specialCalls.kt │ │ │ │ │ ├── topLevelFromClass.kt │ │ │ │ │ ├── topLevelFromExtension.kt │ │ │ │ │ ├── topLevelFromTopLevelStringNoArgs.kt │ │ │ │ │ ├── topLevelFromTopLevelStringOneStringArg.kt │ │ │ │ │ ├── topLevelFromTopLevelUnitNoArgs.kt │ │ │ │ │ ├── topLevelFromTopLevelUnitOneStringArg.kt │ │ │ │ │ ├── traitImplMethodWithClassReceiver.kt │ │ │ │ │ └── traitMember.kt │ │ │ │ ├── property │ │ │ │ │ ├── accessViaSubclass.kt │ │ │ │ │ ├── delegated.kt │ │ │ │ │ ├── delegatedMutable.kt │ │ │ │ │ ├── enumNameOrdinal.kt │ │ │ │ │ ├── extensionToArray.kt │ │ │ │ │ ├── genericProperty.kt │ │ │ │ │ ├── invokePropertyReference.kt │ │ │ │ │ ├── javaBeanConvention.kt │ │ │ │ │ ├── kClassInstanceIsInitializedFirst.kt │ │ │ │ │ ├── kt12044.kt │ │ │ │ │ ├── kt12982_protectedPropertyReference.kt │ │ │ │ │ ├── kt14330.kt │ │ │ │ │ ├── kt14330_2.kt │ │ │ │ │ ├── kt15447.kt │ │ │ │ │ ├── kt6870_privatePropertyReference.kt │ │ │ │ │ ├── listOfStringsMapLength.kt │ │ │ │ │ ├── localClassVar.kt │ │ │ │ │ ├── overriddenInSubclass.kt │ │ │ │ │ ├── privateSetOuterClass.kt │ │ │ │ │ ├── privateSetterInsideClass.kt │ │ │ │ │ ├── privateSetterOutsideClass.kt │ │ │ │ │ ├── simpleExtension.kt │ │ │ │ │ ├── simpleMember.kt │ │ │ │ │ ├── simpleMutableExtension.kt │ │ │ │ │ ├── simpleMutableMember.kt │ │ │ │ │ ├── simpleMutableTopLevel.kt │ │ │ │ │ └── simpleTopLevel.kt │ │ │ │ └── serializability │ │ │ │ │ ├── boundWithNotSerializableReceiver.kt │ │ │ │ │ ├── boundWithSerializableReceiver.kt │ │ │ │ │ ├── noReflect.kt │ │ │ │ │ ├── reflectedIsNotSerialized.kt │ │ │ │ │ └── withReflect.kt │ │ │ ├── casts │ │ │ │ ├── as.kt │ │ │ │ ├── asForConstants.kt │ │ │ │ ├── asSafe.kt │ │ │ │ ├── asSafeFail.kt │ │ │ │ ├── asSafeForConstants.kt │ │ │ │ ├── asUnit.kt │ │ │ │ ├── asWithGeneric.kt │ │ │ │ ├── castGenericNull.kt │ │ │ │ ├── functions │ │ │ │ │ ├── asFunKBig.kt │ │ │ │ │ ├── asFunKSmall.kt │ │ │ │ │ ├── isFunKBig.kt │ │ │ │ │ ├── isFunKSmall.kt │ │ │ │ │ ├── javaTypeIsFunK.kt │ │ │ │ │ ├── reifiedAsFunKBig.kt │ │ │ │ │ ├── reifiedAsFunKSmall.kt │ │ │ │ │ ├── reifiedIsFunKBig.kt │ │ │ │ │ ├── reifiedIsFunKSmall.kt │ │ │ │ │ ├── reifiedSafeAsFunKBig.kt │ │ │ │ │ ├── reifiedSafeAsFunKSmall.kt │ │ │ │ │ ├── safeAsFunKBig.kt │ │ │ │ │ └── safeAsFunKSmall.kt │ │ │ │ ├── intersectionTypeMultipleBounds.kt │ │ │ │ ├── intersectionTypeMultipleBoundsImplicitReceiver.kt │ │ │ │ ├── intersectionTypeSmartcast.kt │ │ │ │ ├── intersectionTypeWithMultipleBoundsAsReceiver.kt │ │ │ │ ├── intersectionTypeWithoutGenericsAsReceiver.kt │ │ │ │ ├── is.kt │ │ │ │ ├── isNullablePrimitive.kt │ │ │ │ ├── lambdaToUnitCast.kt │ │ │ │ ├── literalExpressionAsGenericArgument │ │ │ │ │ ├── binaryExpressionCast.kt │ │ │ │ │ ├── javaBox.kt │ │ │ │ │ ├── labeledExpressionCast.kt │ │ │ │ │ ├── parenthesizedExpressionCast.kt │ │ │ │ │ ├── superConstructor.kt │ │ │ │ │ ├── unaryExpressionCast.kt │ │ │ │ │ └── vararg.kt │ │ │ │ ├── mutableCollections │ │ │ │ │ ├── asWithMutable.kt │ │ │ │ │ ├── isWithMutable.kt │ │ │ │ │ ├── mutabilityMarkerInterfaces.kt │ │ │ │ │ ├── reifiedAsWithMutable.kt │ │ │ │ │ ├── reifiedIsWithMutable.kt │ │ │ │ │ ├── reifiedSafeAsWithMutable.kt │ │ │ │ │ ├── safeAsWithMutable.kt │ │ │ │ │ └── weirdMutableCasts.kt │ │ │ │ ├── notIs.kt │ │ │ │ ├── unitAsAny.kt │ │ │ │ ├── unitAsInt.kt │ │ │ │ ├── unitAsSafeAny.kt │ │ │ │ └── unitNullableCast.kt │ │ │ ├── checkcastOptimization │ │ │ │ ├── kt19128.kt │ │ │ │ └── kt19246.kt │ │ │ ├── classLiteral │ │ │ │ ├── bound │ │ │ │ │ ├── javaIntrinsicWithSideEffect.kt │ │ │ │ │ ├── primitives.kt │ │ │ │ │ ├── sideEffect.kt │ │ │ │ │ ├── simple.kt │ │ │ │ │ └── smartCast.kt │ │ │ │ ├── java │ │ │ │ │ ├── java.kt │ │ │ │ │ ├── javaObjectType.kt │ │ │ │ │ ├── javaObjectTypeReified.kt │ │ │ │ │ ├── javaPrimitiveType.kt │ │ │ │ │ ├── javaPrimitiveTypeReified.kt │ │ │ │ │ ├── javaReified.kt │ │ │ │ │ ├── kt11943.kt │ │ │ │ │ └── objectSuperConstructorCall.kt │ │ │ │ └── primitiveKClassEquality.kt │ │ │ ├── classes │ │ │ │ ├── boxPrimitiveTypeInClinitOfClassObject.kt │ │ │ │ ├── classCompanionInitializationWithJava.kt │ │ │ │ ├── classNamedAsOldPackageFacade.kt │ │ │ │ ├── classObject.kt │ │ │ │ ├── classObjectAsExtensionReceiver.kt │ │ │ │ ├── classObjectAsStaticInitializer.kt │ │ │ │ ├── classObjectField.kt │ │ │ │ ├── classObjectInTrait.kt │ │ │ │ ├── classObjectNotOfEnum.kt │ │ │ │ ├── classObjectToString.kt │ │ │ │ ├── classObjectWithPrivateGenericMember.kt │ │ │ │ ├── classObjectsWithParentClasses.kt │ │ │ │ ├── comanionObjectFieldVsClassField.kt │ │ │ │ ├── defaultObjectSameNamesAsInOuter.kt │ │ │ │ ├── delegation2.kt │ │ │ │ ├── delegation3.kt │ │ │ │ ├── delegation4.kt │ │ │ │ ├── delegationGenericArg.kt │ │ │ │ ├── delegationGenericArgUpperBound.kt │ │ │ │ ├── delegationGenericLongArg.kt │ │ │ │ ├── delegationJava.kt │ │ │ │ ├── delegationMethodsWithArgs.kt │ │ │ │ ├── exceptionConstructor.kt │ │ │ │ ├── extensionOnNamedClassObject.kt │ │ │ │ ├── funDelegation.kt │ │ │ │ ├── implementComparableInSubclass.kt │ │ │ │ ├── inheritSetAndHashSet.kt │ │ │ │ ├── inheritance.kt │ │ │ │ ├── inheritedInnerClass.kt │ │ │ │ ├── inheritedMethod.kt │ │ │ │ ├── initializerBlock.kt │ │ │ │ ├── initializerBlockDImpl.kt │ │ │ │ ├── inner │ │ │ │ │ ├── instantiateInDerived.kt │ │ │ │ │ ├── instantiateInDerivedLabeled.kt │ │ │ │ │ ├── instantiateInSameClass.kt │ │ │ │ │ ├── kt6708.kt │ │ │ │ │ ├── properOuter.kt │ │ │ │ │ └── properSuperLinking.kt │ │ │ │ ├── innerClass.kt │ │ │ │ ├── interfaceCompanionInitializationWithJava.kt │ │ │ │ ├── kt1018.kt │ │ │ │ ├── kt1120.kt │ │ │ │ ├── kt1134.kt │ │ │ │ ├── kt1157.kt │ │ │ │ ├── kt1247.kt │ │ │ │ ├── kt1345.kt │ │ │ │ ├── kt1439.kt │ │ │ │ ├── kt1535.kt │ │ │ │ ├── kt1538.kt │ │ │ │ ├── kt1578.kt │ │ │ │ ├── kt1611.kt │ │ │ │ ├── kt1721.kt │ │ │ │ ├── kt1726.kt │ │ │ │ ├── kt1759.kt │ │ │ │ ├── kt1891.kt │ │ │ │ ├── kt1918.kt │ │ │ │ ├── kt1976.kt │ │ │ │ ├── kt1980.kt │ │ │ │ ├── kt2224.kt │ │ │ │ ├── kt2288.kt │ │ │ │ ├── kt2384.kt │ │ │ │ ├── kt2390.kt │ │ │ │ ├── kt2391.kt │ │ │ │ ├── kt2395.kt │ │ │ │ ├── kt2417.kt │ │ │ │ ├── kt2477.kt │ │ │ │ ├── kt2480.kt │ │ │ │ ├── kt2482.kt │ │ │ │ ├── kt2485.kt │ │ │ │ ├── kt249.kt │ │ │ │ ├── kt2532.kt │ │ │ │ ├── kt2566.kt │ │ │ │ ├── kt2566_2.kt │ │ │ │ ├── kt2607.kt │ │ │ │ ├── kt2626.kt │ │ │ │ ├── kt2711.kt │ │ │ │ ├── kt2784.kt │ │ │ │ ├── kt285.kt │ │ │ │ ├── kt3001.kt │ │ │ │ ├── kt3114.kt │ │ │ │ ├── kt3414.kt │ │ │ │ ├── kt343.kt │ │ │ │ ├── kt3546.kt │ │ │ │ ├── kt454.kt │ │ │ │ ├── kt471.kt │ │ │ │ ├── kt48.kt │ │ │ │ ├── kt496.kt │ │ │ │ ├── kt500.kt │ │ │ │ ├── kt501.kt │ │ │ │ ├── kt504.kt │ │ │ │ ├── kt508.kt │ │ │ │ ├── kt5347.kt │ │ │ │ ├── kt6136.kt │ │ │ │ ├── kt633.kt │ │ │ │ ├── kt6816.kt │ │ │ │ ├── kt707.kt │ │ │ │ ├── kt723.kt │ │ │ │ ├── kt725.kt │ │ │ │ ├── kt8011.kt │ │ │ │ ├── kt8011a.kt │ │ │ │ ├── kt903.kt │ │ │ │ ├── kt940.kt │ │ │ │ ├── kt9642.kt │ │ │ │ ├── namedClassObject.kt │ │ │ │ ├── outerThis.kt │ │ │ │ ├── overloadBinaryOperator.kt │ │ │ │ ├── overloadPlusAssign.kt │ │ │ │ ├── overloadPlusAssignReturn.kt │ │ │ │ ├── overloadPlusToPlusAssign.kt │ │ │ │ ├── overloadUnaryOperator.kt │ │ │ │ ├── privateOuterFunctions.kt │ │ │ │ ├── privateOuterProperty.kt │ │ │ │ ├── privateToThis.kt │ │ │ │ ├── propertyDelegation.kt │ │ │ │ ├── propertyInInitializer.kt │ │ │ │ ├── quotedClassName.kt │ │ │ │ ├── rightHandOverride.kt │ │ │ │ ├── sealedInSameFile.kt │ │ │ │ ├── selfcreate.kt │ │ │ │ ├── simpleBox.kt │ │ │ │ ├── superConstructorCallWithComplexArg.kt │ │ │ │ └── typedDelegation.kt │ │ │ ├── closures │ │ │ │ ├── captureExtensionReceiver.kt │ │ │ │ ├── captureOuterProperty │ │ │ │ │ ├── captureFunctionInProperty.kt │ │ │ │ │ ├── inFunction.kt │ │ │ │ │ ├── inProperty.kt │ │ │ │ │ ├── inPropertyDeepObjectChain.kt │ │ │ │ │ ├── inPropertyFromSuperClass.kt │ │ │ │ │ ├── inPropertyFromSuperSuperClass.kt │ │ │ │ │ ├── kt4176.kt │ │ │ │ │ └── kt4656.kt │ │ │ │ ├── capturedLocalGenericFun.kt │ │ │ │ ├── capturedVarsOptimization │ │ │ │ │ ├── capturedInCrossinline.kt │ │ │ │ │ ├── capturedInInlineOnlyAssign.kt │ │ │ │ │ ├── capturedInInlineOnlyCAO.kt │ │ │ │ │ ├── capturedInInlineOnlyIncrDecr.kt │ │ │ │ │ ├── capturedInInlineOnlyIndexedCAO.kt │ │ │ │ │ ├── capturedVarsOfSize2.kt │ │ │ │ │ ├── kt17200.kt │ │ │ │ │ ├── kt17588.kt │ │ │ │ │ ├── sharedSlotsWithCapturedVars.kt │ │ │ │ │ └── withCoroutines.kt │ │ │ │ ├── closureInsideClosure │ │ │ │ │ ├── localFunInsideLocalFun.kt │ │ │ │ │ ├── localFunInsideLocalFunDifferentSignatures.kt │ │ │ │ │ ├── propertyAndFunctionNameClash.kt │ │ │ │ │ ├── threeLevels.kt │ │ │ │ │ ├── threeLevelsDifferentSignatures.kt │ │ │ │ │ └── varAsFunInsideLocalFun.kt │ │ │ │ ├── closureInsideConstrucor.kt │ │ │ │ ├── closureOnTopLevel1.kt │ │ │ │ ├── closureOnTopLevel2.kt │ │ │ │ ├── closureWithParameter.kt │ │ │ │ ├── closureWithParameterAndBoxing.kt │ │ │ │ ├── doubleEnclosedLocalVariable.kt │ │ │ │ ├── enclosingLocalVariable.kt │ │ │ │ ├── enclosingThis.kt │ │ │ │ ├── extensionClosure.kt │ │ │ │ ├── kt10044.kt │ │ │ │ ├── kt11634.kt │ │ │ │ ├── kt11634_2.kt │ │ │ │ ├── kt11634_3.kt │ │ │ │ ├── kt11634_4.kt │ │ │ │ ├── kt2151.kt │ │ │ │ ├── kt3152.kt │ │ │ │ ├── kt3523.kt │ │ │ │ ├── kt3738.kt │ │ │ │ ├── kt3905.kt │ │ │ │ ├── kt4106.kt │ │ │ │ ├── kt4137.kt │ │ │ │ ├── kt5589.kt │ │ │ │ ├── localClassFunClosure.kt │ │ │ │ ├── localClassLambdaClosure.kt │ │ │ │ ├── localFunctionInFunction.kt │ │ │ │ ├── localFunctionInInitializer.kt │ │ │ │ ├── localGenericFun.kt │ │ │ │ ├── localReturn.kt │ │ │ │ ├── localReturnWithAutolabel.kt │ │ │ │ ├── noRefToOuter.kt │ │ │ │ ├── recursiveClosure.kt │ │ │ │ ├── refsAreSerializable.kt │ │ │ │ ├── simplestClosure.kt │ │ │ │ ├── simplestClosureAndBoxing.kt │ │ │ │ ├── subclosuresWithinInitializers.kt │ │ │ │ └── underscoreParameters.kt │ │ │ ├── collectionLiterals │ │ │ │ ├── collectionLiteralsInArgumentPosition.kt │ │ │ │ ├── collectionLiteralsWithConstants.kt │ │ │ │ ├── collectionLiteralsWithVarargs.kt │ │ │ │ └── defaultAnnotationParameterValues.kt │ │ │ ├── collections │ │ │ │ ├── charSequence.kt │ │ │ │ ├── implementCollectionThroughKotlin.kt │ │ │ │ ├── inSetWithSmartCast.kt │ │ │ │ ├── irrelevantImplCharSequence.kt │ │ │ │ ├── irrelevantImplCharSequenceKotlin.kt │ │ │ │ ├── irrelevantImplMutableList.kt │ │ │ │ ├── irrelevantImplMutableListKotlin.kt │ │ │ │ ├── irrelevantImplMutableListSubstitution.kt │ │ │ │ ├── irrelevantRemoveAtOverrideInJava.kt │ │ │ │ ├── irrelevantSizeOverrideInJava.kt │ │ │ │ ├── mutableList.kt │ │ │ │ ├── noStubsInJavaSuperClass.kt │ │ │ │ ├── platformValueContains.kt │ │ │ │ ├── readOnlyList.kt │ │ │ │ ├── readOnlyMap.kt │ │ │ │ ├── removeAtInt.kt │ │ │ │ ├── strList.kt │ │ │ │ └── toArrayInJavaClass.kt │ │ │ ├── compatibility │ │ │ │ └── dataClassEqualsHashCodeToString.kt │ │ │ ├── constants │ │ │ │ ├── constantsInWhen.kt │ │ │ │ ├── float.kt │ │ │ │ ├── kt9532.kt │ │ │ │ ├── kt9532_lv10.kt │ │ │ │ ├── long.kt │ │ │ │ └── privateConst.kt │ │ │ ├── constructorCall │ │ │ │ ├── breakInConstructorArguments.kt │ │ │ │ ├── continueInConstructorArguments.kt │ │ │ │ ├── earlyReturnInConstructorArguments.kt │ │ │ │ ├── inlineFunInConstructorCallEvaluationOrder.kt │ │ │ │ ├── inlineFunInConstructorCallWithDisabledNormalization.kt │ │ │ │ ├── inlineFunInConstructorCallWithEnabledNormalization.kt │ │ │ │ ├── inlineFunInConstructorCallWithStrictNormalization.kt │ │ │ │ ├── inlineFunInInnerClassConstructorCall.kt │ │ │ │ ├── inlineFunInLocalClassConstructorCall.kt │ │ │ │ ├── nestedConstructorCallWithJumpOutInConstructorArguments.kt │ │ │ │ ├── nonLocalReturnInConstructorArguments.kt │ │ │ │ ├── possiblyPoppedUnitializedValueInArguments.kt │ │ │ │ ├── regularConstructorCallEvaluationOrder.kt │ │ │ │ └── tryCatchInConstructorCallEvaluationOrder.kt │ │ │ ├── controlStructures │ │ │ │ ├── bottles.kt │ │ │ │ ├── breakContinueInExpressions │ │ │ │ │ ├── breakFromOuter.kt │ │ │ │ │ ├── breakInDoWhile.kt │ │ │ │ │ ├── breakInExpr.kt │ │ │ │ │ ├── continueInDoWhile.kt │ │ │ │ │ ├── continueInExpr.kt │ │ │ │ │ ├── inlineWithStack.kt │ │ │ │ │ ├── innerLoopWithStack.kt │ │ │ │ │ ├── kt14581.kt │ │ │ │ │ ├── kt16713.kt │ │ │ │ │ ├── kt16713_2.kt │ │ │ │ │ ├── kt17384.kt │ │ │ │ │ ├── kt9022And.kt │ │ │ │ │ ├── kt9022Or.kt │ │ │ │ │ ├── pathologicalDoWhile.kt │ │ │ │ │ ├── popSizes.kt │ │ │ │ │ ├── tryFinally1.kt │ │ │ │ │ ├── tryFinally2.kt │ │ │ │ │ └── whileTrueBreak.kt │ │ │ │ ├── breakInFinally.kt │ │ │ │ ├── compareBoxedIntegerToZero.kt │ │ │ │ ├── conditionOfEmptyIf.kt │ │ │ │ ├── continueInExpr.kt │ │ │ │ ├── continueInFor.kt │ │ │ │ ├── continueInForCondition.kt │ │ │ │ ├── continueInWhile.kt │ │ │ │ ├── continueToLabelInFor.kt │ │ │ │ ├── doWhile.kt │ │ │ │ ├── doWhileFib.kt │ │ │ │ ├── doWhileWithContinue.kt │ │ │ │ ├── emptyDoWhile.kt │ │ │ │ ├── emptyFor.kt │ │ │ │ ├── emptyWhile.kt │ │ │ │ ├── factorialTest.kt │ │ │ │ ├── finallyOnEmptyReturn.kt │ │ │ │ ├── forArrayList.kt │ │ │ │ ├── forArrayListMultiDecl.kt │ │ │ │ ├── forInCharSequence.kt │ │ │ │ ├── forInCharSequenceMut.kt │ │ │ │ ├── forInSmartCastToArray.kt │ │ │ │ ├── forIntArray.kt │ │ │ │ ├── forLoopMemberExtensionAll.kt │ │ │ │ ├── forLoopMemberExtensionHasNext.kt │ │ │ │ ├── forLoopMemberExtensionNext.kt │ │ │ │ ├── forNullableIntArray.kt │ │ │ │ ├── forPrimitiveIntArray.kt │ │ │ │ ├── forUserType.kt │ │ │ │ ├── inRangeConditionsInWhen.kt │ │ │ │ ├── kt12908.kt │ │ │ │ ├── kt12908_2.kt │ │ │ │ ├── kt1441.kt │ │ │ │ ├── kt14839.kt │ │ │ │ ├── kt15726.kt │ │ │ │ ├── kt1688.kt │ │ │ │ ├── kt1742.kt │ │ │ │ ├── kt17590.kt │ │ │ │ ├── kt17590_long.kt │ │ │ │ ├── kt1899.kt │ │ │ │ ├── kt2147.kt │ │ │ │ ├── kt2259.kt │ │ │ │ ├── kt2291.kt │ │ │ │ ├── kt237.kt │ │ │ │ ├── kt2416.kt │ │ │ │ ├── kt2423.kt │ │ │ │ ├── kt2577.kt │ │ │ │ ├── kt2597.kt │ │ │ │ ├── kt299.kt │ │ │ │ ├── kt3087.kt │ │ │ │ ├── kt3203_1.kt │ │ │ │ ├── kt3203_2.kt │ │ │ │ ├── kt3273.kt │ │ │ │ ├── kt3280.kt │ │ │ │ ├── kt3574.kt │ │ │ │ ├── kt416.kt │ │ │ │ ├── kt513.kt │ │ │ │ ├── kt628.kt │ │ │ │ ├── kt769.kt │ │ │ │ ├── kt772.kt │ │ │ │ ├── kt773.kt │ │ │ │ ├── kt8148.kt │ │ │ │ ├── kt8148_break.kt │ │ │ │ ├── kt8148_continue.kt │ │ │ │ ├── kt870.kt │ │ │ │ ├── kt9022Return.kt │ │ │ │ ├── kt9022Throw.kt │ │ │ │ ├── kt910.kt │ │ │ │ ├── kt958.kt │ │ │ │ ├── longRange.kt │ │ │ │ ├── parameterWithNameForFunctionType.kt │ │ │ │ ├── quicksort.kt │ │ │ │ ├── returnsNothing │ │ │ │ │ ├── ifElse.kt │ │ │ │ │ ├── inlineMethod.kt │ │ │ │ │ ├── propertyGetter.kt │ │ │ │ │ ├── tryCatch.kt │ │ │ │ │ └── when.kt │ │ │ │ ├── tryCatchFinallyChain.kt │ │ │ │ └── tryCatchInExpressions │ │ │ │ │ ├── catch.kt │ │ │ │ │ ├── complexChain.kt │ │ │ │ │ ├── deadTryCatch.kt │ │ │ │ │ ├── differentTypes.kt │ │ │ │ │ ├── expectException.kt │ │ │ │ │ ├── finally.kt │ │ │ │ │ ├── inlineTryCatch.kt │ │ │ │ │ ├── inlineTryExpr.kt │ │ │ │ │ ├── inlineTryFinally.kt │ │ │ │ │ ├── kt17572.kt │ │ │ │ │ ├── kt17572_2.kt │ │ │ │ │ ├── kt17572_2_ext.kt │ │ │ │ │ ├── kt17572_ext.kt │ │ │ │ │ ├── kt17572_nested.kt │ │ │ │ │ ├── kt17573.kt │ │ │ │ │ ├── kt17573_nested.kt │ │ │ │ │ ├── kt8608.kt │ │ │ │ │ ├── kt9644try.kt │ │ │ │ │ ├── multipleCatchBlocks.kt │ │ │ │ │ ├── splitTry.kt │ │ │ │ │ ├── splitTryCorner1.kt │ │ │ │ │ ├── splitTryCorner2.kt │ │ │ │ │ ├── try.kt │ │ │ │ │ ├── tryAfterTry.kt │ │ │ │ │ ├── tryAndBreak.kt │ │ │ │ │ ├── tryAndContinue.kt │ │ │ │ │ ├── tryCatchAfterWhileTrue.kt │ │ │ │ │ ├── tryInsideCatch.kt │ │ │ │ │ ├── tryInsideTry.kt │ │ │ │ │ └── unmatchedInlineMarkers.kt │ │ │ ├── coroutines │ │ │ │ ├── 32defaultParametersInSuspend.kt │ │ │ │ ├── accessorForSuspend.kt │ │ │ │ ├── asyncIterator.kt │ │ │ │ ├── asyncIteratorNullMerge.kt │ │ │ │ ├── asyncIteratorToList.kt │ │ │ │ ├── await.kt │ │ │ │ ├── beginWithException.kt │ │ │ │ ├── beginWithExceptionNoHandleException.kt │ │ │ │ ├── coercionToUnit.kt │ │ │ │ ├── controlFlow │ │ │ │ │ ├── breakFinally.kt │ │ │ │ │ ├── breakStatement.kt │ │ │ │ │ ├── doWhileStatement.kt │ │ │ │ │ ├── forContinue.kt │ │ │ │ │ ├── forStatement.kt │ │ │ │ │ ├── forWithStep.kt │ │ │ │ │ ├── ifStatement.kt │ │ │ │ │ ├── labeledWhile.kt │ │ │ │ │ ├── returnFromFinally.kt │ │ │ │ │ ├── switchLikeWhen.kt │ │ │ │ │ ├── throwFromCatch.kt │ │ │ │ │ ├── throwInTryWithHandleResult.kt │ │ │ │ │ └── whileStatement.kt │ │ │ │ ├── controllerAccessFromInnerLambda.kt │ │ │ │ ├── coroutineToString.kt │ │ │ │ ├── createCoroutineSafe.kt │ │ │ │ ├── createCoroutinesOnManualInstances.kt │ │ │ │ ├── defaultParametersInSuspend.kt │ │ │ │ ├── dispatchResume.kt │ │ │ │ ├── emptyClosure.kt │ │ │ │ ├── falseUnitCoercion.kt │ │ │ │ ├── featureIntersection │ │ │ │ │ ├── breakWithNonEmptyStack.kt │ │ │ │ │ ├── destructuringInLambdas.kt │ │ │ │ │ ├── safeCallOnTwoReceivers.kt │ │ │ │ │ ├── safeCallOnTwoReceiversLong.kt │ │ │ │ │ ├── suspendDestructuringInLambdas.kt │ │ │ │ │ └── tailrec.kt │ │ │ │ ├── generate.kt │ │ │ │ ├── handleException.kt │ │ │ │ ├── handleResultCallEmptyBody.kt │ │ │ │ ├── handleResultNonUnitExpression.kt │ │ │ │ ├── handleResultSuspended.kt │ │ │ │ ├── illegalState.kt │ │ │ │ ├── inlineFunInGenericClass.kt │ │ │ │ ├── inlineGenericFunCalledFromSubclass.kt │ │ │ │ ├── inlineSuspendFunction.kt │ │ │ │ ├── inlinedTryCatchFinally.kt │ │ │ │ ├── innerSuspensionCalls.kt │ │ │ │ ├── instanceOfContinuation.kt │ │ │ │ ├── intLikeVarSpilling │ │ │ │ │ ├── complicatedMerge.kt │ │ │ │ │ ├── i2bResult.kt │ │ │ │ │ ├── loadFromBooleanArray.kt │ │ │ │ │ ├── loadFromByteArray.kt │ │ │ │ │ ├── noVariableInTable.kt │ │ │ │ │ ├── sameIconst1ManyVars.kt │ │ │ │ │ ├── usedInArrayStore.kt │ │ │ │ │ ├── usedInMethodCall.kt │ │ │ │ │ ├── usedInPutfield.kt │ │ │ │ │ └── usedInVarStore.kt │ │ │ │ ├── intrinsicSemantics │ │ │ │ │ ├── startCoroutine.kt │ │ │ │ │ ├── startCoroutineUninterceptedOrReturn.kt │ │ │ │ │ └── startCoroutineUninterceptedOrReturnInterception.kt │ │ │ │ ├── iterateOverArray.kt │ │ │ │ ├── kt12958.kt │ │ │ │ ├── kt15016.kt │ │ │ │ ├── kt15017.kt │ │ │ │ ├── lastExpressionIsLoop.kt │ │ │ │ ├── lastStatementInc.kt │ │ │ │ ├── lastStementAssignment.kt │ │ │ │ ├── lastUnitExpression.kt │ │ │ │ ├── localCallableRef.kt │ │ │ │ ├── localDelegate.kt │ │ │ │ ├── longRangeInSuspendCall.kt │ │ │ │ ├── longRangeInSuspendFun.kt │ │ │ │ ├── mergeNullAndString.kt │ │ │ │ ├── multiModule │ │ │ │ │ ├── inlineFunctionWithOptionalParam.kt │ │ │ │ │ ├── inlineMultiModule.kt │ │ │ │ │ ├── inlineMultiModuleOverride.kt │ │ │ │ │ ├── inlineMultiModuleWithController.kt │ │ │ │ │ └── simple.kt │ │ │ │ ├── multipleInvokeCalls.kt │ │ │ │ ├── multipleInvokeCallsInsideInlineLambda1.kt │ │ │ │ ├── multipleInvokeCallsInsideInlineLambda2.kt │ │ │ │ ├── multipleInvokeCallsInsideInlineLambda3.kt │ │ │ │ ├── nestedTryCatch.kt │ │ │ │ ├── noSuspensionPoints.kt │ │ │ │ ├── nonLocalReturnFromInlineLambda.kt │ │ │ │ ├── nonLocalReturnFromInlineLambdaDeep.kt │ │ │ │ ├── overrideDefaultArgument.kt │ │ │ │ ├── recursiveSuspend.kt │ │ │ │ ├── returnByLabel.kt │ │ │ │ ├── simple.kt │ │ │ │ ├── simpleException.kt │ │ │ │ ├── simpleWithHandleResult.kt │ │ │ │ ├── stackUnwinding │ │ │ │ │ ├── exception.kt │ │ │ │ │ ├── inlineSuspendFunction.kt │ │ │ │ │ ├── simple.kt │ │ │ │ │ └── suspendInCycle.kt │ │ │ │ ├── statementLikeLastExpression.kt │ │ │ │ ├── suspendCoroutineFromStateMachine.kt │ │ │ │ ├── suspendDefaultImpl.kt │ │ │ │ ├── suspendDelegation.kt │ │ │ │ ├── suspendFromInlineLambda.kt │ │ │ │ ├── suspendFunImportedFromObject.kt │ │ │ │ ├── suspendFunctionAsCoroutine │ │ │ │ │ ├── augmentedAssignment.kt │ │ │ │ │ ├── dispatchResume.kt │ │ │ │ │ ├── handleException.kt │ │ │ │ │ ├── inline.kt │ │ │ │ │ ├── inlineTwoReceivers.kt │ │ │ │ │ ├── member.kt │ │ │ │ │ ├── noinlineTwoReceivers.kt │ │ │ │ │ ├── openFunWithJava.kt │ │ │ │ │ ├── operators.kt │ │ │ │ │ ├── privateFunctions.kt │ │ │ │ │ ├── privateInFile.kt │ │ │ │ │ ├── returnNoSuspend.kt │ │ │ │ │ ├── simple.kt │ │ │ │ │ ├── superCall.kt │ │ │ │ │ ├── superCallAbstractClass.kt │ │ │ │ │ ├── superCallInterface.kt │ │ │ │ │ └── withVariables.kt │ │ │ │ ├── suspendFunctionTypeCall │ │ │ │ │ ├── localVal.kt │ │ │ │ │ ├── manyParameters.kt │ │ │ │ │ └── simple.kt │ │ │ │ ├── suspendInCycle.kt │ │ │ │ ├── suspendInTheMiddleOfObjectConstruction.kt │ │ │ │ ├── suspendInTheMiddleOfObjectConstructionEvaluationOrder.kt │ │ │ │ ├── suspendInTheMiddleOfObjectConstructionWithJumpOut.kt │ │ │ │ ├── suspensionInsideSafeCall.kt │ │ │ │ ├── suspensionInsideSafeCallWithElvis.kt │ │ │ │ ├── tailCallOptimizations │ │ │ │ │ ├── inlineWithStateMachine.kt │ │ │ │ │ ├── inlineWithoutStateMachine.kt │ │ │ │ │ └── simple.kt │ │ │ │ ├── tailOperations │ │ │ │ │ ├── suspendWithIf.kt │ │ │ │ │ ├── suspendWithTryCatch.kt │ │ │ │ │ ├── suspendWithWhen.kt │ │ │ │ │ └── tailInlining.kt │ │ │ │ ├── tryCatchFinallyWithHandleResult.kt │ │ │ │ ├── tryCatchWithHandleResult.kt │ │ │ │ ├── tryFinallyInsideInlineLambda.kt │ │ │ │ ├── tryFinallyWithHandleResult.kt │ │ │ │ ├── unitTypeReturn │ │ │ │ │ ├── coroutineNonLocalReturn.kt │ │ │ │ │ ├── coroutineReturn.kt │ │ │ │ │ ├── suspendNonLocalReturn.kt │ │ │ │ │ └── suspendReturn.kt │ │ │ │ ├── varSpilling │ │ │ │ │ ├── kt19475.kt │ │ │ │ │ └── nullSpilling.kt │ │ │ │ ├── varValueConflictsWithTable.kt │ │ │ │ └── varValueConflictsWithTableSameSort.kt │ │ │ ├── dataClasses │ │ │ │ ├── arrayParams.kt │ │ │ │ ├── changingVarParam.kt │ │ │ │ ├── copy │ │ │ │ │ ├── constructorWithDefaultParam.kt │ │ │ │ │ ├── copyInObjectNestedDataClass.kt │ │ │ │ │ ├── kt12708.kt │ │ │ │ │ ├── kt3033.kt │ │ │ │ │ ├── valInConstructorParams.kt │ │ │ │ │ ├── varInConstructorParams.kt │ │ │ │ │ ├── withGenericParameter.kt │ │ │ │ │ └── withSecondaryConstructor.kt │ │ │ │ ├── doubleParam.kt │ │ │ │ ├── equals │ │ │ │ │ ├── alreadyDeclared.kt │ │ │ │ │ ├── alreadyDeclaredWrongSignature.kt │ │ │ │ │ ├── genericarray.kt │ │ │ │ │ ├── intarray.kt │ │ │ │ │ ├── nullother.kt │ │ │ │ │ └── sameinstance.kt │ │ │ │ ├── floatParam.kt │ │ │ │ ├── genericParam.kt │ │ │ │ ├── hashCode │ │ │ │ │ ├── alreadyDeclared.kt │ │ │ │ │ ├── alreadyDeclaredWrongSignature.kt │ │ │ │ │ ├── array.kt │ │ │ │ │ ├── boolean.kt │ │ │ │ │ ├── byte.kt │ │ │ │ │ ├── char.kt │ │ │ │ │ ├── double.kt │ │ │ │ │ ├── float.kt │ │ │ │ │ ├── genericNull.kt │ │ │ │ │ ├── int.kt │ │ │ │ │ ├── long.kt │ │ │ │ │ ├── null.kt │ │ │ │ │ └── short.kt │ │ │ │ ├── kt5002.kt │ │ │ │ ├── mixedParams.kt │ │ │ │ ├── multiDeclaration.kt │ │ │ │ ├── multiDeclarationFor.kt │ │ │ │ ├── nonTrivialFinalMemberInSuperClass.kt │ │ │ │ ├── nonTrivialMemberInSuperClass.kt │ │ │ │ ├── privateValParams.kt │ │ │ │ ├── toString │ │ │ │ ├── twoValParams.kt │ │ │ │ ├── twoVarParams.kt │ │ │ │ └── unitComponent.kt │ │ │ ├── deadCodeElimination │ │ │ │ ├── emptyVariableRange.kt │ │ │ │ ├── intersectingVariableRange.kt │ │ │ │ ├── intersectingVariableRangeInFinally.kt │ │ │ │ └── kt14357.kt │ │ │ ├── defaultArguments │ │ │ │ ├── constructor │ │ │ │ ├── convention │ │ │ │ │ ├── incWithDefaultInGetter.kt │ │ │ │ │ ├── kt9140.kt │ │ │ │ │ └── plusAssignWithDefaultInGetter.kt │ │ │ │ ├── function │ │ │ │ │ ├── abstractClass.kt │ │ │ │ │ ├── covariantOverride.kt │ │ │ │ │ ├── covariantOverrideGeneric.kt │ │ │ │ │ ├── extensionFunctionManyArgs.kt │ │ │ │ │ ├── extentionFunction.kt │ │ │ │ │ ├── extentionFunctionDouble.kt │ │ │ │ │ ├── extentionFunctionDoubleTwoArgs.kt │ │ │ │ │ ├── extentionFunctionInClassObject.kt │ │ │ │ │ ├── extentionFunctionInObject.kt │ │ │ │ │ ├── extentionFunctionWithOneDefArg.kt │ │ │ │ │ ├── funInTrait.kt │ │ │ │ │ ├── innerExtentionFunction.kt │ │ │ │ │ ├── innerExtentionFunctionDouble.kt │ │ │ │ │ ├── innerExtentionFunctionDoubleTwoArgs.kt │ │ │ │ │ ├── innerExtentionFunctionManyArgs.kt │ │ │ │ │ ├── kt5232.kt │ │ │ │ │ ├── memberFunctionManyArgs.kt │ │ │ │ │ ├── mixingNamedAndPositioned.kt │ │ │ │ │ ├── topLevelManyArgs.kt │ │ │ │ │ └── trait.kt │ │ │ │ ├── implementedByFake.kt │ │ │ │ ├── inheritedFromInterfaceViaAbstractSuperclass.kt │ │ │ │ ├── kt6382.kt │ │ │ │ ├── private │ │ │ │ │ ├── memberExtensionFunction.kt │ │ │ │ │ ├── memberFunction.kt │ │ │ │ │ ├── primaryConstructor.kt │ │ │ │ │ └── secondaryConstructor.kt │ │ │ │ ├── protected.kt │ │ │ │ ├── signature │ │ │ │ │ ├── kt2789.kt │ │ │ │ │ ├── kt9428.kt │ │ │ │ │ └── kt9924.kt │ │ │ │ ├── simpleFromOtherFile.kt │ │ │ │ └── superCallCheck.kt │ │ │ ├── delegatedProperty │ │ │ │ ├── accessTopLevelDelegatedPropertyInClinit.kt │ │ │ │ ├── capturePropertyInClosure.kt │ │ │ │ ├── castGetReturnType.kt │ │ │ │ ├── castSetParameter.kt │ │ │ │ ├── delegateAsInnerClass.kt │ │ │ │ ├── delegateByOtherProperty.kt │ │ │ │ ├── delegateByTopLevelFun.kt │ │ │ │ ├── delegateByTopLevelProperty.kt │ │ │ │ ├── delegateForExtProperty.kt │ │ │ │ ├── delegateForExtPropertyInClass.kt │ │ │ │ ├── delegateWithPrivateSet.kt │ │ │ │ ├── extensionDelegatesWithSameNames.kt │ │ │ │ ├── extensionPropertyAndExtensionGetValue.kt │ │ │ │ ├── genericDelegate.kt │ │ │ │ ├── genericDelegateUncheckedCast1.kt │ │ │ │ ├── genericDelegateUncheckedCast2.kt │ │ │ │ ├── genericSetValueViaSyntheticAccessor.kt │ │ │ │ ├── getAsExtensionFun.kt │ │ │ │ ├── getAsExtensionFunInClass.kt │ │ │ │ ├── getDelegateWithoutReflection.kt │ │ │ │ ├── inClassVal.kt │ │ │ │ ├── inClassVar.kt │ │ │ │ ├── inTrait.kt │ │ │ │ ├── inferredPropertyType.kt │ │ │ │ ├── kt4138.kt │ │ │ │ ├── kt6722.kt │ │ │ │ ├── kt9712.kt │ │ │ │ ├── local │ │ │ │ │ ├── capturedLocalVal.kt │ │ │ │ │ ├── capturedLocalValNoInline.kt │ │ │ │ │ ├── capturedLocalVar.kt │ │ │ │ │ ├── capturedLocalVarNoInline.kt │ │ │ │ │ ├── inlineGetValue.kt │ │ │ │ │ ├── inlineOperators.kt │ │ │ │ │ ├── kt12891.kt │ │ │ │ │ ├── kt13557.kt │ │ │ │ │ ├── kt16864.kt │ │ │ │ │ ├── kt19690.kt │ │ │ │ │ ├── localVal.kt │ │ │ │ │ ├── localValNoExplicitType.kt │ │ │ │ │ ├── localVar.kt │ │ │ │ │ └── localVarNoExplicitType.kt │ │ │ │ ├── privateSetterKPropertyIsNotMutable.kt │ │ │ │ ├── privateVar.kt │ │ │ │ ├── propertyMetadataShouldBeCached.kt │ │ │ │ ├── protectedVarWithPrivateSet.kt │ │ │ │ ├── provideDelegate │ │ │ │ │ ├── differentReceivers.kt │ │ │ │ │ ├── evaluationOrder.kt │ │ │ │ │ ├── evaluationOrderVar.kt │ │ │ │ │ ├── extensionDelegated.kt │ │ │ │ │ ├── generic.kt │ │ │ │ │ ├── hostCheck.kt │ │ │ │ │ ├── inClass.kt │ │ │ │ │ ├── inlineProvideDelegate.kt │ │ │ │ │ ├── jvmStaticInObject.kt │ │ │ │ │ ├── kt15437.kt │ │ │ │ │ ├── kt16441.kt │ │ │ │ │ ├── kt18902.kt │ │ │ │ │ ├── local.kt │ │ │ │ │ ├── localCaptured.kt │ │ │ │ │ ├── localDifferentReceivers.kt │ │ │ │ │ ├── memberExtension.kt │ │ │ │ │ └── propertyMetadata.kt │ │ │ │ ├── setAsExtensionFun.kt │ │ │ │ ├── setAsExtensionFunInClass.kt │ │ │ │ ├── stackOverflowOnCallFromGetValue.kt │ │ │ │ ├── topLevelVal.kt │ │ │ │ ├── topLevelVar.kt │ │ │ │ ├── twoPropByOneDelegete.kt │ │ │ │ ├── useKPropertyLater.kt │ │ │ │ ├── useReflectionOnKProperty.kt │ │ │ │ ├── valInInnerClass.kt │ │ │ │ └── varInInnerClass.kt │ │ │ ├── delegation │ │ │ │ ├── delegationToVal.kt │ │ │ │ ├── delegationWithPrivateConstructor.kt │ │ │ │ ├── hiddenSuperOverrideIn1.0.kt │ │ │ │ ├── kt8154.kt │ │ │ │ └── withDefaultParameters.kt │ │ │ ├── destructuringDeclInLambdaParam │ │ │ │ ├── extensionComponents.kt │ │ │ │ ├── generic.kt │ │ │ │ ├── inline.kt │ │ │ │ ├── otherParameters.kt │ │ │ │ ├── simple.kt │ │ │ │ ├── stdlibUsages.kt │ │ │ │ ├── underscoreNames.kt │ │ │ │ └── withIndexed.kt │ │ │ ├── diagnostics │ │ │ │ ├── functions │ │ │ │ │ ├── inference │ │ │ │ │ │ └── kt6176.kt │ │ │ │ │ ├── invoke │ │ │ │ │ │ └── onObjects │ │ │ │ │ │ │ ├── invokeOnClassObject1.kt │ │ │ │ │ │ │ ├── invokeOnClassObject2.kt │ │ │ │ │ │ │ ├── invokeOnClassObjectOfNestedClass1.kt │ │ │ │ │ │ │ ├── invokeOnClassObjectOfNestedClass2.kt │ │ │ │ │ │ │ ├── invokeOnEnum1.kt │ │ │ │ │ │ │ ├── invokeOnEnum2.kt │ │ │ │ │ │ │ ├── invokeOnImportedEnum1.kt │ │ │ │ │ │ │ ├── invokeOnImportedEnum2.kt │ │ │ │ │ │ │ ├── invokeOnObject1.kt │ │ │ │ │ │ │ └── invokeOnObject2.kt │ │ │ │ │ └── tailRecursion │ │ │ │ │ │ ├── defaultArgs.kt │ │ │ │ │ │ ├── defaultArgsOverridden.kt │ │ │ │ │ │ ├── extensionTailCall.kt │ │ │ │ │ │ ├── functionWithNoTails.kt │ │ │ │ │ │ ├── functionWithNonTailRecursions.kt │ │ │ │ │ │ ├── functionWithoutAnnotation.kt │ │ │ │ │ │ ├── infixCall.kt │ │ │ │ │ │ ├── infixRecursiveCall.kt │ │ │ │ │ │ ├── insideElvis.kt │ │ │ │ │ │ ├── labeledThisReferences.kt │ │ │ │ │ │ ├── loops.kt │ │ │ │ │ │ ├── multilevelBlocks.kt │ │ │ │ │ │ ├── realIteratorFoldl.kt │ │ │ │ │ │ ├── realStringEscape.kt │ │ │ │ │ │ ├── realStringRepeat.kt │ │ │ │ │ │ ├── recursiveCallInLambda.kt │ │ │ │ │ │ ├── recursiveCallInLocalFunction.kt │ │ │ │ │ │ ├── recursiveInnerFunction.kt │ │ │ │ │ │ ├── returnIf.kt │ │ │ │ │ │ ├── returnInCatch.kt │ │ │ │ │ │ ├── returnInFinally.kt │ │ │ │ │ │ ├── returnInIfInFinally.kt │ │ │ │ │ │ ├── returnInParentheses.kt │ │ │ │ │ │ ├── returnInTry.kt │ │ │ │ │ │ ├── simpleBlock.kt │ │ │ │ │ │ ├── simpleReturn.kt │ │ │ │ │ │ ├── simpleReturnWithElse.kt │ │ │ │ │ │ ├── sum.kt │ │ │ │ │ │ ├── tailCallInBlockInParentheses.kt │ │ │ │ │ │ ├── tailCallInParentheses.kt │ │ │ │ │ │ ├── tailRecursionInFinally.kt │ │ │ │ │ │ ├── thisReferences.kt │ │ │ │ │ │ ├── unitBlocks.kt │ │ │ │ │ │ ├── whenWithCondition.kt │ │ │ │ │ │ ├── whenWithInRange.kt │ │ │ │ │ │ ├── whenWithIs.kt │ │ │ │ │ │ └── whenWithoutCondition.kt │ │ │ │ └── vararg │ │ │ │ │ └── kt4172.kt │ │ │ ├── elvis │ │ │ │ ├── genericNull.kt │ │ │ │ ├── kt6694ExactAnnotationForElvis.kt │ │ │ │ ├── nullNullOk.kt │ │ │ │ └── primitive.kt │ │ │ ├── enum │ │ │ │ ├── abstractMethodInEnum.kt │ │ │ │ ├── abstractNestedClass.kt │ │ │ │ ├── asReturnExpression.kt │ │ │ │ ├── classForEnumEntry.kt │ │ │ │ ├── companionObjectInEnum.kt │ │ │ │ ├── deepInnerClassInEnumEntryClass.kt │ │ │ │ ├── deepInnerClassInEnumEntryClass2.kt │ │ │ │ ├── defaultCtor │ │ │ │ │ ├── constructorWithDefaultArguments.kt │ │ │ │ │ ├── constructorWithVararg.kt │ │ │ │ │ ├── secondaryConstructorWithDefaultArguments.kt │ │ │ │ │ └── secondaryConstructorWithVararg.kt │ │ │ │ ├── emptyConstructor.kt │ │ │ │ ├── emptyEnumValuesValueOf.kt │ │ │ │ ├── enumCompanionInit.kt │ │ │ │ ├── enumEntryReferenceFromInnerClassConstructor1.kt │ │ │ │ ├── enumEntryReferenceFromInnerClassConstructor2.kt │ │ │ │ ├── enumEntryReferenceFromInnerClassConstructor3.kt │ │ │ │ ├── enumInheritedFromTrait.kt │ │ │ │ ├── enumShort.kt │ │ │ │ ├── enumWithLambdaParameter.kt │ │ │ │ ├── inPackage.kt │ │ │ │ ├── inclassobj.kt │ │ │ │ ├── inner.kt │ │ │ │ ├── innerClassInEnumEntryClass.kt │ │ │ │ ├── innerClassMethodInEnumEntryClass.kt │ │ │ │ ├── innerClassMethodInEnumEntryClass2.kt │ │ │ │ ├── innerWithExistingClassObject.kt │ │ │ │ ├── kt1119.kt │ │ │ │ ├── kt20651.kt │ │ │ │ ├── kt20651_inlineLambda.kt │ │ │ │ ├── kt20651a.kt │ │ │ │ ├── kt20651b.kt │ │ │ │ ├── kt2350.kt │ │ │ │ ├── kt7257.kt │ │ │ │ ├── kt7257_anonObjectInit.kt │ │ │ │ ├── kt7257_anonObjectMethod.kt │ │ │ │ ├── kt7257_boundReference1.kt │ │ │ │ ├── kt7257_boundReference2.kt │ │ │ │ ├── kt7257_boundReferenceWithImplicitReceiver.kt │ │ │ │ ├── kt7257_explicitReceiver.kt │ │ │ │ ├── kt7257_fullyQualifiedReceiver.kt │ │ │ │ ├── kt7257_namedLocalFun.kt │ │ │ │ ├── kt7257_notInline.kt │ │ │ │ ├── kt9711.kt │ │ │ │ ├── kt9711_2.kt │ │ │ │ ├── manyDefaultParameters.kt │ │ │ │ ├── modifierFlags.kt │ │ │ │ ├── noClassForSimpleEnum.kt │ │ │ │ ├── objectInEnum.kt │ │ │ │ ├── ordinal.kt │ │ │ │ ├── simple.kt │ │ │ │ ├── sortEnumEntries.kt │ │ │ │ ├── superCallInEnumLiteral.kt │ │ │ │ ├── toString.kt │ │ │ │ └── valueof.kt │ │ │ ├── evaluate │ │ │ │ ├── char.kt │ │ │ │ ├── divide.kt │ │ │ │ ├── intrinsics.kt │ │ │ │ ├── kt9443.kt │ │ │ │ ├── maxValue.kt │ │ │ │ ├── maxValueByte.kt │ │ │ │ ├── maxValueInt.kt │ │ │ │ ├── minus.kt │ │ │ │ ├── mod.kt │ │ │ │ ├── multiply.kt │ │ │ │ ├── parenthesized.kt │ │ │ │ ├── plus.kt │ │ │ │ ├── simpleCallBinary.kt │ │ │ │ ├── unaryMinus.kt │ │ │ │ └── unaryPlus.kt │ │ │ ├── exclExcl │ │ │ │ ├── genericNull.kt │ │ │ │ └── primitive.kt │ │ │ ├── extensionFunctions │ │ │ │ ├── executionOrder.kt │ │ │ │ ├── kt1061.kt │ │ │ │ ├── kt1249.kt │ │ │ │ ├── kt1290.kt │ │ │ │ ├── kt13312.kt │ │ │ │ ├── kt1776.kt │ │ │ │ ├── kt1953.kt │ │ │ │ ├── kt1953_class.kt │ │ │ │ ├── kt3285.kt │ │ │ │ ├── kt3298.kt │ │ │ │ ├── kt3646.kt │ │ │ │ ├── kt3969.kt │ │ │ │ ├── kt4228.kt │ │ │ │ ├── kt475.kt │ │ │ │ ├── kt5467.kt │ │ │ │ ├── kt606.kt │ │ │ │ ├── kt865.kt │ │ │ │ ├── nested2.kt │ │ │ │ ├── shared.kt │ │ │ │ ├── simple.kt │ │ │ │ ├── thisMethodInObjectLiteral.kt │ │ │ │ ├── virtual.kt │ │ │ │ └── whenFail.kt │ │ │ ├── extensionProperties │ │ │ │ ├── accessorForPrivateSetter.kt │ │ │ │ ├── genericValForPrimitiveType.kt │ │ │ │ ├── genericValMultipleUpperBounds.kt │ │ │ │ ├── genericVarForPrimitiveType.kt │ │ │ │ ├── inClass.kt │ │ │ │ ├── inClassLongTypeInReceiver.kt │ │ │ │ ├── inClassWithGetter.kt │ │ │ │ ├── inClassWithPrivateGetter.kt │ │ │ │ ├── inClassWithPrivateSetter.kt │ │ │ │ ├── inClassWithSetter.kt │ │ │ │ ├── kt9897.kt │ │ │ │ ├── kt9897_topLevel.kt │ │ │ │ ├── topLevel.kt │ │ │ │ └── topLevelLongTypeInReceiver.kt │ │ │ ├── external │ │ │ │ ├── jvmStaticExternal.kt │ │ │ │ ├── jvmStaticExternalPrivate.kt │ │ │ │ └── withDefaultArg.kt │ │ │ ├── fakeOverride │ │ │ │ ├── diamondFunction.kt │ │ │ │ ├── function.kt │ │ │ │ ├── propertyGetter.kt │ │ │ │ └── propertySetter.kt │ │ │ ├── fieldRename │ │ │ │ ├── constructorAndClassObject.kt │ │ │ │ ├── delegates.kt │ │ │ │ └── genericPropertyWithItself.kt │ │ │ ├── finally │ │ │ │ ├── finallyAndFinally.kt │ │ │ │ ├── kt3549.kt │ │ │ │ ├── kt3706.kt │ │ │ │ ├── kt3867.kt │ │ │ │ ├── kt3874.kt │ │ │ │ ├── kt3894.kt │ │ │ │ ├── kt4134.kt │ │ │ │ ├── loopAndFinally.kt │ │ │ │ ├── notChainCatch.kt │ │ │ │ ├── tryFinally.kt │ │ │ │ └── tryLoopTry.kt │ │ │ ├── fullJdk │ │ │ │ ├── charBuffer.kt │ │ │ │ ├── ifInWhile.kt │ │ │ │ ├── intCountDownLatchExtension.kt │ │ │ │ ├── kt434.kt │ │ │ │ ├── native │ │ │ │ │ ├── nativePropertyAccessors.kt │ │ │ │ │ ├── simpleNative.kt │ │ │ │ │ └── topLevel.kt │ │ │ │ ├── platformTypeAssertionStackTrace.kt │ │ │ │ └── regressions │ │ │ │ │ ├── kt15112.kt │ │ │ │ │ └── kt1770.kt │ │ │ ├── functions │ │ │ │ ├── coerceVoidToArray.kt │ │ │ │ ├── coerceVoidToObject.kt │ │ │ │ ├── dataLocalVariable.kt │ │ │ │ ├── defaultargs.kt │ │ │ │ ├── defaultargs1.kt │ │ │ │ ├── defaultargs2.kt │ │ │ │ ├── defaultargs3.kt │ │ │ │ ├── defaultargs4.kt │ │ │ │ ├── defaultargs5.kt │ │ │ │ ├── defaultargs6.kt │ │ │ │ ├── defaultargs7.kt │ │ │ │ ├── ea33909.kt │ │ │ │ ├── fakeDescriptorWithSeveralOverridenOne.kt │ │ │ │ ├── functionExpression │ │ │ │ │ ├── functionExpression.kt │ │ │ │ │ ├── functionExpressionWithThisReference.kt │ │ │ │ │ ├── functionLiteralExpression.kt │ │ │ │ │ └── underscoreParameters.kt │ │ │ │ ├── functionNtoString.kt │ │ │ │ ├── functionNtoStringGeneric.kt │ │ │ │ ├── functionNtoStringNoReflect.kt │ │ │ │ ├── infixRecursiveCall.kt │ │ │ │ ├── invoke │ │ │ │ │ ├── castFunctionToExtension.kt │ │ │ │ │ ├── extensionInvokeOnExpr.kt │ │ │ │ │ ├── implicitInvokeInCompanionObjectWithFunctionalArgument.kt │ │ │ │ │ ├── implicitInvokeWithFunctionLiteralArgument.kt │ │ │ │ │ ├── invoke.kt │ │ │ │ │ ├── invokeOnExprByConvention.kt │ │ │ │ │ ├── invokeOnSyntheticProperty.kt │ │ │ │ │ ├── kt3189.kt │ │ │ │ │ ├── kt3190.kt │ │ │ │ │ ├── kt3297.kt │ │ │ │ │ ├── kt3450getAndInvoke.kt │ │ │ │ │ ├── kt3631invokeOnString.kt │ │ │ │ │ ├── kt3772.kt │ │ │ │ │ ├── kt3821invokeOnThis.kt │ │ │ │ │ └── kt3822invokeOnThis.kt │ │ │ │ ├── kt1038.kt │ │ │ │ ├── kt1199.kt │ │ │ │ ├── kt1413.kt │ │ │ │ ├── kt1649_1.kt │ │ │ │ ├── kt1649_2.kt │ │ │ │ ├── kt1739.kt │ │ │ │ ├── kt2270.kt │ │ │ │ ├── kt2271.kt │ │ │ │ ├── kt2280.kt │ │ │ │ ├── kt2481.kt │ │ │ │ ├── kt2716.kt │ │ │ │ ├── kt2739.kt │ │ │ │ ├── kt2929.kt │ │ │ │ ├── kt3214.kt │ │ │ │ ├── kt3313.kt │ │ │ │ ├── kt3573.kt │ │ │ │ ├── kt3724.kt │ │ │ │ ├── kt395.kt │ │ │ │ ├── kt785.kt │ │ │ │ ├── kt873.kt │ │ │ │ ├── localFunction.kt │ │ │ │ ├── localFunctions │ │ │ │ │ ├── callInlineLocalInLambda.kt │ │ │ │ │ ├── definedWithinLambda.kt │ │ │ │ │ ├── definedWithinLambdaInnerUsage1.kt │ │ │ │ │ ├── definedWithinLambdaInnerUsage2.kt │ │ │ │ │ ├── kt2895.kt │ │ │ │ │ ├── kt3308.kt │ │ │ │ │ ├── kt3978.kt │ │ │ │ │ ├── kt4119.kt │ │ │ │ │ ├── kt4119_2.kt │ │ │ │ │ ├── kt4514.kt │ │ │ │ │ ├── kt4777.kt │ │ │ │ │ ├── kt4783.kt │ │ │ │ │ ├── kt4784.kt │ │ │ │ │ ├── kt4989.kt │ │ │ │ │ ├── localExtensionOnNullableParameter.kt │ │ │ │ │ └── localFunctionInConstructor.kt │ │ │ │ ├── localReturnInsideFunctionExpression.kt │ │ │ │ ├── nothisnoclosure.kt │ │ │ │ ├── prefixRecursiveCall.kt │ │ │ │ ├── recursiveCompareTo.kt │ │ │ │ └── recursiveIncrementCall.kt │ │ │ ├── hashPMap │ │ │ │ ├── empty.kt │ │ │ │ ├── manyNumbers.kt │ │ │ │ ├── rewriteWithDifferent.kt │ │ │ │ ├── rewriteWithEqual.kt │ │ │ │ ├── simplePlusGet.kt │ │ │ │ └── simplePlusMinus.kt │ │ │ ├── ieee754 │ │ │ │ ├── anyToReal.kt │ │ │ │ ├── comparableTypeCast.kt │ │ │ │ ├── dataClass.kt │ │ │ │ ├── equalsDouble.kt │ │ │ │ ├── equalsFloat.kt │ │ │ │ ├── equalsNaN.kt │ │ │ │ ├── equalsNullableDouble.kt │ │ │ │ ├── equalsNullableFloat.kt │ │ │ │ ├── explicitCompareCall.kt │ │ │ │ ├── explicitEqualsCall.kt │ │ │ │ ├── generic.kt │ │ │ │ ├── greaterDouble.kt │ │ │ │ ├── greaterFloat.kt │ │ │ │ ├── inline.kt │ │ │ │ ├── lessDouble.kt │ │ │ │ ├── lessFloat.kt │ │ │ │ ├── nullableAnyToReal.kt │ │ │ │ ├── nullableDoubleEquals.kt │ │ │ │ ├── nullableDoubleEquals10.kt │ │ │ │ ├── nullableDoubleNotEquals.kt │ │ │ │ ├── nullableDoubleNotEquals10.kt │ │ │ │ ├── nullableFloatEquals.kt │ │ │ │ ├── nullableFloatEquals10.kt │ │ │ │ ├── nullableFloatNotEquals.kt │ │ │ │ ├── nullableFloatNotEquals10.kt │ │ │ │ ├── nullableIntEquals.kt │ │ │ │ ├── safeCall.kt │ │ │ │ ├── smartCastToDifferentTypes.kt │ │ │ │ ├── when.kt │ │ │ │ ├── when10.kt │ │ │ │ ├── whenNoSubject.kt │ │ │ │ ├── whenNullableSmartCast.kt │ │ │ │ └── whenNullableSmartCast10.kt │ │ │ ├── increment │ │ │ │ ├── arrayElement.kt │ │ │ │ ├── assignPlusOnSmartCast.kt │ │ │ │ ├── augmentedAssignmentWithComplexRhs.kt │ │ │ │ ├── classNaryGetSet.kt │ │ │ │ ├── classWithGetSet.kt │ │ │ │ ├── extOnLong.kt │ │ │ │ ├── genericClassWithGetSet.kt │ │ │ │ ├── memberExtOnLong.kt │ │ │ │ ├── mutableListElement.kt │ │ │ │ ├── nullable.kt │ │ │ │ ├── postfixIncrementDoubleSmartCast.kt │ │ │ │ ├── postfixIncrementOnClass.kt │ │ │ │ ├── postfixIncrementOnClassSmartCast.kt │ │ │ │ ├── postfixIncrementOnShortSmartCast.kt │ │ │ │ ├── postfixIncrementOnSmartCast.kt │ │ │ │ ├── postfixNullableClassIncrement.kt │ │ │ │ ├── postfixNullableIncrement.kt │ │ │ │ ├── prefixIncrementOnClass.kt │ │ │ │ ├── prefixIncrementOnClassSmartCast.kt │ │ │ │ ├── prefixIncrementOnSmartCast.kt │ │ │ │ ├── prefixNullableClassIncrement.kt │ │ │ │ └── prefixNullableIncrement.kt │ │ │ ├── innerNested │ │ │ │ ├── createNestedClass.kt │ │ │ │ ├── createdNestedInOuterMember.kt │ │ │ │ ├── extensionFun.kt │ │ │ │ ├── extensionToNested.kt │ │ │ │ ├── importNestedClass.kt │ │ │ │ ├── innerGeneric.kt │ │ │ │ ├── innerGenericClassFromJava.kt │ │ │ │ ├── innerJavaClass.kt │ │ │ │ ├── innerLabeledThis.kt │ │ │ │ ├── innerSimple.kt │ │ │ │ ├── kt3132.kt │ │ │ │ ├── kt3927.kt │ │ │ │ ├── kt5363.kt │ │ │ │ ├── kt6804.kt │ │ │ │ ├── nestedClassInObject.kt │ │ │ │ ├── nestedClassObject.kt │ │ │ │ ├── nestedEnumConstant.kt │ │ │ │ ├── nestedGeneric.kt │ │ │ │ ├── nestedInPackage.kt │ │ │ │ ├── nestedObjects.kt │ │ │ │ ├── nestedSimple.kt │ │ │ │ ├── protectedNestedClass.kt │ │ │ │ ├── protectedNestedClassFromJava.kt │ │ │ │ └── superConstructorCall │ │ │ │ │ ├── deepInnerHierarchy.kt │ │ │ │ │ ├── deepLocalHierarchy.kt │ │ │ │ │ ├── innerExtendsInnerViaSecondaryConstuctor.kt │ │ │ │ │ ├── innerExtendsInnerWithProperOuterCapture.kt │ │ │ │ │ ├── innerExtendsOuter.kt │ │ │ │ │ ├── kt11833_1.kt │ │ │ │ │ ├── kt11833_2.kt │ │ │ │ │ ├── localClassOuterDiffersFromInnerOuter.kt │ │ │ │ │ ├── localExtendsInner.kt │ │ │ │ │ ├── localExtendsLocalWithClosure.kt │ │ │ │ │ ├── localWithClosureExtendsLocalWithClosure.kt │ │ │ │ │ ├── objectExtendsClassDefaultArgument.kt │ │ │ │ │ ├── objectExtendsClassVararg.kt │ │ │ │ │ ├── objectExtendsInner.kt │ │ │ │ │ ├── objectExtendsInnerDefaultArgument.kt │ │ │ │ │ ├── objectExtendsInnerOfLocalVarargAndDefault.kt │ │ │ │ │ ├── objectExtendsInnerOfLocalWithCapture.kt │ │ │ │ │ ├── objectExtendsLocalCaptureInSuperCall.kt │ │ │ │ │ ├── objectExtendsLocalWithClosure.kt │ │ │ │ │ └── objectOuterDiffersFromInnerOuter.kt │ │ │ ├── instructions │ │ │ │ └── swap │ │ │ │ │ ├── swapRefToSharedVarInt.kt │ │ │ │ │ └── swapRefToSharedVarLong.kt │ │ │ ├── intrinsics │ │ │ │ ├── charToInt.kt │ │ │ │ ├── defaultObjectMapping.kt │ │ │ │ ├── ea35953.kt │ │ │ │ ├── incWithLabel.kt │ │ │ │ ├── kt10131.kt │ │ │ │ ├── kt10131a.kt │ │ │ │ ├── kt12125.kt │ │ │ │ ├── kt12125_2.kt │ │ │ │ ├── kt12125_inc.kt │ │ │ │ ├── kt12125_inc_2.kt │ │ │ │ ├── kt5937.kt │ │ │ │ ├── kt8666.kt │ │ │ │ ├── longRangeWithExplicitDot.kt │ │ │ │ ├── prefixIncDec.kt │ │ │ │ ├── rangeFromCollection.kt │ │ │ │ ├── stringFromCollection.kt │ │ │ │ ├── throwable.kt │ │ │ │ ├── throwableCallableReference.kt │ │ │ │ ├── throwableParamOrder.kt │ │ │ │ └── tostring.kt │ │ │ ├── javaInterop │ │ │ │ ├── generics │ │ │ │ │ ├── allWildcardsOnClass.kt │ │ │ │ │ ├── covariantOverrideWithDeclarationSiteProjection.kt │ │ │ │ │ └── invariantArgumentsNoWildcard.kt │ │ │ │ ├── lambdaInstanceOf.kt │ │ │ │ ├── notNullAssertions │ │ │ │ │ ├── destructuringAssignmentWithNullabilityAssertionOnExtensionReceiver_lv12.kt │ │ │ │ │ ├── enhancedNullability │ │ │ │ │ │ ├── inFunctionWithExpressionBody.kt │ │ │ │ │ │ ├── inFunctionWithExpressionBodyWithJavaGeneric.kt │ │ │ │ │ │ ├── inLocalFunctionWithExpressionBody.kt │ │ │ │ │ │ ├── inLocalVariableInitializer.kt │ │ │ │ │ │ ├── inMemberPropertyInitializer.kt │ │ │ │ │ │ ├── inPropertyGetterWithExpressionBody.kt │ │ │ │ │ │ └── inTopLevelPropertyInitializer.kt │ │ │ │ │ ├── extensionReceiverParameter.kt │ │ │ │ │ ├── incWithNullabilityAssertionOnExtensionReceiverInPrivateOperator_lv11.kt │ │ │ │ │ ├── incWithNullabilityAssertionOnExtensionReceiverInPrivateOperator_lv12.kt │ │ │ │ │ ├── incWithNullabilityAssertionOnExtensionReceiver_lv11.kt │ │ │ │ │ ├── incWithNullabilityAssertionOnExtensionReceiver_lv12.kt │ │ │ │ │ ├── mapPut.kt │ │ │ │ │ ├── nullabilityAssertionOnExtensionReceiver_lv11.kt │ │ │ │ │ ├── nullabilityAssertionOnExtensionReceiver_lv12.kt │ │ │ │ │ ├── nullabilityAssertionOnInlineFunExtensionReceiver_lv11.kt │ │ │ │ │ ├── nullabilityAssertionOnInlineFunExtensionReceiver_lv12.kt │ │ │ │ │ ├── nullabilityAssertionOnMemberExtensionReceiver_lv12.kt │ │ │ │ │ └── nullabilityAssertionOnPrivateMemberExtensionReceiver_lv12.kt │ │ │ │ └── objectMethods │ │ │ │ │ ├── cloneCallsConstructor.kt │ │ │ │ │ ├── cloneCallsSuper.kt │ │ │ │ │ ├── cloneCallsSuperAndModifies.kt │ │ │ │ │ ├── cloneHashSet.kt │ │ │ │ │ ├── cloneHierarchy.kt │ │ │ │ │ └── cloneableClassWithoutClone.kt │ │ │ ├── jdk │ │ │ │ ├── arrayList.kt │ │ │ │ ├── hashMap.kt │ │ │ │ ├── iteratingOverHashMap.kt │ │ │ │ └── kt1397.kt │ │ │ ├── jvmField │ │ │ │ ├── captureClassFields.kt │ │ │ │ ├── capturePackageFields.kt │ │ │ │ ├── checkNoAccessors.kt │ │ │ │ ├── classFieldReference.kt │ │ │ │ ├── classFieldReflection.kt │ │ │ │ ├── constructorProperty.kt │ │ │ │ ├── publicField.kt │ │ │ │ ├── simpleMemberProperty.kt │ │ │ │ ├── superCall.kt │ │ │ │ ├── superCall2.kt │ │ │ │ ├── topLevelFieldReference.kt │ │ │ │ ├── topLevelFieldReflection.kt │ │ │ │ ├── visibility.kt │ │ │ │ └── writeFieldReference.kt │ │ │ ├── jvmName │ │ │ │ ├── callableReference.kt │ │ │ │ ├── clashingErasure.kt │ │ │ │ ├── classMembers.kt │ │ │ │ ├── fakeJvmNameInJava.kt │ │ │ │ ├── fileFacades │ │ │ │ │ ├── differentFiles.kt │ │ │ │ │ ├── javaAnnotationOnFileFacade.kt │ │ │ │ │ └── simple.kt │ │ │ │ ├── functionName.kt │ │ │ │ ├── multifileClass.kt │ │ │ │ ├── multifileClassWithLocalClass.kt │ │ │ │ ├── multifileClassWithLocalGeneric.kt │ │ │ │ ├── propertyAccessorsUseSite.kt │ │ │ │ ├── propertyName.kt │ │ │ │ └── renamedFileClass.kt │ │ │ ├── jvmOverloads │ │ │ │ ├── companionObject.kt │ │ │ │ ├── defaultsNotAtEnd.kt │ │ │ │ ├── doubleParameters.kt │ │ │ │ ├── extensionMethod.kt │ │ │ │ ├── generics.kt │ │ │ │ ├── innerClass.kt │ │ │ │ ├── multipleDefaultParameters.kt │ │ │ │ ├── noRedundantVarargs.kt │ │ │ │ ├── nonDefaultParameter.kt │ │ │ │ ├── primaryConstructor.kt │ │ │ │ ├── privateClass.kt │ │ │ │ ├── secondaryConstructor.kt │ │ │ │ ├── simple.kt │ │ │ │ ├── simpleJavaCall.kt │ │ │ │ └── varargs.kt │ │ │ ├── jvmPackageName │ │ │ │ ├── metadataField.kt │ │ │ │ ├── rootPackage.kt │ │ │ │ ├── simple.kt │ │ │ │ └── withJvmName.kt │ │ │ ├── jvmStatic │ │ │ │ ├── annotations.kt │ │ │ │ ├── closure.kt │ │ │ │ ├── companionObject.kt │ │ │ │ ├── convention.kt │ │ │ │ ├── default.kt │ │ │ │ ├── enumCompanion.kt │ │ │ │ ├── explicitObject.kt │ │ │ │ ├── funAccess.kt │ │ │ │ ├── importStaticMemberFromObject.kt │ │ │ │ ├── inline.kt │ │ │ │ ├── inlinePropertyAccessors.kt │ │ │ │ ├── kt9897_static.kt │ │ │ │ ├── object.kt │ │ │ │ ├── postfixInc.kt │ │ │ │ ├── prefixInc.kt │ │ │ │ ├── privateMethod.kt │ │ │ │ ├── privateSetter.kt │ │ │ │ ├── propertyAccess.kt │ │ │ │ ├── propertyAccessorsCompanion.kt │ │ │ │ ├── propertyAccessorsObject.kt │ │ │ │ ├── propertyAsDefault.kt │ │ │ │ ├── propertyGetterDelegatesToAnother.kt │ │ │ │ ├── simple.kt │ │ │ │ └── syntheticAccessor.kt │ │ │ ├── labels │ │ │ │ ├── controlLabelClashesWithFuncitonName.kt │ │ │ │ ├── infixCallLabelling.kt │ │ │ │ ├── labeledDeclarations.kt │ │ │ │ ├── propertyAccessor.kt │ │ │ │ ├── propertyAccessorFunctionLiteral.kt │ │ │ │ ├── propertyAccessorInnerExtensionFun.kt │ │ │ │ ├── propertyAccessorObject.kt │ │ │ │ └── propertyInClassAccessor.kt │ │ │ ├── lazyCodegen │ │ │ │ ├── exceptionInFieldInitializer.kt │ │ │ │ ├── ifElse.kt │ │ │ │ ├── increment.kt │ │ │ │ ├── optimizations │ │ │ │ │ ├── negateConstantCompare.kt │ │ │ │ │ ├── negateFalse.kt │ │ │ │ │ ├── negateFalseVar.kt │ │ │ │ │ ├── negateFalseVarChain.kt │ │ │ │ │ ├── negateObjectComp.kt │ │ │ │ │ ├── negateObjectComp2.kt │ │ │ │ │ ├── negateTrue.kt │ │ │ │ │ ├── negateTrueVar.kt │ │ │ │ │ └── noOptimization.kt │ │ │ │ ├── safeAssign.kt │ │ │ │ ├── safeAssignComplex.kt │ │ │ │ ├── safeCallAndArray.kt │ │ │ │ ├── toString.kt │ │ │ │ ├── tryCatchExpression.kt │ │ │ │ └── when.kt │ │ │ ├── localClasses │ │ │ │ ├── anonymousObjectInInitializer.kt │ │ │ │ ├── anonymousObjectInParameterInitializer.kt │ │ │ │ ├── closureOfInnerLocalClass.kt │ │ │ │ ├── closureOfLambdaInLocalClass.kt │ │ │ │ ├── closureWithSelfInstantiation.kt │ │ │ │ ├── inExtensionFunction.kt │ │ │ │ ├── inExtensionProperty.kt │ │ │ │ ├── inLocalExtensionFunction.kt │ │ │ │ ├── inLocalExtensionProperty.kt │ │ │ │ ├── innerClassInLocalClass.kt │ │ │ │ ├── innerOfLocalCaptureExtensionReceiver.kt │ │ │ │ ├── kt2700.kt │ │ │ │ ├── kt2873.kt │ │ │ │ ├── kt3210.kt │ │ │ │ ├── kt3389.kt │ │ │ │ ├── kt3584.kt │ │ │ │ ├── kt4174.kt │ │ │ │ ├── localClass.kt │ │ │ │ ├── localClassCaptureExtensionReceiver.kt │ │ │ │ ├── localClassInInitializer.kt │ │ │ │ ├── localClassInParameterInitializer.kt │ │ │ │ ├── localDataClass.kt │ │ │ │ ├── localExtendsInnerAndReferencesOuterMember.kt │ │ │ │ ├── noclosure.kt │ │ │ │ ├── object.kt │ │ │ │ ├── ownClosureOfInnerLocalClass.kt │ │ │ │ └── withclosure.kt │ │ │ ├── localFunctions │ │ │ │ └── parameterAsDefaultValue.kt │ │ │ ├── mangling │ │ │ │ ├── field.kt │ │ │ │ ├── fun.kt │ │ │ │ ├── internal.kt │ │ │ │ ├── internalOverride.kt │ │ │ │ ├── internalOverrideSuperCall.kt │ │ │ │ ├── noOverrideWithJava.kt │ │ │ │ ├── publicOverride.kt │ │ │ │ └── publicOverrideSuperCall.kt │ │ │ ├── multiDecl │ │ │ │ ├── ComplexInitializer.kt │ │ │ │ ├── SimpleVals.kt │ │ │ │ ├── SimpleValsExtensions.kt │ │ │ │ ├── SimpleVarsExtensions.kt │ │ │ │ ├── UnderscoreNames.kt │ │ │ │ ├── ValCapturedInFunctionLiteral.kt │ │ │ │ ├── ValCapturedInLocalFunction.kt │ │ │ │ ├── ValCapturedInObjectLiteral.kt │ │ │ │ ├── VarCapturedInFunctionLiteral.kt │ │ │ │ ├── VarCapturedInLocalFunction.kt │ │ │ │ ├── VarCapturedInObjectLiteral.kt │ │ │ │ ├── component.kt │ │ │ │ ├── forIterator │ │ │ │ │ ├── MultiDeclFor.kt │ │ │ │ │ ├── MultiDeclForComponentExtensions.kt │ │ │ │ │ ├── MultiDeclForComponentMemberExtensions.kt │ │ │ │ │ ├── MultiDeclForComponentMemberExtensionsInExtensionFunction.kt │ │ │ │ │ ├── MultiDeclForValCaptured.kt │ │ │ │ │ └── longIterator │ │ │ │ │ │ ├── MultiDeclForComponentExtensions.kt │ │ │ │ │ │ ├── MultiDeclForComponentExtensionsValCaptured.kt │ │ │ │ │ │ ├── MultiDeclForComponentMemberExtensions.kt │ │ │ │ │ │ └── MultiDeclForComponentMemberExtensionsInExtensionFunction.kt │ │ │ │ ├── forRange │ │ │ │ │ ├── MultiDeclFor.kt │ │ │ │ │ ├── MultiDeclForComponentExtensions.kt │ │ │ │ │ ├── MultiDeclForComponentMemberExtensions.kt │ │ │ │ │ ├── MultiDeclForComponentMemberExtensionsInExtensionFunction.kt │ │ │ │ │ ├── MultiDeclForValCaptured.kt │ │ │ │ │ ├── UnderscoreNames.kt │ │ │ │ │ ├── UnderscoreNamesDontCallComponent.kt │ │ │ │ │ ├── explicitRangeTo │ │ │ │ │ │ ├── MultiDeclFor.kt │ │ │ │ │ │ ├── MultiDeclForComponentExtensions.kt │ │ │ │ │ │ ├── MultiDeclForComponentMemberExtensions.kt │ │ │ │ │ │ ├── MultiDeclForComponentMemberExtensionsInExtensionFunction.kt │ │ │ │ │ │ ├── MultiDeclForValCaptured.kt │ │ │ │ │ │ ├── int │ │ │ │ │ │ │ ├── MultiDeclForComponentExtensions.kt │ │ │ │ │ │ │ ├── MultiDeclForComponentExtensionsValCaptured.kt │ │ │ │ │ │ │ ├── MultiDeclForComponentMemberExtensions.kt │ │ │ │ │ │ │ └── MultiDeclForComponentMemberExtensionsInExtensionFunction.kt │ │ │ │ │ │ └── long │ │ │ │ │ │ │ ├── MultiDeclForComponentExtensions.kt │ │ │ │ │ │ │ ├── MultiDeclForComponentExtensionsValCaptured.kt │ │ │ │ │ │ │ ├── MultiDeclForComponentMemberExtensions.kt │ │ │ │ │ │ │ └── MultiDeclForComponentMemberExtensionsInExtensionFunction.kt │ │ │ │ │ ├── explicitRangeToWithDot │ │ │ │ │ │ ├── MultiDeclFor.kt │ │ │ │ │ │ ├── MultiDeclForComponentExtensions.kt │ │ │ │ │ │ ├── MultiDeclForComponentMemberExtensions.kt │ │ │ │ │ │ ├── MultiDeclForComponentMemberExtensionsInExtensionFunction.kt │ │ │ │ │ │ ├── MultiDeclForValCaptured.kt │ │ │ │ │ │ ├── int │ │ │ │ │ │ │ ├── MultiDeclForComponentExtensions.kt │ │ │ │ │ │ │ ├── MultiDeclForComponentExtensionsValCaptured.kt │ │ │ │ │ │ │ ├── MultiDeclForComponentMemberExtensions.kt │ │ │ │ │ │ │ └── MultiDeclForComponentMemberExtensionsInExtensionFunction.kt │ │ │ │ │ │ └── long │ │ │ │ │ │ │ ├── MultiDeclForComponentExtensions.kt │ │ │ │ │ │ │ ├── MultiDeclForComponentExtensionsValCaptured.kt │ │ │ │ │ │ │ ├── MultiDeclForComponentMemberExtensions.kt │ │ │ │ │ │ │ └── MultiDeclForComponentMemberExtensionsInExtensionFunction.kt │ │ │ │ │ ├── int │ │ │ │ │ │ ├── MultiDeclForComponentExtensions.kt │ │ │ │ │ │ ├── MultiDeclForComponentExtensionsValCaptured.kt │ │ │ │ │ │ ├── MultiDeclForComponentMemberExtensions.kt │ │ │ │ │ │ └── MultiDeclForComponentMemberExtensionsInExtensionFunction.kt │ │ │ │ │ └── long │ │ │ │ │ │ ├── MultiDeclForComponentExtensions.kt │ │ │ │ │ │ ├── MultiDeclForComponentExtensionsValCaptured.kt │ │ │ │ │ │ ├── MultiDeclForComponentMemberExtensions.kt │ │ │ │ │ │ └── MultiDeclForComponentMemberExtensionsInExtensionFunction.kt │ │ │ │ ├── kt9828_hashMap.kt │ │ │ │ └── returnInElvis.kt │ │ │ ├── multifileClasses │ │ │ │ ├── callMultifileClassMemberFromOtherPackage.kt │ │ │ │ ├── callsToMultifileClassFromOtherPackage.kt │ │ │ │ ├── constPropertyReferenceFromMultifileClass.kt │ │ │ │ ├── inlineMultifileClassMemberFromOtherPackage.kt │ │ │ │ ├── kt16077.kt │ │ │ │ ├── multifileClassPartsInitialization.kt │ │ │ │ ├── multifileClassWith2Files.kt │ │ │ │ ├── multifileClassWithCrossCall.kt │ │ │ │ ├── multifileClassWithPrivate.kt │ │ │ │ ├── optimized │ │ │ │ │ ├── callableRefToFun.kt │ │ │ │ │ ├── callableRefToInternalValInline.kt │ │ │ │ │ ├── callableRefToPrivateVal.kt │ │ │ │ │ ├── callableRefToVal.kt │ │ │ │ │ ├── calls.kt │ │ │ │ │ ├── deferredStaticInitialization.kt │ │ │ │ │ ├── delegatedVal.kt │ │ │ │ │ ├── initializePrivateVal.kt │ │ │ │ │ ├── initializePublicVal.kt │ │ │ │ │ ├── overlappingFuns.kt │ │ │ │ │ ├── overlappingVals.kt │ │ │ │ │ ├── valAccessFromInlineFunCalledFromJava.kt │ │ │ │ │ ├── valAccessFromInlinedToDifferentPackage.kt │ │ │ │ │ └── valWithAccessor.kt │ │ │ │ ├── privateConstVal.kt │ │ │ │ └── samePartNameDifferentFacades.kt │ │ │ ├── nonLocalReturns │ │ │ │ ├── kt6895.kt │ │ │ │ ├── kt9644let.kt │ │ │ │ ├── localReturnInsideProperty.kt │ │ │ │ ├── use.kt │ │ │ │ └── useWithException.kt │ │ │ ├── nullCheckOptimization │ │ │ │ ├── isNullable.kt │ │ │ │ ├── kt7774.kt │ │ │ │ └── trivialInstanceOf.kt │ │ │ ├── objectIntrinsics │ │ │ │ └── objects.kt │ │ │ ├── objects │ │ │ │ ├── anonymousObjectPropertyInitialization.kt │ │ │ │ ├── anonymousObjectReturnsFromTopLevelFun.kt │ │ │ │ ├── classCallsProtectedInheritedByCompanion.kt │ │ │ │ ├── classCompanion.kt │ │ │ │ ├── flist.kt │ │ │ │ ├── initializationOrder.kt │ │ │ │ ├── interfaceCompanion.kt │ │ │ │ ├── interfaceCompanionObjectReference.kt │ │ │ │ ├── kt1047.kt │ │ │ │ ├── kt11117.kt │ │ │ │ ├── kt1136.kt │ │ │ │ ├── kt1186.kt │ │ │ │ ├── kt1600.kt │ │ │ │ ├── kt1737.kt │ │ │ │ ├── kt18982.kt │ │ │ │ ├── kt2398.kt │ │ │ │ ├── kt2663.kt │ │ │ │ ├── kt2663_2.kt │ │ │ │ ├── kt2675.kt │ │ │ │ ├── kt2719.kt │ │ │ │ ├── kt2822.kt │ │ │ │ ├── kt3238.kt │ │ │ │ ├── kt3684.kt │ │ │ │ ├── kt4086.kt │ │ │ │ ├── kt535.kt │ │ │ │ ├── kt560.kt │ │ │ │ ├── kt694.kt │ │ │ │ ├── localFunctionInObjectInitializer_kt4516.kt │ │ │ │ ├── methodOnObject.kt │ │ │ │ ├── nestedDerivedClassCallsProtectedFromCompanion.kt │ │ │ │ ├── nestedObjectWithSuperclass.kt │ │ │ │ ├── object.kt │ │ │ │ ├── objectExtendsInnerAndReferencesOuterMember.kt │ │ │ │ ├── objectInLocalAnonymousObject.kt │ │ │ │ ├── objectInitialization_kt5523.kt │ │ │ │ ├── objectLiteral.kt │ │ │ │ ├── objectLiteralInClosure.kt │ │ │ │ ├── objectVsClassInitialization_kt5291.kt │ │ │ │ ├── objectWithSuperclass.kt │ │ │ │ ├── objectWithSuperclassAndTrait.kt │ │ │ │ ├── privateExtensionFromInitializer_kt4543.kt │ │ │ │ ├── privateFunctionFromClosureInInitializer_kt5582.kt │ │ │ │ ├── receiverInConstructor.kt │ │ │ │ ├── safeAccess.kt │ │ │ │ ├── selfReferenceToCompanionObjectInAnonymousObjectInSuperConstructorCall.kt │ │ │ │ ├── selfReferenceToCompanionObjectInInlineLambdaInConstructorBody.kt │ │ │ │ ├── selfReferenceToCompanionObjectInInlineLambdaInSuperConstructorCall.kt │ │ │ │ ├── selfReferenceToCompanionObjectInLambdaInSuperConstructorCall.kt │ │ │ │ ├── selfReferenceToInterfaceCompanionObjectInAnonymousObjectInSuperConstructorCall.kt │ │ │ │ ├── selfReferenceToInterfaceCompanionObjectInInlineLambdaInConstructorBody.kt │ │ │ │ ├── selfReferenceToInterfaceCompanionObjectInInlineLambdaInSuperConstructorCall.kt │ │ │ │ ├── selfReferenceToInterfaceCompanionObjectInLambdaInSuperConstructorCall.kt │ │ │ │ ├── selfReferenceToObjectInAnonymousObjectInSuperConstructorCall.kt │ │ │ │ ├── selfReferenceToObjectInInlineLambdaInConstructorBody.kt │ │ │ │ ├── selfReferenceToObjectInInlineLambdaInSuperConstructorCall.kt │ │ │ │ ├── selfReferenceToObjectInLambdaInSuperConstructorCall.kt │ │ │ │ ├── simpleObject.kt │ │ │ │ ├── thisInConstructor.kt │ │ │ │ ├── useAnonymousObjectAsIterator.kt │ │ │ │ ├── useImportedMember.kt │ │ │ │ └── useImportedMemberFromCompanion.kt │ │ │ ├── operatorConventions │ │ │ │ ├── annotatedAssignment.kt │ │ │ │ ├── assignmentOperations.kt │ │ │ │ ├── augmentedAssignmentInInitializer.kt │ │ │ │ ├── augmentedAssignmentWithArrayLHS.kt │ │ │ │ ├── compareTo │ │ │ │ │ ├── boolean.kt │ │ │ │ │ ├── comparable.kt │ │ │ │ │ ├── doubleInt.kt │ │ │ │ │ ├── doubleLong.kt │ │ │ │ │ ├── extensionArray.kt │ │ │ │ │ ├── extensionObject.kt │ │ │ │ │ ├── intDouble.kt │ │ │ │ │ ├── intLong.kt │ │ │ │ │ ├── longDouble.kt │ │ │ │ │ └── longInt.kt │ │ │ │ ├── incDecOnObject.kt │ │ │ │ ├── infixFunctionOverBuiltinMember.kt │ │ │ │ ├── kt14201.kt │ │ │ │ ├── kt14201_2.kt │ │ │ │ ├── kt20387.kt │ │ │ │ ├── kt4152.kt │ │ │ │ ├── kt4987.kt │ │ │ │ ├── nestedMaps.kt │ │ │ │ ├── operatorSetLambda.kt │ │ │ │ ├── overloadedSet.kt │ │ │ │ ├── percentAsModOnBigIntegerWithoutRem.kt │ │ │ │ ├── plusExplicit.kt │ │ │ │ ├── remAssignmentOperation.kt │ │ │ │ └── remOverModOperation.kt │ │ │ ├── optimizations │ │ │ │ └── kt20844.kt │ │ │ ├── package │ │ │ │ ├── boxPrimitiveTypeInClinit.kt │ │ │ │ ├── checkCast.kt │ │ │ │ ├── incrementProperty.kt │ │ │ │ ├── initializationOrder.kt │ │ │ │ ├── invokespecial.kt │ │ │ │ ├── mainInFiles.kt │ │ │ │ ├── nullablePrimitiveNoFieldInitializer.kt │ │ │ │ ├── packageLocalClassNotImportedWithDefaultImport.kt │ │ │ │ ├── packageQualifiedMethod.kt │ │ │ │ ├── privateMembersInImportList.kt │ │ │ │ └── privateTopLevelPropAndVarInInner.kt │ │ │ ├── platformTypes │ │ │ │ └── primitives │ │ │ │ │ ├── assign.kt │ │ │ │ │ ├── compareTo.kt │ │ │ │ │ ├── dec.kt │ │ │ │ │ ├── div.kt │ │ │ │ │ ├── equals.kt │ │ │ │ │ ├── equalsNull_lv11.kt │ │ │ │ │ ├── equalsNull_lv12.kt │ │ │ │ │ ├── equalsNull_withExplicitFlag.kt │ │ │ │ │ ├── hashCode.kt │ │ │ │ │ ├── identityEquals.kt │ │ │ │ │ ├── inc.kt │ │ │ │ │ ├── minus.kt │ │ │ │ │ ├── mod.kt │ │ │ │ │ ├── not.kt │ │ │ │ │ ├── notEquals.kt │ │ │ │ │ ├── plus.kt │ │ │ │ │ ├── plusAssign.kt │ │ │ │ │ ├── rangeTo.kt │ │ │ │ │ ├── times.kt │ │ │ │ │ ├── toShort.kt │ │ │ │ │ ├── toString.kt │ │ │ │ │ ├── unaryMinus.kt │ │ │ │ │ └── unaryPlus.kt │ │ │ ├── primitiveTypes │ │ │ │ ├── comparisonWithNaN.kt │ │ │ │ ├── comparisonWithNullCallsFun.kt │ │ │ │ ├── conversions.kt │ │ │ │ ├── ea35963.kt │ │ │ │ ├── equalityWithObject │ │ │ │ │ ├── boxedEqPrimitiveEvaluationOrder.kt │ │ │ │ │ ├── boxedLongEqualsLong.kt │ │ │ │ │ ├── generated │ │ │ │ │ │ ├── boxedEqPrimitiveBoolean.kt │ │ │ │ │ │ ├── boxedEqPrimitiveByte.kt │ │ │ │ │ │ ├── boxedEqPrimitiveChar.kt │ │ │ │ │ │ ├── boxedEqPrimitiveInt.kt │ │ │ │ │ │ ├── boxedEqPrimitiveLong.kt │ │ │ │ │ │ ├── boxedEqPrimitiveShort.kt │ │ │ │ │ │ ├── primitiveEqBoxedBoolean.kt │ │ │ │ │ │ ├── primitiveEqBoxedByte.kt │ │ │ │ │ │ ├── primitiveEqBoxedChar.kt │ │ │ │ │ │ ├── primitiveEqBoxedInt.kt │ │ │ │ │ │ ├── primitiveEqBoxedLong.kt │ │ │ │ │ │ ├── primitiveEqBoxedShort.kt │ │ │ │ │ │ ├── primitiveEqObjectBoolean.kt │ │ │ │ │ │ ├── primitiveEqObjectByte.kt │ │ │ │ │ │ ├── primitiveEqObjectChar.kt │ │ │ │ │ │ ├── primitiveEqObjectInt.kt │ │ │ │ │ │ ├── primitiveEqObjectLong.kt │ │ │ │ │ │ └── primitiveEqObjectShort.kt │ │ │ │ │ ├── objectWithAsymmetricEqualsEqPrimitive.kt │ │ │ │ │ └── whenNullableBoxed.kt │ │ │ │ ├── equalsHashCodeToString.kt │ │ │ │ ├── incrementByteCharShort.kt │ │ │ │ ├── intLiteralIsNotNull.kt │ │ │ │ ├── kt1054.kt │ │ │ │ ├── kt1055.kt │ │ │ │ ├── kt1093.kt │ │ │ │ ├── kt13023.kt │ │ │ │ ├── kt14868.kt │ │ │ │ ├── kt1508.kt │ │ │ │ ├── kt1634.kt │ │ │ │ ├── kt16732.kt │ │ │ │ ├── kt2251.kt │ │ │ │ ├── kt2269.kt │ │ │ │ ├── kt2275.kt │ │ │ │ ├── kt239.kt │ │ │ │ ├── kt242.kt │ │ │ │ ├── kt243.kt │ │ │ │ ├── kt248.kt │ │ │ │ ├── kt2768.kt │ │ │ │ ├── kt2794.kt │ │ │ │ ├── kt3078.kt │ │ │ │ ├── kt3517.kt │ │ │ │ ├── kt3576.kt │ │ │ │ ├── kt3613.kt │ │ │ │ ├── kt4097.kt │ │ │ │ ├── kt4098.kt │ │ │ │ ├── kt4210.kt │ │ │ │ ├── kt4251.kt │ │ │ │ ├── kt446.kt │ │ │ │ ├── kt518.kt │ │ │ │ ├── kt6590_identityEquals.kt │ │ │ │ ├── kt665.kt │ │ │ │ ├── kt684.kt │ │ │ │ ├── kt711.kt │ │ │ │ ├── kt737.kt │ │ │ │ ├── kt752.kt │ │ │ │ ├── kt753.kt │ │ │ │ ├── kt756.kt │ │ │ │ ├── kt757.kt │ │ │ │ ├── kt828.kt │ │ │ │ ├── kt877.kt │ │ │ │ ├── kt882.kt │ │ │ │ ├── kt887.kt │ │ │ │ ├── kt935.kt │ │ │ │ ├── nullAsNullableIntIsNull.kt │ │ │ │ ├── nullableCharBoolean.kt │ │ │ │ ├── number.kt │ │ │ │ ├── rangeTo.kt │ │ │ │ ├── substituteIntForGeneric.kt │ │ │ │ └── unboxComparable.kt │ │ │ ├── private │ │ │ │ ├── arrayConvention.kt │ │ │ │ └── kt9855.kt │ │ │ ├── privateConstructors │ │ │ │ ├── base.kt │ │ │ │ ├── captured.kt │ │ │ │ ├── companion.kt │ │ │ │ ├── inline.kt │ │ │ │ ├── inner.kt │ │ │ │ ├── kt4860.kt │ │ │ │ ├── secondary.kt │ │ │ │ ├── synthetic.kt │ │ │ │ ├── withArguments.kt │ │ │ │ ├── withDefault.kt │ │ │ │ ├── withLinkedClasses.kt │ │ │ │ ├── withLinkedObjects.kt │ │ │ │ └── withVarargs.kt │ │ │ ├── properties │ │ │ │ ├── accessToPrivateProperty.kt │ │ │ │ ├── accessToPrivateSetter.kt │ │ │ │ ├── augmentedAssignmentsAndIncrements.kt │ │ │ │ ├── classArtificialFieldInsideNested.kt │ │ │ │ ├── classFieldInsideLambda.kt │ │ │ │ ├── classFieldInsideLocalInSetter.kt │ │ │ │ ├── classFieldInsideNested.kt │ │ │ │ ├── classObjectProperties.kt │ │ │ │ ├── classPrivateArtificialFieldInsideNested.kt │ │ │ │ ├── collectionSize.kt │ │ │ │ ├── commonPropertiesKJK.kt │ │ │ │ ├── companionFieldInsideLambda.kt │ │ │ │ ├── companionObjectAccessor.kt │ │ │ │ ├── companionObjectPropertiesFromJava.kt │ │ │ │ ├── companionPrivateField.kt │ │ │ │ ├── companionPrivateFieldInsideLambda.kt │ │ │ │ ├── const │ │ │ │ │ ├── constFlags.kt │ │ │ │ │ ├── constValInAnnotationDefault.kt │ │ │ │ │ └── interfaceCompanion.kt │ │ │ │ ├── field.kt │ │ │ │ ├── fieldInClass.kt │ │ │ │ ├── fieldInsideField.kt │ │ │ │ ├── fieldInsideLambda.kt │ │ │ │ ├── fieldInsideNested.kt │ │ │ │ ├── fieldSimple.kt │ │ │ │ ├── generalAccess.kt │ │ │ │ ├── javaPropertyBoxedGetter.kt │ │ │ │ ├── javaPropertyBoxedSetter.kt │ │ │ │ ├── kt10715.kt │ │ │ │ ├── kt10729.kt │ │ │ │ ├── kt1159.kt │ │ │ │ ├── kt1165.kt │ │ │ │ ├── kt1168.kt │ │ │ │ ├── kt1170.kt │ │ │ │ ├── kt12200.kt │ │ │ │ ├── kt1398.kt │ │ │ │ ├── kt1417.kt │ │ │ │ ├── kt1482_2279.kt │ │ │ │ ├── kt1714.kt │ │ │ │ ├── kt1714_minimal.kt │ │ │ │ ├── kt1892.kt │ │ │ │ ├── kt2331.kt │ │ │ │ ├── kt257.kt │ │ │ │ ├── kt2655.kt │ │ │ │ ├── kt2786.kt │ │ │ │ ├── kt2892.kt │ │ │ │ ├── kt3118.kt │ │ │ │ ├── kt3524.kt │ │ │ │ ├── kt3551.kt │ │ │ │ ├── kt3556.kt │ │ │ │ ├── kt3930.kt │ │ │ │ ├── kt4140.kt │ │ │ │ ├── kt4252.kt │ │ │ │ ├── kt4252_2.kt │ │ │ │ ├── kt4340.kt │ │ │ │ ├── kt4373.kt │ │ │ │ ├── kt4383.kt │ │ │ │ ├── kt613.kt │ │ │ │ ├── kt8928.kt │ │ │ │ ├── kt9603.kt │ │ │ │ ├── lateinit │ │ │ │ │ ├── accessor.kt │ │ │ │ │ ├── accessorException.kt │ │ │ │ │ ├── exceptionField.kt │ │ │ │ │ ├── exceptionGetter.kt │ │ │ │ │ ├── isInitializedAndDeinitialize │ │ │ │ │ │ ├── emptyLhs.kt │ │ │ │ │ │ ├── innerSubclass.kt │ │ │ │ │ │ ├── propertyImportedFromObject.kt │ │ │ │ │ │ ├── sideEffects.kt │ │ │ │ │ │ ├── simpleIsInitialized.kt │ │ │ │ │ │ └── topLevelProperty.kt │ │ │ │ │ ├── local │ │ │ │ │ │ ├── capturedLocalLateinit.kt │ │ │ │ │ │ ├── localLateinit.kt │ │ │ │ │ │ ├── uninitializedCapturedMemberAccess.kt │ │ │ │ │ │ ├── uninitializedCapturedRead.kt │ │ │ │ │ │ ├── uninitializedMemberAccess.kt │ │ │ │ │ │ └── uninitializedRead.kt │ │ │ │ │ ├── override.kt │ │ │ │ │ ├── overrideException.kt │ │ │ │ │ ├── privateSetter.kt │ │ │ │ │ ├── privateSetterFromLambda.kt │ │ │ │ │ ├── privateSetterViaSubclass.kt │ │ │ │ │ ├── simpleVar.kt │ │ │ │ │ ├── topLevel │ │ │ │ │ │ ├── accessorException.kt │ │ │ │ │ │ ├── accessorForTopLevelLateinit.kt │ │ │ │ │ │ ├── topLevelLateinit.kt │ │ │ │ │ │ ├── uninitializedMemberAccess.kt │ │ │ │ │ │ └── uninitializedRead.kt │ │ │ │ │ └── visibility.kt │ │ │ │ ├── primitiveOverrideDefaultAccessor.kt │ │ │ │ ├── primitiveOverrideDelegateAccessor.kt │ │ │ │ ├── privatePropertyInConstructor.kt │ │ │ │ ├── privatePropertyWithoutBackingField.kt │ │ │ │ ├── protectedJavaFieldInInline.kt │ │ │ │ ├── protectedJavaProperty.kt │ │ │ │ ├── protectedJavaPropertyInCompanion.kt │ │ │ │ ├── substituteJavaSuperField.kt │ │ │ │ ├── twoAnnotatedExtensionPropertiesWithoutBackingFields.kt │ │ │ │ └── typeInferredFromGetter.kt │ │ │ ├── publishedApi │ │ │ │ ├── noMangling.kt │ │ │ │ ├── simple.kt │ │ │ │ └── topLevel.kt │ │ │ ├── ranges │ │ │ │ ├── contains │ │ │ │ │ ├── comparisonWithRangeBoundEliminated.kt │ │ │ │ │ ├── evaluationOrderForCollection.kt │ │ │ │ │ ├── evaluationOrderForComparableRange.kt │ │ │ │ │ ├── evaluationOrderForDownTo.kt │ │ │ │ │ ├── evaluationOrderForRangeLiteral.kt │ │ │ │ │ ├── generated │ │ │ │ │ │ ├── arrayIndices.kt │ │ │ │ │ │ ├── charDownTo.kt │ │ │ │ │ │ ├── charRangeLiteral.kt │ │ │ │ │ │ ├── charSequenceIndices.kt │ │ │ │ │ │ ├── charUntil.kt │ │ │ │ │ │ ├── collectionIndices.kt │ │ │ │ │ │ ├── doubleRangeLiteral.kt │ │ │ │ │ │ ├── floatRangeLiteral.kt │ │ │ │ │ │ ├── intDownTo.kt │ │ │ │ │ │ ├── intRangeLiteral.kt │ │ │ │ │ │ ├── intUntil.kt │ │ │ │ │ │ ├── longDownTo.kt │ │ │ │ │ │ ├── longRangeLiteral.kt │ │ │ │ │ │ └── longUntil.kt │ │ │ │ │ ├── inArray.kt │ │ │ │ │ ├── inCharSequence.kt │ │ │ │ │ ├── inComparableRange.kt │ │ │ │ │ ├── inCustomObjectRange.kt │ │ │ │ │ ├── inDoubleRangeLiteralVsComparableRangeLiteral.kt │ │ │ │ │ ├── inExtensionRange.kt │ │ │ │ │ ├── inIntRange.kt │ │ │ │ │ ├── inIterable.kt │ │ │ │ │ ├── inNonMatchingRange.kt │ │ │ │ │ ├── inOptimizableDoubleRange.kt │ │ │ │ │ ├── inOptimizableFloatRange.kt │ │ │ │ │ ├── inOptimizableIntRange.kt │ │ │ │ │ ├── inOptimizableLongRange.kt │ │ │ │ │ ├── inPrimitiveProgression.kt │ │ │ │ │ ├── inPrimitiveRange.kt │ │ │ │ │ ├── inRangeLiteralComposition.kt │ │ │ │ │ ├── inRangeWithCustomContains.kt │ │ │ │ │ ├── inRangeWithImplicitReceiver.kt │ │ │ │ │ ├── inRangeWithNonmatchingArguments.kt │ │ │ │ │ ├── inRangeWithSmartCast.kt │ │ │ │ │ ├── inUntil.kt │ │ │ │ │ ├── kt20106.kt │ │ │ │ │ ├── nullableInPrimitiveRange.kt │ │ │ │ │ └── rangeContainsString.kt │ │ │ │ ├── expression │ │ │ │ │ ├── emptyDownto.kt │ │ │ │ │ ├── emptyRange.kt │ │ │ │ │ ├── inexactDownToMinValue.kt │ │ │ │ │ ├── inexactSteppedDownTo.kt │ │ │ │ │ ├── inexactSteppedRange.kt │ │ │ │ │ ├── inexactToMaxValue.kt │ │ │ │ │ ├── maxValueMinusTwoToMaxValue.kt │ │ │ │ │ ├── maxValueToMaxValue.kt │ │ │ │ │ ├── maxValueToMinValue.kt │ │ │ │ │ ├── oneElementDownTo.kt │ │ │ │ │ ├── oneElementRange.kt │ │ │ │ │ ├── openRange.kt │ │ │ │ │ ├── progressionDownToMinValue.kt │ │ │ │ │ ├── progressionMaxValueMinusTwoToMaxValue.kt │ │ │ │ │ ├── progressionMaxValueToMaxValue.kt │ │ │ │ │ ├── progressionMaxValueToMinValue.kt │ │ │ │ │ ├── progressionMinValueToMinValue.kt │ │ │ │ │ ├── reversedBackSequence.kt │ │ │ │ │ ├── reversedEmptyBackSequence.kt │ │ │ │ │ ├── reversedEmptyRange.kt │ │ │ │ │ ├── reversedInexactSteppedDownTo.kt │ │ │ │ │ ├── reversedRange.kt │ │ │ │ │ ├── reversedSimpleSteppedRange.kt │ │ │ │ │ ├── simpleDownTo.kt │ │ │ │ │ ├── simpleRange.kt │ │ │ │ │ ├── simpleRangeWithNonConstantEnds.kt │ │ │ │ │ ├── simpleSteppedDownTo.kt │ │ │ │ │ └── simpleSteppedRange.kt │ │ │ │ ├── forByteProgressionWithIntIncrement.kt │ │ │ │ ├── forInDownTo │ │ │ │ │ ├── forIntInDownTo.kt │ │ │ │ │ ├── forIntInNonOptimizedDownTo.kt │ │ │ │ │ ├── forLongInDownTo.kt │ │ │ │ │ └── forNullableIntInDownTo.kt │ │ │ │ ├── forInIndices │ │ │ │ │ ├── forInCharSequenceIndices.kt │ │ │ │ │ ├── forInCollectionImplicitReceiverIndices.kt │ │ │ │ │ ├── forInCollectionIndices.kt │ │ │ │ │ ├── forInNonOptimizedIndices.kt │ │ │ │ │ ├── forInObjectArrayIndices.kt │ │ │ │ │ ├── forInPrimitiveArrayIndices.kt │ │ │ │ │ ├── forNullableIntInArrayIndices.kt │ │ │ │ │ ├── forNullableIntInCollectionIndices.kt │ │ │ │ │ ├── indexOfLast.kt │ │ │ │ │ ├── kt12983_forInGenericArrayIndices.kt │ │ │ │ │ ├── kt12983_forInGenericCollectionIndices.kt │ │ │ │ │ ├── kt12983_forInSpecificArrayIndices.kt │ │ │ │ │ ├── kt12983_forInSpecificCollectionIndices.kt │ │ │ │ │ ├── kt13241_Array.kt │ │ │ │ │ ├── kt13241_CharSequence.kt │ │ │ │ │ └── kt13241_Collection.kt │ │ │ │ ├── forInRangeLiteralWithMixedTypeBounds.kt │ │ │ │ ├── forInRangeToConstWithOverflow.kt │ │ │ │ ├── forInRangeWithImplicitReceiver.kt │ │ │ │ ├── forInUntil │ │ │ │ │ ├── forInUntilChar.kt │ │ │ │ │ ├── forInUntilChar0.kt │ │ │ │ │ ├── forInUntilInt.kt │ │ │ │ │ ├── forInUntilLesserInt.kt │ │ │ │ │ ├── forInUntilLong.kt │ │ │ │ │ ├── forInUntilMaxint.kt │ │ │ │ │ ├── forInUntilMinint.kt │ │ │ │ │ ├── forInUntilMinlong.kt │ │ │ │ │ └── forIntInIntUntilSmartcastInt.kt │ │ │ │ ├── forIntRange.kt │ │ │ │ ├── forNullableIntInRangeWithImplicitReceiver.kt │ │ │ │ ├── literal │ │ │ │ │ ├── emptyDownto.kt │ │ │ │ │ ├── emptyRange.kt │ │ │ │ │ ├── inexactDownToMinValue.kt │ │ │ │ │ ├── inexactSteppedDownTo.kt │ │ │ │ │ ├── inexactSteppedRange.kt │ │ │ │ │ ├── inexactToMaxValue.kt │ │ │ │ │ ├── maxValueMinusTwoToMaxValue.kt │ │ │ │ │ ├── maxValueToMaxValue.kt │ │ │ │ │ ├── maxValueToMinValue.kt │ │ │ │ │ ├── oneElementDownTo.kt │ │ │ │ │ ├── oneElementRange.kt │ │ │ │ │ ├── openRange.kt │ │ │ │ │ ├── progressionDownToMinValue.kt │ │ │ │ │ ├── progressionMaxValueMinusTwoToMaxValue.kt │ │ │ │ │ ├── progressionMaxValueToMaxValue.kt │ │ │ │ │ ├── progressionMaxValueToMinValue.kt │ │ │ │ │ ├── progressionMinValueToMinValue.kt │ │ │ │ │ ├── reversedBackSequence.kt │ │ │ │ │ ├── reversedEmptyBackSequence.kt │ │ │ │ │ ├── reversedEmptyRange.kt │ │ │ │ │ ├── reversedInexactSteppedDownTo.kt │ │ │ │ │ ├── reversedRange.kt │ │ │ │ │ ├── reversedSimpleSteppedRange.kt │ │ │ │ │ ├── simpleDownTo.kt │ │ │ │ │ ├── simpleRange.kt │ │ │ │ │ ├── simpleRangeWithNonConstantEnds.kt │ │ │ │ │ ├── simpleSteppedDownTo.kt │ │ │ │ │ └── simpleSteppedRange.kt │ │ │ │ ├── multiAssignmentIterationOverIntRange.kt │ │ │ │ ├── nullableLoopParameter │ │ │ │ │ ├── progressionExpression.kt │ │ │ │ │ ├── rangeExpression.kt │ │ │ │ │ └── rangeLiteral.kt │ │ │ │ └── safeCallRangeTo.kt │ │ │ ├── reflection │ │ │ │ ├── annotations │ │ │ │ │ ├── annotationRetentionAnnotation.kt │ │ │ │ │ ├── annotationsOnJavaMembers.kt │ │ │ │ │ ├── findAnnotation.kt │ │ │ │ │ ├── openSuspendFun.kt │ │ │ │ │ ├── privateAnnotation.kt │ │ │ │ │ ├── propertyAccessors.kt │ │ │ │ │ ├── propertyWithoutBackingField.kt │ │ │ │ │ ├── retentions.kt │ │ │ │ │ ├── simpleClassAnnotation.kt │ │ │ │ │ ├── simpleConstructorAnnotation.kt │ │ │ │ │ ├── simpleFunAnnotation.kt │ │ │ │ │ ├── simpleParamAnnotation.kt │ │ │ │ │ └── simpleValAnnotation.kt │ │ │ │ ├── call │ │ │ │ │ ├── bound │ │ │ │ │ │ ├── companionObjectPropertyAccessors.kt │ │ │ │ │ │ ├── extensionFunction.kt │ │ │ │ │ │ ├── extensionPropertyAccessors.kt │ │ │ │ │ │ ├── innerClassConstructor.kt │ │ │ │ │ │ ├── javaInstanceField.kt │ │ │ │ │ │ ├── javaInstanceMethod.kt │ │ │ │ │ │ ├── jvmStaticCompanionObjectPropertyAccessors.kt │ │ │ │ │ │ ├── jvmStaticObjectFunction.kt │ │ │ │ │ │ ├── jvmStaticObjectPropertyAccessors.kt │ │ │ │ │ │ ├── memberFunction.kt │ │ │ │ │ │ ├── memberPropertyAccessors.kt │ │ │ │ │ │ ├── objectFunction.kt │ │ │ │ │ │ └── objectPropertyAccessors.kt │ │ │ │ │ ├── callInstanceJavaMethod.kt │ │ │ │ │ ├── callPrivateJavaMethod.kt │ │ │ │ │ ├── callStaticJavaMethod.kt │ │ │ │ │ ├── cannotCallEnumConstructor.kt │ │ │ │ │ ├── disallowNullValueForNotNullField.kt │ │ │ │ │ ├── equalsHashCodeToString.kt │ │ │ │ │ ├── exceptionHappened.kt │ │ │ │ │ ├── fakeOverride.kt │ │ │ │ │ ├── fakeOverrideSubstituted.kt │ │ │ │ │ ├── incorrectNumberOfArguments.kt │ │ │ │ │ ├── innerClassConstructor.kt │ │ │ │ │ ├── jvmStatic.kt │ │ │ │ │ ├── jvmStaticInObjectIncorrectReceiver.kt │ │ │ │ │ ├── localClassMember.kt │ │ │ │ │ ├── memberOfGenericClass.kt │ │ │ │ │ ├── privateProperty.kt │ │ │ │ │ ├── propertyAccessors.kt │ │ │ │ │ ├── propertyGetterAndGetFunctionDifferentReturnType.kt │ │ │ │ │ ├── protectedMembers.kt │ │ │ │ │ ├── returnUnit.kt │ │ │ │ │ ├── simpleConstructor.kt │ │ │ │ │ ├── simpleMemberFunction.kt │ │ │ │ │ └── simpleTopLevelFunctions.kt │ │ │ │ ├── callBy │ │ │ │ │ ├── boundExtensionFunction.kt │ │ │ │ │ ├── boundExtensionPropertyAcessor.kt │ │ │ │ │ ├── boundJvmStaticInObject.kt │ │ │ │ │ ├── companionObject.kt │ │ │ │ │ ├── defaultAndNonDefaultIntertwined.kt │ │ │ │ │ ├── extensionFunction.kt │ │ │ │ │ ├── jvmStaticInCompanionObject.kt │ │ │ │ │ ├── jvmStaticInObject.kt │ │ │ │ │ ├── manyArgumentsNoneDefaultConstructor.kt │ │ │ │ │ ├── manyArgumentsNoneDefaultFunction.kt │ │ │ │ │ ├── manyArgumentsOnlyOneDefault.kt │ │ │ │ │ ├── manyMaskArguments.kt │ │ │ │ │ ├── nonDefaultParameterOmitted.kt │ │ │ │ │ ├── nullValue.kt │ │ │ │ │ ├── ordinaryMethodIsInvokedWhenNoDefaultValuesAreUsed.kt │ │ │ │ │ ├── primitiveDefaultValues.kt │ │ │ │ │ ├── privateMemberFunction.kt │ │ │ │ │ ├── simpleConstructor.kt │ │ │ │ │ ├── simpleMemberFunciton.kt │ │ │ │ │ └── simpleTopLevelFunction.kt │ │ │ │ ├── classLiterals │ │ │ │ │ ├── annotationClassLiteral.kt │ │ │ │ │ ├── arrays.kt │ │ │ │ │ ├── builtinClassLiterals.kt │ │ │ │ │ ├── genericArrays.kt │ │ │ │ │ ├── genericClass.kt │ │ │ │ │ ├── reifiedTypeClassLiteral.kt │ │ │ │ │ └── simpleClassLiteral.kt │ │ │ │ ├── classes │ │ │ │ │ ├── classSimpleName.kt │ │ │ │ │ ├── companionObject.kt │ │ │ │ │ ├── createInstance.kt │ │ │ │ │ ├── declaredMembers.kt │ │ │ │ │ ├── jvmName.kt │ │ │ │ │ ├── localClassSimpleName.kt │ │ │ │ │ ├── nestedClasses.kt │ │ │ │ │ ├── nestedClassesJava.kt │ │ │ │ │ ├── objectInstance.kt │ │ │ │ │ ├── primitiveKClassEquality.kt │ │ │ │ │ ├── qualifiedName.kt │ │ │ │ │ └── starProjectedType.kt │ │ │ │ ├── constructors │ │ │ │ │ ├── annotationClass.kt │ │ │ │ │ ├── classesWithoutConstructors.kt │ │ │ │ │ ├── constructorName.kt │ │ │ │ │ ├── primaryConstructor.kt │ │ │ │ │ └── simpleGetConstructors.kt │ │ │ │ ├── createAnnotation │ │ │ │ │ ├── annotationType.kt │ │ │ │ │ ├── arrayOfKClasses.kt │ │ │ │ │ ├── callByJava.kt │ │ │ │ │ ├── callByKotlin.kt │ │ │ │ │ ├── callJava.kt │ │ │ │ │ ├── callKotlin.kt │ │ │ │ │ ├── createJdkAnnotationInstance.kt │ │ │ │ │ ├── enumKClassAnnotation.kt │ │ │ │ │ ├── equalsHashCodeToString.kt │ │ │ │ │ ├── floatingPointParameters.kt │ │ │ │ │ ├── parameterNamedEquals.kt │ │ │ │ │ └── primitivesAndArrays.kt │ │ │ │ ├── enclosing │ │ │ │ │ ├── anonymousObjectInInlinedLambda.kt │ │ │ │ │ ├── classInLambda.kt │ │ │ │ │ ├── functionExpressionInProperty.kt │ │ │ │ │ ├── kt11969.kt │ │ │ │ │ ├── kt6368.kt │ │ │ │ │ ├── kt6691_lambdaInSamConstructor.kt │ │ │ │ │ ├── lambdaInClassObject.kt │ │ │ │ │ ├── lambdaInConstructor.kt │ │ │ │ │ ├── lambdaInFunction.kt │ │ │ │ │ ├── lambdaInLambda.kt │ │ │ │ │ ├── lambdaInLocalClassConstructor.kt │ │ │ │ │ ├── lambdaInLocalClassSuperCall.kt │ │ │ │ │ ├── lambdaInLocalFunction.kt │ │ │ │ │ ├── lambdaInMemberFunction.kt │ │ │ │ │ ├── lambdaInMemberFunctionInLocalClass.kt │ │ │ │ │ ├── lambdaInMemberFunctionInNestedClass.kt │ │ │ │ │ ├── lambdaInObjectDeclaration.kt │ │ │ │ │ ├── lambdaInObjectExpression.kt │ │ │ │ │ ├── lambdaInObjectLiteralSuperCall.kt │ │ │ │ │ ├── lambdaInPackage.kt │ │ │ │ │ ├── lambdaInPropertyGetter.kt │ │ │ │ │ ├── lambdaInPropertySetter.kt │ │ │ │ │ ├── localClassInTopLevelFunction.kt │ │ │ │ │ └── objectInLambda.kt │ │ │ │ ├── functions │ │ │ │ │ ├── declaredVsInheritedFunctions.kt │ │ │ │ │ ├── functionFromStdlib.kt │ │ │ │ │ ├── functionReferenceErasedToKFunction.kt │ │ │ │ │ ├── genericOverriddenFunction.kt │ │ │ │ │ ├── instanceOfFunction.kt │ │ │ │ │ ├── javaClassGetFunctions.kt │ │ │ │ │ ├── javaMethodsSmokeTest.kt │ │ │ │ │ ├── platformName.kt │ │ │ │ │ ├── privateMemberFunction.kt │ │ │ │ │ ├── simpleGetFunctions.kt │ │ │ │ │ └── simpleNames.kt │ │ │ │ ├── genericSignature │ │ │ │ │ ├── covariantOverride.kt │ │ │ │ │ ├── defaultImplsGenericSignature.kt │ │ │ │ │ ├── functionLiteralGenericSignature.kt │ │ │ │ │ ├── genericBackingFieldSignature.kt │ │ │ │ │ ├── genericMethodSignature.kt │ │ │ │ │ ├── kt11121.kt │ │ │ │ │ ├── kt5112.kt │ │ │ │ │ ├── kt6106.kt │ │ │ │ │ ├── signatureOfDeepGenericInner.kt │ │ │ │ │ ├── signatureOfDeepInner.kt │ │ │ │ │ ├── signatureOfDeepInnerLastGeneric.kt │ │ │ │ │ ├── signatureOfGenericInnerGenericOuter.kt │ │ │ │ │ ├── signatureOfGenericInnerSimpleOuter.kt │ │ │ │ │ └── signatureOfSimpleInnerSimpleOuter.kt │ │ │ │ ├── isInstance │ │ │ │ │ └── isInstanceCastAndSafeCast.kt │ │ │ │ ├── kClassInAnnotation │ │ │ │ │ ├── array.kt │ │ │ │ │ ├── arrayInJava.kt │ │ │ │ │ ├── basic.kt │ │ │ │ │ ├── basicInJava.kt │ │ │ │ │ ├── checkcast.kt │ │ │ │ │ ├── forceWrapping.kt │ │ │ │ │ ├── vararg.kt │ │ │ │ │ ├── varargInJava.kt │ │ │ │ │ └── wrappingForCallableReferences.kt │ │ │ │ ├── lambdaClasses │ │ │ │ │ └── parameterNamesAndNullability.kt │ │ │ │ ├── mapping │ │ │ │ │ ├── constructor.kt │ │ │ │ │ ├── extensionProperty.kt │ │ │ │ │ ├── fakeOverrides │ │ │ │ │ │ ├── javaFieldGetterSetter.kt │ │ │ │ │ │ └── javaMethod.kt │ │ │ │ │ ├── functions.kt │ │ │ │ │ ├── inlineReifiedFun.kt │ │ │ │ │ ├── jvmStatic │ │ │ │ │ │ ├── companionObjectFunction.kt │ │ │ │ │ │ └── objectFunction.kt │ │ │ │ │ ├── mappedClassIsEqualToClassLiteral.kt │ │ │ │ │ ├── memberProperty.kt │ │ │ │ │ ├── openSuspendFun.kt │ │ │ │ │ ├── propertyAccessors.kt │ │ │ │ │ ├── propertyAccessorsWithJvmName.kt │ │ │ │ │ ├── syntheticFields.kt │ │ │ │ │ ├── topLevelFunctionOtherFile.kt │ │ │ │ │ ├── topLevelProperty.kt │ │ │ │ │ └── types │ │ │ │ │ │ ├── annotationConstructorParameters.kt │ │ │ │ │ │ ├── array.kt │ │ │ │ │ │ ├── constructors.kt │ │ │ │ │ │ ├── genericArrayElementType.kt │ │ │ │ │ │ ├── innerGenericTypeArgument.kt │ │ │ │ │ │ ├── memberFunctions.kt │ │ │ │ │ │ ├── overrideAnyWithPrimitive.kt │ │ │ │ │ │ ├── parameterizedTypeArgument.kt │ │ │ │ │ │ ├── parameterizedTypes.kt │ │ │ │ │ │ ├── propertyAccessors.kt │ │ │ │ │ │ ├── rawTypeArgument.kt │ │ │ │ │ │ ├── supertypes.kt │ │ │ │ │ │ ├── topLevelFunctions.kt │ │ │ │ │ │ ├── typeParameters.kt │ │ │ │ │ │ ├── unit.kt │ │ │ │ │ │ └── withNullability.kt │ │ │ │ ├── methodsFromAny │ │ │ │ │ ├── callableReferencesEqualToCallablesFromAPI.kt │ │ │ │ │ ├── classToString.kt │ │ │ │ │ ├── extensionPropertyReceiverToString.kt │ │ │ │ │ ├── functionEqualsHashCode.kt │ │ │ │ │ ├── functionFromStdlibMultiFileFacade.kt │ │ │ │ │ ├── functionFromStdlibSingleFileFacade.kt │ │ │ │ │ ├── functionToString.kt │ │ │ │ │ ├── memberExtensionToString.kt │ │ │ │ │ ├── parametersEqualsHashCode.kt │ │ │ │ │ ├── parametersToString.kt │ │ │ │ │ ├── propertyEqualsHashCode.kt │ │ │ │ │ ├── propertyToString.kt │ │ │ │ │ ├── typeEqualsHashCode.kt │ │ │ │ │ ├── typeParametersEqualsHashCode.kt │ │ │ │ │ ├── typeParametersToString.kt │ │ │ │ │ ├── typeToString.kt │ │ │ │ │ └── typeToStringInnerGeneric.kt │ │ │ │ ├── modifiers │ │ │ │ │ ├── callableModality.kt │ │ │ │ │ ├── callableVisibility.kt │ │ │ │ │ ├── classModality.kt │ │ │ │ │ ├── classVisibility.kt │ │ │ │ │ ├── classes.kt │ │ │ │ │ ├── functions.kt │ │ │ │ │ ├── javaVisibility.kt │ │ │ │ │ ├── properties.kt │ │ │ │ │ └── typeParameters.kt │ │ │ │ ├── multifileClasses │ │ │ │ │ ├── callFunctionsInMultifileClass.kt │ │ │ │ │ ├── callPropertiesInMultifileClass.kt │ │ │ │ │ └── javaFieldForVarAndConstVal.kt │ │ │ │ ├── noReflectAtRuntime │ │ │ │ │ ├── javaClass.kt │ │ │ │ │ ├── methodsFromAny │ │ │ │ │ │ ├── callableReferences.kt │ │ │ │ │ │ ├── classReference.kt │ │ │ │ │ │ └── delegatedProperty.kt │ │ │ │ │ ├── primitiveJavaClass.kt │ │ │ │ │ ├── propertyGetSetName.kt │ │ │ │ │ ├── propertyInstanceof.kt │ │ │ │ │ ├── reifiedTypeJavaClass.kt │ │ │ │ │ └── simpleClassLiterals.kt │ │ │ │ ├── parameters │ │ │ │ │ ├── boundInnerClassConstructor.kt │ │ │ │ │ ├── boundObjectMemberReferences.kt │ │ │ │ │ ├── boundReferences.kt │ │ │ │ │ ├── findParameterByName.kt │ │ │ │ │ ├── functionParameterNameAndIndex.kt │ │ │ │ │ ├── instanceExtensionReceiverAndValueParameters.kt │ │ │ │ │ ├── isMarkedNullable.kt │ │ │ │ │ ├── isOptional.kt │ │ │ │ │ ├── javaAnnotationConstructor.kt │ │ │ │ │ ├── kinds.kt │ │ │ │ │ └── propertySetter.kt │ │ │ │ ├── properties │ │ │ │ │ ├── accessors │ │ │ │ │ │ ├── accessorNames.kt │ │ │ │ │ │ ├── extensionPropertyAccessors.kt │ │ │ │ │ │ ├── memberExtensions.kt │ │ │ │ │ │ ├── memberPropertyAccessors.kt │ │ │ │ │ │ └── topLevelPropertyAccessors.kt │ │ │ │ │ ├── allVsDeclared.kt │ │ │ │ │ ├── callPrivatePropertyFromGetProperties.kt │ │ │ │ │ ├── declaredVsInheritedProperties.kt │ │ │ │ │ ├── fakeOverridesInSubclass.kt │ │ │ │ │ ├── genericClassLiteralPropertyReceiverIsStar.kt │ │ │ │ │ ├── genericOverriddenProperty.kt │ │ │ │ │ ├── genericProperty.kt │ │ │ │ │ ├── getDelegate │ │ │ │ │ │ ├── booleanPropertyNameStartsWithIs.kt │ │ │ │ │ │ ├── boundExtensionProperty.kt │ │ │ │ │ │ ├── boundMemberProperty.kt │ │ │ │ │ │ ├── extensionProperty.kt │ │ │ │ │ │ ├── fakeOverride.kt │ │ │ │ │ │ ├── getExtensionDelegate.kt │ │ │ │ │ │ ├── kPropertyForDelegatedProperty.kt │ │ │ │ │ │ ├── memberExtensionProperty.kt │ │ │ │ │ │ ├── memberProperty.kt │ │ │ │ │ │ ├── nameClashClassAndCompanion.kt │ │ │ │ │ │ ├── nameClashExtensionProperties.kt │ │ │ │ │ │ ├── noSetAccessibleTrue.kt │ │ │ │ │ │ ├── notDelegatedProperty.kt │ │ │ │ │ │ ├── overrideDelegatedByDelegated.kt │ │ │ │ │ │ └── topLevelProperty.kt │ │ │ │ │ ├── getExtensionPropertiesMutableVsReadonly.kt │ │ │ │ │ ├── getPropertiesMutableVsReadonly.kt │ │ │ │ │ ├── invokeKProperty.kt │ │ │ │ │ ├── javaPropertyInheritedInKotlin.kt │ │ │ │ │ ├── javaStaticField.kt │ │ │ │ │ ├── kotlinPropertyInheritedInJava.kt │ │ │ │ │ ├── localDelegated │ │ │ │ │ │ ├── defaultImpls.kt │ │ │ │ │ │ ├── inlineFun.kt │ │ │ │ │ │ ├── localDelegatedProperty.kt │ │ │ │ │ │ ├── multiFileClass.kt │ │ │ │ │ │ └── variableOfGenericType.kt │ │ │ │ │ ├── memberAndMemberExtensionWithSameName.kt │ │ │ │ │ ├── mutatePrivateJavaInstanceField.kt │ │ │ │ │ ├── mutatePrivateJavaStaticField.kt │ │ │ │ │ ├── noConflictOnKotlinGetterAndJavaField.kt │ │ │ │ │ ├── overrideKotlinPropertyByJavaMethod.kt │ │ │ │ │ ├── privateClassVal.kt │ │ │ │ │ ├── privateClassVar.kt │ │ │ │ │ ├── privateFakeOverrideFromSuperclass.kt │ │ │ │ │ ├── privateJvmStaticVarInObject.kt │ │ │ │ │ ├── privatePropertyCallIsAccessibleOnAccessors.kt │ │ │ │ │ ├── privateToThisAccessors.kt │ │ │ │ │ ├── propertyOfNestedClassAndArrayType.kt │ │ │ │ │ ├── protectedClassVar.kt │ │ │ │ │ ├── publicClassValAccessible.kt │ │ │ │ │ ├── referenceToJavaFieldOfKotlinSubclass.kt │ │ │ │ │ └── simpleGetProperties.kt │ │ │ │ ├── specialBuiltIns │ │ │ │ │ └── getMembersOfStandardJavaClasses.kt │ │ │ │ ├── supertypes │ │ │ │ │ ├── builtInClassSupertypes.kt │ │ │ │ │ ├── genericSubstitution.kt │ │ │ │ │ ├── isSubclassOfIsSuperclassOf.kt │ │ │ │ │ ├── primitives.kt │ │ │ │ │ └── simpleSupertypes.kt │ │ │ │ ├── typeParameters │ │ │ │ │ ├── declarationSiteVariance.kt │ │ │ │ │ ├── typeParametersAndNames.kt │ │ │ │ │ └── upperBounds.kt │ │ │ │ └── types │ │ │ │ │ ├── classifierIsClass.kt │ │ │ │ │ ├── classifierIsTypeParameter.kt │ │ │ │ │ ├── classifiersOfBuiltInTypes.kt │ │ │ │ │ ├── createType │ │ │ │ │ ├── equality.kt │ │ │ │ │ ├── innerGeneric.kt │ │ │ │ │ ├── simpleCreateType.kt │ │ │ │ │ ├── typeParameter.kt │ │ │ │ │ └── wrongNumberOfArguments.kt │ │ │ │ │ ├── innerGenericArguments.kt │ │ │ │ │ ├── jvmErasureOfClass.kt │ │ │ │ │ ├── jvmErasureOfTypeParameter.kt │ │ │ │ │ ├── platformTypeClassifier.kt │ │ │ │ │ ├── platformTypeNotEqualToKotlinType.kt │ │ │ │ │ ├── platformTypeToString.kt │ │ │ │ │ ├── subtyping │ │ │ │ │ ├── platformType.kt │ │ │ │ │ ├── simpleGenericTypes.kt │ │ │ │ │ ├── simpleSubtypeSupertype.kt │ │ │ │ │ └── typeProjection.kt │ │ │ │ │ ├── typeArguments.kt │ │ │ │ │ ├── useSiteVariance.kt │ │ │ │ │ └── withNullability.kt │ │ │ ├── regressions │ │ │ │ ├── Kt1149.kt │ │ │ │ ├── Kt1619Test.kt │ │ │ │ ├── Kt2495Test.kt │ │ │ │ ├── approximateIntersectionType.kt │ │ │ │ ├── arrayLengthNPE.kt │ │ │ │ ├── collections.kt │ │ │ │ ├── commonSupertypeContravariant.kt │ │ │ │ ├── commonSupertypeContravariant2.kt │ │ │ │ ├── dontCaptureTypesWithTypeVariables.kt │ │ │ │ ├── doubleMerge.kt │ │ │ │ ├── floatMerge.kt │ │ │ │ ├── functionLiteralAsLastExpressionInBlock.kt │ │ │ │ ├── generic.kt │ │ │ │ ├── getGenericInterfaces.kt │ │ │ │ ├── hashCodeNPE.kt │ │ │ │ ├── internalTopLevelOtherPackage.kt │ │ │ │ ├── intersectionAsLastLambda.kt │ │ │ │ ├── intersectionOfEqualTypes.kt │ │ │ │ ├── kt10143.kt │ │ │ │ ├── kt10934.kt │ │ │ │ ├── kt1172.kt │ │ │ │ ├── kt1202.kt │ │ │ │ ├── kt13381.kt │ │ │ │ ├── kt1406.kt │ │ │ │ ├── kt14447.kt │ │ │ │ ├── kt1515.kt │ │ │ │ ├── kt15196.kt │ │ │ │ ├── kt1528.kt │ │ │ │ ├── kt1568.kt │ │ │ │ ├── kt1779.kt │ │ │ │ ├── kt1800.kt │ │ │ │ ├── kt1845.kt │ │ │ │ ├── kt18779.kt │ │ │ │ ├── kt1932.kt │ │ │ │ ├── kt2017.kt │ │ │ │ ├── kt2060.kt │ │ │ │ ├── kt2210.kt │ │ │ │ ├── kt2246.kt │ │ │ │ ├── kt2318.kt │ │ │ │ ├── kt2509.kt │ │ │ │ ├── kt2593.kt │ │ │ │ ├── kt274.kt │ │ │ │ ├── kt3046.kt │ │ │ │ ├── kt3107.kt │ │ │ │ ├── kt3421.kt │ │ │ │ ├── kt344.kt │ │ │ │ ├── kt3442.kt │ │ │ │ ├── kt3587.kt │ │ │ │ ├── kt3850.kt │ │ │ │ ├── kt3903.kt │ │ │ │ ├── kt4142.kt │ │ │ │ ├── kt4259.kt │ │ │ │ ├── kt4262.kt │ │ │ │ ├── kt4281.kt │ │ │ │ ├── kt5056.kt │ │ │ │ ├── kt528.kt │ │ │ │ ├── kt529.kt │ │ │ │ ├── kt533.kt │ │ │ │ ├── kt5395.kt │ │ │ │ ├── kt5445.kt │ │ │ │ ├── kt5445_2.kt │ │ │ │ ├── kt5786_privateWithDefault.kt │ │ │ │ ├── kt5953.kt │ │ │ │ ├── kt6153.kt │ │ │ │ ├── kt6434.kt │ │ │ │ ├── kt6434_2.kt │ │ │ │ ├── kt6485.kt │ │ │ │ ├── kt715.kt │ │ │ │ ├── kt7401.kt │ │ │ │ ├── kt789.kt │ │ │ │ ├── kt864.kt │ │ │ │ ├── kt998.kt │ │ │ │ ├── lambdaAsLastExpressionInLambda.kt │ │ │ │ ├── lambdaPostponeConstruction.kt │ │ │ │ ├── lambdaWrongReturnType.kt │ │ │ │ ├── nestedIntersection.kt │ │ │ │ ├── noCapturingForTypesWithTypeVariables.kt │ │ │ │ ├── noResolutionRecursion.kt │ │ │ │ ├── nullabilityForCommonCapturedSupertypes.kt │ │ │ │ ├── nullableAfterExclExcl.kt │ │ │ │ ├── objectCaptureOuterConstructorProperty.kt │ │ │ │ ├── objectInsideDelegation.kt │ │ │ │ ├── referenceToSelfInLocal.kt │ │ │ │ ├── resolvedCallForGetOperator.kt │ │ │ │ ├── supertypeDepth.kt │ │ │ │ └── typeCastException.kt │ │ │ ├── reified │ │ │ │ ├── DIExample.kt │ │ │ │ ├── anonymousObject.kt │ │ │ │ ├── anonymousObjectNoPropagate.kt │ │ │ │ ├── anonymousObjectReifiedSupertype.kt │ │ │ │ ├── approximateCapturedTypes.kt │ │ │ │ ├── arraysReification │ │ │ │ │ ├── instanceOf.kt │ │ │ │ │ ├── instanceOfArrays.kt │ │ │ │ │ ├── jClass.kt │ │ │ │ │ ├── jaggedArray.kt │ │ │ │ │ ├── jaggedArrayOfNulls.kt │ │ │ │ │ └── jaggedDeep.kt │ │ │ │ ├── asOnPlatformType.kt │ │ │ │ ├── checkcast.kt │ │ │ │ ├── copyToArray.kt │ │ │ │ ├── defaultJavaClass.kt │ │ │ │ ├── expectedTypeFromCast.kt │ │ │ │ ├── filterIsInstance.kt │ │ │ │ ├── innerAnonymousObject.kt │ │ │ │ ├── instanceof.kt │ │ │ │ ├── isOnPlatformType.kt │ │ │ │ ├── javaClass.kt │ │ │ │ ├── nestedReified.kt │ │ │ │ ├── nestedReifiedSignature.kt │ │ │ │ ├── newArrayInt.kt │ │ │ │ ├── nonInlineableLambdaInReifiedFunction.kt │ │ │ │ ├── recursiveInnerAnonymousObject.kt │ │ │ │ ├── recursiveNewArray.kt │ │ │ │ ├── recursiveNonInlineableLambda.kt │ │ │ │ ├── reifiedChain.kt │ │ │ │ ├── reifiedInlineFunOfObject.kt │ │ │ │ ├── reifiedInlineFunOfObjectWithinReified.kt │ │ │ │ ├── reifiedInlineIntoNonInlineableLambda.kt │ │ │ │ ├── safecast.kt │ │ │ │ ├── sameIndexRecursive.kt │ │ │ │ ├── spreads.kt │ │ │ │ └── varargs.kt │ │ │ ├── safeCall │ │ │ │ ├── genericNull.kt │ │ │ │ ├── kt1572.kt │ │ │ │ ├── kt232.kt │ │ │ │ ├── kt245.kt │ │ │ │ ├── kt247.kt │ │ │ │ ├── kt3430.kt │ │ │ │ ├── kt4733.kt │ │ │ │ ├── primitive.kt │ │ │ │ ├── primitiveEqSafeCall.kt │ │ │ │ ├── primitiveNotEqSafeCall.kt │ │ │ │ ├── safeCallEqPrimitive.kt │ │ │ │ ├── safeCallNotEqPrimitive.kt │ │ │ │ └── safeCallOnLong.kt │ │ │ ├── sam │ │ │ │ └── constructors │ │ │ │ │ ├── comparator.kt │ │ │ │ │ ├── filenameFilter.kt │ │ │ │ │ ├── kt19251.kt │ │ │ │ │ ├── kt19251_child.kt │ │ │ │ │ ├── nonLiteralComparator.kt │ │ │ │ │ ├── nonLiteralFilenameFilter.kt │ │ │ │ │ ├── nonLiteralRunnable.kt │ │ │ │ │ ├── nonTrivialRunnable.kt │ │ │ │ │ ├── runnable.kt │ │ │ │ │ ├── runnableAccessingClosure1.kt │ │ │ │ │ ├── runnableAccessingClosure2.kt │ │ │ │ │ ├── samWrappersDifferentFiles.kt │ │ │ │ │ ├── sameWrapperClass.kt │ │ │ │ │ └── syntheticVsReal.kt │ │ │ ├── sealed │ │ │ │ ├── objects.kt │ │ │ │ └── simple.kt │ │ │ ├── secondaryConstructors │ │ │ │ ├── accessToCompanion.kt │ │ │ │ ├── accessToNestedObject.kt │ │ │ │ ├── basicNoPrimaryManySinks.kt │ │ │ │ ├── basicNoPrimaryOneSink.kt │ │ │ │ ├── basicPrimary.kt │ │ │ │ ├── callFromLocalSubClass.kt │ │ │ │ ├── callFromPrimaryWithNamedArgs.kt │ │ │ │ ├── callFromPrimaryWithOptionalArgs.kt │ │ │ │ ├── callFromSubClass.kt │ │ │ │ ├── clashingDefaultConstructors.kt │ │ │ │ ├── dataClasses.kt │ │ │ │ ├── defaultArgs.kt │ │ │ │ ├── defaultParametersNotDuplicated.kt │ │ │ │ ├── delegateWithComplexExpression.kt │ │ │ │ ├── delegatedThisWithLambda.kt │ │ │ │ ├── delegationWithPrimary.kt │ │ │ │ ├── enums.kt │ │ │ │ ├── generics.kt │ │ │ │ ├── innerClasses.kt │ │ │ │ ├── innerClassesInheritance.kt │ │ │ │ ├── localClasses.kt │ │ │ │ ├── superCallPrimary.kt │ │ │ │ ├── superCallSecondary.kt │ │ │ │ ├── varargs.kt │ │ │ │ ├── withGenerics.kt │ │ │ │ ├── withNonLocalReturn.kt │ │ │ │ ├── withPrimary.kt │ │ │ │ ├── withReturn.kt │ │ │ │ ├── withReturnUnit.kt │ │ │ │ ├── withVarargs.kt │ │ │ │ └── withoutPrimary.kt │ │ │ ├── signatureAnnotations │ │ │ │ ├── defaultAndNamedCombination.kt │ │ │ │ ├── defaultBoxTypes.kt │ │ │ │ ├── defaultEnumType.kt │ │ │ │ ├── defaultLongLiteral.kt │ │ │ │ ├── defaultMultipleParams.kt │ │ │ │ ├── defaultNull.kt │ │ │ │ ├── defaultNullableBoxTypes.kt │ │ │ │ ├── defaultOverrides.kt │ │ │ │ ├── defaultPrimitiveTypes.kt │ │ │ │ ├── defaultValueInConstructor.kt │ │ │ │ ├── defaultWithJavaBase.kt │ │ │ │ ├── defaultWithKotlinBase.kt │ │ │ │ └── reorderedParameterNames.kt │ │ │ ├── smap │ │ │ │ ├── chainCalls.kt │ │ │ │ ├── infixCalls.kt │ │ │ │ └── simpleCallWithParams.kt │ │ │ ├── smartCasts │ │ │ │ ├── falseSmartCast.kt │ │ │ │ ├── genericIntersection.kt │ │ │ │ ├── genericSet.kt │ │ │ │ ├── implicitExtensionReceiver.kt │ │ │ │ ├── implicitMemberReceiver.kt │ │ │ │ ├── implicitReceiver.kt │ │ │ │ ├── implicitReceiverInWhen.kt │ │ │ │ ├── implicitToGrandSon.kt │ │ │ │ ├── kt17725.kt │ │ │ │ ├── kt19058.kt │ │ │ │ ├── kt19100.kt │ │ │ │ ├── lambdaArgumentWithoutType.kt │ │ │ │ ├── nullSmartCast.kt │ │ │ │ ├── smartCastInsideIf.kt │ │ │ │ └── whenSmartCast.kt │ │ │ ├── specialBuiltins │ │ │ │ ├── bridgeNotEmptyMap.kt │ │ │ │ ├── bridges.kt │ │ │ │ ├── collectionImpl.kt │ │ │ │ ├── commonBridgesTarget.kt │ │ │ │ ├── emptyList.kt │ │ │ │ ├── emptyMap.kt │ │ │ │ ├── emptyStringMap.kt │ │ │ │ ├── entrySetSOE.kt │ │ │ │ ├── enumAsOrdinaled.kt │ │ │ │ ├── exceptionCause.kt │ │ │ │ ├── explicitSuperCall.kt │ │ │ │ ├── irrelevantRemoveAtOverride.kt │ │ │ │ ├── maps.kt │ │ │ │ ├── noSpecialBridgeInSuperClass.kt │ │ │ │ ├── notEmptyListAny.kt │ │ │ │ ├── notEmptyMap.kt │ │ │ │ ├── redundantStubForSize.kt │ │ │ │ ├── removeAtTwoSpecialBridges.kt │ │ │ │ ├── removeSetInt.kt │ │ │ │ ├── throwable.kt │ │ │ │ ├── throwableCause.kt │ │ │ │ ├── throwableImpl.kt │ │ │ │ ├── throwableImplWithSecondaryConstructor.kt │ │ │ │ └── valuesInsideEnum.kt │ │ │ ├── statics │ │ │ │ ├── anonymousInitializerIObject.kt │ │ │ │ ├── anonymousInitializerInClassObject.kt │ │ │ │ ├── fields.kt │ │ │ │ ├── functions.kt │ │ │ │ ├── hidePrivateByPublic.kt │ │ │ │ ├── incInClassObject.kt │ │ │ │ ├── incInObject.kt │ │ │ │ ├── inheritedPropertyInClassObject.kt │ │ │ │ ├── inheritedPropertyInObject.kt │ │ │ │ ├── inlineCallsStaticMethod.kt │ │ │ │ ├── kt8089.kt │ │ │ │ ├── protectedSamConstructor.kt │ │ │ │ ├── protectedStatic.kt │ │ │ │ ├── protectedStatic2.kt │ │ │ │ ├── protectedStaticAndInline.kt │ │ │ │ └── syntheticAccessor.kt │ │ │ ├── storeStackBeforeInline │ │ │ │ ├── differentTypes.kt │ │ │ │ ├── primitiveMerge.kt │ │ │ │ ├── simple.kt │ │ │ │ ├── unreachableMarker.kt │ │ │ │ └── withLambda.kt │ │ │ ├── strings │ │ │ │ ├── constInStringTemplate.kt │ │ │ │ ├── ea35743.kt │ │ │ │ ├── forInString.kt │ │ │ │ ├── interpolation.kt │ │ │ │ ├── kt2592.kt │ │ │ │ ├── kt3571.kt │ │ │ │ ├── kt3652.kt │ │ │ │ ├── kt5389_stringBuilderGet.kt │ │ │ │ ├── kt5956.kt │ │ │ │ ├── kt881.kt │ │ │ │ ├── kt889.kt │ │ │ │ ├── kt894.kt │ │ │ │ ├── multilineStringsWithTemplates.kt │ │ │ │ ├── nestedConcat.kt │ │ │ │ ├── rawStrings.kt │ │ │ │ ├── rawStringsWithManyQuotes.kt │ │ │ │ ├── stringBuilderAppend.kt │ │ │ │ └── stringPlusOnlyWorksOnString.kt │ │ │ ├── super │ │ │ │ ├── basicmethodSuperClass.kt │ │ │ │ ├── basicmethodSuperTrait.kt │ │ │ │ ├── basicproperty.kt │ │ │ │ ├── enclosedFun.kt │ │ │ │ ├── enclosedVar.kt │ │ │ │ ├── innerClassLabeledSuper.kt │ │ │ │ ├── innerClassLabeledSuper2.kt │ │ │ │ ├── innerClassLabeledSuperProperty.kt │ │ │ │ ├── innerClassLabeledSuperProperty2.kt │ │ │ │ ├── innerClassQualifiedFunctionCall.kt │ │ │ │ ├── innerClassQualifiedPropertyAccess.kt │ │ │ │ ├── kt14243.kt │ │ │ │ ├── kt14243_2.kt │ │ │ │ ├── kt14243_class.kt │ │ │ │ ├── kt14243_prop.kt │ │ │ │ ├── kt3492ClassFun.kt │ │ │ │ ├── kt3492ClassProperty.kt │ │ │ │ ├── kt3492TraitFun.kt │ │ │ │ ├── kt3492TraitProperty.kt │ │ │ │ ├── kt4173.kt │ │ │ │ ├── kt4173_2.kt │ │ │ │ ├── kt4173_3.kt │ │ │ │ ├── kt4982.kt │ │ │ │ ├── multipleSuperTraits.kt │ │ │ │ ├── superConstructor │ │ │ │ │ ├── kt17464_arrayOf.kt │ │ │ │ │ ├── kt17464_linkedMapOf.kt │ │ │ │ │ ├── kt18356.kt │ │ │ │ │ ├── kt18356_2.kt │ │ │ │ │ ├── objectExtendsInner.kt │ │ │ │ │ └── objectExtendsLocalInner.kt │ │ │ │ ├── traitproperty.kt │ │ │ │ ├── unqualifiedSuper.kt │ │ │ │ ├── unqualifiedSuperWithDeeperHierarchies.kt │ │ │ │ └── unqualifiedSuperWithMethodsOfAny.kt │ │ │ ├── synchronized │ │ │ │ ├── changeMonitor.kt │ │ │ │ ├── exceptionInMonitorExpression.kt │ │ │ │ ├── finally.kt │ │ │ │ ├── longValue.kt │ │ │ │ ├── nestedDifferentObjects.kt │ │ │ │ ├── nestedSameObject.kt │ │ │ │ ├── nonLocalReturn.kt │ │ │ │ ├── objectValue.kt │ │ │ │ ├── sync.kt │ │ │ │ ├── value.kt │ │ │ │ └── wait.kt │ │ │ ├── syntheticAccessors │ │ │ │ ├── accessorForGenericConstructor.kt │ │ │ │ ├── accessorForGenericMethod.kt │ │ │ │ ├── accessorForGenericMethodWithDefaults.kt │ │ │ │ ├── accessorForProtected.kt │ │ │ │ ├── accessorForProtectedInvokeVirtual.kt │ │ │ │ ├── jvmNameForAccessors.kt │ │ │ │ ├── kt10047.kt │ │ │ │ ├── kt9717.kt │ │ │ │ ├── kt9717DifferentPackages.kt │ │ │ │ ├── kt9958.kt │ │ │ │ ├── kt9958Interface.kt │ │ │ │ ├── protectedFromLambda.kt │ │ │ │ └── syntheticAccessorNames.kt │ │ │ ├── toArray │ │ │ │ ├── kt3177-toTypedArray.kt │ │ │ │ ├── returnToTypedArray.kt │ │ │ │ ├── toArray.kt │ │ │ │ ├── toArrayAlreadyPresent.kt │ │ │ │ ├── toArrayShouldBePublic.kt │ │ │ │ ├── toArrayShouldBePublicWithJava.kt │ │ │ │ └── toTypedArray.kt │ │ │ ├── topLevelPrivate │ │ │ │ ├── noPrivateNoAccessorsInMultiFileFacade.kt │ │ │ │ ├── noPrivateNoAccessorsInMultiFileFacade2.kt │ │ │ │ ├── privateInInlineNested.kt │ │ │ │ ├── privateVisibility.kt │ │ │ │ ├── syntheticAccessor.kt │ │ │ │ └── syntheticAccessorInMultiFile.kt │ │ │ ├── traits │ │ │ │ ├── abstractClassInheritsFromInterface.kt │ │ │ │ ├── diamondPropertyAccessors.kt │ │ │ │ ├── genericMethod.kt │ │ │ │ ├── indirectlyInheritPropertyGetter.kt │ │ │ │ ├── inheritJavaInterface.kt │ │ │ │ ├── inheritedFun.kt │ │ │ │ ├── inheritedVar.kt │ │ │ │ ├── interfaceDefaultImpls.kt │ │ │ │ ├── interfaceWithNonAbstractFunIndirect.kt │ │ │ │ ├── interfaceWithNonAbstractFunIndirectGeneric.kt │ │ │ │ ├── kt1936.kt │ │ │ │ ├── kt1936_1.kt │ │ │ │ ├── kt2260.kt │ │ │ │ ├── kt2399.kt │ │ │ │ ├── kt2541.kt │ │ │ │ ├── kt3315.kt │ │ │ │ ├── kt3500.kt │ │ │ │ ├── kt3579.kt │ │ │ │ ├── kt3579_2.kt │ │ │ │ ├── kt5393.kt │ │ │ │ ├── kt5393_property.kt │ │ │ │ ├── multiple.kt │ │ │ │ ├── noPrivateDelegation.kt │ │ │ │ ├── syntheticAccessor.kt │ │ │ │ ├── traitImplDelegationWithCovariantOverride.kt │ │ │ │ ├── traitImplDiamond.kt │ │ │ │ ├── traitImplGenericDelegation.kt │ │ │ │ ├── traitWithPrivateExtension.kt │ │ │ │ ├── traitWithPrivateMember.kt │ │ │ │ └── traitWithPrivateMemberAccessFromLambda.kt │ │ │ ├── typeInfo │ │ │ │ ├── asInLoop.kt │ │ │ │ ├── ifOrWhenSpecialCall.kt │ │ │ │ ├── implicitSmartCastThis.kt │ │ │ │ ├── inheritance.kt │ │ │ │ ├── kt2811.kt │ │ │ │ ├── primitiveTypeInfo.kt │ │ │ │ └── smartCastThis.kt │ │ │ ├── typeMapping │ │ │ │ ├── enhancedPrimitives.kt │ │ │ │ ├── genericTypeWithNothing.kt │ │ │ │ ├── kt2831.kt │ │ │ │ ├── kt309.kt │ │ │ │ ├── kt3286.kt │ │ │ │ ├── kt3863.kt │ │ │ │ ├── kt3976.kt │ │ │ │ ├── nothing.kt │ │ │ │ ├── nullableNothing.kt │ │ │ │ └── typeParameterMultipleBounds.kt │ │ │ ├── typealias │ │ │ │ ├── enumEntryQualifier.kt │ │ │ │ ├── genericTypeAliasConstructor.kt │ │ │ │ ├── genericTypeAliasConstructor2.kt │ │ │ │ ├── innerClassTypeAliasConstructor.kt │ │ │ │ ├── innerClassTypeAliasConstructorInSupertypes.kt │ │ │ │ ├── kt15109.kt │ │ │ │ ├── objectLiteralConstructor.kt │ │ │ │ ├── simple.kt │ │ │ │ ├── typeAliasAsBareType.kt │ │ │ │ ├── typeAliasCompanion.kt │ │ │ │ ├── typeAliasConstructor.kt │ │ │ │ ├── typeAliasConstructorAccessor.kt │ │ │ │ ├── typeAliasConstructorForArray.kt │ │ │ │ ├── typeAliasConstructorInSuperCall.kt │ │ │ │ ├── typeAliasInAnonymousObjectType.kt │ │ │ │ ├── typeAliasObject.kt │ │ │ │ ├── typeAliasObjectCallable.kt │ │ │ │ └── typeAliasSecondaryConstructor.kt │ │ │ ├── unaryOp │ │ │ │ ├── call.kt │ │ │ │ ├── callNullable.kt │ │ │ │ ├── callWithCommonType.kt │ │ │ │ ├── intrinsic.kt │ │ │ │ ├── intrinsicNullable.kt │ │ │ │ └── longOverflow.kt │ │ │ ├── unit │ │ │ │ ├── UnitValue.kt │ │ │ │ ├── closureReturnsNullableUnit.kt │ │ │ │ ├── ifElse.kt │ │ │ │ ├── kt3634.kt │ │ │ │ ├── kt4212.kt │ │ │ │ ├── kt4265.kt │ │ │ │ ├── nullableUnit.kt │ │ │ │ ├── nullableUnitInWhen1.kt │ │ │ │ ├── nullableUnitInWhen2.kt │ │ │ │ ├── nullableUnitInWhen3.kt │ │ │ │ └── unitClassObject.kt │ │ │ ├── vararg │ │ │ │ ├── assigningArrayToVarargInAnnotation.kt │ │ │ │ ├── doNotCopyImmediatelyCreatedArrays.kt │ │ │ │ ├── kt1978.kt │ │ │ │ ├── kt581.kt │ │ │ │ ├── kt6192.kt │ │ │ │ ├── kt796_797.kt │ │ │ │ ├── spreadCopiesArray.kt │ │ │ │ ├── varargInFunParam.kt │ │ │ │ ├── varargInJava.kt │ │ │ │ └── varargsAndFunctionLiterals.kt │ │ │ └── when │ │ │ │ ├── callProperty.kt │ │ │ │ ├── emptyWhen.kt │ │ │ │ ├── enumOptimization │ │ │ │ ├── bigEnum.kt │ │ │ │ ├── duplicatingItems.kt │ │ │ │ ├── enumInsideClassObject.kt │ │ │ │ ├── expression.kt │ │ │ │ ├── functionLiteralInTopLevel.kt │ │ │ │ ├── kt14597.kt │ │ │ │ ├── kt14597_full.kt │ │ │ │ ├── kt14802.kt │ │ │ │ ├── kt15806.kt │ │ │ │ ├── manyWhensWithinClass.kt │ │ │ │ ├── nonConstantEnum.kt │ │ │ │ ├── nullability.kt │ │ │ │ ├── nullableEnum.kt │ │ │ │ ├── subjectAny.kt │ │ │ │ └── withoutElse.kt │ │ │ │ ├── exceptionOnNoMatch.kt │ │ │ │ ├── exhaustiveBoolean.kt │ │ │ │ ├── exhaustiveBreakContinue.kt │ │ │ │ ├── exhaustiveWhenInitialization.kt │ │ │ │ ├── exhaustiveWhenReturn.kt │ │ │ │ ├── implicitExhaustiveAndReturn.kt │ │ │ │ ├── integralWhenWithNoInlinedConstants.kt │ │ │ │ ├── is.kt │ │ │ │ ├── kt2457.kt │ │ │ │ ├── kt2466.kt │ │ │ │ ├── kt5307.kt │ │ │ │ ├── kt5448.kt │ │ │ │ ├── longInRange.kt │ │ │ │ ├── matchNotNullAgainstNullable.kt │ │ │ │ ├── multipleEntries.kt │ │ │ │ ├── noElseExhaustive.kt │ │ │ │ ├── noElseExhaustiveStatement.kt │ │ │ │ ├── noElseExhaustiveUnitExpected.kt │ │ │ │ ├── noElseInStatement.kt │ │ │ │ ├── noElseNoMatch.kt │ │ │ │ ├── nullableWhen.kt │ │ │ │ ├── range.kt │ │ │ │ ├── sealedWhenInitialization.kt │ │ │ │ ├── stringOptimization │ │ │ │ ├── duplicatingItems.kt │ │ │ │ ├── duplicatingItemsSameHashCode.kt │ │ │ │ ├── expression.kt │ │ │ │ ├── nullability.kt │ │ │ │ ├── sameHashCode.kt │ │ │ │ └── statement.kt │ │ │ │ ├── switchOptimizationDense.kt │ │ │ │ ├── switchOptimizationMultipleConditions.kt │ │ │ │ ├── switchOptimizationSparse.kt │ │ │ │ ├── switchOptimizationStatement.kt │ │ │ │ ├── switchOptimizationTypes.kt │ │ │ │ ├── switchOptimizationUnordered.kt │ │ │ │ ├── typeDisjunction.kt │ │ │ │ ├── whenArgumentIsEvaluatedOnlyOnce.kt │ │ │ │ └── whenSafeCallSubjectEvaluatedOnce.kt │ │ └── boxInline │ │ │ ├── anonymousObject │ │ │ ├── anonymousObjectOnCallSite.kt │ │ │ ├── anonymousObjectOnCallSiteSuperParams.kt │ │ │ ├── anonymousObjectOnDeclarationSite.kt │ │ │ ├── anonymousObjectOnDeclarationSiteSuperParams.kt │ │ │ ├── capturedLambdaInInline.kt │ │ │ ├── capturedLambdaInInline2.kt │ │ │ ├── capturedLambdaInInline3.kt │ │ │ ├── capturedLambdaInInlineObject.kt │ │ │ ├── changingReturnType.kt │ │ │ ├── constructorVisibility.kt │ │ │ ├── constructorVisibilityInConstLambda.kt │ │ │ ├── constructorVisibilityInLambda.kt │ │ │ ├── defineClass.kt │ │ │ ├── enumWhen │ │ │ │ ├── callSite.kt │ │ │ │ ├── declSite.kt │ │ │ │ ├── declSiteSeveralMappings.kt │ │ │ │ └── declSiteSeveralMappingsDifOrder.kt │ │ │ ├── kt13133.kt │ │ │ ├── kt13182.kt │ │ │ ├── kt13374.kt │ │ │ ├── kt14011.kt │ │ │ ├── kt14011_2.kt │ │ │ ├── kt14011_3.kt │ │ │ ├── kt16193.kt │ │ │ ├── kt17972.kt │ │ │ ├── kt17972_2.kt │ │ │ ├── kt17972_3.kt │ │ │ ├── kt17972_4.kt │ │ │ ├── kt17972_5.kt │ │ │ ├── kt17972_super.kt │ │ │ ├── kt17972_super2.kt │ │ │ ├── kt17972_super3.kt │ │ │ ├── kt19434.kt │ │ │ ├── kt19434_2.kt │ │ │ ├── kt19723.kt │ │ │ ├── kt6552.kt │ │ │ ├── kt8133.kt │ │ │ ├── kt9064.kt │ │ │ ├── kt9064v2.kt │ │ │ ├── kt9591.kt │ │ │ ├── kt9877.kt │ │ │ ├── kt9877_2.kt │ │ │ ├── objectInLambdaCapturesAnotherObject.kt │ │ │ ├── properRecapturing │ │ │ │ ├── inlineChain.kt │ │ │ │ ├── lambdaChain.kt │ │ │ │ ├── lambdaChainSimple.kt │ │ │ │ ├── lambdaChain_2.kt │ │ │ │ ├── lambdaChain_3.kt │ │ │ │ └── noInlineLambda.kt │ │ │ ├── properRecapturingInClass │ │ │ │ ├── inlineChain.kt │ │ │ │ ├── inlinelambdaChain.kt │ │ │ │ ├── lambdaChain.kt │ │ │ │ ├── lambdaChainSimple.kt │ │ │ │ ├── lambdaChainSimple_2.kt │ │ │ │ ├── lambdaChain_2.kt │ │ │ │ ├── lambdaChain_3.kt │ │ │ │ ├── noCapturedThisOnCallSite.kt │ │ │ │ ├── noInlineLambda.kt │ │ │ │ ├── twoInlineLambda.kt │ │ │ │ ├── twoInlineLambdaComplex.kt │ │ │ │ └── twoInlineLambdaComplex_2.kt │ │ │ ├── safeCall.kt │ │ │ ├── safeCall_2.kt │ │ │ ├── sam.kt │ │ │ └── twoCapturedReceivers │ │ │ │ ├── kt8668.kt │ │ │ │ ├── kt8668_2.kt │ │ │ │ ├── kt8668_3.kt │ │ │ │ ├── twoDifferentDispatchReceivers.kt │ │ │ │ └── twoExtensionReceivers.kt │ │ │ ├── argumentOrder │ │ │ ├── boundFunctionReference.kt │ │ │ ├── boundFunctionReference2.kt │ │ │ ├── captured.kt │ │ │ ├── capturedInExtension.kt │ │ │ ├── defaultParametersAndLastVararg.kt │ │ │ ├── extension.kt │ │ │ ├── extensionInClass.kt │ │ │ ├── lambdaMigration.kt │ │ │ ├── lambdaMigrationInClass.kt │ │ │ ├── simple.kt │ │ │ ├── simpleInClass.kt │ │ │ └── varargAndDefaultParameters.kt │ │ │ ├── arrayConvention │ │ │ ├── simpleAccess.kt │ │ │ ├── simpleAccessInClass.kt │ │ │ ├── simpleAccessWithDefault.kt │ │ │ ├── simpleAccessWithDefaultInClass.kt │ │ │ ├── simpleAccessWithLambda.kt │ │ │ └── simpleAccessWithLambdaInClass.kt │ │ │ ├── builders │ │ │ ├── builders.kt │ │ │ └── buildersAndLambdaCapturing.kt │ │ │ ├── bytecodePreprocessing │ │ │ └── apiVersionAtLeast1.kt │ │ │ ├── callableReference │ │ │ ├── bound │ │ │ │ ├── classProperty.kt │ │ │ │ ├── expression.kt │ │ │ │ ├── extensionReceiver.kt │ │ │ │ ├── filter.kt │ │ │ │ ├── intrinsic.kt │ │ │ │ ├── kt18728.kt │ │ │ │ ├── kt18728_2.kt │ │ │ │ ├── kt18728_3.kt │ │ │ │ ├── kt18728_4.kt │ │ │ │ ├── map.kt │ │ │ │ ├── mixed.kt │ │ │ │ ├── objectProperty.kt │ │ │ │ ├── propertyImportedFromObject.kt │ │ │ │ ├── simple.kt │ │ │ │ └── topLevelExtensionProperty.kt │ │ │ ├── classLevel.kt │ │ │ ├── classLevel2.kt │ │ │ ├── constructor.kt │ │ │ ├── intrinsic.kt │ │ │ ├── kt15449.kt │ │ │ ├── kt16411.kt │ │ │ ├── propertyIntrinsic.kt │ │ │ ├── propertyReference.kt │ │ │ ├── topLevel.kt │ │ │ ├── topLevelExtension.kt │ │ │ └── topLevelProperty.kt │ │ │ ├── capture │ │ │ ├── captureInlinable.kt │ │ │ ├── captureInlinableAndOther.kt │ │ │ ├── captureThisAndReceiver.kt │ │ │ ├── generics.kt │ │ │ ├── simpleCapturingInClass.kt │ │ │ └── simpleCapturingInPackage.kt │ │ │ ├── complex │ │ │ ├── closureChain.kt │ │ │ ├── forEachLine.kt │ │ │ ├── lambdaInLambda.kt │ │ │ ├── swapAndWith.kt │ │ │ ├── swapAndWith2.kt │ │ │ ├── use.kt │ │ │ └── with.kt │ │ │ ├── complexStack │ │ │ ├── asCheck.kt │ │ │ ├── asCheck2.kt │ │ │ ├── simple.kt │ │ │ ├── simple2.kt │ │ │ ├── simple3.kt │ │ │ ├── simple4.kt │ │ │ └── simpleExtension.kt │ │ │ ├── defaultValues │ │ │ ├── 33Parameters.kt │ │ │ ├── 33ParametersInConstructor.kt │ │ │ ├── defaultInExtension.kt │ │ │ ├── defaultMethod.kt │ │ │ ├── defaultMethodInClass.kt │ │ │ ├── defaultParamRemapping.kt │ │ │ ├── inlineInDefaultParameter.kt │ │ │ ├── inlineLambdaInNoInlineDefault.kt │ │ │ ├── kt11479.kt │ │ │ ├── kt11479InlinedDefaultParameter.kt │ │ │ ├── kt14564.kt │ │ │ ├── kt14564_2.kt │ │ │ ├── kt18689.kt │ │ │ ├── kt18689_2.kt │ │ │ ├── kt18689_3.kt │ │ │ ├── kt18689_4.kt │ │ │ ├── kt5685.kt │ │ │ ├── lambdaInlining │ │ │ │ ├── callableReferences │ │ │ │ │ ├── boundFunctionReference.kt │ │ │ │ │ ├── boundFunctionReferenceOnInt.kt │ │ │ │ │ ├── boundFunctionReferenceOnLong.kt │ │ │ │ │ ├── boundPropertyReference.kt │ │ │ │ │ ├── boundPropertyReferenceOnInt.kt │ │ │ │ │ ├── boundPropertyReferenceOnLong.kt │ │ │ │ │ ├── constuctorReference.kt │ │ │ │ │ ├── functionImportedFromObject.kt │ │ │ │ │ ├── functionReference.kt │ │ │ │ │ ├── functionReferenceFromClass.kt │ │ │ │ │ ├── functionReferenceFromObject.kt │ │ │ │ │ ├── innerClassConstuctorReference.kt │ │ │ │ │ ├── privateFunctionReference.kt │ │ │ │ │ ├── privatePropertyReference.kt │ │ │ │ │ ├── propertyImportedFromObject.kt │ │ │ │ │ ├── propertyReference.kt │ │ │ │ │ ├── propertyReferenceFromClass.kt │ │ │ │ │ └── propertyReferenceFromObject.kt │ │ │ │ ├── defaultLambdaInNoInline.kt │ │ │ │ ├── instanceCapuredInClass.kt │ │ │ │ ├── instanceCapuredInInterface.kt │ │ │ │ ├── jvmStaticDefault.kt │ │ │ │ ├── noInline.kt │ │ │ │ ├── nonDefaultInlineInNoInline.kt │ │ │ │ ├── receiverClash.kt │ │ │ │ ├── receiverClash2.kt │ │ │ │ ├── receiverClashInClass.kt │ │ │ │ ├── receiverClashInClass2.kt │ │ │ │ ├── simple.kt │ │ │ │ ├── simpleErased.kt │ │ │ │ ├── simpleErasedStaticInstance.kt │ │ │ │ ├── simpleExtension.kt │ │ │ │ ├── simpleGeneric.kt │ │ │ │ ├── simpleStaticInstance.kt │ │ │ │ ├── thisClash.kt │ │ │ │ └── thisClashInClass.kt │ │ │ ├── maskElimination │ │ │ │ ├── 32Parameters.kt │ │ │ │ ├── 33Parameters.kt │ │ │ │ ├── kt18792.kt │ │ │ │ ├── kt19679.kt │ │ │ │ ├── kt19679_2.kt │ │ │ │ ├── kt19679_3.kt │ │ │ │ └── simple.kt │ │ │ ├── simpleDefaultMethod.kt │ │ │ └── varArgNoInline.kt │ │ │ ├── delegatedProperty │ │ │ ├── kt16864.kt │ │ │ ├── local.kt │ │ │ ├── localInAnonymousObject.kt │ │ │ └── localInLambda.kt │ │ │ ├── enclosingInfo │ │ │ ├── anonymousInLambda.kt │ │ │ ├── inlineChain.kt │ │ │ ├── inlineChain2.kt │ │ │ ├── objectInInlineFun.kt │ │ │ ├── transformedConstructor.kt │ │ │ ├── transformedConstructorWithAdditionalObject.kt │ │ │ └── transformedConstructorWithNestedInline.kt │ │ │ ├── enum │ │ │ ├── kt10569.kt │ │ │ ├── valueOf.kt │ │ │ ├── valueOfCapturedType.kt │ │ │ ├── valueOfChain.kt │ │ │ ├── valueOfChainCapturedType.kt │ │ │ ├── valueOfNonReified.kt │ │ │ ├── values.kt │ │ │ ├── valuesAsArray.kt │ │ │ ├── valuesCapturedType.kt │ │ │ ├── valuesChain.kt │ │ │ ├── valuesChainCapturedType.kt │ │ │ └── valuesNonReified.kt │ │ │ ├── functionExpression │ │ │ └── extension.kt │ │ │ ├── innerClasses │ │ │ ├── innerLambda.kt │ │ │ └── kt10259.kt │ │ │ ├── jvmPackageName │ │ │ └── simple.kt │ │ │ ├── lambdaClassClash │ │ │ ├── lambdaClassClash.kt │ │ │ └── noInlineLambdaX2.kt │ │ │ ├── lambdaTransformation │ │ │ ├── lambdaCloning.kt │ │ │ ├── lambdaInLambda2.kt │ │ │ ├── lambdaInLambdaNoInline.kt │ │ │ ├── regeneratedLambdaName.kt │ │ │ └── sameCaptured.kt │ │ │ ├── localFunInLambda │ │ │ ├── lambdaInLambdaCapturesAnotherFun.kt │ │ │ ├── localFunInLambda.kt │ │ │ └── localFunInLambdaCapturesAnotherFun.kt │ │ │ ├── multifileClasses │ │ │ ├── inlineFromOptimizedMultifileClass.kt │ │ │ └── inlineFromOtherPackage.kt │ │ │ ├── noInline │ │ │ ├── extensionReceiver.kt │ │ │ ├── lambdaAsGeneric.kt │ │ │ ├── lambdaAsNonFunction.kt │ │ │ ├── noInline.kt │ │ │ ├── noInlineLambdaChain.kt │ │ │ ├── noInlineLambdaChainWithCapturedInline.kt │ │ │ └── withoutInline.kt │ │ │ ├── nonLocalReturns │ │ │ ├── deparenthesize │ │ │ │ ├── bracket.kt │ │ │ │ └── labeled.kt │ │ │ ├── explicitLocalReturn.kt │ │ │ ├── justReturnInLambda.kt │ │ │ ├── kt5199.kt │ │ │ ├── kt8948.kt │ │ │ ├── kt8948v2.kt │ │ │ ├── nestedNonLocals.kt │ │ │ ├── noInlineLocalReturn.kt │ │ │ ├── nonLocalReturnFromOuterLambda.kt │ │ │ ├── propertyAccessors.kt │ │ │ ├── returnFromFunctionExpr.kt │ │ │ ├── simple.kt │ │ │ ├── simpleFunctional.kt │ │ │ ├── simpleVoid.kt │ │ │ └── tryFinally │ │ │ │ ├── callSite │ │ │ │ ├── callSite.kt │ │ │ │ ├── callSiteComplex.kt │ │ │ │ ├── exceptionTableSplit.kt │ │ │ │ ├── exceptionTableSplitNoReturn.kt │ │ │ │ ├── finallyInFinally.kt │ │ │ │ └── wrongVarInterval.kt │ │ │ │ ├── chained │ │ │ │ ├── finallyInFinally.kt │ │ │ │ ├── finallyInFinally2.kt │ │ │ │ ├── intReturn.kt │ │ │ │ ├── intReturnComplex.kt │ │ │ │ ├── intReturnComplex2.kt │ │ │ │ ├── intReturnComplex3.kt │ │ │ │ ├── intReturnComplex4.kt │ │ │ │ └── nestedLambda.kt │ │ │ │ ├── declSite │ │ │ │ ├── complex.kt │ │ │ │ ├── intReturn.kt │ │ │ │ ├── intReturnComplex.kt │ │ │ │ ├── longReturn.kt │ │ │ │ ├── nested.kt │ │ │ │ ├── returnInFinally.kt │ │ │ │ ├── returnInTry.kt │ │ │ │ ├── returnInTryAndFinally.kt │ │ │ │ ├── severalInTry.kt │ │ │ │ ├── severalInTryComplex.kt │ │ │ │ ├── voidInlineFun.kt │ │ │ │ └── voidNonLocal.kt │ │ │ │ ├── exceptionTable │ │ │ │ ├── break.kt │ │ │ │ ├── continue.kt │ │ │ │ ├── exceptionInFinally.kt │ │ │ │ ├── forInFinally.kt │ │ │ │ ├── innerAndExternal.kt │ │ │ │ ├── innerAndExternalNested.kt │ │ │ │ ├── innerAndExternalSimple.kt │ │ │ │ ├── nested.kt │ │ │ │ ├── nestedWithReturns.kt │ │ │ │ ├── nestedWithReturnsSimple.kt │ │ │ │ ├── noFinally.kt │ │ │ │ ├── severalCatchClause.kt │ │ │ │ ├── simpleThrow.kt │ │ │ │ ├── synchonized.kt │ │ │ │ ├── throwInFinally.kt │ │ │ │ └── tryCatchInFinally.kt │ │ │ │ ├── kt6956.kt │ │ │ │ ├── kt7273.kt │ │ │ │ ├── nonLocalReturnFromCatchBlock.kt │ │ │ │ ├── nonLocalReturnFromOuterLambda.kt │ │ │ │ ├── nonLocalReturnToCatchBlock.kt │ │ │ │ └── variables │ │ │ │ └── kt7792.kt │ │ │ ├── optimizations │ │ │ └── kt20844.kt │ │ │ ├── private │ │ │ ├── accessorForConst.kt │ │ │ ├── accessorStability.kt │ │ │ ├── accessorStabilityInClass.kt │ │ │ ├── effectivePrivate.kt │ │ │ ├── kt6453.kt │ │ │ ├── kt8094.kt │ │ │ ├── kt8095.kt │ │ │ ├── nestedInPrivateClass.kt │ │ │ ├── privateClass.kt │ │ │ ├── privateClassExtensionLambda.kt │ │ │ ├── privateInInlineInMultiFileFacade.kt │ │ │ └── privateInline.kt │ │ │ ├── property │ │ │ ├── augAssignmentAndInc.kt │ │ │ ├── augAssignmentAndIncInClass.kt │ │ │ ├── augAssignmentAndIncInClassViaConvention.kt │ │ │ ├── augAssignmentAndIncOnExtension.kt │ │ │ ├── augAssignmentAndIncOnExtensionInClass.kt │ │ │ ├── augAssignmentAndIncViaConvention.kt │ │ │ ├── property.kt │ │ │ ├── reifiedVal.kt │ │ │ ├── reifiedVar.kt │ │ │ ├── simple.kt │ │ │ └── simpleExtension.kt │ │ │ ├── reified │ │ │ ├── capturedLambda.kt │ │ │ ├── capturedLambda2.kt │ │ │ ├── checkCast │ │ │ │ ├── chain.kt │ │ │ │ ├── kt8043.kt │ │ │ │ ├── maxStack.kt │ │ │ │ ├── nullable.kt │ │ │ │ ├── simple.kt │ │ │ │ └── simpleSafe.kt │ │ │ ├── defaultLambda │ │ │ │ ├── chain.kt │ │ │ │ ├── nested.kt │ │ │ │ ├── nested2.kt │ │ │ │ ├── nested2Static.kt │ │ │ │ ├── nestedStatic.kt │ │ │ │ ├── simple.kt │ │ │ │ ├── transitiveChain.kt │ │ │ │ └── transitiveChainStatic.kt │ │ │ ├── isCheck │ │ │ │ ├── chain.kt │ │ │ │ ├── nullable.kt │ │ │ │ └── simple.kt │ │ │ ├── kt11081.kt │ │ │ ├── kt11677.kt │ │ │ ├── kt15997.kt │ │ │ ├── kt15997_2.kt │ │ │ ├── kt6988.kt │ │ │ ├── kt6988_2.kt │ │ │ ├── kt6990.kt │ │ │ ├── kt7017.kt │ │ │ ├── kt8047.kt │ │ │ ├── kt9637.kt │ │ │ ├── kt9637_2.kt │ │ │ └── packages.kt │ │ │ ├── signature │ │ │ ├── inProjectionSubstitution.kt │ │ │ ├── outProjectionSubstitution.kt │ │ │ ├── recursion.kt │ │ │ ├── sameFormalParameterName.kt │ │ │ ├── sameReifiedFormalParameterName.kt │ │ │ ├── starProjectionSubstitution.kt │ │ │ ├── typeParameterInLambda.kt │ │ │ ├── typeParametersSubstitution.kt │ │ │ └── typeParametersSubstitution2.kt │ │ │ ├── simple │ │ │ ├── classObject.kt │ │ │ ├── destructuring.kt │ │ │ ├── destructuringIndexClash.kt │ │ │ ├── extension.kt │ │ │ ├── extensionLambda.kt │ │ │ ├── funImportedFromObject.kt │ │ │ ├── params.kt │ │ │ ├── propImportedFromObject.kt │ │ │ ├── rootConstructor.kt │ │ │ ├── safeCall.kt │ │ │ ├── severalClosures.kt │ │ │ ├── severalUsage.kt │ │ │ ├── simpleDouble.kt │ │ │ ├── simpleEnum.kt │ │ │ ├── simpleGenerics.kt │ │ │ ├── simpleInt.kt │ │ │ ├── simpleLambda.kt │ │ │ ├── simpleObject.kt │ │ │ └── vararg.kt │ │ │ ├── smap │ │ │ ├── anonymous │ │ │ │ ├── kt19175.kt │ │ │ │ ├── lambda.kt │ │ │ │ ├── lambdaOnCallSite.kt │ │ │ │ ├── lambdaOnInlineCallSite.kt │ │ │ │ ├── object.kt │ │ │ │ ├── objectOnCallSite.kt │ │ │ │ ├── objectOnInlineCallSite.kt │ │ │ │ ├── objectOnInlineCallSite2.kt │ │ │ │ ├── objectOnInlineCallSiteWithCapture.kt │ │ │ │ └── severalMappingsForDefaultFile.kt │ │ │ ├── assertion.kt │ │ │ ├── classFromDefaultPackage.kt │ │ │ ├── defaultFunction.kt │ │ │ ├── defaultLambda │ │ │ │ ├── nested.kt │ │ │ │ └── simple.kt │ │ │ ├── inlineOnly │ │ │ │ ├── noSmap.kt │ │ │ │ ├── noSmapWithProperty.kt │ │ │ │ ├── reified.kt │ │ │ │ └── reifiedProperty.kt │ │ │ ├── newsmap │ │ │ │ ├── differentMapping.kt │ │ │ │ ├── mappingInInlineFunLambda.kt │ │ │ │ ├── mappingInSubInlineLambda.kt │ │ │ │ └── mappingInSubInlineLambdaSameFileInline.kt │ │ │ ├── oneFile.kt │ │ │ ├── resolve │ │ │ │ ├── inlineComponent.kt │ │ │ │ └── inlineIterator.kt │ │ │ └── smap.kt │ │ │ ├── special │ │ │ ├── identityCheck.kt │ │ │ ├── ifBranches.kt │ │ │ ├── iinc.kt │ │ │ ├── inlineChain.kt │ │ │ ├── loopInStoreLoadChains.kt │ │ │ ├── loopInStoreLoadChains2.kt │ │ │ ├── plusAssign.kt │ │ │ └── stackHeightBug.kt │ │ │ ├── stackOnReturn │ │ │ ├── elvis.kt │ │ │ ├── ifThenElse.kt │ │ │ ├── kt11499.kt │ │ │ ├── kt17591.kt │ │ │ ├── kt17591a.kt │ │ │ ├── kt17591b.kt │ │ │ ├── mixedTypesOnStack1.kt │ │ │ ├── mixedTypesOnStack2.kt │ │ │ ├── mixedTypesOnStack3.kt │ │ │ ├── nonLocalReturn1.kt │ │ │ ├── nonLocalReturn2.kt │ │ │ ├── nonLocalReturn3.kt │ │ │ ├── returnLong.kt │ │ │ └── tryFinally.kt │ │ │ ├── syntheticAccessors │ │ │ ├── constField.kt │ │ │ ├── packagePrivateMembers.kt │ │ │ ├── propertyModifiers.kt │ │ │ ├── protectedMembers.kt │ │ │ ├── protectedMembersFromSuper.kt │ │ │ ├── superCall.kt │ │ │ ├── superProperty.kt │ │ │ └── withinInlineLambda │ │ │ │ ├── directFieldAccess.kt │ │ │ │ ├── directFieldAccessInCrossInline.kt │ │ │ │ ├── privateCall.kt │ │ │ │ ├── privateInCrossInline.kt │ │ │ │ ├── superCall.kt │ │ │ │ └── superInCrossInline.kt │ │ │ ├── trait │ │ │ └── trait.kt │ │ │ ├── tryCatchFinally │ │ │ ├── kt5863.kt │ │ │ ├── tryCatch.kt │ │ │ ├── tryCatch2.kt │ │ │ └── tryCatchFinally.kt │ │ │ └── varargs │ │ │ ├── kt17653.kt │ │ │ ├── varargAndDefaultParameters.kt │ │ │ └── varargAndDefaultParameters2.kt │ └── compileKotlinAgainstKotlin │ │ ├── annotationInInterface.kt │ │ ├── annotationsOnTypeAliases.kt │ │ ├── callsToMultifileClassFromOtherPackage.kt │ │ ├── classInObject.kt │ │ ├── companionObjectInEnum.kt │ │ ├── companionObjectMember.kt │ │ ├── constPropertyReferenceFromMultifileClass.kt │ │ ├── constructorVararg.kt │ │ ├── coroutinesBinary.kt │ │ ├── defaultConstructor.kt │ │ ├── doublyNestedClass.kt │ │ ├── enum.kt │ │ ├── inlinedConstants.kt │ │ ├── innerClassConstructor.kt │ │ ├── jvmField.kt │ │ ├── jvmFieldInConstructor.kt │ │ ├── jvmNames.kt │ │ ├── jvmPackageName.kt │ │ ├── jvmPackageNameInRootPackage.kt │ │ ├── jvmPackageNameWithJvmName.kt │ │ ├── jvmStaticInObject.kt │ │ ├── kotlinPropertyAsAnnotationParameter.kt │ │ ├── kt14012.kt │ │ ├── kt14012_multi.kt │ │ ├── multifileClassInlineFunctionAccessingProperty.kt │ │ ├── multifileClassWithTypealias.kt │ │ ├── nestedClass.kt │ │ ├── nestedEnum.kt │ │ ├── nestedObject.kt │ │ ├── platformTypes.kt │ │ ├── propertyReference.kt │ │ ├── recursiveGeneric.kt │ │ ├── sealedClass.kt │ │ ├── secondaryConstructors.kt │ │ ├── simple.kt │ │ ├── simpleValAnonymousObject.kt │ │ ├── starImportEnum.kt │ │ ├── targetedJvmName.kt │ │ └── typeAliasesKt13181.kt │ ├── framework │ ├── main.swift │ ├── stdlib │ │ ├── stdlib.kt │ │ └── stdlib.swift │ └── values │ │ ├── values.kt │ │ └── values.swift │ ├── helpers.kt │ ├── interop │ ├── basics │ │ ├── 0.kt │ │ ├── 1.kt │ │ ├── 2.kt │ │ ├── 3.kt │ │ ├── 4.kt │ │ ├── bf.kt │ │ ├── bitfields.def │ │ ├── cfunptr.def │ │ ├── cglobals.def │ │ ├── cmacros.def │ │ ├── cstdio.def │ │ ├── echo_server.kt │ │ ├── funptr.kt │ │ ├── globals.kt │ │ ├── macros.kt │ │ ├── opengl_teapot.kt │ │ └── sockets.def │ ├── libiconv.kt │ └── objc │ │ ├── objcSmoke.def │ │ ├── smoke.h │ │ ├── smoke.kt │ │ └── smoke.m │ ├── jsinterop │ └── math.kt │ ├── link │ ├── default │ │ └── default.kt │ ├── lib │ │ ├── foo.kt │ │ └── foo2.kt │ ├── omit │ │ ├── hello.kt │ │ └── lib.kt │ ├── purge1 │ │ ├── lib.kt │ │ └── prog.kt │ └── src │ │ └── bar.kt │ ├── lower │ ├── tailrec.kt │ ├── vararg.kt │ └── vararg_of_literals.kt │ ├── mangling │ ├── mangling.kt │ └── manglinglib.kt │ ├── produce_dynamic │ └── simple │ │ ├── hello.kt │ │ └── main.c │ ├── runtime │ ├── basic │ │ ├── args0.kt │ │ ├── assert_failed.kt │ │ ├── assert_passed.kt │ │ ├── driver0.kt │ │ ├── empty_substring.kt │ │ ├── entry0.kt │ │ ├── entry1.kt │ │ ├── entry2.kt │ │ ├── exit.kt │ │ ├── for0.kt │ │ ├── hash0.kt │ │ ├── hello0.kt │ │ ├── hello1.kt │ │ ├── hello2.kt │ │ ├── hello3.kt │ │ ├── hello4.kt │ │ ├── ieee754.kt │ │ ├── initializers0.kt │ │ ├── initializers1.kt │ │ ├── initializers2.kt │ │ ├── initializers3.kt │ │ ├── initializers4.kt │ │ ├── initializers5.kt │ │ ├── interface0.kt │ │ ├── libentry2.kt │ │ ├── main_exception.kt │ │ ├── readline0.kt │ │ ├── readline1.kt │ │ ├── standard.kt │ │ ├── statements0.kt │ │ ├── throw0.kt │ │ ├── tostring0.kt │ │ ├── tostring1.kt │ │ ├── tostring2.kt │ │ └── tostring3.kt │ ├── collections │ │ ├── AbstractMutableCollection.kt │ │ ├── BitSet.kt │ │ ├── array0.kt │ │ ├── array1.kt │ │ ├── array2.kt │ │ ├── array3.kt │ │ ├── array_list1.kt │ │ ├── hash_map0.kt │ │ ├── hash_set0.kt │ │ ├── listof0.kt │ │ ├── moderately_large_array.kt │ │ ├── moderately_large_array1.kt │ │ ├── range0.kt │ │ ├── sort0.kt │ │ ├── sort1.kt │ │ ├── typed_array0.kt │ │ └── typed_array1.kt │ ├── exceptions │ │ ├── catch1.kt │ │ ├── catch2.kt │ │ ├── catch7.kt │ │ └── extend0.kt │ ├── memory │ │ ├── basic0.kt │ │ ├── cycles0.kt │ │ ├── escape0.kt │ │ ├── escape1.kt │ │ ├── escape2.kt │ │ ├── throw_cleanup.kt │ │ ├── var1.kt │ │ ├── var2.kt │ │ ├── var3.kt │ │ ├── var4.kt │ │ ├── weak0.kt │ │ └── weak1.kt │ ├── text │ │ ├── chars0.kt │ │ ├── parse0.kt │ │ ├── string0.kt │ │ ├── string_builder0.kt │ │ ├── string_builder1.kt │ │ ├── to_string0.kt │ │ ├── trim.kt │ │ └── utf8.kt │ └── workers │ │ ├── freeze0.kt │ │ ├── freeze1.kt │ │ ├── freeze_stress.kt │ │ ├── worker0.kt │ │ ├── worker1.kt │ │ ├── worker2.kt │ │ ├── worker3.kt │ │ ├── worker4.kt │ │ ├── worker5.kt │ │ ├── worker6.kt │ │ ├── worker7.kt │ │ └── worker8.kt │ ├── serialization │ ├── catch.kt │ ├── default_args.kt │ ├── deserialize_members.kt │ ├── deserialized_inline0.kt │ ├── deserialized_listof0.kt │ ├── do_while.kt │ ├── prop.kt │ ├── regression │ │ └── no_type_map.kt │ ├── serialize_members.kt │ ├── use.kt │ └── vararg.kt │ ├── stdlib_external │ ├── OrderingTest.kt │ ├── TuplesTest.kt │ ├── collections │ │ ├── ArraysTest.kt │ │ ├── CollectionBehaviors.kt │ │ ├── CollectionTest.kt │ │ ├── ComparisonDSL.kt │ │ ├── GroupingTest.kt │ │ ├── IterableTests.kt │ │ ├── IteratorsTest.kt │ │ ├── ListBinarySearchTest.kt │ │ ├── ListSpecificTest.kt │ │ ├── MapTest.kt │ │ ├── MutableCollectionsTest.kt │ │ ├── ReversedViewsTest.kt │ │ ├── SequenceTest.kt │ │ └── SetOperationsTest.kt │ ├── coroutines │ │ ├── CoroutineContextTest.kt │ │ ├── CoroutinesReferenceValuesTest.kt │ │ └── SequenceBuilderTest.kt │ ├── language │ │ └── EscapedTestNamesTest.kt │ ├── numbers │ │ ├── BitwiseOperationsTest.kt │ │ ├── HarmonyMathTests.kt │ │ ├── MathExceptionTest.kt │ │ ├── MathTest.kt │ │ ├── NaNPropagationTest.kt │ │ └── NumbersTest.kt │ ├── properties │ │ └── delegation │ │ │ ├── DelegationTest.kt │ │ │ ├── MapAccessorsTest.kt │ │ │ └── lazy │ │ │ └── LazyValuesTest.kt │ ├── ranges │ │ ├── CoercionTest.kt │ │ ├── ProgressionLastElementTest.kt │ │ ├── RangeIterationTest.kt │ │ └── RangeTest.kt │ ├── testUtils.kt │ ├── text │ │ ├── RegexTest.kt │ │ ├── StringBuilderTest.kt │ │ ├── StringNumberConversionTest.kt │ │ ├── StringTest.kt │ │ └── harmony_regex │ │ │ ├── AllCodePointsTest.kt │ │ │ ├── MatchResultTest.kt │ │ │ ├── MatchResultTest2.kt │ │ │ ├── ModeTest.kt │ │ │ ├── PatternErrorTest.kt │ │ │ ├── PatternSyntaxExceptionTest.kt │ │ │ ├── PatternTest.kt │ │ │ ├── PatternTest2.kt │ │ │ ├── ReplaceTest.kt │ │ │ └── SplitTest.kt │ └── utils │ │ ├── KotlinVersionTest.kt │ │ ├── LazyTest.kt │ │ ├── PreconditionsTest.kt │ │ └── TODOTest.kt │ ├── teamcity-test.property │ ├── testLibrary │ └── kotlin │ │ └── test_platform_lib.kt │ ├── testUtils.kt │ └── testing │ ├── annotations.kt │ ├── assertions.kt │ └── custom_main.kt ├── cmd ├── cinterop ├── cinterop.bat ├── jsinterop ├── jsinterop.bat ├── klib ├── klib.bat ├── konanc ├── konanc.bat ├── kotlinc ├── kotlinc-native ├── kotlinc-native.bat ├── kotlinc.bat ├── run_konan └── run_konan.bat ├── common ├── build.gradle └── src │ └── hash │ ├── cpp │ ├── Base64.cpp │ ├── City.cpp │ ├── Names.cpp │ └── Sha1.cpp │ └── headers │ ├── Base64.h │ ├── City.h │ ├── Names.h │ └── Sha1.h ├── contrib └── binaryen.diff ├── dependencies └── build.gradle ├── gradle.properties ├── gradle ├── kotlinGradlePlugin.gradle ├── loadRootProperties.gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── klib ├── build.gradle └── src │ ├── main │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── kotlin │ │ └── cli │ │ └── klib │ │ ├── KlibPrinter.kt │ │ └── main.kt │ └── test │ ├── kotlin │ └── org │ │ └── jetbrains │ │ └── kotlin │ │ └── cli │ │ └── klib │ │ └── test │ │ └── ContentsTest.kt │ └── testData │ ├── Accessors.kt │ ├── Classes.kt │ ├── Constructors.kt │ ├── Enum.kt │ ├── FunctionModifiers.kt │ ├── MethodModality.kt │ ├── Objects.kt │ └── TopLevelFunctions.kt ├── konan ├── konan.properties └── platforms │ └── zephyr │ └── stm32f4_disco ├── libclangext ├── build.gradle └── src │ └── main │ ├── cpp │ └── ClangExt.cpp │ └── include │ └── clang-c │ └── ext.h ├── licenses ├── LICENSE.txt ├── NOTICE.txt └── third_party │ ├── args4j_LICENSE.txt │ ├── asm_license.txt │ ├── boost_LICENSE.txt │ ├── closure-compiler_LICENSE.txt │ ├── dart_LICENSE.txt │ ├── glibc_license.txt │ ├── harmony_LICENSE.txt │ ├── jshashtable_license.txt │ ├── json_LICENSE.txt │ ├── libffi_license.txt │ ├── llvm_license.txt │ ├── maven_LICENSE.txt │ ├── pcollections_LICENSE.txt │ ├── prototype_license.txt │ ├── rhino_LICENSE.txt │ ├── scala_license.txt │ ├── sdl_license.txt │ ├── trove_license.txt │ ├── trove_readme_license.txt │ ├── unicode_LICENSE.txt │ ├── xcode_license.pdf │ └── zephyr_LICENSE.txt ├── llvmDebugInfoC ├── build.gradle └── src │ ├── dwarf │ └── include │ │ └── dwarf_util.kt.pp │ ├── main │ ├── cpp │ │ └── DebugInfoC.cpp │ └── include │ │ └── DebugInfoC.h │ └── scripts │ └── konan_lldb.py ├── performance ├── build.gradle └── src │ └── main │ ├── kotlin-jvm │ └── cleanup.kt │ ├── kotlin-native │ └── cleanup.kt │ └── kotlin │ ├── main.kt │ └── org │ └── jetbrains │ └── ring │ ├── AbstractMethodBenchmark.kt │ ├── ClassArrayBenchmark.kt │ ├── ClassBaselineBenchmark.kt │ ├── ClassListBenchmark.kt │ ├── ClassStreamBenchmark.kt │ ├── CompanionObjectBenchmark.kt │ ├── Data.kt │ ├── DefaultArgumentBenchmark.kt │ ├── ElvisBenchmark.kt │ ├── EulerBenchmark.kt │ ├── FibonacciBenchmark.kt │ ├── InlineBenchmark.kt │ ├── IntArrayBenchmark.kt │ ├── IntBaselineBenchmark.kt │ ├── IntListBenchmark.kt │ ├── IntStreamBenchmark.kt │ ├── LambdaBenchmark.kt │ ├── LoopBenchmark.kt │ ├── MatrixMapBenchmark.kt │ ├── OctoTest │ ├── basicTest.kt │ └── ocTree.kt │ ├── ParameterNotNullAssertionBenchmark.kt │ ├── PrimeListBenchmark.kt │ ├── StringBenchmark.kt │ ├── SwitchBenchmark.kt │ ├── Utils.kt │ ├── WithIndiciesBenchmark.kt │ ├── launcher.kt │ └── zdf-win.kt ├── platformLibs ├── build.gradle └── src │ └── platform │ ├── android │ ├── android.def │ ├── egl.def │ ├── gles.def │ ├── gles2.def │ ├── gles3.def │ ├── glesCommon.def │ ├── linux.def │ ├── media.def │ ├── omxal.def │ ├── posix.def │ ├── sles.def │ └── zlib.def │ ├── ios │ ├── AVFoundation.def │ ├── AVKit.def │ ├── Accelerate.def │ ├── Accounts.def │ ├── AdSupport.def │ ├── AddressBook.def │ ├── AddressBookUI.def │ ├── AssetsLibrary.def │ ├── AudioToolbox.def │ ├── CFNetwork.def │ ├── CallKit.def │ ├── CloudKit.def │ ├── Contacts.def │ ├── ContactsUI.def │ ├── CoreAudio.def │ ├── CoreAudioKit.def │ ├── CoreBluetooth.def │ ├── CoreData.def │ ├── CoreFoundation.def │ ├── CoreGraphics.def │ ├── CoreImage.def │ ├── CoreLocation.def │ ├── CoreMIDI.def │ ├── CoreMedia.def │ ├── CoreMotion.def │ ├── CoreSpotlight.def │ ├── CoreTelephony.def │ ├── CoreText.def │ ├── CoreVideo.def │ ├── EAGL.def │ ├── EventKit.def │ ├── EventKitUI.def │ ├── ExternalAccessory.def │ ├── FileProvider.def │ ├── Foundation.def │ ├── GLKit.def │ ├── GSS.def │ ├── GameController.def │ ├── GameKit.def │ ├── GameplayKit.def │ ├── HealthKit.def │ ├── HealthKitUI.def │ ├── HomeKit.def │ ├── IOSurface.def │ ├── ImageIO.def │ ├── Intents.def │ ├── IntentsUI.def │ ├── JavaScriptCore.def.disabled │ ├── LocalAuthentication.def │ ├── MapKit.def │ ├── MediaAccessibility.def │ ├── MediaPlayer.def │ ├── MediaToolbox.def │ ├── MessageUI.def │ ├── Messages.def │ ├── Metal.def │ ├── MetalKit.def │ ├── MetalPerformanceShaders.def.disabled │ ├── MobileCoreServices.def │ ├── ModelIO.def │ ├── MultipeerConnectivity.def │ ├── NetworkExtension.def │ ├── NewsstandKit.def │ ├── NotificationCenter.def │ ├── OpenAL.def │ ├── OpenGLES.def │ ├── OpenGLES2.def │ ├── OpenGLES3.def │ ├── OpenGLESCommon.def │ ├── PassKit.def │ ├── Photos.def │ ├── PhotosUI.def │ ├── PushKit.def │ ├── QuartzCore.def │ ├── QuickLook.def │ ├── ReplayKit.def │ ├── SafariServices.def │ ├── SceneKit.def │ ├── Security.def │ ├── Social.def │ ├── Speech.def │ ├── SpriteKit.def │ ├── StoreKit.def │ ├── SystemConfiguration.def │ ├── Twitter.def │ ├── UIKit.def │ ├── UserNotifications.def │ ├── UserNotificationsUI.def │ ├── VideoSubscriberAccount.def │ ├── VideoToolbox.def │ ├── WatchConnectivity.def │ ├── WatchKit.def │ ├── WebKit.def │ ├── darwin.def │ ├── iAd.def │ ├── iconv.def │ ├── objc.def │ ├── posix.def │ └── zlib.def │ ├── linux │ ├── iconv.def │ ├── linux.def │ ├── posix.def │ └── zlib.def │ ├── mingw │ ├── gdiplus.def │ ├── opengl32.def │ ├── posix.def │ └── windows.def │ └── osx │ ├── AppKit.def │ ├── ApplicationServices.def │ ├── CFNetwork.def │ ├── CoreData.def │ ├── CoreFoundation.def │ ├── CoreGraphics.def │ ├── CoreImage.def │ ├── CoreServices.def │ ├── CoreText.def │ ├── CoreVideo.def │ ├── DiskArbitration.def │ ├── Foundation.def │ ├── GLUT.def │ ├── IOKit.def │ ├── IOSurface.def │ ├── ImageIO.def │ ├── Metal.def │ ├── OpenGL.def │ ├── OpenGL3.def │ ├── OpenGLCommon.def │ ├── QuartzCore.def │ ├── Security.def │ ├── darwin.def │ ├── iconv.def │ ├── libkern.def │ ├── objc.def │ ├── osx.def │ ├── posix.def │ └── zlib.def ├── runtime ├── build.gradle └── src │ ├── launcher │ ├── cpp │ │ ├── androidLauncher.cpp │ │ ├── androidLauncher.h │ │ └── launcher.cpp │ ├── js │ │ ├── index.html │ │ └── launcher.js │ └── kotlin │ │ └── konan │ │ └── start.kt │ └── main │ ├── cpp │ ├── Alloc.h │ ├── Arrays.cpp │ ├── Assert.cpp │ ├── Assert.h │ ├── Atomic.h │ ├── Boxing.cpp │ ├── Common.h │ ├── Console.cpp │ ├── DoubleConversions.h │ ├── Exceptions.cpp │ ├── Exceptions.h │ ├── ExecFormat.cpp │ ├── ExecFormat.h │ ├── Interop.cpp │ ├── JSInterop.cpp │ ├── KDebug.cpp │ ├── KDebug.h │ ├── KString.cpp │ ├── KString.h │ ├── KotlinMath.cpp │ ├── KotlinMath.h │ ├── Memory.cpp │ ├── Memory.h │ ├── MemoryPrivate.hpp │ ├── Natives.cpp │ ├── Natives.h │ ├── ObjCExport.h │ ├── ObjCExport.mm │ ├── ObjCExportCollections.mm │ ├── ObjCExportErrors.mm │ ├── ObjCInterop.cpp │ ├── ObjCInteropUtils.mm │ ├── Operator.cpp │ ├── Porting.cpp │ ├── Porting.h │ ├── Regex.cpp │ ├── ReturnSlot.cpp │ ├── ReturnSlot.h │ ├── Runtime.cpp │ ├── Runtime.h │ ├── StdCppStubs.cpp │ ├── Time.cpp │ ├── ToString.cpp │ ├── TypeInfo.cpp │ ├── TypeInfo.h │ ├── Types.cpp │ ├── Types.h │ ├── Utils.h │ ├── Weak.cpp │ ├── Worker.cpp │ ├── dlmalloc │ │ └── malloc.cpp │ ├── dtoa │ │ ├── cbigint.cpp │ │ ├── cbigint.h │ │ ├── dblparse.cpp │ │ ├── fltconst.h │ │ ├── fltparse.cpp │ │ └── hycomp.h │ ├── math │ │ ├── COPYRIGHT │ │ ├── endian.h │ │ ├── fmod.cpp │ │ ├── fmodf.cpp │ │ ├── libm.h │ │ └── scalbn.cpp │ ├── snprintf │ │ ├── AUTHORS │ │ ├── COPYING │ │ └── snprintf.cpp │ ├── utf8.h │ └── utf8 │ │ ├── checked.h │ │ ├── core.h │ │ ├── unchecked.h │ │ └── with_replacement.h │ ├── js │ └── math.js │ └── kotlin │ ├── konan │ ├── Annotations.kt │ ├── BinaryBlob.kt │ ├── TypedArrays.kt │ ├── concurrent.kt │ ├── internal │ │ ├── Annotations.kt │ │ ├── Boxing.kt │ │ ├── Char.kt │ │ ├── Coroutines.kt │ │ ├── DefaultConstructorMarker.kt │ │ ├── FloatingPointParser.kt │ │ ├── GC.kt │ │ ├── HexStringParser.kt │ │ ├── InteropBoxing.kt │ │ ├── Intrinsics.kt │ │ ├── KClassImpl.kt │ │ ├── KFunctionImpl.kt │ │ ├── KPropertyImpl.kt │ │ ├── KonanCollections.kt │ │ ├── NativePtr.kt │ │ ├── NumberConverter.kt │ │ ├── ObjCExportUtils.kt │ │ ├── Ref.kt │ │ ├── RuntimeUtils.kt │ │ ├── Strings.kt │ │ └── Undefined.kt │ ├── ref │ │ ├── Weak.kt │ │ └── WeakPrivate.kt │ ├── runtime.kt │ ├── test │ │ ├── GTestLogger.kt │ │ ├── Launcher.kt │ │ ├── TeamCityLogger.kt │ │ ├── TestListener.kt │ │ ├── TestLogger.kt │ │ ├── TestRunner.kt │ │ ├── TestStatistics.kt │ │ └── TestSuite.kt │ └── worker │ │ ├── Freezing.kt │ │ ├── Future.kt │ │ ├── ObjectTransfer.kt │ │ └── Worker.kt │ └── kotlin │ ├── Annotation.kt │ ├── Annotations.kt │ ├── Any.kt │ ├── Array.kt │ ├── Arrays.kt │ ├── Assertions.kt │ ├── BitSet.kt │ ├── Boolean.kt │ ├── Char.kt │ ├── CharSequence.kt │ ├── Comparable.kt │ ├── Enum.kt │ ├── Exceptions.kt │ ├── Experimental.kt │ ├── Function.kt │ ├── Functions.kt │ ├── KotlinVersion.kt │ ├── Lazy.kt │ ├── Nothing.kt │ ├── Number.kt │ ├── Numbers.kt │ ├── Primitives.kt │ ├── String.kt │ ├── SuspendFunction.kt │ ├── SuspendFunctions.kt │ ├── Throwable.kt │ ├── Unit.kt │ ├── annotation │ └── Annotations.kt │ ├── collections │ ├── AbstractCollection.kt │ ├── AbstractIterator.kt │ ├── AbstractList.kt │ ├── AbstractSet.kt │ ├── ArrayList.kt │ ├── ArrayUtil.kt │ ├── Arrays.kt │ ├── Collection.kt │ ├── Collections.kt │ ├── Grouping.kt │ ├── HashMap.kt │ ├── HashSet.kt │ ├── IndexedValue.kt │ ├── IntUtil.kt │ ├── Iterables.kt │ ├── Iterator.kt │ ├── Iterators.kt │ ├── List.kt │ ├── Map.kt │ ├── MapAccessors.kt │ ├── MapWithDefault.kt │ ├── Maps.kt │ ├── MutableCollections.kt │ ├── RandomAccess.kt │ ├── ReversedViews.kt │ ├── Set.kt │ ├── Sets.kt │ └── SlidingWindow.kt │ ├── comparisons │ └── Comparisons.kt │ ├── coroutines │ └── experimental │ │ ├── ContinuationInterceptor.kt │ │ ├── CoroutineContext.kt │ │ ├── Coroutines.kt │ │ ├── CoroutinesLibrary.kt │ │ ├── EmptyCoroutineContext.kt │ │ ├── SequenceBuilder.kt │ │ └── intrinsics │ │ └── Intrinsics.kt │ ├── internal │ ├── Annotations.kt │ └── progressionUtil.kt │ ├── io │ └── Console.kt │ ├── math │ └── math.kt │ ├── properties │ ├── Delegates.kt │ ├── Interfaces.kt │ └── ObservableProperty.kt │ ├── ranges │ ├── ProgressionIterators.kt │ ├── Progressions.kt │ ├── Range.kt │ ├── Ranges.kt │ └── _Ranges.kt │ ├── reflect │ ├── KAnnotatedElement.kt │ ├── KCallable.kt │ ├── KClass.kt │ ├── KClassifier.kt │ ├── KDeclarationContainer.kt │ ├── KFunction.kt │ ├── KFunctions.kt │ └── KProperty.kt │ ├── sequences │ ├── Sequence.kt │ └── Sequences.kt │ ├── system │ ├── Process.kt │ └── Timing.kt │ ├── test │ ├── Annotation.kt │ ├── Assertions.kt │ ├── DefaultAsserter.kt │ └── Utils.kt │ ├── text │ ├── Appendable.kt │ ├── Char.kt │ ├── CharCategory.kt │ ├── Indent.kt │ ├── MatchResult.kt │ ├── PatternSyntaxException.kt │ ├── Regex.kt │ ├── StringBuilder.kt │ ├── StringBuilderNative.kt │ ├── StringNumberConversions.kt │ ├── Strings.kt │ └── regex │ │ ├── AbstractCharClass.kt │ │ ├── AbstractLineTerminator.kt │ │ ├── CharClass.kt │ │ ├── Lexer.kt │ │ ├── MatchResultImpl.kt │ │ ├── Pattern.kt │ │ ├── Quantifier.kt │ │ └── sets │ │ ├── AbstractSet.kt │ │ ├── AtomicJointSet.kt │ │ ├── BackReferenceSet.kt │ │ ├── CharSet.kt │ │ ├── CompositeRangeSet.kt │ │ ├── DecomposedCharSet.kt │ │ ├── DotQuantifierSet.kt │ │ ├── DotSet.kt │ │ ├── EOISet.kt │ │ ├── EOLSet.kt │ │ ├── EmptySet.kt │ │ ├── FSets.kt │ │ ├── GroupQuantifierSet.kt │ │ ├── HangulDecomposedCharSet.kt │ │ ├── JointSet.kt │ │ ├── LeafQuantifierSet.kt │ │ ├── LeafSet.kt │ │ ├── LookAheadSets.kt │ │ ├── LookBehindSets.kt │ │ ├── NonCapturingJointSet.kt │ │ ├── PossessiveGroupQuantifierSet.kt │ │ ├── PossessiveLeafQuantifierSet.kt │ │ ├── PreviousMatchSet.kt │ │ ├── QuantifierSet.kt │ │ ├── RangeSet.kt │ │ ├── ReluctantGroupQuantifierSet.kt │ │ ├── ReluctantLeafQuantifierSet.kt │ │ ├── SOLSet.kt │ │ ├── SequenceSet.kt │ │ ├── SingleSet.kt │ │ ├── SupplementaryCharSet.kt │ │ ├── SupplementaryRangeSet.kt │ │ ├── SurrogateCharSets.kt │ │ ├── SurrogateRangeSet.kt │ │ ├── UnifiedQuantifierSet.kt │ │ └── WordBoundarySet.kt │ └── util │ ├── Lateinit.kt │ ├── Preconditions.kt │ ├── Sort.kt │ ├── Standard.kt │ └── Tuples.kt ├── samples ├── README.md ├── androidNativeActivity │ ├── README.md │ ├── android.def │ ├── androidLauncher.h │ ├── build.gradle │ ├── gradle.properties │ ├── settings.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── kotlin_logo.bmp │ │ ├── kotlin │ │ ├── engine.kt │ │ ├── polyhedra.kt │ │ ├── renderer.kt │ │ └── vectors.kt │ │ └── res │ │ ├── mipmap-hdpi │ │ └── konan_activity.png │ │ ├── mipmap-mdpi │ │ └── konan_activity.png │ │ ├── mipmap-xhdpi │ │ └── konan_activity.png │ │ ├── mipmap-xxhdpi │ │ └── konan_activity.png │ │ └── values │ │ └── strings.xml ├── build.gradle ├── build.sh ├── calculator │ ├── README.md │ ├── android │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ └── org │ │ │ │ └── konan │ │ │ │ └── calculator │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── common │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── org │ │ │ └── konan │ │ │ └── arithmeticparser │ │ │ └── Parser.kt │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── ios │ │ ├── build.gradle │ │ ├── calculator.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ └── calculator │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── ViewController.swift │ ├── jvm │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── org │ │ │ └── konan │ │ │ └── calculator │ │ │ └── JvmCli.kt │ └── settings.gradle ├── csvparser │ ├── European_Mammals_Red_List_Nov_2009.csv │ ├── README.md │ ├── build.bat │ ├── build.gradle │ ├── build.sh │ ├── gradle.properties │ └── src │ │ └── main │ │ └── kotlin │ │ └── CsvParser.kt ├── curl │ ├── README.md │ ├── build.gradle │ ├── build.sh │ ├── gradle.properties │ ├── libcurl.iml │ └── src │ │ └── main │ │ └── kotlin │ │ ├── main.kt │ │ └── org │ │ └── konan │ │ └── libcurl │ │ ├── CUrl.kt │ │ ├── Event.kt │ │ └── Program.kt ├── gitchurn │ ├── README.md │ ├── build.gradle │ ├── build.sh │ ├── gradle.properties │ └── src │ │ └── main │ │ ├── c_interop │ │ └── libgit2.def │ │ └── kotlin │ │ ├── main.kt │ │ └── org │ │ └── konan │ │ └── libgit │ │ ├── GitChurn.kt │ │ ├── GitCommit.kt │ │ ├── GitDiff.kt │ │ ├── GitRemote.kt │ │ ├── GitRepository.kt │ │ ├── GitTree.kt │ │ └── git.kt ├── globalState │ ├── README.md │ ├── build.gradle │ └── src │ │ └── main │ │ ├── c_interop │ │ └── global.def │ │ └── kotlin │ │ └── Global.kt ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── gtk │ ├── README.md │ ├── build.gradle │ ├── build.sh │ └── src │ │ └── main │ │ ├── c_interop │ │ └── gtk3.def │ │ └── kotlin │ │ └── Main.kt ├── html5Canvas │ ├── build.bat │ ├── build.sh │ ├── index.html │ └── src │ │ └── main │ │ └── kotlin │ │ └── main.kt ├── konan.sh ├── libcurl │ ├── build.gradle │ ├── gradle.properties │ └── src │ │ └── main │ │ └── c_interop │ │ └── libcurl.def ├── nonBlockingEchoServer │ ├── README.md │ ├── build.gradle │ ├── build.sh │ ├── gradle.properties │ └── src │ │ └── main │ │ └── kotlin │ │ └── EchoServer.kt ├── objc │ ├── build.gradle │ ├── build.sh │ └── src │ │ └── main │ │ └── kotlin │ │ └── Window.kt ├── opengl │ ├── README.md │ ├── build.gradle │ ├── build.sh │ └── src │ │ └── main │ │ └── kotlin │ │ └── OpenGlTeapot.kt ├── python_extension │ ├── README.md │ ├── build.bat │ ├── build.sh │ └── src │ │ └── main │ │ ├── c │ │ └── kotlin_bridge.c │ │ ├── kotlin │ │ └── Server.kt │ │ └── python │ │ ├── main.py │ │ └── setup.py ├── settings.gradle ├── socket │ ├── README.md │ ├── build.gradle │ ├── build.sh │ ├── gradle.properties │ └── src │ │ └── main │ │ └── kotlin │ │ └── EchoServer.kt ├── tensorflow │ ├── README.md │ ├── build.gradle │ ├── build.sh │ ├── downloadTensorflow.sh │ └── src │ │ └── main │ │ ├── c_interop │ │ └── tensorflow.def │ │ └── kotlin │ │ └── HelloTensorflow.kt ├── tetris │ ├── README.md │ ├── Tetris.rc │ ├── build.bat │ ├── build.gradle │ ├── build.sh │ └── src │ │ └── main │ │ ├── c_interop │ │ └── sdl.def │ │ ├── kotlin │ │ └── Tetris.kt │ │ └── resources │ │ ├── Info.plist │ │ └── tetris_all.bmp ├── torch │ ├── README.md │ ├── build.gradle │ ├── build.sh │ ├── downloadMNIST.sh │ ├── downloadTorch.sh │ └── src │ │ └── main │ │ ├── c_interop │ │ └── torch.def │ │ └── kotlin │ │ ├── ClassifierDemo.kt │ │ ├── Dataset.kt │ │ ├── Disposable.kt │ │ ├── Modules.kt │ │ ├── SmallDemos.kt │ │ └── Tensors.kt ├── uikit │ ├── .gitignore │ ├── README.md │ ├── build.gradle │ ├── build.sh │ ├── konan.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── konan │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ └── Info.plist │ └── src │ │ └── main │ │ └── kotlin │ │ └── main.kt ├── videoplayer │ ├── README.md │ ├── build.gradle │ └── src │ │ └── main │ │ ├── c_interop │ │ ├── ffmpeg.def │ │ └── sdl.def │ │ └── kotlin │ │ ├── DecoderWorker.kt │ │ ├── Dimensions.kt │ │ ├── Disposable.kt │ │ ├── Queue.kt │ │ ├── SDLAudio.kt │ │ ├── SDLErrors.kt │ │ ├── SDLInput.kt │ │ ├── SDLVideo.kt │ │ └── VideoPlayer.kt ├── win32 │ ├── README.md │ ├── build.bat │ ├── build.gradle │ └── src │ │ └── main │ │ └── kotlin │ │ └── MessageBox.kt ├── workers │ ├── README.md │ ├── build.gradle │ ├── build.sh │ └── src │ │ └── main │ │ └── kotlin │ │ └── Workers.kt └── zephyr │ ├── CMakeLists.txt │ ├── build.bat │ ├── build.sh │ ├── c_interop │ └── platforms │ │ ├── stm32f4_disco.bat │ │ ├── stm32f4_disco.def │ │ └── stm32f4_disco.sh │ ├── prj.conf │ └── src │ └── main.kt ├── settings.gradle ├── shared ├── build.gradle ├── buildSrc │ ├── build.gradle │ └── src │ │ └── main │ │ └── kotlin │ │ └── org │ │ └── jetbrains │ │ └── kotlin │ │ └── VersionGenerator.kt ├── settings.gradle └── src │ └── main │ └── kotlin │ └── org │ └── jetbrains │ └── kotlin │ └── konan │ ├── Exceptions.kt │ ├── MetaVersion.kt │ ├── TempFiles.kt │ ├── VisibleNamed.kt │ ├── exec │ └── ExecuteCommand.kt │ ├── file │ ├── File.kt │ └── NativeFileType.kt │ ├── library │ └── SearchPathResolver.kt │ ├── target │ ├── Apple.kt │ ├── ClangArgs.kt │ ├── Configurables.kt │ ├── ConfigurablesImpl.kt │ ├── Distribution.kt │ ├── KonanProperties.kt │ ├── KonanTarget.kt │ ├── Linker.kt │ ├── Platform.kt │ ├── Properties.kt │ ├── TargetProperties.kt │ └── Xcode.kt │ └── util │ ├── DefFile.kt │ ├── DependencyDownloader.kt │ ├── DependencyExtractor.kt │ ├── DependencyProcessor.kt │ ├── Helper0.kt │ ├── Substitution.kt │ ├── TargetDefFile.kt │ └── Util.kt ├── tools ├── kotlin-native-gradle-plugin │ ├── build.gradle │ ├── settings.gradle │ └── src │ │ ├── main │ │ └── kotlin │ │ │ └── org │ │ │ └── jetbrains │ │ │ └── kotlin │ │ │ └── gradle │ │ │ └── plugin │ │ │ ├── EnvironmentVariables.kt │ │ │ ├── KonanArtifactContainer.kt │ │ │ ├── KonanBuildingConfig.kt │ │ │ ├── KonanCompileConfig.kt │ │ │ ├── KonanInteropLibrary.kt │ │ │ ├── KonanLibrariesSpec.kt │ │ │ ├── KonanPlugin.kt │ │ │ ├── KonanSpecs.kt │ │ │ ├── KonanToolRunner.kt │ │ │ ├── KonanToolingModelBuilder.kt │ │ │ ├── KotlinNativePlatformPlugin.kt │ │ │ ├── model │ │ │ └── KonanModel.kt │ │ │ └── tasks │ │ │ ├── KonanBaseTasks.kt │ │ │ ├── KonanBuildingTask.kt │ │ │ ├── KonanCompileTask.kt │ │ │ ├── KonanCompilerDownloadTask.kt │ │ │ ├── KonanGenerateCMakeTask.kt │ │ │ └── KonanInteropTask.kt │ │ └── test │ │ ├── groovy │ │ └── org │ │ │ └── jetbrains │ │ │ └── kotlin │ │ │ └── gradle │ │ │ └── plugin │ │ │ └── test │ │ │ ├── BaseKonanSpecification.groovy │ │ │ ├── CMakeSpecification.groovy │ │ │ ├── DefaultSpecification.groovy │ │ │ ├── EnvVariableSpecification.groovy │ │ │ ├── IncrementalSpecification.groovy │ │ │ ├── KonanProject.groovy │ │ │ ├── LibrarySpecification.groovy │ │ │ ├── MultiplatformSpecification.groovy │ │ │ ├── PathSpecification.groovy │ │ │ ├── RegressionSpecification.groovy │ │ │ └── TaskSpecification.groovy │ │ └── kotlin │ │ └── PropertiesAsEnvVariables.kt ├── publish-release.sh └── scripts │ └── update_xcode.sh └── utilities ├── build.gradle ├── env_blacklist └── src └── main └── kotlin └── org └── jetbrains └── kotlin └── cli └── utilities ├── InteropCompiler.kt └── main.kt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONCURRENCY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/CONCURRENCY.md -------------------------------------------------------------------------------- /DEBUGGING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/DEBUGGING.md -------------------------------------------------------------------------------- /DISTRO_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/DISTRO_README.md -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/FAQ.md -------------------------------------------------------------------------------- /GRADLE_PLUGIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/GRADLE_PLUGIN.md -------------------------------------------------------------------------------- /HACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/HACKING.md -------------------------------------------------------------------------------- /INTEROP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/INTEROP.md -------------------------------------------------------------------------------- /Interop/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/Interop/.idea/compiler.xml -------------------------------------------------------------------------------- /Interop/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/Interop/.idea/gradle.xml -------------------------------------------------------------------------------- /Interop/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/Interop/.idea/modules.xml -------------------------------------------------------------------------------- /Interop/.idea/modules/Indexer/Indexer.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/Interop/.idea/modules/Indexer/Indexer.iml -------------------------------------------------------------------------------- /Interop/.idea/modules/Runtime/Runtime.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/Interop/.idea/modules/Runtime/Runtime.iml -------------------------------------------------------------------------------- /Interop/Indexer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/Interop/Indexer/build.gradle -------------------------------------------------------------------------------- /Interop/Indexer/clang.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/Interop/Indexer/clang.def -------------------------------------------------------------------------------- /Interop/JsRuntime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/Interop/JsRuntime/build.gradle -------------------------------------------------------------------------------- /Interop/JsRuntime/src/main/js/jsinterop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/Interop/JsRuntime/src/main/js/jsinterop.js -------------------------------------------------------------------------------- /Interop/JsRuntime/src/main/kotlin/jsinterop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/Interop/JsRuntime/src/main/kotlin/jsinterop.kt -------------------------------------------------------------------------------- /Interop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/Interop/README.md -------------------------------------------------------------------------------- /Interop/Runtime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/Interop/Runtime/build.gradle -------------------------------------------------------------------------------- /Interop/Runtime/src/callbacks/c/callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/Interop/Runtime/src/callbacks/c/callbacks.c -------------------------------------------------------------------------------- /Interop/StubGenerator/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/Interop/StubGenerator/build.gradle -------------------------------------------------------------------------------- /LIBRARIES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/LIBRARIES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/LICENSE -------------------------------------------------------------------------------- /MULTIPLATFORM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/MULTIPLATFORM.md -------------------------------------------------------------------------------- /OBJC_INTEROP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/OBJC_INTEROP.md -------------------------------------------------------------------------------- /PLATFORM_LIBS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/PLATFORM_LIBS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /RELEASE_PROCESS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/RELEASE_PROCESS.md -------------------------------------------------------------------------------- /backend.native/backend.native.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/backend.native.iml -------------------------------------------------------------------------------- /backend.native/bc.frontend/bc.frontend.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/bc.frontend/bc.frontend.iml -------------------------------------------------------------------------------- /backend.native/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/build.gradle -------------------------------------------------------------------------------- /backend.native/cli.bc/cli.bc.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/cli.bc/cli.bc.iml -------------------------------------------------------------------------------- /backend.native/debugger-tests/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/debugger-tests/build.gradle -------------------------------------------------------------------------------- /backend.native/llvm.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/llvm.def -------------------------------------------------------------------------------- /backend.native/tests/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/build.gradle -------------------------------------------------------------------------------- /backend.native/tests/codegen/basics/cast_null.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/basics/cast_null.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/basics/check_type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/basics/check_type.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/basics/companion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/basics/companion.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/basics/null_check.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/basics/null_check.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/basics/safe_cast.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/basics/safe_cast.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/basics/typealias1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/basics/typealias1.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/basics/unit1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/basics/unit1.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/basics/unit2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/basics/unit2.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/basics/unit3.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/basics/unit3.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/basics/unit4.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/basics/unit4.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/boxing/box_cache0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/boxing/box_cache0.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/boxing/boxing0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/boxing/boxing0.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/boxing/boxing1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/boxing/boxing1.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/boxing/boxing10.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/boxing/boxing10.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/boxing/boxing11.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/boxing/boxing11.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/boxing/boxing12.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/boxing/boxing12.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/boxing/boxing13.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/boxing/boxing13.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/boxing/boxing14.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/boxing/boxing14.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/boxing/boxing15.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/boxing/boxing15.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/boxing/boxing2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/boxing/boxing2.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/boxing/boxing3.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/boxing/boxing3.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/boxing/boxing4.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/boxing/boxing4.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/boxing/boxing5.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/boxing/boxing5.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/boxing/boxing6.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/boxing/boxing6.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/boxing/boxing7.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/boxing/boxing7.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/boxing/boxing8.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/boxing/boxing8.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/boxing/boxing9.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/boxing/boxing9.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/branching/if_else.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/branching/if_else.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/branching/when2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/branching/when2.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/branching/when4.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/branching/when4.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/branching/when5.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/branching/when5.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/branching/when6.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/branching/when6.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/branching/when7.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/branching/when7.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/branching/when8.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/branching/when8.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/branching/when9.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/branching/when9.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/bridges/special.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/bridges/special.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/bridges/test0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/bridges/test0.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/bridges/test1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/bridges/test1.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/bridges/test10.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/bridges/test10.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/bridges/test11.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/bridges/test11.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/bridges/test12.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/bridges/test12.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/bridges/test13.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/bridges/test13.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/bridges/test14.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/bridges/test14.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/bridges/test15.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/bridges/test15.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/bridges/test16.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/bridges/test16.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/bridges/test17.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/bridges/test17.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/bridges/test18.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/bridges/test18.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/bridges/test2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/bridges/test2.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/bridges/test3.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/bridges/test3.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/bridges/test4.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/bridges/test4.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/bridges/test5.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/bridges/test5.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/bridges/test6.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/bridges/test6.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/bridges/test7.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/bridges/test7.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/bridges/test8.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/bridges/test8.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/bridges/test9.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/bridges/test9.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/controlflow/break.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/controlflow/break.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/controlflow/for_loops_lowering/test10.out: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | 6 7 | 7 8 | 8 9 | 9 10 | 10 11 | -------------------------------------------------------------------------------- /backend.native/tests/codegen/controlflow/for_loops_lowering/test11.out: -------------------------------------------------------------------------------- 1 | 1 2 | 3 3 | 5 4 | 7 5 | 9 6 | -------------------------------------------------------------------------------- /backend.native/tests/codegen/controlflow/for_loops_lowering/test12.out: -------------------------------------------------------------------------------- 1 | -1044856554 2 | -------------------------------------------------------------------------------- /backend.native/tests/codegen/controlflow/for_loops_lowering/test13.out: -------------------------------------------------------------------------------- 1 | -6338578047935536577 2 | -------------------------------------------------------------------------------- /backend.native/tests/codegen/controlflow/for_loops_lowering/test14.out: -------------------------------------------------------------------------------- 1 | 3778122732511062497 2 | -------------------------------------------------------------------------------- /backend.native/tests/codegen/controlflow/for_loops_lowering/test15.out: -------------------------------------------------------------------------------- 1 | 59147280 2 | -------------------------------------------------------------------------------- /backend.native/tests/codegen/controlflow/for_loops_lowering/test16.out: -------------------------------------------------------------------------------- 1 | 2746296 2 | -------------------------------------------------------------------------------- /backend.native/tests/codegen/controlflow/for_loops_lowering/test17.out: -------------------------------------------------------------------------------- 1 | 1897630 2 | -------------------------------------------------------------------------------- /backend.native/tests/codegen/controlflow/for_loops_lowering/test18.out: -------------------------------------------------------------------------------- 1 | 7931520 2 | -------------------------------------------------------------------------------- /backend.native/tests/codegen/controlflow/for_loops_lowering/test19.out: -------------------------------------------------------------------------------- 1 | 71656200 2 | -------------------------------------------------------------------------------- /backend.native/tests/codegen/controlflow/for_loops_lowering/test20.out: -------------------------------------------------------------------------------- 1 | 422820 2 | -------------------------------------------------------------------------------- /backend.native/tests/codegen/controlflow/for_loops_lowering/test21.out: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /backend.native/tests/codegen/controlflow/for_loops_lowering/test22.out: -------------------------------------------------------------------------------- 1 | 141568 2 | -------------------------------------------------------------------------------- /backend.native/tests/codegen/controlflow/for_loops_lowering/test23.out: -------------------------------------------------------------------------------- 1 | 472026 2 | -------------------------------------------------------------------------------- /backend.native/tests/codegen/controlflow/for_loops_lowering/test29.out: -------------------------------------------------------------------------------- 1 | 2 2 | 3 3 | -------------------------------------------------------------------------------- /backend.native/tests/codegen/controlflow/for_loops_lowering/test30.out: -------------------------------------------------------------------------------- 1 | 2 2 | 0 3 | -------------------------------------------------------------------------------- /backend.native/tests/codegen/controlflow/for_loops_lowering/test31.out: -------------------------------------------------------------------------------- 1 | 7 2 | 7 3 | 6 4 | 7 5 | -------------------------------------------------------------------------------- /backend.native/tests/codegen/controlflow/for_loops_lowering/test32.out: -------------------------------------------------------------------------------- 1 | 7 2 | 2 3 | 6 4 | 7 5 | 0 6 | 4 7 | -------------------------------------------------------------------------------- /backend.native/tests/codegen/controlflow/for_loops_lowering/test33.out: -------------------------------------------------------------------------------- 1 | 7 2 | 2 3 | 7 4 | 4 5 | -------------------------------------------------------------------------------- /backend.native/tests/codegen/controlflow/for_loops_lowering/test4.out: -------------------------------------------------------------------------------- 1 | e 2 | f 3 | g 4 | h 5 | i 6 | j 7 | k 8 | -------------------------------------------------------------------------------- /backend.native/tests/codegen/controlflow/for_loops_lowering/test5.out: -------------------------------------------------------------------------------- 1 | e 2 | f 3 | g 4 | h 5 | i 6 | j 7 | -------------------------------------------------------------------------------- /backend.native/tests/codegen/controlflow/for_loops_lowering/test6.out: -------------------------------------------------------------------------------- 1 | e 2 | f 3 | g 4 | h 5 | i 6 | j 7 | k 8 | -------------------------------------------------------------------------------- /backend.native/tests/codegen/controlflow/for_loops_lowering/test7.out: -------------------------------------------------------------------------------- 1 | d 2 | f 3 | -------------------------------------------------------------------------------- /backend.native/tests/codegen/controlflow/for_loops_lowering/test8.out: -------------------------------------------------------------------------------- 1 | a 2 | c 3 | -------------------------------------------------------------------------------- /backend.native/tests/codegen/controlflow/for_loops_lowering/test9.out: -------------------------------------------------------------------------------- 1 | a 2 | c 3 | e 4 | -------------------------------------------------------------------------------- /backend.native/tests/codegen/coroutines/simple.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/coroutines/simple.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/cycles/cycle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/cycles/cycle.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/cycles/cycle_do.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/cycles/cycle_do.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/cycles/cycle_for.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/cycles/cycle_for.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/dataflow/scope1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/dataflow/scope1.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/enum/isFrozen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/enum/isFrozen.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/enum/linkTest_lib.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/enum/linkTest_lib.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/enum/loop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/enum/loop.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/enum/nested.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/enum/nested.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/enum/test0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/enum/test0.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/enum/test1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/enum/test1.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/enum/valueOf.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/enum/valueOf.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/enum/values.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/enum/values.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/enum/varargParam.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/enum/varargParam.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/function/boolean.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/function/boolean.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/function/defaults.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/function/defaults.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/function/eqeq.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/function/eqeq.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/function/extension.kt: -------------------------------------------------------------------------------- 1 | class B(val a: Int) 2 | 3 | fun B.foo() = this.a -------------------------------------------------------------------------------- /backend.native/tests/codegen/function/minus_eq.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/function/minus_eq.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/function/named.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/function/named.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/function/plus_eq.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/function/plus_eq.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/function/sum.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/function/sum.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/function/sum_func.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/function/sum_func.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/function/sum_imm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/function/sum_imm.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/inline/getClass.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/inline/getClass.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/inline/inline0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/inline/inline0.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/inline/inline1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/inline/inline1.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/inline/inline10.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/inline/inline10.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/inline/inline11.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/inline/inline11.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/inline/inline12.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/inline/inline12.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/inline/inline13.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/inline/inline13.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/inline/inline14.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/inline/inline14.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/inline/inline15.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/inline/inline15.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/inline/inline16.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/inline/inline16.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/inline/inline17.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/inline/inline17.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/inline/inline18.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/inline/inline18.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/inline/inline19.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/inline/inline19.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/inline/inline2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/inline/inline2.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/inline/inline20.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/inline/inline20.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/inline/inline21.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/inline/inline21.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/inline/inline22.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/inline/inline22.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/inline/inline23.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/inline/inline23.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/inline/inline24.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/inline/inline24.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/inline/inline25.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/inline/inline25.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/inline/inline26.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/inline/inline26.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/inline/inline3.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/inline/inline3.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/inline/inline4.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/inline/inline4.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/inline/inline5.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/inline/inline5.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/inline/inline6.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/inline/inline6.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/inline/inline7.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/inline/inline7.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/inline/inline8.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/inline/inline8.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/inline/inline9.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/inline/inline9.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/innerClass/simple.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/innerClass/simple.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/kclass/kclass0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/kclass/kclass0.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/kclass/kclass1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/kclass/kclass1.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/lambda/lambda1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/lambda/lambda1.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/lambda/lambda10.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/lambda/lambda10.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/lambda/lambda11.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/lambda/lambda11.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/lambda/lambda12.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/lambda/lambda12.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/lambda/lambda13.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/lambda/lambda13.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/lambda/lambda14.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/lambda/lambda14.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/lambda/lambda2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/lambda/lambda2.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/lambda/lambda3.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/lambda/lambda3.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/lambda/lambda4.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/lambda/lambda4.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/lambda/lambda5.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/lambda/lambda5.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/lambda/lambda6.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/lambda/lambda6.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/lambda/lambda7.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/lambda/lambda7.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/lambda/lambda8.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/lambda/lambda8.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/lambda/lambda9.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/lambda/lambda9.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/mpp/libmpp2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/mpp/libmpp2.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/mpp/mpp1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/mpp/mpp1.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/mpp/mpp2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/mpp/mpp2.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/object/fields.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/object/fields.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/object/fields1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/object/fields1.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/object/fields2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/object/fields2.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/object/init0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/object/init0.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/propertyCallableReference/linkTest_lib.kt: -------------------------------------------------------------------------------- 1 | package a 2 | 3 | class A(val x: Int) -------------------------------------------------------------------------------- /backend.native/tests/codegen/try/catch3.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/try/catch3.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/try/catch4.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/try/catch4.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/try/catch5.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/try/catch5.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/try/catch6.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/try/catch6.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/try/catch8.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/try/catch8.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/try/finally1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/try/finally1.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/try/finally10.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/try/finally10.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/try/finally11.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/try/finally11.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/try/finally2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/try/finally2.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/try/finally3.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/try/finally3.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/try/finally4.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/try/finally4.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/try/finally5.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/try/finally5.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/try/finally6.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/try/finally6.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/try/finally7.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/try/finally7.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/try/finally8.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/try/finally8.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/try/finally9.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/try/finally9.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/try/try1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/try/try1.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/try/try2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/try/try2.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/try/try3.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/try/try3.kt -------------------------------------------------------------------------------- /backend.native/tests/codegen/try/try4.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/codegen/try/try4.kt -------------------------------------------------------------------------------- /backend.native/tests/datagen/literals/listof1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/datagen/literals/listof1.kt -------------------------------------------------------------------------------- /backend.native/tests/datagen/rtti/vtable1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/datagen/rtti/vtable1.kt -------------------------------------------------------------------------------- /backend.native/tests/external/codegen/box/casts/asUnit.kt: -------------------------------------------------------------------------------- 1 | fun box() = if (4 as? Unit != null) "Fail" else "OK" -------------------------------------------------------------------------------- /backend.native/tests/external/codegen/box/primitiveTypes/intLiteralIsNotNull.kt: -------------------------------------------------------------------------------- 1 | fun box() = if (10!! == 10) "OK" else "fail" 2 | -------------------------------------------------------------------------------- /backend.native/tests/external/codegen/box/primitiveTypes/kt711.kt: -------------------------------------------------------------------------------- 1 | fun box() = if ((1 ?: 0) == 1) "OK" else "fail" 2 | -------------------------------------------------------------------------------- /backend.native/tests/framework/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/framework/main.swift -------------------------------------------------------------------------------- /backend.native/tests/framework/stdlib/stdlib.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/framework/stdlib/stdlib.kt -------------------------------------------------------------------------------- /backend.native/tests/framework/values/values.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/framework/values/values.kt -------------------------------------------------------------------------------- /backend.native/tests/helpers.kt: -------------------------------------------------------------------------------- 1 | package helpers -------------------------------------------------------------------------------- /backend.native/tests/interop/basics/0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/interop/basics/0.kt -------------------------------------------------------------------------------- /backend.native/tests/interop/basics/1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/interop/basics/1.kt -------------------------------------------------------------------------------- /backend.native/tests/interop/basics/2.kt: -------------------------------------------------------------------------------- 1 | import cstdio.* 2 | 3 | fun main(args: Array) { 4 | puts("Hello") 5 | } -------------------------------------------------------------------------------- /backend.native/tests/interop/basics/3.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/interop/basics/3.kt -------------------------------------------------------------------------------- /backend.native/tests/interop/basics/4.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/interop/basics/4.kt -------------------------------------------------------------------------------- /backend.native/tests/interop/basics/bf.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/interop/basics/bf.kt -------------------------------------------------------------------------------- /backend.native/tests/interop/basics/bitfields.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/interop/basics/bitfields.def -------------------------------------------------------------------------------- /backend.native/tests/interop/basics/cfunptr.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/interop/basics/cfunptr.def -------------------------------------------------------------------------------- /backend.native/tests/interop/basics/cglobals.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/interop/basics/cglobals.def -------------------------------------------------------------------------------- /backend.native/tests/interop/basics/cmacros.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/interop/basics/cmacros.def -------------------------------------------------------------------------------- /backend.native/tests/interop/basics/cstdio.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/interop/basics/cstdio.def -------------------------------------------------------------------------------- /backend.native/tests/interop/basics/funptr.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/interop/basics/funptr.kt -------------------------------------------------------------------------------- /backend.native/tests/interop/basics/globals.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/interop/basics/globals.kt -------------------------------------------------------------------------------- /backend.native/tests/interop/basics/macros.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/interop/basics/macros.kt -------------------------------------------------------------------------------- /backend.native/tests/interop/basics/sockets.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/interop/basics/sockets.def -------------------------------------------------------------------------------- /backend.native/tests/interop/libiconv.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/interop/libiconv.kt -------------------------------------------------------------------------------- /backend.native/tests/interop/objc/objcSmoke.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/interop/objc/objcSmoke.def -------------------------------------------------------------------------------- /backend.native/tests/interop/objc/smoke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/interop/objc/smoke.h -------------------------------------------------------------------------------- /backend.native/tests/interop/objc/smoke.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/interop/objc/smoke.kt -------------------------------------------------------------------------------- /backend.native/tests/interop/objc/smoke.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/interop/objc/smoke.m -------------------------------------------------------------------------------- /backend.native/tests/jsinterop/math.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/jsinterop/math.kt -------------------------------------------------------------------------------- /backend.native/tests/link/default/default.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/link/default/default.kt -------------------------------------------------------------------------------- /backend.native/tests/link/lib/foo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/link/lib/foo.kt -------------------------------------------------------------------------------- /backend.native/tests/link/lib/foo2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/link/lib/foo2.kt -------------------------------------------------------------------------------- /backend.native/tests/link/omit/hello.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/link/omit/hello.kt -------------------------------------------------------------------------------- /backend.native/tests/link/omit/lib.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/link/omit/lib.kt -------------------------------------------------------------------------------- /backend.native/tests/link/purge1/lib.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/link/purge1/lib.kt -------------------------------------------------------------------------------- /backend.native/tests/link/purge1/prog.kt: -------------------------------------------------------------------------------- 1 | 2 | fun main(args: Array) { 3 | foo() 4 | } 5 | -------------------------------------------------------------------------------- /backend.native/tests/link/src/bar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/link/src/bar.kt -------------------------------------------------------------------------------- /backend.native/tests/lower/tailrec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/lower/tailrec.kt -------------------------------------------------------------------------------- /backend.native/tests/lower/vararg.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/lower/vararg.kt -------------------------------------------------------------------------------- /backend.native/tests/lower/vararg_of_literals.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/lower/vararg_of_literals.kt -------------------------------------------------------------------------------- /backend.native/tests/mangling/mangling.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/mangling/mangling.kt -------------------------------------------------------------------------------- /backend.native/tests/mangling/manglinglib.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/mangling/manglinglib.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/basic/args0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/basic/args0.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/basic/assert_failed.kt: -------------------------------------------------------------------------------- 1 | fun main(args: Array) { 2 | assert(false) 3 | } -------------------------------------------------------------------------------- /backend.native/tests/runtime/basic/assert_passed.kt: -------------------------------------------------------------------------------- 1 | fun main(args: Array) { 2 | assert(true) 3 | } -------------------------------------------------------------------------------- /backend.native/tests/runtime/basic/driver0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/basic/driver0.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/basic/entry0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/basic/entry0.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/basic/entry1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/basic/entry1.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/basic/entry2.kt: -------------------------------------------------------------------------------- 1 | fun main(args: Array) { 2 | fail() 3 | } 4 | 5 | -------------------------------------------------------------------------------- /backend.native/tests/runtime/basic/exit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/basic/exit.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/basic/for0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/basic/for0.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/basic/hash0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/basic/hash0.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/basic/hello0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/basic/hello0.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/basic/hello1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/basic/hello1.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/basic/hello2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/basic/hello2.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/basic/hello3.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/basic/hello3.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/basic/hello4.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/basic/hello4.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/basic/ieee754.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/basic/ieee754.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/basic/interface0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/basic/interface0.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/basic/libentry2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/basic/libentry2.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/basic/readline0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/basic/readline0.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/basic/readline1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/basic/readline1.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/basic/standard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/basic/standard.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/basic/statements0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/basic/statements0.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/basic/throw0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/basic/throw0.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/basic/tostring0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/basic/tostring0.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/basic/tostring1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/basic/tostring1.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/basic/tostring2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/basic/tostring2.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/basic/tostring3.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/basic/tostring3.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/collections/sort0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/collections/sort0.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/collections/sort1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/collections/sort1.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/exceptions/catch1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/exceptions/catch1.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/exceptions/catch2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/exceptions/catch2.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/exceptions/catch7.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/exceptions/catch7.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/memory/basic0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/memory/basic0.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/memory/cycles0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/memory/cycles0.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/memory/escape0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/memory/escape0.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/memory/escape1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/memory/escape1.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/memory/escape2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/memory/escape2.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/memory/var1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/memory/var1.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/memory/var2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/memory/var2.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/memory/var3.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/memory/var3.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/memory/var4.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/memory/var4.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/memory/weak0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/memory/weak0.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/memory/weak1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/memory/weak1.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/text/chars0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/text/chars0.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/text/parse0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/text/parse0.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/text/string0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/text/string0.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/text/to_string0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/text/to_string0.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/text/trim.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/text/trim.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/text/utf8.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/text/utf8.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/workers/freeze0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/workers/freeze0.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/workers/freeze1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/workers/freeze1.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/workers/worker0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/workers/worker0.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/workers/worker1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/workers/worker1.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/workers/worker2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/workers/worker2.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/workers/worker3.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/workers/worker3.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/workers/worker4.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/workers/worker4.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/workers/worker5.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/workers/worker5.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/workers/worker6.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/workers/worker6.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/workers/worker7.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/workers/worker7.kt -------------------------------------------------------------------------------- /backend.native/tests/runtime/workers/worker8.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/runtime/workers/worker8.kt -------------------------------------------------------------------------------- /backend.native/tests/serialization/catch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/serialization/catch.kt -------------------------------------------------------------------------------- /backend.native/tests/serialization/do_while.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/serialization/do_while.kt -------------------------------------------------------------------------------- /backend.native/tests/serialization/prop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/serialization/prop.kt -------------------------------------------------------------------------------- /backend.native/tests/serialization/use.kt: -------------------------------------------------------------------------------- 1 | 2 | fun main(args: Array) { 3 | foo() 4 | } 5 | -------------------------------------------------------------------------------- /backend.native/tests/serialization/vararg.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/serialization/vararg.kt -------------------------------------------------------------------------------- /backend.native/tests/stdlib_external/testUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/stdlib_external/testUtils.kt -------------------------------------------------------------------------------- /backend.native/tests/teamcity-test.property: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/teamcity-test.property -------------------------------------------------------------------------------- /backend.native/tests/testUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/testUtils.kt -------------------------------------------------------------------------------- /backend.native/tests/testing/annotations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/testing/annotations.kt -------------------------------------------------------------------------------- /backend.native/tests/testing/assertions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/testing/assertions.kt -------------------------------------------------------------------------------- /backend.native/tests/testing/custom_main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/backend.native/tests/testing/custom_main.kt -------------------------------------------------------------------------------- /cmd/cinterop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/cmd/cinterop -------------------------------------------------------------------------------- /cmd/cinterop.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/cmd/cinterop.bat -------------------------------------------------------------------------------- /cmd/jsinterop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/cmd/jsinterop -------------------------------------------------------------------------------- /cmd/jsinterop.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/cmd/jsinterop.bat -------------------------------------------------------------------------------- /cmd/klib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/cmd/klib -------------------------------------------------------------------------------- /cmd/klib.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/cmd/klib.bat -------------------------------------------------------------------------------- /cmd/konanc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/cmd/konanc -------------------------------------------------------------------------------- /cmd/konanc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/cmd/konanc.bat -------------------------------------------------------------------------------- /cmd/kotlinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/cmd/kotlinc -------------------------------------------------------------------------------- /cmd/kotlinc-native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/cmd/kotlinc-native -------------------------------------------------------------------------------- /cmd/kotlinc-native.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/cmd/kotlinc-native.bat -------------------------------------------------------------------------------- /cmd/kotlinc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/cmd/kotlinc.bat -------------------------------------------------------------------------------- /cmd/run_konan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/cmd/run_konan -------------------------------------------------------------------------------- /cmd/run_konan.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/cmd/run_konan.bat -------------------------------------------------------------------------------- /common/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/common/build.gradle -------------------------------------------------------------------------------- /common/src/hash/cpp/Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/common/src/hash/cpp/Base64.cpp -------------------------------------------------------------------------------- /common/src/hash/cpp/City.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/common/src/hash/cpp/City.cpp -------------------------------------------------------------------------------- /common/src/hash/cpp/Names.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/common/src/hash/cpp/Names.cpp -------------------------------------------------------------------------------- /common/src/hash/cpp/Sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/common/src/hash/cpp/Sha1.cpp -------------------------------------------------------------------------------- /common/src/hash/headers/Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/common/src/hash/headers/Base64.h -------------------------------------------------------------------------------- /common/src/hash/headers/City.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/common/src/hash/headers/City.h -------------------------------------------------------------------------------- /common/src/hash/headers/Names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/common/src/hash/headers/Names.h -------------------------------------------------------------------------------- /common/src/hash/headers/Sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/common/src/hash/headers/Sha1.h -------------------------------------------------------------------------------- /contrib/binaryen.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/contrib/binaryen.diff -------------------------------------------------------------------------------- /dependencies/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/dependencies/build.gradle -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/kotlinGradlePlugin.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/gradle/kotlinGradlePlugin.gradle -------------------------------------------------------------------------------- /gradle/loadRootProperties.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/gradle/loadRootProperties.gradle -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/gradlew.bat -------------------------------------------------------------------------------- /klib/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/klib/build.gradle -------------------------------------------------------------------------------- /klib/src/test/testData/Accessors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/klib/src/test/testData/Accessors.kt -------------------------------------------------------------------------------- /klib/src/test/testData/Classes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/klib/src/test/testData/Classes.kt -------------------------------------------------------------------------------- /klib/src/test/testData/Constructors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/klib/src/test/testData/Constructors.kt -------------------------------------------------------------------------------- /klib/src/test/testData/Enum.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/klib/src/test/testData/Enum.kt -------------------------------------------------------------------------------- /klib/src/test/testData/FunctionModifiers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/klib/src/test/testData/FunctionModifiers.kt -------------------------------------------------------------------------------- /klib/src/test/testData/MethodModality.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/klib/src/test/testData/MethodModality.kt -------------------------------------------------------------------------------- /klib/src/test/testData/Objects.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/klib/src/test/testData/Objects.kt -------------------------------------------------------------------------------- /klib/src/test/testData/TopLevelFunctions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/klib/src/test/testData/TopLevelFunctions.kt -------------------------------------------------------------------------------- /konan/konan.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/konan/konan.properties -------------------------------------------------------------------------------- /konan/platforms/zephyr/stm32f4_disco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/konan/platforms/zephyr/stm32f4_disco -------------------------------------------------------------------------------- /libclangext/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/libclangext/build.gradle -------------------------------------------------------------------------------- /libclangext/src/main/cpp/ClangExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/libclangext/src/main/cpp/ClangExt.cpp -------------------------------------------------------------------------------- /libclangext/src/main/include/clang-c/ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/libclangext/src/main/include/clang-c/ext.h -------------------------------------------------------------------------------- /licenses/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/licenses/LICENSE.txt -------------------------------------------------------------------------------- /licenses/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/licenses/NOTICE.txt -------------------------------------------------------------------------------- /licenses/third_party/args4j_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/licenses/third_party/args4j_LICENSE.txt -------------------------------------------------------------------------------- /licenses/third_party/asm_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/licenses/third_party/asm_license.txt -------------------------------------------------------------------------------- /licenses/third_party/boost_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/licenses/third_party/boost_LICENSE.txt -------------------------------------------------------------------------------- /licenses/third_party/closure-compiler_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/licenses/third_party/closure-compiler_LICENSE.txt -------------------------------------------------------------------------------- /licenses/third_party/dart_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/licenses/third_party/dart_LICENSE.txt -------------------------------------------------------------------------------- /licenses/third_party/glibc_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/licenses/third_party/glibc_license.txt -------------------------------------------------------------------------------- /licenses/third_party/harmony_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/licenses/third_party/harmony_LICENSE.txt -------------------------------------------------------------------------------- /licenses/third_party/jshashtable_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/licenses/third_party/jshashtable_license.txt -------------------------------------------------------------------------------- /licenses/third_party/json_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/licenses/third_party/json_LICENSE.txt -------------------------------------------------------------------------------- /licenses/third_party/libffi_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/licenses/third_party/libffi_license.txt -------------------------------------------------------------------------------- /licenses/third_party/llvm_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/licenses/third_party/llvm_license.txt -------------------------------------------------------------------------------- /licenses/third_party/maven_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/licenses/third_party/maven_LICENSE.txt -------------------------------------------------------------------------------- /licenses/third_party/pcollections_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/licenses/third_party/pcollections_LICENSE.txt -------------------------------------------------------------------------------- /licenses/third_party/prototype_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/licenses/third_party/prototype_license.txt -------------------------------------------------------------------------------- /licenses/third_party/rhino_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/licenses/third_party/rhino_LICENSE.txt -------------------------------------------------------------------------------- /licenses/third_party/scala_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/licenses/third_party/scala_license.txt -------------------------------------------------------------------------------- /licenses/third_party/sdl_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/licenses/third_party/sdl_license.txt -------------------------------------------------------------------------------- /licenses/third_party/trove_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/licenses/third_party/trove_license.txt -------------------------------------------------------------------------------- /licenses/third_party/trove_readme_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/licenses/third_party/trove_readme_license.txt -------------------------------------------------------------------------------- /licenses/third_party/unicode_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/licenses/third_party/unicode_LICENSE.txt -------------------------------------------------------------------------------- /licenses/third_party/xcode_license.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/licenses/third_party/xcode_license.pdf -------------------------------------------------------------------------------- /licenses/third_party/zephyr_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/licenses/third_party/zephyr_LICENSE.txt -------------------------------------------------------------------------------- /llvmDebugInfoC/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/llvmDebugInfoC/build.gradle -------------------------------------------------------------------------------- /llvmDebugInfoC/src/dwarf/include/dwarf_util.kt.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/llvmDebugInfoC/src/dwarf/include/dwarf_util.kt.pp -------------------------------------------------------------------------------- /llvmDebugInfoC/src/main/cpp/DebugInfoC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/llvmDebugInfoC/src/main/cpp/DebugInfoC.cpp -------------------------------------------------------------------------------- /llvmDebugInfoC/src/main/include/DebugInfoC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/llvmDebugInfoC/src/main/include/DebugInfoC.h -------------------------------------------------------------------------------- /llvmDebugInfoC/src/scripts/konan_lldb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/llvmDebugInfoC/src/scripts/konan_lldb.py -------------------------------------------------------------------------------- /performance/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/performance/build.gradle -------------------------------------------------------------------------------- /performance/src/main/kotlin-jvm/cleanup.kt: -------------------------------------------------------------------------------- 1 | package org.jetbrains.ring 2 | 3 | fun cleanup() { } -------------------------------------------------------------------------------- /performance/src/main/kotlin-native/cleanup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/performance/src/main/kotlin-native/cleanup.kt -------------------------------------------------------------------------------- /performance/src/main/kotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/performance/src/main/kotlin/main.kt -------------------------------------------------------------------------------- /platformLibs/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/build.gradle -------------------------------------------------------------------------------- /platformLibs/src/platform/android/android.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/android/android.def -------------------------------------------------------------------------------- /platformLibs/src/platform/android/egl.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/android/egl.def -------------------------------------------------------------------------------- /platformLibs/src/platform/android/gles.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/android/gles.def -------------------------------------------------------------------------------- /platformLibs/src/platform/android/gles2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/android/gles2.def -------------------------------------------------------------------------------- /platformLibs/src/platform/android/gles3.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/android/gles3.def -------------------------------------------------------------------------------- /platformLibs/src/platform/android/glesCommon.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/android/glesCommon.def -------------------------------------------------------------------------------- /platformLibs/src/platform/android/linux.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/android/linux.def -------------------------------------------------------------------------------- /platformLibs/src/platform/android/media.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/android/media.def -------------------------------------------------------------------------------- /platformLibs/src/platform/android/omxal.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/android/omxal.def -------------------------------------------------------------------------------- /platformLibs/src/platform/android/posix.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/android/posix.def -------------------------------------------------------------------------------- /platformLibs/src/platform/android/sles.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/android/sles.def -------------------------------------------------------------------------------- /platformLibs/src/platform/android/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/android/zlib.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/AVFoundation.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/AVFoundation.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/AVKit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/AVKit.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/Accelerate.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/Accelerate.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/Accounts.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/Accounts.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/AdSupport.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/AdSupport.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/AddressBook.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/AddressBook.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/AddressBookUI.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/AddressBookUI.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/AssetsLibrary.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/AssetsLibrary.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/AudioToolbox.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/AudioToolbox.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/CFNetwork.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/CFNetwork.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/CallKit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/CallKit.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/CloudKit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/CloudKit.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/Contacts.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/Contacts.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/ContactsUI.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/ContactsUI.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/CoreAudio.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/CoreAudio.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/CoreAudioKit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/CoreAudioKit.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/CoreBluetooth.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/CoreBluetooth.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/CoreData.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/CoreData.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/CoreFoundation.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/CoreFoundation.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/CoreGraphics.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/CoreGraphics.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/CoreImage.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/CoreImage.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/CoreLocation.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/CoreLocation.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/CoreMIDI.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/CoreMIDI.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/CoreMedia.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/CoreMedia.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/CoreMotion.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/CoreMotion.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/CoreSpotlight.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/CoreSpotlight.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/CoreTelephony.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/CoreTelephony.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/CoreText.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/CoreText.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/CoreVideo.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/CoreVideo.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/EAGL.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/EAGL.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/EventKit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/EventKit.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/EventKitUI.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/EventKitUI.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/FileProvider.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/FileProvider.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/Foundation.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/Foundation.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/GLKit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/GLKit.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/GSS.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/GSS.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/GameController.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/GameController.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/GameKit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/GameKit.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/GameplayKit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/GameplayKit.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/HealthKit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/HealthKit.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/HealthKitUI.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/HealthKitUI.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/HomeKit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/HomeKit.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/IOSurface.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/IOSurface.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/ImageIO.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/ImageIO.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/Intents.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/Intents.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/IntentsUI.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/IntentsUI.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/MapKit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/MapKit.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/MediaPlayer.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/MediaPlayer.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/MediaToolbox.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/MediaToolbox.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/MessageUI.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/MessageUI.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/Messages.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/Messages.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/Metal.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/Metal.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/MetalKit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/MetalKit.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/ModelIO.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/ModelIO.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/NewsstandKit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/NewsstandKit.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/OpenAL.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/OpenAL.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/OpenGLES.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/OpenGLES.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/OpenGLES2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/OpenGLES2.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/OpenGLES3.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/OpenGLES3.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/OpenGLESCommon.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/OpenGLESCommon.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/PassKit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/PassKit.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/Photos.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/Photos.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/PhotosUI.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/PhotosUI.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/PushKit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/PushKit.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/QuartzCore.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/QuartzCore.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/QuickLook.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/QuickLook.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/ReplayKit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/ReplayKit.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/SafariServices.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/SafariServices.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/SceneKit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/SceneKit.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/Security.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/Security.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/Social.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/Social.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/Speech.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/Speech.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/SpriteKit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/SpriteKit.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/StoreKit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/StoreKit.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/Twitter.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/Twitter.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/UIKit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/UIKit.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/VideoToolbox.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/VideoToolbox.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/WatchKit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/WatchKit.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/WebKit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/WebKit.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/darwin.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/darwin.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/iAd.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/iAd.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/iconv.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/iconv.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/objc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/objc.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/posix.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/posix.def -------------------------------------------------------------------------------- /platformLibs/src/platform/ios/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/ios/zlib.def -------------------------------------------------------------------------------- /platformLibs/src/platform/linux/iconv.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/linux/iconv.def -------------------------------------------------------------------------------- /platformLibs/src/platform/linux/linux.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/linux/linux.def -------------------------------------------------------------------------------- /platformLibs/src/platform/linux/posix.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/linux/posix.def -------------------------------------------------------------------------------- /platformLibs/src/platform/linux/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/linux/zlib.def -------------------------------------------------------------------------------- /platformLibs/src/platform/mingw/gdiplus.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/mingw/gdiplus.def -------------------------------------------------------------------------------- /platformLibs/src/platform/mingw/opengl32.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/mingw/opengl32.def -------------------------------------------------------------------------------- /platformLibs/src/platform/mingw/posix.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/mingw/posix.def -------------------------------------------------------------------------------- /platformLibs/src/platform/mingw/windows.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/mingw/windows.def -------------------------------------------------------------------------------- /platformLibs/src/platform/osx/AppKit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/osx/AppKit.def -------------------------------------------------------------------------------- /platformLibs/src/platform/osx/CFNetwork.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/osx/CFNetwork.def -------------------------------------------------------------------------------- /platformLibs/src/platform/osx/CoreData.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/osx/CoreData.def -------------------------------------------------------------------------------- /platformLibs/src/platform/osx/CoreFoundation.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/osx/CoreFoundation.def -------------------------------------------------------------------------------- /platformLibs/src/platform/osx/CoreGraphics.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/osx/CoreGraphics.def -------------------------------------------------------------------------------- /platformLibs/src/platform/osx/CoreImage.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/osx/CoreImage.def -------------------------------------------------------------------------------- /platformLibs/src/platform/osx/CoreServices.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/osx/CoreServices.def -------------------------------------------------------------------------------- /platformLibs/src/platform/osx/CoreText.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/osx/CoreText.def -------------------------------------------------------------------------------- /platformLibs/src/platform/osx/CoreVideo.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/osx/CoreVideo.def -------------------------------------------------------------------------------- /platformLibs/src/platform/osx/Foundation.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/osx/Foundation.def -------------------------------------------------------------------------------- /platformLibs/src/platform/osx/GLUT.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/osx/GLUT.def -------------------------------------------------------------------------------- /platformLibs/src/platform/osx/IOKit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/osx/IOKit.def -------------------------------------------------------------------------------- /platformLibs/src/platform/osx/IOSurface.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/osx/IOSurface.def -------------------------------------------------------------------------------- /platformLibs/src/platform/osx/ImageIO.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/osx/ImageIO.def -------------------------------------------------------------------------------- /platformLibs/src/platform/osx/Metal.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/osx/Metal.def -------------------------------------------------------------------------------- /platformLibs/src/platform/osx/OpenGL.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/osx/OpenGL.def -------------------------------------------------------------------------------- /platformLibs/src/platform/osx/OpenGL3.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/osx/OpenGL3.def -------------------------------------------------------------------------------- /platformLibs/src/platform/osx/OpenGLCommon.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/osx/OpenGLCommon.def -------------------------------------------------------------------------------- /platformLibs/src/platform/osx/QuartzCore.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/osx/QuartzCore.def -------------------------------------------------------------------------------- /platformLibs/src/platform/osx/Security.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/osx/Security.def -------------------------------------------------------------------------------- /platformLibs/src/platform/osx/darwin.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/osx/darwin.def -------------------------------------------------------------------------------- /platformLibs/src/platform/osx/iconv.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/osx/iconv.def -------------------------------------------------------------------------------- /platformLibs/src/platform/osx/libkern.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/osx/libkern.def -------------------------------------------------------------------------------- /platformLibs/src/platform/osx/objc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/osx/objc.def -------------------------------------------------------------------------------- /platformLibs/src/platform/osx/osx.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/osx/osx.def -------------------------------------------------------------------------------- /platformLibs/src/platform/osx/posix.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/osx/posix.def -------------------------------------------------------------------------------- /platformLibs/src/platform/osx/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/platformLibs/src/platform/osx/zlib.def -------------------------------------------------------------------------------- /runtime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/build.gradle -------------------------------------------------------------------------------- /runtime/src/launcher/cpp/androidLauncher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/launcher/cpp/androidLauncher.cpp -------------------------------------------------------------------------------- /runtime/src/launcher/cpp/androidLauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/launcher/cpp/androidLauncher.h -------------------------------------------------------------------------------- /runtime/src/launcher/cpp/launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/launcher/cpp/launcher.cpp -------------------------------------------------------------------------------- /runtime/src/launcher/js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/launcher/js/index.html -------------------------------------------------------------------------------- /runtime/src/launcher/js/launcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/launcher/js/launcher.js -------------------------------------------------------------------------------- /runtime/src/launcher/kotlin/konan/start.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/launcher/kotlin/konan/start.kt -------------------------------------------------------------------------------- /runtime/src/main/cpp/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/Alloc.h -------------------------------------------------------------------------------- /runtime/src/main/cpp/Arrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/Arrays.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/Assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/Assert.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/Assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/Assert.h -------------------------------------------------------------------------------- /runtime/src/main/cpp/Atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/Atomic.h -------------------------------------------------------------------------------- /runtime/src/main/cpp/Boxing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/Boxing.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/Common.h -------------------------------------------------------------------------------- /runtime/src/main/cpp/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/Console.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/DoubleConversions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/DoubleConversions.h -------------------------------------------------------------------------------- /runtime/src/main/cpp/Exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/Exceptions.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/Exceptions.h -------------------------------------------------------------------------------- /runtime/src/main/cpp/ExecFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/ExecFormat.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/ExecFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/ExecFormat.h -------------------------------------------------------------------------------- /runtime/src/main/cpp/Interop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/Interop.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/JSInterop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/JSInterop.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/KDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/KDebug.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/KDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/KDebug.h -------------------------------------------------------------------------------- /runtime/src/main/cpp/KString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/KString.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/KString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/KString.h -------------------------------------------------------------------------------- /runtime/src/main/cpp/KotlinMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/KotlinMath.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/KotlinMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/KotlinMath.h -------------------------------------------------------------------------------- /runtime/src/main/cpp/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/Memory.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/Memory.h -------------------------------------------------------------------------------- /runtime/src/main/cpp/MemoryPrivate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/MemoryPrivate.hpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/Natives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/Natives.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/Natives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/Natives.h -------------------------------------------------------------------------------- /runtime/src/main/cpp/ObjCExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/ObjCExport.h -------------------------------------------------------------------------------- /runtime/src/main/cpp/ObjCExport.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/ObjCExport.mm -------------------------------------------------------------------------------- /runtime/src/main/cpp/ObjCExportCollections.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/ObjCExportCollections.mm -------------------------------------------------------------------------------- /runtime/src/main/cpp/ObjCExportErrors.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/ObjCExportErrors.mm -------------------------------------------------------------------------------- /runtime/src/main/cpp/ObjCInterop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/ObjCInterop.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/ObjCInteropUtils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/ObjCInteropUtils.mm -------------------------------------------------------------------------------- /runtime/src/main/cpp/Operator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/Operator.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/Porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/Porting.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/Porting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/Porting.h -------------------------------------------------------------------------------- /runtime/src/main/cpp/Regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/Regex.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/ReturnSlot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/ReturnSlot.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/ReturnSlot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/ReturnSlot.h -------------------------------------------------------------------------------- /runtime/src/main/cpp/Runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/Runtime.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/Runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/Runtime.h -------------------------------------------------------------------------------- /runtime/src/main/cpp/StdCppStubs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/StdCppStubs.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/Time.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/ToString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/ToString.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/TypeInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/TypeInfo.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/TypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/TypeInfo.h -------------------------------------------------------------------------------- /runtime/src/main/cpp/Types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/Types.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/Types.h -------------------------------------------------------------------------------- /runtime/src/main/cpp/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/Utils.h -------------------------------------------------------------------------------- /runtime/src/main/cpp/Weak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/Weak.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/Worker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/Worker.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/dlmalloc/malloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/dlmalloc/malloc.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/dtoa/cbigint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/dtoa/cbigint.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/dtoa/cbigint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/dtoa/cbigint.h -------------------------------------------------------------------------------- /runtime/src/main/cpp/dtoa/dblparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/dtoa/dblparse.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/dtoa/fltconst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/dtoa/fltconst.h -------------------------------------------------------------------------------- /runtime/src/main/cpp/dtoa/fltparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/dtoa/fltparse.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/dtoa/hycomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/dtoa/hycomp.h -------------------------------------------------------------------------------- /runtime/src/main/cpp/math/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/math/COPYRIGHT -------------------------------------------------------------------------------- /runtime/src/main/cpp/math/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/math/endian.h -------------------------------------------------------------------------------- /runtime/src/main/cpp/math/fmod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/math/fmod.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/math/fmodf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/math/fmodf.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/math/libm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/math/libm.h -------------------------------------------------------------------------------- /runtime/src/main/cpp/math/scalbn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/math/scalbn.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/snprintf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/snprintf/AUTHORS -------------------------------------------------------------------------------- /runtime/src/main/cpp/snprintf/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/snprintf/COPYING -------------------------------------------------------------------------------- /runtime/src/main/cpp/snprintf/snprintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/snprintf/snprintf.cpp -------------------------------------------------------------------------------- /runtime/src/main/cpp/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/utf8.h -------------------------------------------------------------------------------- /runtime/src/main/cpp/utf8/checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/utf8/checked.h -------------------------------------------------------------------------------- /runtime/src/main/cpp/utf8/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/utf8/core.h -------------------------------------------------------------------------------- /runtime/src/main/cpp/utf8/unchecked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/utf8/unchecked.h -------------------------------------------------------------------------------- /runtime/src/main/cpp/utf8/with_replacement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/cpp/utf8/with_replacement.h -------------------------------------------------------------------------------- /runtime/src/main/js/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/js/math.js -------------------------------------------------------------------------------- /runtime/src/main/kotlin/konan/Annotations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/konan/Annotations.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/konan/BinaryBlob.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/konan/BinaryBlob.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/konan/TypedArrays.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/konan/TypedArrays.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/konan/concurrent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/konan/concurrent.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/konan/internal/Char.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/konan/internal/Char.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/konan/internal/GC.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/konan/internal/GC.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/konan/internal/Ref.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/konan/internal/Ref.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/konan/ref/Weak.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/konan/ref/Weak.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/konan/runtime.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/konan/runtime.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/konan/test/Launcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/konan/test/Launcher.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/konan/test/TestSuite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/konan/test/TestSuite.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/konan/worker/Future.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/konan/worker/Future.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/konan/worker/Worker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/konan/worker/Worker.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/Annotation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/Annotation.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/Annotations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/Annotations.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/Any.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/Any.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/Array.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/Array.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/Arrays.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/Arrays.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/Assertions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/Assertions.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/BitSet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/BitSet.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/Boolean.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/Boolean.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/Char.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/Char.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/CharSequence.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/CharSequence.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/Comparable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/Comparable.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/Enum.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/Enum.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/Exceptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/Exceptions.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/Experimental.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/Experimental.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/Function.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/Function.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/Functions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/Functions.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/KotlinVersion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/KotlinVersion.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/Lazy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/Lazy.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/Nothing.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/Nothing.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/Number.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/Number.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/Numbers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/Numbers.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/Primitives.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/Primitives.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/String.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/String.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/Throwable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/Throwable.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/Unit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/Unit.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/io/Console.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/io/Console.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/math/math.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/math/math.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/ranges/Range.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/ranges/Range.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/ranges/Ranges.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/ranges/Ranges.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/system/Timing.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/system/Timing.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/test/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/test/Utils.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/text/Char.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/text/Char.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/text/Indent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/text/Indent.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/text/Regex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/text/Regex.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/text/Strings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/text/Strings.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/util/Lateinit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/util/Lateinit.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/util/Sort.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/util/Sort.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/util/Standard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/util/Standard.kt -------------------------------------------------------------------------------- /runtime/src/main/kotlin/kotlin/util/Tuples.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/runtime/src/main/kotlin/kotlin/util/Tuples.kt -------------------------------------------------------------------------------- /samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/README.md -------------------------------------------------------------------------------- /samples/androidNativeActivity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/androidNativeActivity/README.md -------------------------------------------------------------------------------- /samples/androidNativeActivity/android.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/androidNativeActivity/android.def -------------------------------------------------------------------------------- /samples/androidNativeActivity/androidLauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/androidNativeActivity/androidLauncher.h -------------------------------------------------------------------------------- /samples/androidNativeActivity/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/androidNativeActivity/build.gradle -------------------------------------------------------------------------------- /samples/androidNativeActivity/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/androidNativeActivity/gradle.properties -------------------------------------------------------------------------------- /samples/androidNativeActivity/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/androidNativeActivity/settings.gradle -------------------------------------------------------------------------------- /samples/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/build.gradle -------------------------------------------------------------------------------- /samples/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/build.sh -------------------------------------------------------------------------------- /samples/calculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/calculator/README.md -------------------------------------------------------------------------------- /samples/calculator/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/calculator/android/build.gradle -------------------------------------------------------------------------------- /samples/calculator/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/calculator/build.gradle -------------------------------------------------------------------------------- /samples/calculator/common/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/calculator/common/build.gradle -------------------------------------------------------------------------------- /samples/calculator/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/calculator/gradle.properties -------------------------------------------------------------------------------- /samples/calculator/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/calculator/gradlew -------------------------------------------------------------------------------- /samples/calculator/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/calculator/gradlew.bat -------------------------------------------------------------------------------- /samples/calculator/ios/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/calculator/ios/build.gradle -------------------------------------------------------------------------------- /samples/calculator/ios/calculator/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/calculator/ios/calculator/Info.plist -------------------------------------------------------------------------------- /samples/calculator/jvm/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/calculator/jvm/build.gradle -------------------------------------------------------------------------------- /samples/calculator/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/calculator/settings.gradle -------------------------------------------------------------------------------- /samples/csvparser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/csvparser/README.md -------------------------------------------------------------------------------- /samples/csvparser/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/csvparser/build.bat -------------------------------------------------------------------------------- /samples/csvparser/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/csvparser/build.gradle -------------------------------------------------------------------------------- /samples/csvparser/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/csvparser/build.sh -------------------------------------------------------------------------------- /samples/csvparser/gradle.properties: -------------------------------------------------------------------------------- 1 | runArgs=./European_Mammals_Red_List_Nov_2009.csv 4 100 -------------------------------------------------------------------------------- /samples/csvparser/src/main/kotlin/CsvParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/csvparser/src/main/kotlin/CsvParser.kt -------------------------------------------------------------------------------- /samples/curl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/curl/README.md -------------------------------------------------------------------------------- /samples/curl/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/curl/build.gradle -------------------------------------------------------------------------------- /samples/curl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/curl/build.sh -------------------------------------------------------------------------------- /samples/curl/gradle.properties: -------------------------------------------------------------------------------- 1 | runArgs=https://www.jetbrains.com -------------------------------------------------------------------------------- /samples/curl/libcurl.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/curl/libcurl.iml -------------------------------------------------------------------------------- /samples/curl/src/main/kotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/curl/src/main/kotlin/main.kt -------------------------------------------------------------------------------- /samples/gitchurn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/gitchurn/README.md -------------------------------------------------------------------------------- /samples/gitchurn/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/gitchurn/build.gradle -------------------------------------------------------------------------------- /samples/gitchurn/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/gitchurn/build.sh -------------------------------------------------------------------------------- /samples/gitchurn/gradle.properties: -------------------------------------------------------------------------------- 1 | runArgs=../../ -------------------------------------------------------------------------------- /samples/gitchurn/src/main/c_interop/libgit2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/gitchurn/src/main/c_interop/libgit2.def -------------------------------------------------------------------------------- /samples/gitchurn/src/main/kotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/gitchurn/src/main/kotlin/main.kt -------------------------------------------------------------------------------- /samples/globalState/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/globalState/README.md -------------------------------------------------------------------------------- /samples/globalState/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/globalState/build.gradle -------------------------------------------------------------------------------- /samples/globalState/src/main/kotlin/Global.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/globalState/src/main/kotlin/Global.kt -------------------------------------------------------------------------------- /samples/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/gradle.properties -------------------------------------------------------------------------------- /samples/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /samples/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/gradlew -------------------------------------------------------------------------------- /samples/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/gradlew.bat -------------------------------------------------------------------------------- /samples/gtk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/gtk/README.md -------------------------------------------------------------------------------- /samples/gtk/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/gtk/build.gradle -------------------------------------------------------------------------------- /samples/gtk/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/gtk/build.sh -------------------------------------------------------------------------------- /samples/gtk/src/main/c_interop/gtk3.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/gtk/src/main/c_interop/gtk3.def -------------------------------------------------------------------------------- /samples/gtk/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/gtk/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /samples/html5Canvas/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/html5Canvas/build.bat -------------------------------------------------------------------------------- /samples/html5Canvas/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/html5Canvas/build.sh -------------------------------------------------------------------------------- /samples/html5Canvas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/html5Canvas/index.html -------------------------------------------------------------------------------- /samples/html5Canvas/src/main/kotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/html5Canvas/src/main/kotlin/main.kt -------------------------------------------------------------------------------- /samples/konan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/konan.sh -------------------------------------------------------------------------------- /samples/libcurl/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/libcurl/build.gradle -------------------------------------------------------------------------------- /samples/libcurl/gradle.properties: -------------------------------------------------------------------------------- 1 | runArgs=https://www.jetbrains.com -------------------------------------------------------------------------------- /samples/libcurl/src/main/c_interop/libcurl.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/libcurl/src/main/c_interop/libcurl.def -------------------------------------------------------------------------------- /samples/nonBlockingEchoServer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/nonBlockingEchoServer/README.md -------------------------------------------------------------------------------- /samples/nonBlockingEchoServer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/nonBlockingEchoServer/build.gradle -------------------------------------------------------------------------------- /samples/nonBlockingEchoServer/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/nonBlockingEchoServer/build.sh -------------------------------------------------------------------------------- /samples/nonBlockingEchoServer/gradle.properties: -------------------------------------------------------------------------------- 1 | runArgs=3000 -------------------------------------------------------------------------------- /samples/objc/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/objc/build.gradle -------------------------------------------------------------------------------- /samples/objc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/objc/build.sh -------------------------------------------------------------------------------- /samples/objc/src/main/kotlin/Window.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/objc/src/main/kotlin/Window.kt -------------------------------------------------------------------------------- /samples/opengl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/opengl/README.md -------------------------------------------------------------------------------- /samples/opengl/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/opengl/build.gradle -------------------------------------------------------------------------------- /samples/opengl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/opengl/build.sh -------------------------------------------------------------------------------- /samples/opengl/src/main/kotlin/OpenGlTeapot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/opengl/src/main/kotlin/OpenGlTeapot.kt -------------------------------------------------------------------------------- /samples/python_extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/python_extension/README.md -------------------------------------------------------------------------------- /samples/python_extension/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/python_extension/build.bat -------------------------------------------------------------------------------- /samples/python_extension/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/python_extension/build.sh -------------------------------------------------------------------------------- /samples/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/settings.gradle -------------------------------------------------------------------------------- /samples/socket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/socket/README.md -------------------------------------------------------------------------------- /samples/socket/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/socket/build.gradle -------------------------------------------------------------------------------- /samples/socket/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/socket/build.sh -------------------------------------------------------------------------------- /samples/socket/gradle.properties: -------------------------------------------------------------------------------- 1 | runArgs=3000 -------------------------------------------------------------------------------- /samples/socket/src/main/kotlin/EchoServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/socket/src/main/kotlin/EchoServer.kt -------------------------------------------------------------------------------- /samples/tensorflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/tensorflow/README.md -------------------------------------------------------------------------------- /samples/tensorflow/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/tensorflow/build.gradle -------------------------------------------------------------------------------- /samples/tensorflow/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/tensorflow/build.sh -------------------------------------------------------------------------------- /samples/tensorflow/downloadTensorflow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/tensorflow/downloadTensorflow.sh -------------------------------------------------------------------------------- /samples/tensorflow/src/main/c_interop/tensorflow.def: -------------------------------------------------------------------------------- 1 | headers = tensorflow/c/c_api.h 2 | -------------------------------------------------------------------------------- /samples/tetris/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/tetris/README.md -------------------------------------------------------------------------------- /samples/tetris/Tetris.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/tetris/Tetris.rc -------------------------------------------------------------------------------- /samples/tetris/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/tetris/build.bat -------------------------------------------------------------------------------- /samples/tetris/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/tetris/build.gradle -------------------------------------------------------------------------------- /samples/tetris/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/tetris/build.sh -------------------------------------------------------------------------------- /samples/tetris/src/main/c_interop/sdl.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/tetris/src/main/c_interop/sdl.def -------------------------------------------------------------------------------- /samples/tetris/src/main/kotlin/Tetris.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/tetris/src/main/kotlin/Tetris.kt -------------------------------------------------------------------------------- /samples/tetris/src/main/resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/tetris/src/main/resources/Info.plist -------------------------------------------------------------------------------- /samples/torch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/torch/README.md -------------------------------------------------------------------------------- /samples/torch/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/torch/build.gradle -------------------------------------------------------------------------------- /samples/torch/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/torch/build.sh -------------------------------------------------------------------------------- /samples/torch/downloadMNIST.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/torch/downloadMNIST.sh -------------------------------------------------------------------------------- /samples/torch/downloadTorch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/torch/downloadTorch.sh -------------------------------------------------------------------------------- /samples/torch/src/main/c_interop/torch.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/torch/src/main/c_interop/torch.def -------------------------------------------------------------------------------- /samples/torch/src/main/kotlin/ClassifierDemo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/torch/src/main/kotlin/ClassifierDemo.kt -------------------------------------------------------------------------------- /samples/torch/src/main/kotlin/Dataset.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/torch/src/main/kotlin/Dataset.kt -------------------------------------------------------------------------------- /samples/torch/src/main/kotlin/Disposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/torch/src/main/kotlin/Disposable.kt -------------------------------------------------------------------------------- /samples/torch/src/main/kotlin/Modules.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/torch/src/main/kotlin/Modules.kt -------------------------------------------------------------------------------- /samples/torch/src/main/kotlin/SmallDemos.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/torch/src/main/kotlin/SmallDemos.kt -------------------------------------------------------------------------------- /samples/torch/src/main/kotlin/Tensors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/torch/src/main/kotlin/Tensors.kt -------------------------------------------------------------------------------- /samples/uikit/.gitignore: -------------------------------------------------------------------------------- 1 | xcuserdata 2 | -------------------------------------------------------------------------------- /samples/uikit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/uikit/README.md -------------------------------------------------------------------------------- /samples/uikit/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/uikit/build.gradle -------------------------------------------------------------------------------- /samples/uikit/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/uikit/build.sh -------------------------------------------------------------------------------- /samples/uikit/konan.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/uikit/konan.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/uikit/konan/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/uikit/konan/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /samples/uikit/konan/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/uikit/konan/Info.plist -------------------------------------------------------------------------------- /samples/uikit/src/main/kotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/uikit/src/main/kotlin/main.kt -------------------------------------------------------------------------------- /samples/videoplayer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/videoplayer/README.md -------------------------------------------------------------------------------- /samples/videoplayer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/videoplayer/build.gradle -------------------------------------------------------------------------------- /samples/videoplayer/src/main/c_interop/sdl.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/videoplayer/src/main/c_interop/sdl.def -------------------------------------------------------------------------------- /samples/videoplayer/src/main/kotlin/Queue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/videoplayer/src/main/kotlin/Queue.kt -------------------------------------------------------------------------------- /samples/videoplayer/src/main/kotlin/SDLAudio.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/videoplayer/src/main/kotlin/SDLAudio.kt -------------------------------------------------------------------------------- /samples/videoplayer/src/main/kotlin/SDLInput.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/videoplayer/src/main/kotlin/SDLInput.kt -------------------------------------------------------------------------------- /samples/videoplayer/src/main/kotlin/SDLVideo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/videoplayer/src/main/kotlin/SDLVideo.kt -------------------------------------------------------------------------------- /samples/win32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/win32/README.md -------------------------------------------------------------------------------- /samples/win32/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/win32/build.bat -------------------------------------------------------------------------------- /samples/win32/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/win32/build.gradle -------------------------------------------------------------------------------- /samples/win32/src/main/kotlin/MessageBox.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/win32/src/main/kotlin/MessageBox.kt -------------------------------------------------------------------------------- /samples/workers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/workers/README.md -------------------------------------------------------------------------------- /samples/workers/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/workers/build.gradle -------------------------------------------------------------------------------- /samples/workers/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/workers/build.sh -------------------------------------------------------------------------------- /samples/workers/src/main/kotlin/Workers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/workers/src/main/kotlin/Workers.kt -------------------------------------------------------------------------------- /samples/zephyr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/zephyr/CMakeLists.txt -------------------------------------------------------------------------------- /samples/zephyr/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/zephyr/build.bat -------------------------------------------------------------------------------- /samples/zephyr/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/zephyr/build.sh -------------------------------------------------------------------------------- /samples/zephyr/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/zephyr/prj.conf -------------------------------------------------------------------------------- /samples/zephyr/src/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/samples/zephyr/src/main.kt -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/settings.gradle -------------------------------------------------------------------------------- /shared/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/shared/build.gradle -------------------------------------------------------------------------------- /shared/buildSrc/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/shared/buildSrc/build.gradle -------------------------------------------------------------------------------- /shared/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "kotlin-native-shared" -------------------------------------------------------------------------------- /tools/kotlin-native-gradle-plugin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/tools/kotlin-native-gradle-plugin/build.gradle -------------------------------------------------------------------------------- /tools/publish-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/tools/publish-release.sh -------------------------------------------------------------------------------- /tools/scripts/update_xcode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/tools/scripts/update_xcode.sh -------------------------------------------------------------------------------- /utilities/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/utilities/build.gradle -------------------------------------------------------------------------------- /utilities/env_blacklist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mano7onam/kotlin-native/HEAD/utilities/env_blacklist --------------------------------------------------------------------------------