-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Setup a common sourceSet in between wasmJs and JS targets to publish … #15
Open
JSMonk
wants to merge
1
commit into
master
Choose a base branch
from
introduce-js-variant-of-kotlinx-browser
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/* | ||
* Copyright 2010-2025 JetBrains s.r.o. and Kotlin Programming Language contributors. | ||
* Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. | ||
*/ | ||
|
||
// NOTE: THIS FILE IS AUTO-GENERATED, DO NOT EDIT! | ||
// See generator/src/main/kotlin/helpers/generate.kt for details | ||
|
||
|
||
package org.khronos.webgl | ||
|
||
/** Returns a new [ByteArray] containing all the elements of this [Int8Array]. */ | ||
public expect fun Int8Array.toByteArray(): ByteArray | ||
|
||
/** Returns a new [Int8Array] containing all the elements of this [ByteArray]. */ | ||
public expect fun ByteArray.toInt8Array(): Int8Array | ||
|
||
/** Returns a new [UByteArray] containing all the elements of this [Uint8Array]. */ | ||
@ExperimentalUnsignedTypes | ||
public expect fun Uint8Array.toUByteArray(): UByteArray | ||
|
||
/** Returns a new [Uint8Array] containing all the elements of this [UByteArray]. */ | ||
@ExperimentalUnsignedTypes | ||
public expect fun UByteArray.toUint8Array(): Uint8Array | ||
|
||
/** Returns a new [ShortArray] containing all the elements of this [Int16Array]. */ | ||
public expect fun Int16Array.toShortArray(): ShortArray | ||
|
||
/** Returns a new [Int16Array] containing all the elements of this [ShortArray]. */ | ||
public expect fun ShortArray.toInt16Array(): Int16Array | ||
|
||
/** Returns a new [UShortArray] containing all the elements of this [Uint16Array]. */ | ||
@ExperimentalUnsignedTypes | ||
public expect fun Uint16Array.toUShortArray(): UShortArray | ||
|
||
/** Returns a new [Uint16Array] containing all the elements of this [UShortArray]. */ | ||
@ExperimentalUnsignedTypes | ||
public expect fun UShortArray.toUint16Array(): Uint16Array | ||
|
||
/** Returns a new [IntArray] containing all the elements of this [Int32Array]. */ | ||
public expect fun Int32Array.toIntArray(): IntArray | ||
|
||
/** Returns a new [Int32Array] containing all the elements of this [IntArray]. */ | ||
public expect fun IntArray.toInt32Array(): Int32Array | ||
|
||
/** Returns a new [UIntArray] containing all the elements of this [Uint32Array]. */ | ||
@ExperimentalUnsignedTypes | ||
public expect fun Uint32Array.toUIntArray(): UIntArray | ||
|
||
/** Returns a new [Uint32Array] containing all the elements of this [UIntArray]. */ | ||
@ExperimentalUnsignedTypes | ||
public expect fun UIntArray.toUint32Array(): Uint32Array | ||
|
||
/** Returns a new [FloatArray] containing all the elements of this [Float32Array]. */ | ||
public expect fun Float32Array.toFloatArray(): FloatArray | ||
|
||
/** Returns a new [Float32Array] containing all the elements of this [FloatArray]. */ | ||
public expect fun FloatArray.toFloat32Array(): Float32Array | ||
|
||
/** Returns a new [DoubleArray] containing all the elements of this [Float64Array]. */ | ||
public expect fun Float64Array.toDoubleArray(): DoubleArray | ||
|
||
/** Returns a new [Float64Array] containing all the elements of this [DoubleArray]. */ | ||
public expect fun DoubleArray.toFloat64Array(): Float64Array |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you need to commit mavenLocal here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, I don't think so.