File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
src/main/cljs/cljs/spec/impl Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 6
6
; the terms of this license.
7
7
; You must not remove this notice, or any other, from this software.
8
8
9
- (ns cljs.spec.gen
9
+ (ns cljs.spec.impl. gen
10
10
(:refer-clojure :exclude [delay])
11
11
(:require [cljs.core :as c]))
12
12
21
21
generator that delegates to that, but delays
22
22
creation until used."
23
23
[& body]
24
- `(cljs.spec.gen/delay-impl (c/delay ~@body)))
24
+ `(cljs.spec.impl. gen/delay-impl (c/delay ~@body)))
25
25
26
26
(defmacro ^:skip-wiki lazy-combinator
27
27
" Implementation macro, do not call directly."
Original file line number Diff line number Diff line change 6
6
; the terms of this license.
7
7
; You must not remove this notice, or any other, from this software.
8
8
9
- (ns cljs.spec.gen
9
+ (ns cljs.spec.impl. gen
10
10
(:refer-clojure :exclude [boolean cat hash-map list map not-empty set vector
11
11
char double int keyword symbol string uuid delay])
12
12
(:require-macros [cljs.core :as c]
13
- [cljs.spec.gen :as gen :refer [dynaload lazy-combinators lazy-prims]])
13
+ [cljs.spec.impl. gen :as gen :refer [dynaload lazy-combinators lazy-prims]])
14
14
(:require [cljs.core :as c]))
15
15
16
16
(def ^:private quick-check-ref
@@ -111,8 +111,8 @@ gen-builtins
111
111
(comment
112
112
(require 'clojure.test.check)
113
113
(require 'clojure.test.check.properties)
114
- (require 'cljs.spec.gen)
115
- (in-ns 'cljs.spec.gen)
114
+ (require 'cljs.spec.impl. gen)
115
+ (in-ns 'cljs.spec.impl. gen)
116
116
117
117
; ; combinators, see call to lazy-combinators above for complete list
118
118
(generate (one-of [(gen-for-pred integer?) (gen-for-pred string?)]))
You can’t perform that action at this time.
0 commit comments