(value: string, transformContext: ts.TransformationContext)
| 70 | const rendererModulePath = 'valdi_core/src/JSX'; |
| 71 | |
| 72 | function createStringLiteral(value: string, transformContext: ts.TransformationContext): ts.StringLiteral { |
| 73 | const literal = transformContext.factory.createStringLiteral(value); |
| 74 | (literal as any).singleQuote = true; |
| 75 | return literal; |
| 76 | } |
| 77 | |
| 78 | export class JSXProcessor { |
| 79 | constructor(readonly logger?: ILogger) {} |
no outgoing calls
no test coverage detected