├── .github └── workflows │ ├── ci.yml │ ├── gradle-plugin.yml │ └── package-lock.yml ├── .gitignore ├── .idea └── codeInsightSettings.xml ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── isolated-test ├── .gitignore ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle.kts └── src │ ├── jsMain │ └── kotlin │ │ └── com │ │ └── test │ │ └── example │ │ ├── Align.kt │ │ ├── CustomAlign.kt │ │ ├── GraphItemType.kt │ │ ├── LayoutOrientation.kt │ │ └── NodeFilter.kt │ └── jsTest │ └── kotlin │ └── com │ └── test │ └── example │ ├── AlignTest.kt │ ├── Assert.kt │ ├── CustomAlignTest.kt │ ├── GraphItemTypeTest.kt │ ├── LayoutOrientationTest.kt │ └── NodeFilterTest.kt ├── seskar ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── package-lock.json ├── release ├── seskar-compiler-plugin │ ├── build.gradle.kts │ ├── gradle.properties │ └── src │ │ └── main │ │ ├── kotlin │ │ └── seskar │ │ │ └── compiler │ │ │ ├── common │ │ │ ├── backend │ │ │ │ ├── BigInt.kt │ │ │ │ ├── Ir.kt │ │ │ │ ├── IrFunction.ext.kt │ │ │ │ ├── IrProperty.ext.kt │ │ │ │ ├── JsAnnotations.kt │ │ │ │ ├── SeskarPluginKey.kt │ │ │ │ └── isReallyExternal.kt │ │ │ └── extensions │ │ │ │ └── JsCompilerPluginRegistrar.kt │ │ │ ├── event │ │ │ ├── backend │ │ │ │ ├── EventTransformer.kt │ │ │ │ └── JsEvent.kt │ │ │ └── extensions │ │ │ │ ├── EventRegistrar.kt │ │ │ │ └── EventTransformExtension.kt │ │ │ ├── jsany │ │ │ └── extensions │ │ │ │ ├── JsAnyExtensionRegistrar.kt │ │ │ │ ├── JsAnyPluginRegistrar.kt │ │ │ │ └── JsAnySupertypeGenerationExtension.kt │ │ │ ├── lazy │ │ │ ├── backend │ │ │ │ ├── Lazy.kt │ │ │ │ └── LazyModuleTransformer.kt │ │ │ └── extensions │ │ │ │ ├── LazyModuleExtension.kt │ │ │ │ └── LazyModuleRegistrar.kt │ │ │ ├── mixin │ │ │ ├── backend │ │ │ │ ├── JsMixin.kt │ │ │ │ └── MixinTransformer.kt │ │ │ └── extensions │ │ │ │ ├── MixinRegistrar.kt │ │ │ │ └── MixinTransformExtension.kt │ │ │ ├── native │ │ │ ├── backend │ │ │ │ ├── JsNative.kt │ │ │ │ └── NativeTransformer.kt │ │ │ └── extensions │ │ │ │ ├── NativeRegistrar.kt │ │ │ │ └── NativeTransformExtension.kt │ │ │ ├── react │ │ │ ├── displayname │ │ │ │ └── backend │ │ │ │ │ └── withDisplayName.kt │ │ │ ├── key │ │ │ │ ├── backend │ │ │ │ │ ├── DefaultKeyTransformer.kt │ │ │ │ │ └── KeyProvider.kt │ │ │ │ └── extensions │ │ │ │ │ ├── DefaultKeyExtension.kt │ │ │ │ │ └── DefaultKeyRegistrar.kt │ │ │ ├── memo │ │ │ │ ├── backend │ │ │ │ │ └── MemoTransformer.kt │ │ │ │ └── extensions │ │ │ │ │ ├── MemoRegistrar.kt │ │ │ │ │ └── MemoTransformExtension.kt │ │ │ └── value │ │ │ │ ├── backend │ │ │ │ ├── Dependencies.kt │ │ │ │ ├── Duration.kt │ │ │ │ ├── Hooks.kt │ │ │ │ ├── JsValue.kt │ │ │ │ ├── ValueChecker.kt │ │ │ │ ├── ValueClass.kt │ │ │ │ └── ValueTransformer.kt │ │ │ │ └── extensions │ │ │ │ ├── ValueRegistrar.kt │ │ │ │ └── ValueTransformExtension.kt │ │ │ ├── serviceworker │ │ │ ├── backend │ │ │ │ ├── ServiceWorkerModule.kt │ │ │ │ └── ServiceWorkerTransformer.kt │ │ │ └── extensions │ │ │ │ ├── ServiceWorkerExtension.kt │ │ │ │ └── ServiceWorkerRegistrar.kt │ │ │ ├── suspend │ │ │ ├── backend │ │ │ │ ├── AsyncOptions.kt │ │ │ │ ├── ExternalSuspendTransformer.kt │ │ │ │ ├── findAsyncFunctionSymbol.kt │ │ │ │ └── getAsyncOptions.kt │ │ │ └── extensions │ │ │ │ ├── ExternalSuspendRegistrar.kt │ │ │ │ └── ExternalSuspendTransformExtension.kt │ │ │ ├── value │ │ │ ├── backend │ │ │ │ ├── JsValue.kt │ │ │ │ ├── Value.kt │ │ │ │ └── ValueTransformer.kt │ │ │ └── extensions │ │ │ │ ├── ValueRegistrar.kt │ │ │ │ └── ValueTransformExtension.kt │ │ │ ├── workers │ │ │ ├── backend │ │ │ │ ├── WorkerFactory.kt │ │ │ │ └── WorkerFactoryTransformer.kt │ │ │ └── extensions │ │ │ │ ├── WorkerFactoryExtension.kt │ │ │ │ └── WorkerFactoryRegistrar.kt │ │ │ └── worklets │ │ │ ├── backend │ │ │ ├── WorkletModule.kt │ │ │ └── WorkletTransformer.kt │ │ │ └── extensions │ │ │ ├── WorkletExtension.kt │ │ │ └── WorkletRegistrar.kt │ │ └── resources │ │ └── META-INF │ │ └── services │ │ └── org.jetbrains.kotlin.compiler.plugin.CompilerPluginRegistrar ├── seskar-core │ ├── build.gradle.kts │ ├── gradle.properties │ └── src │ │ ├── commonMain │ │ └── kotlin │ │ │ └── seskar │ │ │ └── js │ │ │ ├── JsAsync.kt │ │ │ ├── JsMixin.kt │ │ │ ├── JsRawValue.kt │ │ │ ├── JsValue.kt │ │ │ └── internal │ │ │ ├── JsNativeGetterInternal.kt │ │ │ ├── JsNativeInvokeInternal.kt │ │ │ └── JsNativeSetterInternal.kt │ │ ├── jsMain │ │ └── kotlin │ │ │ └── seskar │ │ │ ├── js │ │ │ └── internal │ │ │ │ ├── JsNativeGetterInternal.kt │ │ │ │ ├── JsNativeInvokeInternal.kt │ │ │ │ └── JsNativeSetterInternal.kt │ │ │ └── react │ │ │ └── internal │ │ │ └── withDisplayName.kt │ │ └── wasmJsMain │ │ └── kotlin │ │ └── seskar │ │ └── js │ │ └── internal │ │ ├── JsNativeGetterInternal.kt │ │ ├── JsNativeInvokeInternal.kt │ │ └── JsNativeSetterInternal.kt ├── seskar-gradle-plugin │ ├── LICENSE.md │ ├── build.gradle.kts │ ├── gradle.properties │ └── src │ │ └── main │ │ └── kotlin │ │ └── seskar │ │ └── gradle │ │ └── plugin │ │ ├── ExportData.kt │ │ ├── Exports.kt │ │ ├── FileTransformReader.kt │ │ ├── FileTransformer.kt │ │ ├── GeneratedWorkerReader.kt │ │ ├── KotlinPluginArtifact.kt │ │ ├── Lazy.kt │ │ ├── LazyConfiguration.kt │ │ ├── LazyFunctionFactory.kt │ │ ├── LazyItem.kt │ │ ├── LazyItemData.kt │ │ ├── LazyItemFactory.kt │ │ ├── LazyItemType.kt │ │ ├── LazyModuleReader.kt │ │ ├── ModulePlugin.kt │ │ ├── Modules.kt │ │ ├── ReactLazyComponentFactory.kt │ │ ├── ServiceWorkerModuleData.kt │ │ ├── ServiceWorkerModuleReader.kt │ │ ├── ServiceWorkers.kt │ │ ├── Seskar.kt │ │ ├── SeskarDependenciesPlugin.kt │ │ ├── SeskarGradleSubplugin.kt │ │ ├── Strings.kt │ │ ├── WorkerData.kt │ │ ├── WorkerFactoryReader.kt │ │ ├── Workers.kt │ │ ├── WorkletModuleData.kt │ │ ├── WorkletModuleReader.kt │ │ └── Worklets.kt └── settings.gradle.kts ├── settings.gradle.kts └── tests ├── data ├── build.gradle.kts └── src │ └── jsMain │ └── kotlin │ └── com │ └── test │ └── example │ ├── Bananas.kt │ └── useImportedArray.kt ├── events ├── build.gradle.kts └── src │ └── jsTest │ └── kotlin │ └── com │ └── test │ └── events │ ├── MyTarget.kt │ └── MyTargetTest.kt ├── jsany ├── build.gradle.kts └── src │ └── webMain │ └── kotlin │ └── com │ └── test │ └── jsany │ ├── Database.kt │ ├── User.kt │ └── UserData.kt ├── lazy-functions ├── build.gradle.kts └── src │ ├── jsMain │ └── kotlin │ │ └── com │ │ └── test │ │ └── lazy │ │ ├── LazyFunction1.kt │ │ └── LazyFunction2.kt │ └── jsTest │ └── kotlin │ └── com │ └── test │ └── lazy │ └── LazyFunctionTest.kt ├── mixin ├── build.gradle.kts └── src │ ├── jsMain │ └── kotlin │ │ └── com │ │ └── test │ │ └── example │ │ └── Image.kt │ └── jsTest │ └── kotlin │ └── com │ └── test │ └── example │ └── ImageTest.kt ├── native ├── build.gradle.kts └── src │ ├── commonMain │ └── kotlin │ │ └── com │ │ └── test │ │ └── example │ │ ├── MyHandler.kt │ │ └── MyRecord.kt │ └── jsTest │ └── kotlin │ └── com │ └── test │ └── example │ ├── HandlerTest.kt │ └── RecordTest.kt ├── react-display-name ├── build.gradle.kts └── src │ ├── jsMain │ └── kotlin │ │ └── com │ │ └── test │ │ └── memo │ │ ├── CountContext.kt │ │ ├── CountRequiredContext.kt │ │ ├── Counter.kt │ │ └── VoidCounter.kt │ └── jsTest │ └── kotlin │ └── com │ └── test │ └── memo │ └── DisplayNameTest.kt ├── react-lazy-components ├── app │ ├── build.gradle.kts │ ├── gradle.properties │ └── src │ │ └── jsMain │ │ ├── kotlin │ │ └── com │ │ │ └── example │ │ │ ├── app │ │ │ └── App.kt │ │ │ └── main.kt │ │ └── resources │ │ └── index.html ├── content │ ├── build.gradle.kts │ ├── gradle.properties │ └── src │ │ └── jsMain │ │ └── kotlin │ │ └── com │ │ └── example │ │ └── content │ │ └── Content.kt ├── footer │ ├── build.gradle.kts │ ├── gradle.properties │ └── src │ │ └── jsMain │ │ └── kotlin │ │ └── com │ │ └── example │ │ └── footer │ │ └── Footer.kt └── header │ ├── build.gradle.kts │ ├── gradle.properties │ └── src │ └── jsMain │ └── kotlin │ └── com │ └── example │ └── header │ ├── Header.kt │ └── HeaderContent.kt ├── react-memo ├── build.gradle.kts └── src │ ├── jsMain │ └── kotlin │ │ └── com │ │ └── test │ │ └── memo │ │ ├── Box.kt │ │ ├── Button.kt │ │ ├── Counter.kt │ │ ├── CounterApp.kt │ │ ├── CounterContainer.kt │ │ ├── VoidCounter.kt │ │ ├── VoidCounterApp.kt │ │ ├── VoidCounterContainer.kt │ │ └── dataCount.kt │ └── jsTest │ └── kotlin │ └── com │ └── test │ └── memo │ ├── ComponentMemoTest.kt │ └── VoidComponentMemoTest.kt ├── react-props ├── build.gradle.kts └── src │ └── jsMain │ └── kotlin │ └── com │ └── test │ └── example │ ├── Rect.kt │ ├── Shape.kt │ └── Square.kt ├── react-test ├── build.gradle.kts └── src │ └── jsMain │ └── kotlin │ └── react │ └── dom │ └── test │ └── Simulate.kt ├── react-value ├── build.gradle.kts └── src │ ├── jsMain │ └── kotlin │ │ └── com │ │ └── test │ │ ├── counter │ │ ├── ActiveCounter.kt │ │ ├── ActiveCounterWithDelegate.kt │ │ ├── ActiveStateCounter.kt │ │ ├── AnyValue.kt │ │ ├── Box.kt │ │ ├── Count.kt │ │ ├── Counter.kt │ │ ├── CounterWithDelegate.kt │ │ ├── InactiveCounter.kt │ │ ├── InactiveCounterWithDelegate.kt │ │ ├── InactiveStateCounter.kt │ │ ├── StateCounter.kt │ │ ├── dataCount.kt │ │ ├── testLog.kt │ │ ├── useCountState.kt │ │ └── useDependencies.kt │ │ └── example │ │ ├── Age.kt │ │ ├── App.kt │ │ ├── City.kt │ │ ├── Count.kt │ │ └── useCustomMemo.kt │ └── jsTest │ └── kotlin │ └── com │ └── test │ ├── counter │ ├── ActiveCounterTest.kt │ ├── ActiveStateCounterTest.kt │ ├── DependencyTest.kt │ ├── InactiveStateCounterTest.kt │ └── SimpleCounterTest.kt │ └── example │ ├── DurationTransformTest.kt │ ├── ImportedValueTransformTest.kt │ ├── NullableAgeTest.kt │ ├── SizeTest.kt │ ├── ValueTransformTest.kt │ └── useArray.kt ├── serviceworker └── simple-app │ ├── build.gradle.kts │ ├── gradle.properties │ ├── src │ └── commonMain │ │ ├── kotlin │ │ └── com │ │ │ └── test │ │ │ └── serviceworker │ │ │ ├── App.kt │ │ │ └── MyServiceWorkerModule.kt │ │ └── resources │ │ └── index.html │ └── vite.config.mjs ├── suspend ├── build.gradle.kts └── src │ ├── commonTest │ └── resources │ │ ├── my-cancellable-response-library.mjs │ │ ├── my-parameters-library.mjs │ │ └── my-response-library.mjs │ └── jsTest │ └── kotlin │ └── com │ └── test │ └── example │ ├── MyCancellableResponseLibrary.kt │ ├── MyCancellationResponseLibraryTest.kt │ ├── MyGlobalThis.kt │ ├── MyGlobalThisTest.kt │ ├── MyLoader.kt │ ├── MyLoaderTest.kt │ ├── MyParametersLibrary.kt │ ├── MyParametersLibraryTest.kt │ ├── MyResponseLibrary.kt │ ├── MyResponseLibraryTest.kt │ ├── PromiseRejectionCollector.kt │ ├── getGlobalResponse.kt │ ├── getGlobalResponseTest.kt │ ├── localGlobalThis.kt │ └── toResult.kt ├── union-data ├── build.gradle.kts └── src │ └── jsMain │ └── kotlin │ └── com │ └── test │ └── example │ ├── Arrow.kt │ └── Modifier.kt ├── value ├── build.gradle.kts └── src │ ├── jsMain │ └── kotlin │ │ └── com │ │ └── test │ │ └── example │ │ ├── Align.kt │ │ ├── CustomAlign.kt │ │ ├── CustomAlignO.kt │ │ ├── Ed25519.kt │ │ ├── GraphItemType.kt │ │ ├── LayoutOrientation.kt │ │ ├── MyArrow.kt │ │ ├── MyButton.kt │ │ ├── Name.kt │ │ ├── NodeFilter.kt │ │ ├── PointerEvent.kt │ │ └── Popper.kt │ └── jsTest │ └── kotlin │ └── com │ └── test │ └── example │ ├── AlignTest.kt │ ├── Assert.kt │ ├── BigIntItemType.kt │ ├── BigIntItemTypeTest.kt │ ├── BooleanItemType.kt │ ├── BooleanItemTypeTest.kt │ ├── CustomAlignOTest.kt │ ├── CustomAlignTest.kt │ ├── DoubleItemType.kt │ ├── DoubleItemTypeTest.kt │ ├── EventTypeTest.kt │ ├── GraphItemTypeTest.kt │ ├── LayoutOrientationTest.kt │ ├── LocalAlign.kt │ ├── LocalAlignTest.kt │ ├── NodeFilterTest.kt │ ├── TopObjectTest.kt │ ├── TopPropertyFromOtherModuleTest.kt │ └── TopPropertyTest.kt ├── workers ├── simple-app │ ├── build.gradle.kts │ ├── gradle.properties │ └── src │ │ └── webMain │ │ ├── kotlin │ │ └── com │ │ │ └── test │ │ │ └── workers │ │ │ ├── App.kt │ │ │ └── createHelloWorker.kt │ │ └── resources │ │ └── index.html └── simple-check │ ├── build.gradle.kts │ ├── gradle.properties │ └── src │ ├── webMain │ └── kotlin │ │ └── com │ │ └── test │ │ └── workers │ │ └── createHelloWorker.kt │ └── webTest │ └── kotlin │ └── com │ └── test │ └── workers │ └── HelloWorkerTest.kt └── worklets └── mdn-audioworklet-example ├── build.gradle.kts ├── gradle.properties ├── src └── commonMain │ ├── kotlin │ └── mdn │ │ └── audioworklet │ │ └── example │ │ ├── App.kt │ │ ├── HissGeneratorParameters.kt │ │ ├── HissGeneratorProcessor.kt │ │ └── HissGeneratorWorkletModule.kt │ └── resources │ ├── index.html │ └── style.css └── vite.config.mjs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/gradle-plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/.github/workflows/gradle-plugin.yml -------------------------------------------------------------------------------- /.github/workflows/package-lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/.github/workflows/package-lock.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeInsightSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/.idea/codeInsightSettings.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/gradlew.bat -------------------------------------------------------------------------------- /isolated-test/.gitignore: -------------------------------------------------------------------------------- 1 | package-lock.json 2 | -------------------------------------------------------------------------------- /isolated-test/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/isolated-test/build.gradle.kts -------------------------------------------------------------------------------- /isolated-test/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/isolated-test/gradle.properties -------------------------------------------------------------------------------- /isolated-test/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/isolated-test/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /isolated-test/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/isolated-test/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /isolated-test/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/isolated-test/gradlew -------------------------------------------------------------------------------- /isolated-test/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/isolated-test/gradlew.bat -------------------------------------------------------------------------------- /isolated-test/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/isolated-test/settings.gradle.kts -------------------------------------------------------------------------------- /isolated-test/src/jsMain/kotlin/com/test/example/Align.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/isolated-test/src/jsMain/kotlin/com/test/example/Align.kt -------------------------------------------------------------------------------- /isolated-test/src/jsMain/kotlin/com/test/example/CustomAlign.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/isolated-test/src/jsMain/kotlin/com/test/example/CustomAlign.kt -------------------------------------------------------------------------------- /isolated-test/src/jsMain/kotlin/com/test/example/GraphItemType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/isolated-test/src/jsMain/kotlin/com/test/example/GraphItemType.kt -------------------------------------------------------------------------------- /isolated-test/src/jsMain/kotlin/com/test/example/LayoutOrientation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/isolated-test/src/jsMain/kotlin/com/test/example/LayoutOrientation.kt -------------------------------------------------------------------------------- /isolated-test/src/jsMain/kotlin/com/test/example/NodeFilter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/isolated-test/src/jsMain/kotlin/com/test/example/NodeFilter.kt -------------------------------------------------------------------------------- /isolated-test/src/jsTest/kotlin/com/test/example/AlignTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/isolated-test/src/jsTest/kotlin/com/test/example/AlignTest.kt -------------------------------------------------------------------------------- /isolated-test/src/jsTest/kotlin/com/test/example/Assert.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/isolated-test/src/jsTest/kotlin/com/test/example/Assert.kt -------------------------------------------------------------------------------- /isolated-test/src/jsTest/kotlin/com/test/example/CustomAlignTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/isolated-test/src/jsTest/kotlin/com/test/example/CustomAlignTest.kt -------------------------------------------------------------------------------- /isolated-test/src/jsTest/kotlin/com/test/example/GraphItemTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/isolated-test/src/jsTest/kotlin/com/test/example/GraphItemTypeTest.kt -------------------------------------------------------------------------------- /isolated-test/src/jsTest/kotlin/com/test/example/LayoutOrientationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/isolated-test/src/jsTest/kotlin/com/test/example/LayoutOrientationTest.kt -------------------------------------------------------------------------------- /isolated-test/src/jsTest/kotlin/com/test/example/NodeFilterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/isolated-test/src/jsTest/kotlin/com/test/example/NodeFilterTest.kt -------------------------------------------------------------------------------- /seskar/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/build.gradle.kts -------------------------------------------------------------------------------- /seskar/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/gradle.properties -------------------------------------------------------------------------------- /seskar/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /seskar/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /seskar/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/gradlew -------------------------------------------------------------------------------- /seskar/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/gradlew.bat -------------------------------------------------------------------------------- /seskar/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/package-lock.json -------------------------------------------------------------------------------- /seskar/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/release -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/build.gradle.kts -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/gradle.properties -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/common/backend/BigInt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/common/backend/BigInt.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/common/backend/Ir.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/common/backend/Ir.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/common/backend/IrFunction.ext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/common/backend/IrFunction.ext.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/common/backend/IrProperty.ext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/common/backend/IrProperty.ext.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/common/backend/JsAnnotations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/common/backend/JsAnnotations.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/common/backend/SeskarPluginKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/common/backend/SeskarPluginKey.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/common/backend/isReallyExternal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/common/backend/isReallyExternal.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/common/extensions/JsCompilerPluginRegistrar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/common/extensions/JsCompilerPluginRegistrar.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/event/backend/EventTransformer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/event/backend/EventTransformer.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/event/backend/JsEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/event/backend/JsEvent.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/event/extensions/EventRegistrar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/event/extensions/EventRegistrar.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/event/extensions/EventTransformExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/event/extensions/EventTransformExtension.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/jsany/extensions/JsAnyExtensionRegistrar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/jsany/extensions/JsAnyExtensionRegistrar.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/jsany/extensions/JsAnyPluginRegistrar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/jsany/extensions/JsAnyPluginRegistrar.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/jsany/extensions/JsAnySupertypeGenerationExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/jsany/extensions/JsAnySupertypeGenerationExtension.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/lazy/backend/Lazy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/lazy/backend/Lazy.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/lazy/backend/LazyModuleTransformer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/lazy/backend/LazyModuleTransformer.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/lazy/extensions/LazyModuleExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/lazy/extensions/LazyModuleExtension.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/lazy/extensions/LazyModuleRegistrar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/lazy/extensions/LazyModuleRegistrar.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/mixin/backend/JsMixin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/mixin/backend/JsMixin.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/mixin/backend/MixinTransformer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/mixin/backend/MixinTransformer.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/mixin/extensions/MixinRegistrar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/mixin/extensions/MixinRegistrar.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/mixin/extensions/MixinTransformExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/mixin/extensions/MixinTransformExtension.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/native/backend/JsNative.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/native/backend/JsNative.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/native/backend/NativeTransformer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/native/backend/NativeTransformer.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/native/extensions/NativeRegistrar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/native/extensions/NativeRegistrar.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/native/extensions/NativeTransformExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/native/extensions/NativeTransformExtension.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/displayname/backend/withDisplayName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/displayname/backend/withDisplayName.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/key/backend/DefaultKeyTransformer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/key/backend/DefaultKeyTransformer.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/key/backend/KeyProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/key/backend/KeyProvider.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/key/extensions/DefaultKeyExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/key/extensions/DefaultKeyExtension.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/key/extensions/DefaultKeyRegistrar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/key/extensions/DefaultKeyRegistrar.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/memo/backend/MemoTransformer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/memo/backend/MemoTransformer.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/memo/extensions/MemoRegistrar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/memo/extensions/MemoRegistrar.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/memo/extensions/MemoTransformExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/memo/extensions/MemoTransformExtension.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/value/backend/Dependencies.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/value/backend/Dependencies.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/value/backend/Duration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/value/backend/Duration.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/value/backend/Hooks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/value/backend/Hooks.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/value/backend/JsValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/value/backend/JsValue.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/value/backend/ValueChecker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/value/backend/ValueChecker.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/value/backend/ValueClass.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/value/backend/ValueClass.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/value/backend/ValueTransformer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/value/backend/ValueTransformer.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/value/extensions/ValueRegistrar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/value/extensions/ValueRegistrar.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/value/extensions/ValueTransformExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/react/value/extensions/ValueTransformExtension.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/serviceworker/backend/ServiceWorkerModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/serviceworker/backend/ServiceWorkerModule.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/serviceworker/backend/ServiceWorkerTransformer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/serviceworker/backend/ServiceWorkerTransformer.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/serviceworker/extensions/ServiceWorkerExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/serviceworker/extensions/ServiceWorkerExtension.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/serviceworker/extensions/ServiceWorkerRegistrar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/serviceworker/extensions/ServiceWorkerRegistrar.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/suspend/backend/AsyncOptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/suspend/backend/AsyncOptions.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/suspend/backend/ExternalSuspendTransformer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/suspend/backend/ExternalSuspendTransformer.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/suspend/backend/findAsyncFunctionSymbol.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/suspend/backend/findAsyncFunctionSymbol.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/suspend/backend/getAsyncOptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/suspend/backend/getAsyncOptions.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/suspend/extensions/ExternalSuspendRegistrar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/suspend/extensions/ExternalSuspendRegistrar.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/suspend/extensions/ExternalSuspendTransformExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/suspend/extensions/ExternalSuspendTransformExtension.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/value/backend/JsValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/value/backend/JsValue.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/value/backend/Value.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/value/backend/Value.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/value/backend/ValueTransformer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/value/backend/ValueTransformer.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/value/extensions/ValueRegistrar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/value/extensions/ValueRegistrar.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/value/extensions/ValueTransformExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/value/extensions/ValueTransformExtension.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/workers/backend/WorkerFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/workers/backend/WorkerFactory.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/workers/backend/WorkerFactoryTransformer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/workers/backend/WorkerFactoryTransformer.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/workers/extensions/WorkerFactoryExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/workers/extensions/WorkerFactoryExtension.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/workers/extensions/WorkerFactoryRegistrar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/workers/extensions/WorkerFactoryRegistrar.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/worklets/backend/WorkletModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/worklets/backend/WorkletModule.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/worklets/backend/WorkletTransformer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/worklets/backend/WorkletTransformer.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/worklets/extensions/WorkletExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/worklets/extensions/WorkletExtension.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/worklets/extensions/WorkletRegistrar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/kotlin/seskar/compiler/worklets/extensions/WorkletRegistrar.kt -------------------------------------------------------------------------------- /seskar/seskar-compiler-plugin/src/main/resources/META-INF/services/org.jetbrains.kotlin.compiler.plugin.CompilerPluginRegistrar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-compiler-plugin/src/main/resources/META-INF/services/org.jetbrains.kotlin.compiler.plugin.CompilerPluginRegistrar -------------------------------------------------------------------------------- /seskar/seskar-core/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-core/build.gradle.kts -------------------------------------------------------------------------------- /seskar/seskar-core/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-core/gradle.properties -------------------------------------------------------------------------------- /seskar/seskar-core/src/commonMain/kotlin/seskar/js/JsAsync.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-core/src/commonMain/kotlin/seskar/js/JsAsync.kt -------------------------------------------------------------------------------- /seskar/seskar-core/src/commonMain/kotlin/seskar/js/JsMixin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-core/src/commonMain/kotlin/seskar/js/JsMixin.kt -------------------------------------------------------------------------------- /seskar/seskar-core/src/commonMain/kotlin/seskar/js/JsRawValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-core/src/commonMain/kotlin/seskar/js/JsRawValue.kt -------------------------------------------------------------------------------- /seskar/seskar-core/src/commonMain/kotlin/seskar/js/JsValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-core/src/commonMain/kotlin/seskar/js/JsValue.kt -------------------------------------------------------------------------------- /seskar/seskar-core/src/commonMain/kotlin/seskar/js/internal/JsNativeGetterInternal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-core/src/commonMain/kotlin/seskar/js/internal/JsNativeGetterInternal.kt -------------------------------------------------------------------------------- /seskar/seskar-core/src/commonMain/kotlin/seskar/js/internal/JsNativeInvokeInternal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-core/src/commonMain/kotlin/seskar/js/internal/JsNativeInvokeInternal.kt -------------------------------------------------------------------------------- /seskar/seskar-core/src/commonMain/kotlin/seskar/js/internal/JsNativeSetterInternal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-core/src/commonMain/kotlin/seskar/js/internal/JsNativeSetterInternal.kt -------------------------------------------------------------------------------- /seskar/seskar-core/src/jsMain/kotlin/seskar/js/internal/JsNativeGetterInternal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-core/src/jsMain/kotlin/seskar/js/internal/JsNativeGetterInternal.kt -------------------------------------------------------------------------------- /seskar/seskar-core/src/jsMain/kotlin/seskar/js/internal/JsNativeInvokeInternal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-core/src/jsMain/kotlin/seskar/js/internal/JsNativeInvokeInternal.kt -------------------------------------------------------------------------------- /seskar/seskar-core/src/jsMain/kotlin/seskar/js/internal/JsNativeSetterInternal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-core/src/jsMain/kotlin/seskar/js/internal/JsNativeSetterInternal.kt -------------------------------------------------------------------------------- /seskar/seskar-core/src/jsMain/kotlin/seskar/react/internal/withDisplayName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-core/src/jsMain/kotlin/seskar/react/internal/withDisplayName.kt -------------------------------------------------------------------------------- /seskar/seskar-core/src/wasmJsMain/kotlin/seskar/js/internal/JsNativeGetterInternal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-core/src/wasmJsMain/kotlin/seskar/js/internal/JsNativeGetterInternal.kt -------------------------------------------------------------------------------- /seskar/seskar-core/src/wasmJsMain/kotlin/seskar/js/internal/JsNativeInvokeInternal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-core/src/wasmJsMain/kotlin/seskar/js/internal/JsNativeInvokeInternal.kt -------------------------------------------------------------------------------- /seskar/seskar-core/src/wasmJsMain/kotlin/seskar/js/internal/JsNativeSetterInternal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-core/src/wasmJsMain/kotlin/seskar/js/internal/JsNativeSetterInternal.kt -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/LICENSE.md -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/build.gradle.kts -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/gradle.properties -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/ExportData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/ExportData.kt -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/Exports.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/Exports.kt -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/FileTransformReader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/FileTransformReader.kt -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/FileTransformer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/FileTransformer.kt -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/GeneratedWorkerReader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/GeneratedWorkerReader.kt -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/KotlinPluginArtifact.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/KotlinPluginArtifact.kt -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/Lazy.kt: -------------------------------------------------------------------------------- 1 | package seskar.gradle.plugin 2 | 3 | internal const val LAZY_DELIMITER = "$$" 4 | -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/LazyConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/LazyConfiguration.kt -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/LazyFunctionFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/LazyFunctionFactory.kt -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/LazyItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/LazyItem.kt -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/LazyItemData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/LazyItemData.kt -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/LazyItemFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/LazyItemFactory.kt -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/LazyItemType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/LazyItemType.kt -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/LazyModuleReader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/LazyModuleReader.kt -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/ModulePlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/ModulePlugin.kt -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/Modules.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/Modules.kt -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/ReactLazyComponentFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/ReactLazyComponentFactory.kt -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/ServiceWorkerModuleData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/ServiceWorkerModuleData.kt -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/ServiceWorkerModuleReader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/ServiceWorkerModuleReader.kt -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/ServiceWorkers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/ServiceWorkers.kt -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/Seskar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/Seskar.kt -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/SeskarDependenciesPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/SeskarDependenciesPlugin.kt -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/SeskarGradleSubplugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/SeskarGradleSubplugin.kt -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/Strings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/Strings.kt -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/WorkerData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/WorkerData.kt -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/WorkerFactoryReader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/WorkerFactoryReader.kt -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/Workers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/Workers.kt -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/WorkletModuleData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/WorkletModuleData.kt -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/WorkletModuleReader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/WorkletModuleReader.kt -------------------------------------------------------------------------------- /seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/Worklets.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/seskar-gradle-plugin/src/main/kotlin/seskar/gradle/plugin/Worklets.kt -------------------------------------------------------------------------------- /seskar/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/seskar/settings.gradle.kts -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /tests/data/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/data/build.gradle.kts -------------------------------------------------------------------------------- /tests/data/src/jsMain/kotlin/com/test/example/Bananas.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/data/src/jsMain/kotlin/com/test/example/Bananas.kt -------------------------------------------------------------------------------- /tests/data/src/jsMain/kotlin/com/test/example/useImportedArray.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/data/src/jsMain/kotlin/com/test/example/useImportedArray.kt -------------------------------------------------------------------------------- /tests/events/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/events/build.gradle.kts -------------------------------------------------------------------------------- /tests/events/src/jsTest/kotlin/com/test/events/MyTarget.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/events/src/jsTest/kotlin/com/test/events/MyTarget.kt -------------------------------------------------------------------------------- /tests/events/src/jsTest/kotlin/com/test/events/MyTargetTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/events/src/jsTest/kotlin/com/test/events/MyTargetTest.kt -------------------------------------------------------------------------------- /tests/jsany/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/jsany/build.gradle.kts -------------------------------------------------------------------------------- /tests/jsany/src/webMain/kotlin/com/test/jsany/Database.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/jsany/src/webMain/kotlin/com/test/jsany/Database.kt -------------------------------------------------------------------------------- /tests/jsany/src/webMain/kotlin/com/test/jsany/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/jsany/src/webMain/kotlin/com/test/jsany/User.kt -------------------------------------------------------------------------------- /tests/jsany/src/webMain/kotlin/com/test/jsany/UserData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/jsany/src/webMain/kotlin/com/test/jsany/UserData.kt -------------------------------------------------------------------------------- /tests/lazy-functions/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/lazy-functions/build.gradle.kts -------------------------------------------------------------------------------- /tests/lazy-functions/src/jsMain/kotlin/com/test/lazy/LazyFunction1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/lazy-functions/src/jsMain/kotlin/com/test/lazy/LazyFunction1.kt -------------------------------------------------------------------------------- /tests/lazy-functions/src/jsMain/kotlin/com/test/lazy/LazyFunction2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/lazy-functions/src/jsMain/kotlin/com/test/lazy/LazyFunction2.kt -------------------------------------------------------------------------------- /tests/lazy-functions/src/jsTest/kotlin/com/test/lazy/LazyFunctionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/lazy-functions/src/jsTest/kotlin/com/test/lazy/LazyFunctionTest.kt -------------------------------------------------------------------------------- /tests/mixin/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/mixin/build.gradle.kts -------------------------------------------------------------------------------- /tests/mixin/src/jsMain/kotlin/com/test/example/Image.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/mixin/src/jsMain/kotlin/com/test/example/Image.kt -------------------------------------------------------------------------------- /tests/mixin/src/jsTest/kotlin/com/test/example/ImageTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/mixin/src/jsTest/kotlin/com/test/example/ImageTest.kt -------------------------------------------------------------------------------- /tests/native/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/native/build.gradle.kts -------------------------------------------------------------------------------- /tests/native/src/commonMain/kotlin/com/test/example/MyHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/native/src/commonMain/kotlin/com/test/example/MyHandler.kt -------------------------------------------------------------------------------- /tests/native/src/commonMain/kotlin/com/test/example/MyRecord.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/native/src/commonMain/kotlin/com/test/example/MyRecord.kt -------------------------------------------------------------------------------- /tests/native/src/jsTest/kotlin/com/test/example/HandlerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/native/src/jsTest/kotlin/com/test/example/HandlerTest.kt -------------------------------------------------------------------------------- /tests/native/src/jsTest/kotlin/com/test/example/RecordTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/native/src/jsTest/kotlin/com/test/example/RecordTest.kt -------------------------------------------------------------------------------- /tests/react-display-name/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-display-name/build.gradle.kts -------------------------------------------------------------------------------- /tests/react-display-name/src/jsMain/kotlin/com/test/memo/CountContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-display-name/src/jsMain/kotlin/com/test/memo/CountContext.kt -------------------------------------------------------------------------------- /tests/react-display-name/src/jsMain/kotlin/com/test/memo/CountRequiredContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-display-name/src/jsMain/kotlin/com/test/memo/CountRequiredContext.kt -------------------------------------------------------------------------------- /tests/react-display-name/src/jsMain/kotlin/com/test/memo/Counter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-display-name/src/jsMain/kotlin/com/test/memo/Counter.kt -------------------------------------------------------------------------------- /tests/react-display-name/src/jsMain/kotlin/com/test/memo/VoidCounter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-display-name/src/jsMain/kotlin/com/test/memo/VoidCounter.kt -------------------------------------------------------------------------------- /tests/react-display-name/src/jsTest/kotlin/com/test/memo/DisplayNameTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-display-name/src/jsTest/kotlin/com/test/memo/DisplayNameTest.kt -------------------------------------------------------------------------------- /tests/react-lazy-components/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-lazy-components/app/build.gradle.kts -------------------------------------------------------------------------------- /tests/react-lazy-components/app/gradle.properties: -------------------------------------------------------------------------------- 1 | kfc.module.name=lazy-app 2 | kfc.platform=js 3 | -------------------------------------------------------------------------------- /tests/react-lazy-components/app/src/jsMain/kotlin/com/example/app/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-lazy-components/app/src/jsMain/kotlin/com/example/app/App.kt -------------------------------------------------------------------------------- /tests/react-lazy-components/app/src/jsMain/kotlin/com/example/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-lazy-components/app/src/jsMain/kotlin/com/example/main.kt -------------------------------------------------------------------------------- /tests/react-lazy-components/app/src/jsMain/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-lazy-components/app/src/jsMain/resources/index.html -------------------------------------------------------------------------------- /tests/react-lazy-components/content/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-lazy-components/content/build.gradle.kts -------------------------------------------------------------------------------- /tests/react-lazy-components/content/gradle.properties: -------------------------------------------------------------------------------- 1 | kfc.module.name=lazy-content 2 | -------------------------------------------------------------------------------- /tests/react-lazy-components/content/src/jsMain/kotlin/com/example/content/Content.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-lazy-components/content/src/jsMain/kotlin/com/example/content/Content.kt -------------------------------------------------------------------------------- /tests/react-lazy-components/footer/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-lazy-components/footer/build.gradle.kts -------------------------------------------------------------------------------- /tests/react-lazy-components/footer/gradle.properties: -------------------------------------------------------------------------------- 1 | kfc.module.name=lazy-footer 2 | -------------------------------------------------------------------------------- /tests/react-lazy-components/footer/src/jsMain/kotlin/com/example/footer/Footer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-lazy-components/footer/src/jsMain/kotlin/com/example/footer/Footer.kt -------------------------------------------------------------------------------- /tests/react-lazy-components/header/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-lazy-components/header/build.gradle.kts -------------------------------------------------------------------------------- /tests/react-lazy-components/header/gradle.properties: -------------------------------------------------------------------------------- 1 | kfc.module.name=lazy-header 2 | -------------------------------------------------------------------------------- /tests/react-lazy-components/header/src/jsMain/kotlin/com/example/header/Header.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-lazy-components/header/src/jsMain/kotlin/com/example/header/Header.kt -------------------------------------------------------------------------------- /tests/react-lazy-components/header/src/jsMain/kotlin/com/example/header/HeaderContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-lazy-components/header/src/jsMain/kotlin/com/example/header/HeaderContent.kt -------------------------------------------------------------------------------- /tests/react-memo/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-memo/build.gradle.kts -------------------------------------------------------------------------------- /tests/react-memo/src/jsMain/kotlin/com/test/memo/Box.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-memo/src/jsMain/kotlin/com/test/memo/Box.kt -------------------------------------------------------------------------------- /tests/react-memo/src/jsMain/kotlin/com/test/memo/Button.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-memo/src/jsMain/kotlin/com/test/memo/Button.kt -------------------------------------------------------------------------------- /tests/react-memo/src/jsMain/kotlin/com/test/memo/Counter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-memo/src/jsMain/kotlin/com/test/memo/Counter.kt -------------------------------------------------------------------------------- /tests/react-memo/src/jsMain/kotlin/com/test/memo/CounterApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-memo/src/jsMain/kotlin/com/test/memo/CounterApp.kt -------------------------------------------------------------------------------- /tests/react-memo/src/jsMain/kotlin/com/test/memo/CounterContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-memo/src/jsMain/kotlin/com/test/memo/CounterContainer.kt -------------------------------------------------------------------------------- /tests/react-memo/src/jsMain/kotlin/com/test/memo/VoidCounter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-memo/src/jsMain/kotlin/com/test/memo/VoidCounter.kt -------------------------------------------------------------------------------- /tests/react-memo/src/jsMain/kotlin/com/test/memo/VoidCounterApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-memo/src/jsMain/kotlin/com/test/memo/VoidCounterApp.kt -------------------------------------------------------------------------------- /tests/react-memo/src/jsMain/kotlin/com/test/memo/VoidCounterContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-memo/src/jsMain/kotlin/com/test/memo/VoidCounterContainer.kt -------------------------------------------------------------------------------- /tests/react-memo/src/jsMain/kotlin/com/test/memo/dataCount.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-memo/src/jsMain/kotlin/com/test/memo/dataCount.kt -------------------------------------------------------------------------------- /tests/react-memo/src/jsTest/kotlin/com/test/memo/ComponentMemoTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-memo/src/jsTest/kotlin/com/test/memo/ComponentMemoTest.kt -------------------------------------------------------------------------------- /tests/react-memo/src/jsTest/kotlin/com/test/memo/VoidComponentMemoTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-memo/src/jsTest/kotlin/com/test/memo/VoidComponentMemoTest.kt -------------------------------------------------------------------------------- /tests/react-props/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-props/build.gradle.kts -------------------------------------------------------------------------------- /tests/react-props/src/jsMain/kotlin/com/test/example/Rect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-props/src/jsMain/kotlin/com/test/example/Rect.kt -------------------------------------------------------------------------------- /tests/react-props/src/jsMain/kotlin/com/test/example/Shape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-props/src/jsMain/kotlin/com/test/example/Shape.kt -------------------------------------------------------------------------------- /tests/react-props/src/jsMain/kotlin/com/test/example/Square.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-props/src/jsMain/kotlin/com/test/example/Square.kt -------------------------------------------------------------------------------- /tests/react-test/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-test/build.gradle.kts -------------------------------------------------------------------------------- /tests/react-test/src/jsMain/kotlin/react/dom/test/Simulate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-test/src/jsMain/kotlin/react/dom/test/Simulate.kt -------------------------------------------------------------------------------- /tests/react-value/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/build.gradle.kts -------------------------------------------------------------------------------- /tests/react-value/src/jsMain/kotlin/com/test/counter/ActiveCounter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsMain/kotlin/com/test/counter/ActiveCounter.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsMain/kotlin/com/test/counter/ActiveCounterWithDelegate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsMain/kotlin/com/test/counter/ActiveCounterWithDelegate.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsMain/kotlin/com/test/counter/ActiveStateCounter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsMain/kotlin/com/test/counter/ActiveStateCounter.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsMain/kotlin/com/test/counter/AnyValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsMain/kotlin/com/test/counter/AnyValue.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsMain/kotlin/com/test/counter/Box.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsMain/kotlin/com/test/counter/Box.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsMain/kotlin/com/test/counter/Count.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsMain/kotlin/com/test/counter/Count.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsMain/kotlin/com/test/counter/Counter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsMain/kotlin/com/test/counter/Counter.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsMain/kotlin/com/test/counter/CounterWithDelegate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsMain/kotlin/com/test/counter/CounterWithDelegate.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsMain/kotlin/com/test/counter/InactiveCounter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsMain/kotlin/com/test/counter/InactiveCounter.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsMain/kotlin/com/test/counter/InactiveCounterWithDelegate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsMain/kotlin/com/test/counter/InactiveCounterWithDelegate.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsMain/kotlin/com/test/counter/InactiveStateCounter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsMain/kotlin/com/test/counter/InactiveStateCounter.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsMain/kotlin/com/test/counter/StateCounter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsMain/kotlin/com/test/counter/StateCounter.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsMain/kotlin/com/test/counter/dataCount.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsMain/kotlin/com/test/counter/dataCount.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsMain/kotlin/com/test/counter/testLog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsMain/kotlin/com/test/counter/testLog.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsMain/kotlin/com/test/counter/useCountState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsMain/kotlin/com/test/counter/useCountState.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsMain/kotlin/com/test/counter/useDependencies.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsMain/kotlin/com/test/counter/useDependencies.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsMain/kotlin/com/test/example/Age.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsMain/kotlin/com/test/example/Age.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsMain/kotlin/com/test/example/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsMain/kotlin/com/test/example/App.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsMain/kotlin/com/test/example/City.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsMain/kotlin/com/test/example/City.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsMain/kotlin/com/test/example/Count.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsMain/kotlin/com/test/example/Count.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsMain/kotlin/com/test/example/useCustomMemo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsMain/kotlin/com/test/example/useCustomMemo.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsTest/kotlin/com/test/counter/ActiveCounterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsTest/kotlin/com/test/counter/ActiveCounterTest.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsTest/kotlin/com/test/counter/ActiveStateCounterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsTest/kotlin/com/test/counter/ActiveStateCounterTest.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsTest/kotlin/com/test/counter/DependencyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsTest/kotlin/com/test/counter/DependencyTest.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsTest/kotlin/com/test/counter/InactiveStateCounterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsTest/kotlin/com/test/counter/InactiveStateCounterTest.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsTest/kotlin/com/test/counter/SimpleCounterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsTest/kotlin/com/test/counter/SimpleCounterTest.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsTest/kotlin/com/test/example/DurationTransformTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsTest/kotlin/com/test/example/DurationTransformTest.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsTest/kotlin/com/test/example/ImportedValueTransformTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsTest/kotlin/com/test/example/ImportedValueTransformTest.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsTest/kotlin/com/test/example/NullableAgeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsTest/kotlin/com/test/example/NullableAgeTest.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsTest/kotlin/com/test/example/SizeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsTest/kotlin/com/test/example/SizeTest.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsTest/kotlin/com/test/example/ValueTransformTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsTest/kotlin/com/test/example/ValueTransformTest.kt -------------------------------------------------------------------------------- /tests/react-value/src/jsTest/kotlin/com/test/example/useArray.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/react-value/src/jsTest/kotlin/com/test/example/useArray.kt -------------------------------------------------------------------------------- /tests/serviceworker/simple-app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/serviceworker/simple-app/build.gradle.kts -------------------------------------------------------------------------------- /tests/serviceworker/simple-app/gradle.properties: -------------------------------------------------------------------------------- 1 | kfc.module.name=serviceworker-simple-app 2 | kfc.platform=js 3 | -------------------------------------------------------------------------------- /tests/serviceworker/simple-app/src/commonMain/kotlin/com/test/serviceworker/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/serviceworker/simple-app/src/commonMain/kotlin/com/test/serviceworker/App.kt -------------------------------------------------------------------------------- /tests/serviceworker/simple-app/src/commonMain/kotlin/com/test/serviceworker/MyServiceWorkerModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/serviceworker/simple-app/src/commonMain/kotlin/com/test/serviceworker/MyServiceWorkerModule.kt -------------------------------------------------------------------------------- /tests/serviceworker/simple-app/src/commonMain/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/serviceworker/simple-app/src/commonMain/resources/index.html -------------------------------------------------------------------------------- /tests/serviceworker/simple-app/vite.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/serviceworker/simple-app/vite.config.mjs -------------------------------------------------------------------------------- /tests/suspend/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/suspend/build.gradle.kts -------------------------------------------------------------------------------- /tests/suspend/src/commonTest/resources/my-cancellable-response-library.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/suspend/src/commonTest/resources/my-cancellable-response-library.mjs -------------------------------------------------------------------------------- /tests/suspend/src/commonTest/resources/my-parameters-library.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/suspend/src/commonTest/resources/my-parameters-library.mjs -------------------------------------------------------------------------------- /tests/suspend/src/commonTest/resources/my-response-library.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/suspend/src/commonTest/resources/my-response-library.mjs -------------------------------------------------------------------------------- /tests/suspend/src/jsTest/kotlin/com/test/example/MyCancellableResponseLibrary.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/suspend/src/jsTest/kotlin/com/test/example/MyCancellableResponseLibrary.kt -------------------------------------------------------------------------------- /tests/suspend/src/jsTest/kotlin/com/test/example/MyCancellationResponseLibraryTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/suspend/src/jsTest/kotlin/com/test/example/MyCancellationResponseLibraryTest.kt -------------------------------------------------------------------------------- /tests/suspend/src/jsTest/kotlin/com/test/example/MyGlobalThis.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/suspend/src/jsTest/kotlin/com/test/example/MyGlobalThis.kt -------------------------------------------------------------------------------- /tests/suspend/src/jsTest/kotlin/com/test/example/MyGlobalThisTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/suspend/src/jsTest/kotlin/com/test/example/MyGlobalThisTest.kt -------------------------------------------------------------------------------- /tests/suspend/src/jsTest/kotlin/com/test/example/MyLoader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/suspend/src/jsTest/kotlin/com/test/example/MyLoader.kt -------------------------------------------------------------------------------- /tests/suspend/src/jsTest/kotlin/com/test/example/MyLoaderTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/suspend/src/jsTest/kotlin/com/test/example/MyLoaderTest.kt -------------------------------------------------------------------------------- /tests/suspend/src/jsTest/kotlin/com/test/example/MyParametersLibrary.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/suspend/src/jsTest/kotlin/com/test/example/MyParametersLibrary.kt -------------------------------------------------------------------------------- /tests/suspend/src/jsTest/kotlin/com/test/example/MyParametersLibraryTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/suspend/src/jsTest/kotlin/com/test/example/MyParametersLibraryTest.kt -------------------------------------------------------------------------------- /tests/suspend/src/jsTest/kotlin/com/test/example/MyResponseLibrary.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/suspend/src/jsTest/kotlin/com/test/example/MyResponseLibrary.kt -------------------------------------------------------------------------------- /tests/suspend/src/jsTest/kotlin/com/test/example/MyResponseLibraryTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/suspend/src/jsTest/kotlin/com/test/example/MyResponseLibraryTest.kt -------------------------------------------------------------------------------- /tests/suspend/src/jsTest/kotlin/com/test/example/PromiseRejectionCollector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/suspend/src/jsTest/kotlin/com/test/example/PromiseRejectionCollector.kt -------------------------------------------------------------------------------- /tests/suspend/src/jsTest/kotlin/com/test/example/getGlobalResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/suspend/src/jsTest/kotlin/com/test/example/getGlobalResponse.kt -------------------------------------------------------------------------------- /tests/suspend/src/jsTest/kotlin/com/test/example/getGlobalResponseTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/suspend/src/jsTest/kotlin/com/test/example/getGlobalResponseTest.kt -------------------------------------------------------------------------------- /tests/suspend/src/jsTest/kotlin/com/test/example/localGlobalThis.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/suspend/src/jsTest/kotlin/com/test/example/localGlobalThis.kt -------------------------------------------------------------------------------- /tests/suspend/src/jsTest/kotlin/com/test/example/toResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/suspend/src/jsTest/kotlin/com/test/example/toResult.kt -------------------------------------------------------------------------------- /tests/union-data/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/union-data/build.gradle.kts -------------------------------------------------------------------------------- /tests/union-data/src/jsMain/kotlin/com/test/example/Arrow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/union-data/src/jsMain/kotlin/com/test/example/Arrow.kt -------------------------------------------------------------------------------- /tests/union-data/src/jsMain/kotlin/com/test/example/Modifier.kt: -------------------------------------------------------------------------------- 1 | package com.test.example 2 | 3 | external interface Modifier 4 | -------------------------------------------------------------------------------- /tests/value/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/build.gradle.kts -------------------------------------------------------------------------------- /tests/value/src/jsMain/kotlin/com/test/example/Align.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/src/jsMain/kotlin/com/test/example/Align.kt -------------------------------------------------------------------------------- /tests/value/src/jsMain/kotlin/com/test/example/CustomAlign.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/src/jsMain/kotlin/com/test/example/CustomAlign.kt -------------------------------------------------------------------------------- /tests/value/src/jsMain/kotlin/com/test/example/CustomAlignO.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/src/jsMain/kotlin/com/test/example/CustomAlignO.kt -------------------------------------------------------------------------------- /tests/value/src/jsMain/kotlin/com/test/example/Ed25519.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/src/jsMain/kotlin/com/test/example/Ed25519.kt -------------------------------------------------------------------------------- /tests/value/src/jsMain/kotlin/com/test/example/GraphItemType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/src/jsMain/kotlin/com/test/example/GraphItemType.kt -------------------------------------------------------------------------------- /tests/value/src/jsMain/kotlin/com/test/example/LayoutOrientation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/src/jsMain/kotlin/com/test/example/LayoutOrientation.kt -------------------------------------------------------------------------------- /tests/value/src/jsMain/kotlin/com/test/example/MyArrow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/src/jsMain/kotlin/com/test/example/MyArrow.kt -------------------------------------------------------------------------------- /tests/value/src/jsMain/kotlin/com/test/example/MyButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/src/jsMain/kotlin/com/test/example/MyButton.kt -------------------------------------------------------------------------------- /tests/value/src/jsMain/kotlin/com/test/example/Name.kt: -------------------------------------------------------------------------------- 1 | package com.test.example 2 | 3 | external interface Name 4 | -------------------------------------------------------------------------------- /tests/value/src/jsMain/kotlin/com/test/example/NodeFilter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/src/jsMain/kotlin/com/test/example/NodeFilter.kt -------------------------------------------------------------------------------- /tests/value/src/jsMain/kotlin/com/test/example/PointerEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/src/jsMain/kotlin/com/test/example/PointerEvent.kt -------------------------------------------------------------------------------- /tests/value/src/jsMain/kotlin/com/test/example/Popper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/src/jsMain/kotlin/com/test/example/Popper.kt -------------------------------------------------------------------------------- /tests/value/src/jsTest/kotlin/com/test/example/AlignTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/src/jsTest/kotlin/com/test/example/AlignTest.kt -------------------------------------------------------------------------------- /tests/value/src/jsTest/kotlin/com/test/example/Assert.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/src/jsTest/kotlin/com/test/example/Assert.kt -------------------------------------------------------------------------------- /tests/value/src/jsTest/kotlin/com/test/example/BigIntItemType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/src/jsTest/kotlin/com/test/example/BigIntItemType.kt -------------------------------------------------------------------------------- /tests/value/src/jsTest/kotlin/com/test/example/BigIntItemTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/src/jsTest/kotlin/com/test/example/BigIntItemTypeTest.kt -------------------------------------------------------------------------------- /tests/value/src/jsTest/kotlin/com/test/example/BooleanItemType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/src/jsTest/kotlin/com/test/example/BooleanItemType.kt -------------------------------------------------------------------------------- /tests/value/src/jsTest/kotlin/com/test/example/BooleanItemTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/src/jsTest/kotlin/com/test/example/BooleanItemTypeTest.kt -------------------------------------------------------------------------------- /tests/value/src/jsTest/kotlin/com/test/example/CustomAlignOTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/src/jsTest/kotlin/com/test/example/CustomAlignOTest.kt -------------------------------------------------------------------------------- /tests/value/src/jsTest/kotlin/com/test/example/CustomAlignTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/src/jsTest/kotlin/com/test/example/CustomAlignTest.kt -------------------------------------------------------------------------------- /tests/value/src/jsTest/kotlin/com/test/example/DoubleItemType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/src/jsTest/kotlin/com/test/example/DoubleItemType.kt -------------------------------------------------------------------------------- /tests/value/src/jsTest/kotlin/com/test/example/DoubleItemTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/src/jsTest/kotlin/com/test/example/DoubleItemTypeTest.kt -------------------------------------------------------------------------------- /tests/value/src/jsTest/kotlin/com/test/example/EventTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/src/jsTest/kotlin/com/test/example/EventTypeTest.kt -------------------------------------------------------------------------------- /tests/value/src/jsTest/kotlin/com/test/example/GraphItemTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/src/jsTest/kotlin/com/test/example/GraphItemTypeTest.kt -------------------------------------------------------------------------------- /tests/value/src/jsTest/kotlin/com/test/example/LayoutOrientationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/src/jsTest/kotlin/com/test/example/LayoutOrientationTest.kt -------------------------------------------------------------------------------- /tests/value/src/jsTest/kotlin/com/test/example/LocalAlign.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/src/jsTest/kotlin/com/test/example/LocalAlign.kt -------------------------------------------------------------------------------- /tests/value/src/jsTest/kotlin/com/test/example/LocalAlignTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/src/jsTest/kotlin/com/test/example/LocalAlignTest.kt -------------------------------------------------------------------------------- /tests/value/src/jsTest/kotlin/com/test/example/NodeFilterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/src/jsTest/kotlin/com/test/example/NodeFilterTest.kt -------------------------------------------------------------------------------- /tests/value/src/jsTest/kotlin/com/test/example/TopObjectTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/src/jsTest/kotlin/com/test/example/TopObjectTest.kt -------------------------------------------------------------------------------- /tests/value/src/jsTest/kotlin/com/test/example/TopPropertyFromOtherModuleTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/src/jsTest/kotlin/com/test/example/TopPropertyFromOtherModuleTest.kt -------------------------------------------------------------------------------- /tests/value/src/jsTest/kotlin/com/test/example/TopPropertyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/value/src/jsTest/kotlin/com/test/example/TopPropertyTest.kt -------------------------------------------------------------------------------- /tests/workers/simple-app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/workers/simple-app/build.gradle.kts -------------------------------------------------------------------------------- /tests/workers/simple-app/gradle.properties: -------------------------------------------------------------------------------- 1 | kfc.module.name=workers-simple-app 2 | -------------------------------------------------------------------------------- /tests/workers/simple-app/src/webMain/kotlin/com/test/workers/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/workers/simple-app/src/webMain/kotlin/com/test/workers/App.kt -------------------------------------------------------------------------------- /tests/workers/simple-app/src/webMain/kotlin/com/test/workers/createHelloWorker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/workers/simple-app/src/webMain/kotlin/com/test/workers/createHelloWorker.kt -------------------------------------------------------------------------------- /tests/workers/simple-app/src/webMain/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/workers/simple-app/src/webMain/resources/index.html -------------------------------------------------------------------------------- /tests/workers/simple-check/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/workers/simple-check/build.gradle.kts -------------------------------------------------------------------------------- /tests/workers/simple-check/gradle.properties: -------------------------------------------------------------------------------- 1 | kfc.platform=js 2 | -------------------------------------------------------------------------------- /tests/workers/simple-check/src/webMain/kotlin/com/test/workers/createHelloWorker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/workers/simple-check/src/webMain/kotlin/com/test/workers/createHelloWorker.kt -------------------------------------------------------------------------------- /tests/workers/simple-check/src/webTest/kotlin/com/test/workers/HelloWorkerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/workers/simple-check/src/webTest/kotlin/com/test/workers/HelloWorkerTest.kt -------------------------------------------------------------------------------- /tests/worklets/mdn-audioworklet-example/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/worklets/mdn-audioworklet-example/build.gradle.kts -------------------------------------------------------------------------------- /tests/worklets/mdn-audioworklet-example/gradle.properties: -------------------------------------------------------------------------------- 1 | kfc.module.name=mdn-audioworklet-example 2 | kfc.platform=js 3 | -------------------------------------------------------------------------------- /tests/worklets/mdn-audioworklet-example/src/commonMain/kotlin/mdn/audioworklet/example/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/worklets/mdn-audioworklet-example/src/commonMain/kotlin/mdn/audioworklet/example/App.kt -------------------------------------------------------------------------------- /tests/worklets/mdn-audioworklet-example/src/commonMain/kotlin/mdn/audioworklet/example/HissGeneratorParameters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/worklets/mdn-audioworklet-example/src/commonMain/kotlin/mdn/audioworklet/example/HissGeneratorParameters.kt -------------------------------------------------------------------------------- /tests/worklets/mdn-audioworklet-example/src/commonMain/kotlin/mdn/audioworklet/example/HissGeneratorProcessor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/worklets/mdn-audioworklet-example/src/commonMain/kotlin/mdn/audioworklet/example/HissGeneratorProcessor.kt -------------------------------------------------------------------------------- /tests/worklets/mdn-audioworklet-example/src/commonMain/kotlin/mdn/audioworklet/example/HissGeneratorWorkletModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/worklets/mdn-audioworklet-example/src/commonMain/kotlin/mdn/audioworklet/example/HissGeneratorWorkletModule.kt -------------------------------------------------------------------------------- /tests/worklets/mdn-audioworklet-example/src/commonMain/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/worklets/mdn-audioworklet-example/src/commonMain/resources/index.html -------------------------------------------------------------------------------- /tests/worklets/mdn-audioworklet-example/src/commonMain/resources/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/worklets/mdn-audioworklet-example/src/commonMain/resources/style.css -------------------------------------------------------------------------------- /tests/worklets/mdn-audioworklet-example/vite.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turansky/seskar/HEAD/tests/worklets/mdn-audioworklet-example/vite.config.mjs --------------------------------------------------------------------------------