Kotlinify RuntimeConfig (#43891)

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

Changelog: [Internal]

As part of the Sustainability Week (see [post](https://fb.workplace.com/groups/251759413609061/permalink/742797531171911/)).

Reviewed By: cortinico

Differential Revision: D55788661

fbshipit-source-id: 1da14b556c013d679a671ae78671df690ebd9326
This commit is contained in:
Fabrizio Cucci
2024-04-05 08:42:22 -07:00
committed by Facebook GitHub Bot
parent 03c75c22fa
commit 33a1794755
@@ -5,9 +5,9 @@
* LICENSE file in the root directory of this source tree.
*/
package com.facebook.hermes.reactexecutor;
package com.facebook.hermes.reactexecutor
/** Holds runtime configuration for a Hermes VM instance (master or snapshot). */
public final class RuntimeConfig {
public long heapSizeMB;
public class RuntimeConfig {
public var heapSizeMB: Long = 0L
}