`::om/pass` is not a valid keyword. Keywords with two colons are resolved
to the current namespace. For example, `::key` inside of `my.namespace` is
the same as `:my.namespace/key`.
`::om/pass` is not valid because `:my.namespace/om/pass` is not valid.


On Fri, Jul 25, 2014 at 4:27 PM, Makoto H. <[email protected]> wrote:

> Hi,
>
> I am trying to test insturment in om examples.
>
>
> https://github.com/swannodette/om/blob/master/examples/instrument/src/core.cljs
>
> (om/root
>   app-view
>   (atom {:text "Instrument!"
>          :list [{:text "Milk"} {:text "Cookies"} {:text "Apples"}]})
>   {:target (.getElementById js/document "app")
>    :instrument
>    (fn [f cursor m]
>      (if (= f sub-view)
>        (om/build* something-else [f cursor m])
>        ::om/pass))})
> When I evaluated the last expression in repl session using cemerick/austin
> as above, the following exception occurred.
>
> java.lang.RuntimeException: Invalid token: ::om/pass
> java.lang.RuntimeException: Unmatched delimiter: )
> java.lang.RuntimeException: Unmatched delimiter: )
> java.lang.RuntimeException: Unmatched delimiter: }
> java.lang.RuntimeException: Unmatched delimiter: )
>
> What am I wrong ? I attached project.clj.
>
> Thanks,
> MH
>
>
> --
> Note that posts from new members are moderated - please be patient with
> your first post.
> ---
> You received this message because you are subscribed to the Google Groups
> "ClojureScript" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To post to this group, send email to [email protected].
> Visit this group at http://groups.google.com/group/clojurescript.
>

-- 
Note that posts from new members are moderated - please be patient with your 
first post.
--- 
You received this message because you are subscribed to the Google Groups 
"ClojureScript" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/clojurescript.

Reply via email to