Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add enough feature to be able to parse clojure.core #21

Merged
merged 3 commits into from
May 27, 2018

Conversation

plexus
Copy link
Collaborator

@plexus plexus commented May 25, 2018

  • metadata ^
  • deref @...
  • shorthand lambdas #(..)
  • vars #'
  • hex numbers
  • regexes

@plexus plexus force-pushed the add-more-syntax-features branch from 3350e63 to 4690a33 Compare May 25, 2018 14:57
@plexus
Copy link
Collaborator Author

plexus commented May 25, 2018

So when-let is deprecated in Emacs 26, and when-let* is not available on Emacs 25. Fabulous.

- metadata ^
- deref @...
- shorthand lambdas #(..)
- vars #'
- hex numbers
- regexes
@plexus plexus force-pushed the add-more-syntax-features branch from 4690a33 to 91c2ad8 Compare May 25, 2018 15:09
@plexus plexus requested a review from volrath May 25, 2018 15:09
(:value . 123))))
((:node-type . :map)
(:position . 2)
(:children)))))))))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

shouldn't the :map happen first?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ah yes, good catch!

Copy link
Member

@volrath volrath left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lovely!

parseclj-lex.el Outdated

((equal char ?`)
(right-char)
(parseclj-lex-token :backquote "'" pos))
Copy link
Member

@volrath volrath May 25, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also, I think there's a typeo here: "`" instead of "'"

@bbatsov
Copy link
Member

bbatsov commented May 26, 2018

So when-let is deprecated in Emacs 26, and when-let* is not available on Emacs 25. Fabulous.

Classic setup. I usually just copy/paste the new stuff in some whatever-compat.el file to be able to use them, without too much hassle.

@bbatsov
Copy link
Member

bbatsov commented May 26, 2018

Btw, do you plan to tag a release now that the parser is "feature-complete"? As you know I'd love to use it and parseedn in CIDER, but there has to be some release available for use with MELPA stable.

@plexus
Copy link
Collaborator Author

plexus commented May 26, 2018

Sure, sounds good! I just checked the backlog and it seems syntax-wise all we're missing are namespaced maps.

What do you have in mind for it? It might still be too slow for a lot of use cases. Parsing clojure.core to an AST takes 2.24 seconds for me. It's a lot faster than the old edn.el, but still...

OTOH we haven't really done any effort yet for optimizing things, maybe with some benching and tweaking we could get a significant speedup.

@plexus
Copy link
Collaborator Author

plexus commented May 26, 2018

Note also that clojure.core is 7700+ lines. On a 200 line file I was just working on it runs in 0.086 seconds, that might already be workable.

@bbatsov
Copy link
Member

bbatsov commented May 26, 2018

What do you have in mind for it? It might still be too slow for a lot of use cases. Parsing clojure.core to an AST takes 2.24 seconds for me. It's a lot faster than the old edn.el, but still...

I'm mostly hoping to implement better support for locals using it and some simple file-local refactorings. But what we need more right now is parseedn, so the cider-nrepl API could be unburned by the various Elisp limitations (e.g. some params are rather odd, because Elisp doesn't have booleans and some return values are also odd because the optimal return is not something we can read in Elisp - that's why almost all ops return just nested lists of strings).

Namespaced maps are parsed to a regular :map AST token, but with an extra
`:map-prefix` key, which is the map-prefix lex token.
@plexus
Copy link
Collaborator Author

plexus commented May 27, 2018

I added namespace maps, AFAICT we should be able to parse all clojure syntax now. I'll merge this and tag a 0.1 release.

@plexus plexus merged commit 93a0f43 into master May 27, 2018
@plexus plexus deleted the add-more-syntax-features branch May 27, 2018 09:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants