(t: string)
| 154 | ): ts.Expression { |
| 155 | const text = getText(valueType, typeChecker); |
| 156 | const objType = (t: string) => |
| 157 | factory.createObjectLiteralExpression( |
| 158 | [ |
| 159 | factory.createPropertyAssignment('type', factory.createStringLiteral(t)) |
| 160 | ], |
| 161 | false |
| 162 | ); |
| 163 | |
| 164 | if ( |
| 165 | isString(valueType) || |
no test coverage detected
searching dependent graphs…