Summary: X-link: https://github.com/facebook/react-native/pull/42688 Pull Request resolved: https://github.com/facebook/yoga/pull/1567 We are planning on overhauling NodeToString to output JSON instead of HTML for the purposes of better benchmarking and capturing trees in JSON format to benchmark later. This gives us a bit of a headache as we have to revise several build files to ensure this new library works, ensure that it is only included in certain debug builds, and deal with the benchmark <-> internal cross boundary that arises as the benchmark code (which is a separate binary) tries to interact with it. On top of it all this is really not used at all. The plan is to rip out this functionality and just put it in a separate binary that one can include if they really want to debug. That means that it cannot exist in the public API, so I am removing it here. Private internals come next Changelog: [Internal] Reviewed By: NickGerleman Differential Revision: D53137544 fbshipit-source-id: 7571d243b914cd9bf09ac2418d9a1b86d1bee64a
30 lines
774 B
Java
30 lines
774 B
Java
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
package com.facebook.yoga;
|
|
|
|
public abstract class YogaConfig {
|
|
|
|
public static int SPACING_TYPE = 1;
|
|
|
|
public abstract void setExperimentalFeatureEnabled(YogaExperimentalFeature feature, boolean enabled);
|
|
|
|
public abstract void setUseWebDefaults(boolean useWebDefaults);
|
|
|
|
public abstract void setPointScaleFactor(float pixelsInPoint);
|
|
|
|
public abstract void setErrata(YogaErrata errata);
|
|
|
|
public abstract YogaErrata getErrata();
|
|
|
|
public abstract void setLogger(YogaLogger logger);
|
|
|
|
public abstract YogaLogger getLogger();
|
|
|
|
protected abstract long getNativePointer();
|
|
}
|