* Add import declarations.
(declaration: syntax.ImportDeclaration)
| 47 | * Add import declarations. |
| 48 | */ |
| 49 | addImport(declaration: syntax.ImportDeclaration) { |
| 50 | this.imports.push(declaration); |
| 51 | } |
| 52 | |
| 53 | /** |
| 54 | * Add a top-level class/function declaration. |