From 6ea72fa231914c0e9ba71e8d3aa6ac6dc1b9b888 Mon Sep 17 00:00:00 2001 From: Tim Yung Date: Mon, 26 Apr 2021 15:14:30 -0700 Subject: [PATCH] msggen: Fix Missing `RefProperty.recursive` Summary: This was missing, causing the test to fail. Changelog: [Internal] Reviewed By: mhorowitz Differential Revision: D28009429 fbshipit-source-id: 51d4366b4feb6a2300c5bd05007dd9455bdcd77b --- ReactCommon/hermes/inspector/tools/msggen/src/Property.js | 1 + 1 file changed, 1 insertion(+) diff --git a/ReactCommon/hermes/inspector/tools/msggen/src/Property.js b/ReactCommon/hermes/inspector/tools/msggen/src/Property.js index a3673f05470..bfcf5d1a237 100644 --- a/ReactCommon/hermes/inspector/tools/msggen/src/Property.js +++ b/ReactCommon/hermes/inspector/tools/msggen/src/Property.js @@ -154,6 +154,7 @@ class RefProperty extends Property { constructor(domain: string, obj: any) { super(domain, obj); this.$ref = obj.$ref; + this.recursive = obj.recursive; } getRefDebuggerName(): ?string {