Skip to content

Differences from Clojure

Mike Fikes edited this page Jan 23, 2015 · 111 revisions

What follows is a section-by-section review of the sections on the left-hand navigation panel of http://clojure.org, enumerating what is different in ClojureScript and in some cases the similarities.

Rationale

The rationale for ClojureScript is much the same as for Clojure, with JavaScript in the role of platform, and additional emphasis on the reach of JS, as it is obviously not as rich a platform.

A deeper discussion on ClojureScript's rationale can be found elsewhere on this site.

State and Identity

Same as Clojure. Clojure's identity model is simpler and more robust than mutable state, even in single threaded environments.

Dynamic Development

ClojureScript's REPL can be launched from within the Clojure REPL. See Quick Start for details.

Functional Programming

ClojureScript has the same immutable persistent collections as Clojure on the JVM.

Lisp

ClojureScript's macros are written in Clojure, and are referenced via the require-macros keyword in namespace declarations:

(ns my.namespace
  (:require-macros [my.macros :as my]))

The :as prefix selector is required in :require-macros. One point of note is that the code generated by ClojureScript macros must target the capabilities in ClojureScript.

Runtime Polymorphism

  • ClojureScript protocols have the same semantics as Clojure protocols.

Concurrent Programming

Clojure's model of values, state, identity, and time is valuable even in single-threaded environments.

  • Atoms work as in Clojure
  • No Refs nor STM
  • The user experience of binding is similar to that in Clojure
    • Vars
      • not reified at runtime
      • many development time uses of reification are obviated by access to Clojure data structures via the analyzer
    • def produces ordinary JS variables
  • Agents are currently not implemented

Hosted on the JVM

Getting Started

See Quick Start

The Reader

  • Numbers
    • ClojureScript currently only supports integer and floating point literals that map to JavaScript primitives
      • Ratio, BigDecimal, and BigInteger literals are currently not supported
  • Characters
    • ClojureScript does not have character literals, instead characters are the same as in JavaScript (i.e. single character strings)
  • Lists, Vectors, Maps, and Set literals are the same as in Clojure
  • Macro characters
    • Because there are no character nor Var types in ClojureScript neither \ nor #' will work
  • Syntax quote ```
    • Will still resolve symbols in the current namespace
    • Does not support unquote ~ and unquote-splice ~@
  • read
    • The read and read-string functions are located in the cljs.reader namespace

The REPL and main

  • See Quick Start for instructions the ClojureScript REPL.
  • main support is currently not implemented

Evaluation

  • ClojureScript has the same evaluation rules as Clojure
  • load and load-file are planned
  • Runtime eval is not supported in ClojureScript

Special Forms

The following ClojureScript special forms are identical to their Clojure cousins: if, do, let, letfn, quote, loop, recur, throw, and try.

  • var notes
    • Vars are not reified at runtime. When the compiler encounters the var special form it emits a Var instance reflecting compile time metadata. (This satisfies many common static use cases.)
  • def notes
    • def produces ordinary JS variables
    • :private metadata is not yet enforced by the compiler
  • if notes
    • the section about Java's boolean boxes is irrelevant in ClojureScript
  • fn notes
    • There is currently no runtime enforcement of arity when calling a fn
  • monitor-enter, monitor-exit, and locking are not implemented

Macros

Macros are written in Clojure. (See the Lisp differences section above).

Other Functions

Data Structures

  • Numbers
    • Currently ClojureScript numbers are just JavaScript numbers
  • Coercions are not implemented, since there are currently no types to coerce to
  • Characters
    • JavaScript has no character type. Clojure characters are represented internally as single-character strings
  • Keywords
    • ClojureScript keywords are not guaranteed to be identical?, for fast equality testing use keyword-identical?
  • Collections
    • Persistent collections available
      • Ports of Clojure's implementations
    • Transient support in place for persistent vectors, hash maps and hash sets
    • Most but not all collection fns are implemented

Seqs

  • Seqs have the same semantics as in Clojure, and almost all Seq library functions are available in ClojureScript.
  • The apply function works but does not correctly handle lazy sequences
    • More information can be found on ticket #11

Protocols

  • defprotocol and deftype, extend-type, extend-protocol work as in Clojure
  • Protocols are not reified as in Clojure, there are no runtime protocol objects
  • Some reflective capabilities (satisifies?) work as in Clojure
    • satisfies? is a macro and must be passed a protocol name
  • extend is not currently implemented
  • specify, extend immutable values to protocols - instance level extend-type without wrappers

Metadata

Works as in Clojure.

Namespaces

  • You must currently use the ns form only with the following caveats
    • You must use the :only form of :use
    • :require supports :as and :refer
      • both options can be skipped
      • in this case a symbol can be used as a libspec directly
        • that is, (:require lib.foo) and (:require [lib.foo]) are both supported and mean the same thing
    • The only option for :refer-clojure is :exclude
    • :import is available for importing Google Closure classes
      • ClojureScript types and records should be brought in with :use or :require :refer, not :imported
  • Macros are written in Clojure, and are referenced via the new :require-macros / :use-macros options to ns
    • :require-macros and :use-macros support the same forms that :require and :use do

Libs

Existing Clojure libs will have to conform to the ClojureScript subset in order to work in ClojureScript

Vars and the Global Environment

  • def and binding work as in Clojure
    • but on ordinary js variables
  • Atoms work as in Clojure
  • Refs and Agents are not currently implemented
  • Validators work as in Clojure
  • doc and find-doc are not currently implemented
  • intern not implemented - no reified Vars

Refs and Transactions

Refs and transactions are not currently supported.

Agents

Agents are not currently supported.

Atoms

Atoms work as in Clojure.

Host Interop

The host language interop features (new, /, ., etc.) work as in Clojure where possible, e.g.:

goog/LOCALE
=> "en"

(let [sb (goog.string.StringBuffer. "hello, ")]
 (.append sb "world")
 (.toString sb))
=> "hello, world"

To access object properties (including functions that you want as a value, rather than to execute) use a leading hyphen:

(.-Infinity js/window)
 => Infinity

Compilation and Class Generation

Compilation is different from Clojure:

  • All ClojureScript programs are compiled into (optionally optimized) JavaScript.
  • Individual files can be compiled into individual JS files for analysis of output
  • Production compilation is whole-program compilation via Google Closure compiler
  • gen-class, gen-interface, etc. are unnecessary and unimplemented in ClojureScript

Other Libraries

ClojureScript currently includes the following non-core namespaces ported from Clojure:

  • clojure.set
  • clojure.string
  • clojure.walk
  • clojure.zip
  • clojure.core.reducers
    • fold is currently an alias for reduce

Differences with other Lisps

ClojureScript is the same (at a Lisp level) as Clojure except for the following:

  • no runtime evaluation
  • no runtime compilation

Contributing

Clojure and ClojureScript share the same Contributor Agreement and development process.

Clone this wiki locally