Lines Matching defs:compile
96 compile: function(program, options) {
143 var result = new this.compiler().compile(program, this.options);
346 compile: function(environment, options, context, asObject) {
679 this.context.programs[index] = compiler.compile(child, options, this.context);
783 var environment = new Handlebars.Compiler().compile(ast, options);
784 return new Handlebars.JavaScriptCompiler().compile(environment, options);
787 Handlebars.compile = function(string, options) {
791 function compile() {
793 var environment = new Handlebars.Compiler().compile(ast, options);
794 var templateSpec = new Handlebars.JavaScriptCompiler().compile(environment, options, undefined, true);
801 compiled = compile();