Skip to content

Maximum call stack size exceeded on recursive structures #215

Closed
@BowlingX

Description

@BowlingX

The following construct fails to parse:

export type Node = {
  id: number,
  module: Module,
  data: Object,
  children: Array<Node>
}

type Props = {
  data: { [string]: Array<Node> }
};

It seems it can't manage the recursive structure.

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions