add abstract reference CallExpression base
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user