-
Notifications
You must be signed in to change notification settings - Fork 788
Compile Time Type Checking
David Nolen edited this page Aug 9, 2015
·
22 revisions
ClojureScript can easily leverage Google Closure for compile time type checking. This is done simply via ClojureScript docstrings which are compiled into JSDoc style comment blocks. Google Closure supports many useful kinds of type annotation. For example you can write a function that takes non-nullable Object.
(defn foo
"@param {!Object} x
[x] x)
If Closure can infer that some invoke may pass null, this will result in a compile time type error.
Protocols all emit an @interface
annotation. Any deftype
or defrecord
that implements some protocol will have it's JSDoc annotation extended with @implement
for that protocol.
(defn bar
"@param {IVector}"
[x] x)
- Rationale
- Quick Start
- Differences from Clojure
- [Usage of Google Closure](Google Closure)