You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From clojurescript, navigating to source on (MapEntry. 1 2 nil) doesn't work. However, if you add a space to separate the . it does
Seems like it would be simple to check for a trailing period and then reissue the navigation command. From documentation about the reader
Symbols begin with a non-numeric character and can contain alphanumeric characters and *, +, !, -, _, ', ?, <, > and = (other characters may be allowed eventually).
It seems safe to assume that periods are not valid constituents of a symbol so we can safely check and navigate to the underlying deftype or defrecord by trimming it.
The text was updated successfully, but these errors were encountered:
From clojurescript, navigating to source on
(MapEntry. 1 2 nil)
doesn't work. However, if you add a space to separate the.
it doesSeems like it would be simple to check for a trailing period and then reissue the navigation command. From documentation about the reader
It seems safe to assume that periods are not valid constituents of a symbol so we can safely check and navigate to the underlying deftype or defrecord by trimming it.
The text was updated successfully, but these errors were encountered: