Add YogaNode.cloneWithoutChildren

Summary: Adding flat clone method back to YogaNode for reconciliation.

Reviewed By: davidaurelio

Differential Revision: D14683019

fbshipit-source-id: 08ed2ffbb16052cb11aa464f67a7ba9a64297985
This commit is contained in:
Aditya Sharat
2019-04-03 10:41:23 -07:00
committed by Facebook Github Bot
parent e0bc0ebe29
commit a1e47e37ae
4 changed files with 28 additions and 1 deletions

View File

@@ -111,4 +111,5 @@ public class YogaNative {
static native void jni_YGNodeSetHasBaselineFunc(long nativePointer, boolean hasMeasureFunc);
static native void jni_YGNodePrint(long nativePointer);
static native void jni_YGNodeSetStyleInputs(long nativePointer, float[] styleInputsArray, int size);
static native long jni_YGNodeClone(long nativePointer);
}