(node)
| 59566 | return false; |
| 59567 | } |
| 59568 | function isOptionalPropertyDeclaration(node) { |
| 59569 | return ts.isPropertyDeclaration(node) && node.questionToken; |
| 59570 | } |
| 59571 | function isOptionalJSDocPropertyLikeTag(node) { |
| 59572 | if (!ts.isJSDocPropertyLikeTag(node)) { |
| 59573 | return false; |
no outgoing calls
no test coverage detected