* Creates a new root construct node. * * @param id The scoped construct ID. Must be unique amongst siblings. If * the ID includes a path separator (`/`), then it will be replaced by double * dash `--`.
(id?: string)
| 685 | * dash `--`. |
| 686 | */ |
| 687 | constructor(id?: string) { |
| 688 | super(undefined as any, id ?? ''); |
| 689 | } |
| 690 | } |
nothing calls this directly
no outgoing calls
no test coverage detected