(code, errors)
| 8957 | } |
| 8958 | |
| 8959 | function makeFunction (code, errors) { |
| 8960 | try { |
| 8961 | return new Function(code) |
| 8962 | } catch (err) { |
| 8963 | errors.push({ err: err, code: code }); |
| 8964 | return noop |
| 8965 | } |
| 8966 | } |
| 8967 | |
| 8968 | function createCompiler (baseOptions) { |
| 8969 | var functionCompileCache = Object.create(null); |
no outgoing calls
no test coverage detected