-
Notifications
You must be signed in to change notification settings - Fork 0
/
output.clj
464 lines (333 loc) · 6.06 KB
/
output.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
(if 1 2 3)
(if 1
2
3)
(if 1 2)
(if 1
2)
(if 1)
(if)
(if 1
2
3)
(when 1
2)
(fn [a b] 1 2)
(fn [a b]
1
2)
(fn a [a b] 1 2)
(fn a [a b]
1
2)
(fn
([a] a)
([a b] (+ a b)))
(let [a 1 b 2] 1 2)
(let [a 1
b 2]
1
2)
(let [] 1)
(let []
1)
(let [a 1] 1 2)
(let [a 1]
1
2)
(let [a]
1
2)
(let [a] 1 2)
(loop [a 1 b 1] (if (> a 10) [a b] (recur (inc a) (dec b))))
(loop [a 1
b 1]
(if (> a 10)
[a b]
(recur (inc a) (dec b))))
(letfn [(neven? [n] (if (zero? n) true (nodd? (dec n))))
(nodd? [n] (if (zero? n) false (neven? (dec n))))]
(neven? 10))
(letfn [(neven? [n] (if (zero? n)
true
(nodd? (dec n))))
(nodd? [n] (if (zero? n)
false
(neven? (dec n))))]
(neven? 10))
(do 1 2)
(do
1
2)
(do 1
2)
(try 1 (catch Exception e 2) (finally 3))
(try
1
(catch Exception e
2)
(finally
3))
(defn plus [x y] (+ x y))
(defn plus
[x y] (+ x y))
(defn plus
[x y]
(+ x y))
(defn cast
"Throws an error if x is not of a type t, else returns x."
{:added "1.0"}
[t x]
(cast__ t x))
(deftest t (is (= 1 2)))
(deftest t
(is (= 1 2)))
(def PI 3.14)
(def PI
3.14)
(ns my.test
(:require my.test0
my.test1
[my.test2]
[my.test3 :as test3 :refer [f1]])
(:import abc.dfg
(java.time LocalDateTime ZonedDateTime ZoneId)
java.time.format.DateTimeFormatter))
(defn test-docstring
"Given a multimethod and a dispatch value, returns the dispatch fn
that would apply to that value, or nil if none apply and no default"
{:added "1.0"}
[t]
(print "ha
ha"))
(test-call 1 2 3)
(test-call 1
2
3)
(test-call 1 2
3)
(test-call
1
2
3)
(test-call
1 2
3)
@mfatom
@1
#"t"
#'t
#^:t []
#(inc %)
'test
'[test]
`(if-not ~test ~then nil)
`(~'t)
(defmacro and
"Evaluates exprs one at a time, from left to right. If a form
returns logical false (nil or false), and returns that value and
doesn't evaluate any of the other expressions, otherwise it returns
the value of the last expr. (and) returns true."
{:added "1.0"}
([] true)
([x] x)
([x & next]
`(let [and# ~x]
(if and# (and ~@next) and#))))
(def ^{:arglists '([& items])
:doc "Creates a new list containing the items."
:added "1.0"
:tag List}
list list__)
{1 2 3 4}
{1 2
3 4}
[1 2
3 4]
#{1 2
3 4 5}
[#?(:cljs 1)]
(#?(:cljs 1))
#?(:clj 1)
#?@(:cljs 3)
(def regexp #?(:clj re-pattern
:cljs js/XRegExp))
#?(:cljs)
#?(:cljs (let [] 1) :default (let [] 1))
[#?@(:clj 1)]
#:t{:g 1}
#::{:g 1}
#:t{:_/g 1}
#:t{:h/g 1}
#::s{:g 1}
#::{g 1}
#inst 1
#uuid 2
#t 4
#g [a]
(defn ^:private line-seq*
[rdr]
(when-let [line (reader-read-line__ rdr)]
(cons line (lazy-seq (line-seq* rdr)))))
(defrecord StandardInterceptor [name request response]
Interceptor
(-process-request [{:keys [request]} opts]
(request opts))
(-process-response [{:keys [response]} xhrio]
(response xhrio)))
(defprotocol AjaxRequest
"An abstraction for a running ajax request."
(-abort [this]
"Aborts a running ajax request, if possible."))
(extend-protocol IComparable
Symbol
(-compare [x y]
(if (symbol? y)
(compare-symbols x y)
(throw (js/Error. (str "Cannot compare " x " to " y)))))
Keyword
(-compare [x y]
(if (keyword? y)
(compare-keywords x y)
(throw (js/Error. (str "Cannot compare " x " to " y))))))
(defmulti ^:private render-at-rule
"Render a CSS at-rule"
:identifier)
(defmethod render-at-rule :default [_] nil)
(defmethod render-at-rule :import
[{:keys [value]}]
(let [{:keys [url media-queries]} value
url (if (string? url)
(util/wrap-quotes url)
(render-css url))
queries (when media-queries
(render-media-expr media-queries))]
(str "@import "
(if queries (str url " " queries) url)
semicolon)))
; test comment
;; another one
; multiline comment
; test
(def s
"foo
bar")
;; TODO: something
(defn ^:private foo
"Some useful
docstring." ; random comment
;; Another random comment
[]
; Comment inside function body
(+ 1 2) ; end of line comment
;; Return nil
nil)
#_(+ 1 2)
(comment (+ 1 2))
(= "sadf" {:foo "sadf"
:bar "qewr"})
{:foo "sdfsdf"
;;some comment
:bar "1234"}
{:foo "sdfsdf" ;;some comment
;; test
:bar 1234
;;some comment
; :bar "1234"
}
(cond
(= 1 2) 1
(= 2 2) 3
:else
(println "ha"))
(cond (test-a)
:a
(test-b)
:b)
(cond1-> t
(= 1 2) (assoc :t 1)
true identity)
(defn- print-char [c]
(-write *out* (condp = c
\backspace "\\backspace"
\tab "\\tab"
\newline "\\newline"
\formfeed "\\formfeed"
\return "\\return"
\" "\\\""
\\ "\\\\"
(str "\\" c))))
(use-fixtures :once
my-fixture)
(with-something
do-something)
(foor (test-call
a
;;asdfds
)
1)
[1
;;sdf
2
;;test
]
#{1
;sdf
2
;;test
}
{:t 1
#_1}
{:t ^:g []
:g ^:g []}
{:t
;;test
1
#_1 2 3}
#"(?<=[a-z])(?=[A-Z])"
{:t 1,
:g 2}
1e-7
1.0E-007
001234N
001234M
0000.0001M
1/1
1/3
8/4
99999999999999999
99999999999999999999999999999999999999
8r4
8R4
8r0004
8R0004
-8r4
-8R4
-8r0004
-8R0004
0123
000567
-0123
-000567
#my.klass_or_type_or_record [:a :b :c]
#my.record {:a 1, :b 2}
#?(:cljs
:test)
`(when *enable-trace*
(tap> (array-map
:in (extract-in)
~@(when trace-line [:line trace-line])
:thread (.getName (Thread/currentThread))
~@kvs))
nil) )
(fn [s] (str \\ \{ \\ \{ s \\ \} \\ \}))
#_#{"10134120381979624"}
(defn get-boolean-value
(^Boolean [component key]
(get-boolean-value component key false))
(^Boolean [component key default]
(if-let [value (get-value component key nil)]
(#?@(:clj [Boolean/valueOf]
:cljs [= "true"]) value)
default)))
'#{a b}