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 446f2a0 commit cbd6a58Copy full SHA for cbd6a58
test/clojure-mode-indentation-test.el
@@ -338,6 +338,20 @@ values of customisable variables."
338
(let [indent-test :fail]
339
...)))")
340
341
+(def-full-indent-test proxy
342
+ "(proxy [Writer] []
343
+ (close [] (.flush ^Writer this))
344
+ (write
345
+ ([x]
346
+ (with-out-binding [out messages]
347
+ (.write out x)))
348
+ ([x ^Integer off ^Integer len]
349
350
+ (.write out x off len))))
351
+ (flush []
352
353
+ (.flush out))))")
354
+
355
(def-full-indent-test reader-conditionals
356
"#?@ (:clj []
357
:cljs [])")
0 commit comments