( template, options )
| 8943 | /* */ |
| 8944 | |
| 8945 | function baseCompile ( |
| 8946 | template, |
| 8947 | options |
| 8948 | ) { |
| 8949 | var ast = parse(template.trim(), options); |
| 8950 | optimize(ast, options); |
| 8951 | var code = generate(ast, options); |
| 8952 | return { |
| 8953 | ast: ast, |
| 8954 | render: code.render, |
| 8955 | staticRenderFns: code.staticRenderFns |
| 8956 | } |
| 8957 | } |
| 8958 | |
| 8959 | function makeFunction (code, errors) { |
| 8960 | try { |