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
This commit is contained in:
Tim Yung
2021-04-26 15:15:45 -07:00
committed by Facebook GitHub Bot
parent 0afd71a18d
commit 6ea72fa231
@@ -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 {