UNPKG

198 BJavaScriptView Raw
1var CallStatement = module.exports = function(callee, args) {
2 this.type = 'ExpressionStatement';
3 this.expression = {
4 type: 'CallExpression',
5 callee: callee,
6 arguments: args,
7 };
8};