tonsky / Clojure-Sublimed

Clojure support for Sublime Text 4
MIT License
359 stars 22 forks source link

query about test in metadata section in syntax_test_clojure.cljc #4

Open sogaiu opened 3 years ago

sogaiu commented 3 years ago

Currently I see:

  ^123 x  ^[:dynamic true] x

at: https://github.com/tonsky/sublime-clojure/blob/master/syntax_test_clojure.cljc#L97

Are these supposed to pass?

Specifically, the constructs:

^123 x

and

^[:dynamic true] x

don't seem syntactically valid.

tonsky commented 3 years ago

I think this test tests that those constructs are not highlighted as metadata. Ideally they should’ve been errors, of course.

sogaiu commented 3 years ago

Thanks!