Lines Matching refs:hb
18 let hb = _create();
20 hb.compile = function(input, options) {
21 return compile(input, options, hb);
23 hb.precompile = function(input, options) {
24 return precompile(input, options, hb);
27 hb.AST = AST;
28 hb.Compiler = Compiler;
29 hb.JavaScriptCompiler = JavaScriptCompiler;
30 hb.Parser = Parser;
31 hb.parse = parse;
32 hb.parseWithoutProcessing = parseWithoutProcessing;
34 return hb;