(docComment: DocComment)
| 14 | constructor(private name: string) {} |
| 15 | |
| 16 | setDocComment(docComment: DocComment): this { |
| 17 | this.docComment = docComment |
| 18 | return this |
| 19 | } |
| 20 | |
| 21 | setReturnType(returnType: TypeBuilder): this { |
| 22 | this.returnType = returnType |
no outgoing calls
no test coverage detected