(node: ts.Expression)
| 199 | |
| 200 | describe('AstValue', () => { |
| 201 | function createAstValue<T>(node: ts.Expression): AstValue<T, ts.Expression> { |
| 202 | return new AstValue<T, ts.Expression>(node, host); |
| 203 | } |
| 204 | |
| 205 | describe('getSymbolName', () => { |
| 206 | it('should return the name of an identifier', () => { |
no outgoing calls
no test coverage detected
searching dependent graphs…