(year: number, month: number, day: number)
| 409 | } |
| 410 | |
| 411 | function buildLocalDate(year: number, month: number, day: number): Date { |
| 412 | return new Date(year, month - 1, day, 0, 0, 0, 0); |
| 413 | } |
| 414 | |
| 415 | function buildExampleLeaf(): ExampleLeaf { |
| 416 | return { |
no outgoing calls
no test coverage detected