UNPKG

147 BJavaScriptView Raw
1var CallExpression = module.exports = function(callee, args) {
2 this.type = 'CallExpression';
3 this.callee = callee;
4 this.arguments = args;
5};