UNPKG

252 BJavaScriptView Raw
1var BlockStatement = require('./BlockStatement');
2
3var Program = module.exports = function(body, comments) {
4 this.type = 'Program';
5 this.body = body;
6 this.comments = comments;
7};
8
9Program.prototype.normalize = BlockStatement.prototype.normalize;