Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
*/

package com.facebook.react.bridge

public interface PerformanceCounter {
public fun profileNextBatch()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public open class ReadableNativeArray protected constructor() : NativeArray(), R
return arrayList
}

private companion object {
internal companion object {
@get:JvmStatic
@get:JvmName("getJNIPassCounter")
var jniPassCounter: Int = 0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ public open class ReadableNativeMap protected constructor() : NativeMap(), Reada
return hashMap
}

private companion object {
internal companion object {
@get:JvmStatic
@get:JvmName("getJNIPassCounter")
var jniPassCounter: Int = 0
Expand Down
Loading