(code, errors)
| 8951 | } |
| 8952 | |
| 8953 | function makeFunction (code, errors) { |
| 8954 | try { |
| 8955 | return new Function(code) |
| 8956 | } catch (err) { |
| 8957 | errors.push({ err: err, code: code }); |
| 8958 | return noop |
| 8959 | } |
| 8960 | } |
| 8961 | |
| 8962 | function createCompiler (baseOptions) { |
| 8963 | var functionCompileCache = Object.create(null); |
no outgoing calls
no test coverage detected