Source: ast/interpolator-string.js

var InterpolatorChunk = require('src/ast/interpolator-chunk');

/**
 * @class InterpolatorString
 * @extends InterpolatorChunk
 * @memberof AST
 * @param {Object} opts - The interpolator string options
 */
var InterpolatorString = module.exports = function InterpolatorString(opts)
{
  if(!(this instanceof InterpolatorString))
    return new InterpolatorString(opts);

  InterpolatorChunk.call(this, opts);
}
InterpolatorString.prototype = Object.create(InterpolatorChunk.prototype)