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