(ctx: CreateContext, type: TableNodeType, id?: string)
| 238 | } |
| 239 | |
| 240 | function newNode(ctx: CreateContext, type: TableNodeType, id?: string) { |
| 241 | return new TableNode(type) |
| 242 | .setRow(ctx.row) |
| 243 | .setLevel(ctx.level) |
| 244 | .setId(id || ""); |
| 245 | } |
no test coverage detected