* Create a context with information, useful in subsequent analyses.
(source)
| 78 | * Create a context with information, useful in subsequent analyses. |
| 79 | */ |
| 80 | function analyzeContext(source) { |
| 81 | const analyzer = new ContextAnalyzer(); |
| 82 | const context = new MutationContext(); |
| 83 | analyzer.mutate(source, context); |
| 84 | return context; |
| 85 | } |
| 86 | |
| 87 | class Result { |
| 88 | constructor(code, flags) { |
no test coverage detected