We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e7fa6b commit 014c760Copy full SHA for 014c760
rjsx-mode.el
@@ -286,7 +286,10 @@ Sets KID's parent to N."
286
287
(defun rjsx-member-full-name (n)
288
"Return the string with N's combined names together."
289
- (mapconcat 'rjsx-identifier-full-name (rjsx-member-idents n) "."))
+ (mapconcat #'rjsx-identifier-full-name
290
+ ;; Fix #89. There could be an error node here
291
+ (cl-remove-if-not #'rjsx-identifier-p (rjsx-member-idents n))
292
+ "."))
293
294
(cl-defstruct (rjsx-attr
295
(:include js2-node (type rjsx-JSX-ATTR))
0 commit comments