Migrate JSEngineResolutionAlgorithm to kotlin (#41015)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/41015

Migrate JSEngineResolutionAlgorithm to kotlin

changelog: [internal] internal

Reviewed By: christophpurrer, cortinico

Differential Revision: D50338298

fbshipit-source-id: 4d9cec37286ff834f188c300c054f644e03fc7cc
This commit is contained in:
David Vacca
2023-10-30 17:42:18 -07:00
committed by Facebook GitHub Bot
parent a4a8695cec
commit 5a57ec8a22
@@ -5,14 +5,13 @@
* LICENSE file in the root directory of this source tree.
*/
package com.facebook.react;
package com.facebook.react
/**
* An enum that specifies the algorithm to use when loading theJS Engine. {@link #JSC} will load
* JavaScriptCore first and fail if it is not available. {@link #HERMES} will load Hermes first and
* fail if it is not available.
* An enum that specifies the algorithm to use when loading theJS Engine. [.JSC] will load
* JavaScriptCore first and fail if it is not available. [.HERMES] will load Hermes first and fail
* if it is not available.
*/
public enum JSEngineResolutionAlgorithm {
enum class JSEngineResolutionAlgorithm {
JSC,
HERMES
}