Sha256: 4987808bf35d4f2fcfb203591e0f2449a7170cec9183781fb3a7e75b9e0392bd

Contents?: true

Size: 462 Bytes

Versions: 69

Compression:

Stored size: 462 Bytes

Contents

"use strict";
var parser = require("./parser")["default"];
var AST = require("./ast")["default"];
var Helpers = require("./helpers");
var extend = require("../utils").extend;

exports.parser = parser;

var yy = {};
extend(yy, Helpers, AST);

function parse(input) {
  // Just return if an already-compile AST was passed in.
  if (input.constructor === AST.ProgramNode) { return input; }

  parser.yy = yy;

  return parser.parse(input);
}

exports.parse = parse;

Version data entries

69 entries across 69 versions & 2 rubygems

Version Path
trusty-festivity-extension-2.3.1 node_modules/bower/node_modules/handlebars/dist/cjs/handlebars/compiler/base.js
trusty-festivity-extension-2.3.0 node_modules/bower/node_modules/handlebars/dist/cjs/handlebars/compiler/base.js
entangled-0.0.16 spec/dummy/public/node_modules/bower/node_modules/handlebars/dist/cjs/handlebars/compiler/base.js
entangled-0.0.15 spec/dummy/public/node_modules/bower/node_modules/handlebars/dist/cjs/handlebars/compiler/base.js
entangled-0.0.14 spec/dummy/public/node_modules/bower/node_modules/handlebars/dist/cjs/handlebars/compiler/base.js
entangled-0.0.13 spec/dummy/public/node_modules/bower/node_modules/handlebars/dist/cjs/handlebars/compiler/base.js
entangled-0.0.12 spec/dummy/public/node_modules/bower/node_modules/handlebars/dist/cjs/handlebars/compiler/base.js
entangled-0.0.11 spec/dummy/public/node_modules/bower/node_modules/handlebars/dist/cjs/handlebars/compiler/base.js
entangled-0.0.10 spec/dummy/public/node_modules/bower/node_modules/handlebars/dist/cjs/handlebars/compiler/base.js