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:14:30 -07:00 коммит произвёл Facebook GitHub Bot
Родитель 0afd71a18d
Коммит 6ea72fa231
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -154,6 +154,7 @@ class RefProperty extends Property {
constructor(domain: string, obj: any) { constructor(domain: string, obj: any) {
super(domain, obj); super(domain, obj);
this.$ref = obj.$ref; this.$ref = obj.$ref;
this.recursive = obj.recursive;
} }
getRefDebuggerName(): ?string { getRefDebuggerName(): ?string {