(funcType: FunctionType)
| 102 | } |
| 103 | |
| 104 | public addFunction(funcType: FunctionType) { |
| 105 | this.functions.push(mapFunction(funcType)); |
| 106 | } |
| 107 | |
| 108 | public addFunctions(funcTypes: FunctionType[]) { |
| 109 | this.functions = this.functions.concat(funcTypes.map(mapFunction)); |
nothing calls this directly
no test coverage detected