cljs.repl.browser/firefox-st-el->frame

functionremoved v1.7.10added v0.0-3053Edit
(firefox-st-el->frame repl-env st-el opts)

Source code @ clojurescript:src/main/clojure/cljs/repl/browser.clj
(defn firefox-st-el->frame
  [repl-env st-el opts]
  (let [[function flc] (if (re-find #"@" st-el)
                         (string/split st-el #"@")
                         [nil st-el])
        [file line column] (parse-file-line-column flc)]
    (if (and file function line column)
      {:file (parse-file repl-env file opts)
       :function (firefox-clean-function function)
       :line line
       :column column}
      (when-not (string/blank? function)
        {:file nil
         :function (firefox-clean-function function)
         :line nil
         :column nil}))))