(name: string, stmt: string)
| 39 | } |
| 40 | |
| 41 | declareVar(name: string, stmt: string) { |
| 42 | name = this.uniqueName(name); |
| 43 | this.varDeclares.set(name, stmt); |
| 44 | return name; |
| 45 | } |
| 46 | |
| 47 | assertNameNotDuplicate(name: string) { |
| 48 | for (const item of this.declares.values()) { |
no test coverage detected