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