mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
Fix typo in JSXMemberExpresson walker
This commit is contained in:
parent
5a58bdf5a5
commit
65ede6e4fb
@ -305,7 +305,7 @@ walkers[Syntax.JSXIdentifier] = leafNode;
|
|||||||
walkers[Syntax.JSXMemberExpression] = function(node, parent, state, cb) {
|
walkers[Syntax.JSXMemberExpression] = function(node, parent, state, cb) {
|
||||||
cb(node.object, node, state);
|
cb(node.object, node, state);
|
||||||
|
|
||||||
cb(node.property. node, state);
|
cb(node.property, node, state);
|
||||||
};
|
};
|
||||||
|
|
||||||
walkers[Syntax.JSXNamespacedName] = function(node, parent, state, cb) {
|
walkers[Syntax.JSXNamespacedName] = function(node, parent, state, cb) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user