Source: ast/interpolator-chunk.js

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

  /** @member {string} InterpolatorChunk#data */
  this.data = opts.data || null;
}