add abstract reference CallExpression base

This commit is contained in:
Sebastian McKenzie
2014-11-23 16:54:51 +11:00
parent fcc4734a1f
commit bf0ca10253

View File

@@ -24,6 +24,11 @@ exports.UnaryExpression = function (node, parent) {
});
};
exports.CallExpression = function (node, parent) {
var callee = node.callee;
if (!t.isVirtualPropertyExpression(callee)) return;
};
exports.VirtualPropertyExpression = function (node) {
return util.template("abstract-expression-get", {
PROPERTY: node.property,