Compiles an input and returns its result
(SourceFile input)
| 41 | |
| 42 | /** Compiles an input and returns its result */ |
| 43 | private Result compile(SourceFile input) { |
| 44 | Result result = compiler.compile(externs, input, options); |
| 45 | assumeTrue(result.success); // Semantic validity check |
| 46 | return result; |
| 47 | } |
| 48 | |
| 49 | /** Entry point for fuzzing with default (arbitrary) string generator */ |
| 50 | @Fuzz |