(require 'cc-mode)
(require 'font-lock)
(require 'newcomment)
(eval-when-compile
(require 'cl))
(defgroup espresso nil
"Customization variables for `espresso-mode'."
:tag "JavaScript - Espresso-Mode"
:group 'languages)
(defcustom espresso-indent-level 4
"Number of spaces for each indentation step."
:type 'integer
:group 'espresso)
(defcustom espresso-expr-indent-offset 0
"Number of additional spaces used for indentation of continued
expressions. The value must be no less than minus
`espresso-indent-level'."
:type 'integer
:group 'espresso)
(defcustom espresso-auto-indent-flag t
"Automatic indentation with punctuation characters. If non-nil, the
current line is indented when certain punctuations are inserted."
:type 'boolean
:group 'espresso)
(defvar espresso-mode-map nil
"Keymap used in Espresso mode.")
(unless espresso-mode-map
(setq espresso-mode-map (make-sparse-keymap)))
(when espresso-auto-indent-flag
(mapc (lambda (key)
(define-key espresso-mode-map key 'espresso-insert-and-indent))
'("{" "}" "(" ")" ":" ";" ",")))
(defun espresso-insert-and-indent (key)
"Runs the command bound to KEY in the global keymap, and if
we're not in a string or comment, indents the current line."
(interactive (list (this-command-keys)))
(call-interactively (lookup-key (current-global-map) key))
(let ((syntax (save-restriction (widen) (syntax-ppss))))
(unless (nth 8 syntax)
(indent-according-to-mode))))
(defvar espresso-mode-syntax-table
(let ((table (make-syntax-table)))
(c-populate-syntax-table table)
(modify-syntax-entry ?$ "_" table)
table)
"Syntax table used in Espresso mode.")
(defconst espresso--name-start-re "[a-zA-Z_$]"
"Matches the first character of a Espresso identifier. No grouping")
(defconst espresso--stmt-delim-chars "^;{}?:")
(defconst espresso--name-re (concat espresso--name-start-re
"\\(?:\\s_\\|\\sw\\)*")
"Matches a Javascript name. No grouping.")
(defconst espresso--dotted-name-re
(concat espresso--name-re "\\(?:\\." espresso--name-re "\\)*")
"Matches a dot-separated sequence of Javascript names")
(defconst espresso--cpp-name-re espresso--name-re
"Matches a C preprocessor name")
(defconst espresso--opt-cpp-start "^\\s-*#\\s-*\\([[:alnum:]]+\\)"
" Regexp matching the prefix of a cpp directive including the directive
name, or nil in languages without preprocessor support. The first
submatch surrounds the directive name.")
(defconst espresso--class-decls
`(
,(concat "^\\s-*\\_<var\\_>\\s-+"
"\\(" espresso--dotted-name-re "\\)"
"\\s-*=" "\\s-*"
"\\(" espresso--dotted-name-re
"\\)\\.extend\\(?:Final\\)?\\s-*(")
,(concat "^\\s-*"
"\\(" espresso--dotted-name-re "\\):"
"\\s-*\\(" espresso--dotted-name-re
"\\)\\.extend\\(?:Finak\\)?\\s-*("))
"List of regular expressions that can match class definitions.
Each one must set match group 1 to the name of the class being
defined, and optionally, group 2 to the name of the base class.")
(defun espresso--regexp-opt-symbol (list)
"Like regexp-opt, but surround the optimized regular expression
with `\\\\_<' and `\\\\_>'."
(concat "\\_<" (regexp-opt list t) "\\_>"))
(defun espresso--re-search-forward-inner (regexp &optional bound count)
"Auxiliary function for `espresso--re-search-forward'."
(let ((parse)
(orig-macro-end (save-excursion
(when (espresso--beginning-of-macro)
(c-end-of-macro)
(point))))
(saved-point (point-min)))
(while (> count 0)
(re-search-forward regexp bound)
(setq parse (parse-partial-sexp saved-point (point)))
(cond ((nth 3 parse)
(re-search-forward
(concat "\\([^\\]\\|^\\)" (string (nth 3 parse)))
(save-excursion (end-of-line) (point)) t))
((nth 7 parse)
(forward-line))
((or (nth 4 parse)
(and (eq (char-before) ?\/) (eq (char-after) ?\*)))
(re-search-forward "\\*/"))
((and (not (and orig-macro-end
(<= (point) orig-macro-end)))
(espresso--beginning-of-macro))
(c-end-of-macro))
(t
(setq count (1- count))))
(setq saved-point (point))))
(point))
(defun espresso--re-search-forward (regexp &optional bound noerror count)
"Search forward but ignore strings, cpp macros, and comments.
Invokes `re-search-forward' but treats the buffer as if strings,
cpp macros, and comments have been removed.
If invoked while inside a macro, treat the contents of the macro
as normal text.
"
(let ((saved-point (point))
(search-expr
(cond ((null count)
'(espresso--re-search-forward-inner regexp bound 1))
((< count 0)
'(espresso--re-search-backward-inner regexp bound (- count)))
((> count 0)
'(espresso--re-search-forward-inner regexp bound count)))))
(condition-case err
(eval search-expr)
(search-failed
(goto-char saved-point)
(unless noerror
(error (error-message-string err)))))))
(defun espresso--re-search-backward-inner (regexp &optional bound count)
"Auxiliary function for `espresso--re-search-backward'."
(let ((parse)
(orig-macro-start
(save-excursion
(and (espresso--beginning-of-macro)
(point))))
(saved-point (point-min)))
(while (> count 0)
(re-search-backward regexp bound)
(when (and (> (point) (point-min))
(save-excursion (backward-char) (looking-at "/[/*]")))
(forward-char))
(setq parse (parse-partial-sexp saved-point (point)))
(cond ((nth 3 parse)
(re-search-backward
(concat "\\([^\\]\\|^\\)" (string (nth 3 parse)))
(save-excursion (beginning-of-line) (point)) t))
((nth 7 parse)
(goto-char (nth 8 parse)))
((or (nth 4 parse)
(and (eq (char-before) ?/) (eq (char-after) ?*)))
(re-search-backward "/\\*"))
((and (not (and orig-macro-start
(>= (point) orig-macro-start)))
(espresso--beginning-of-macro)))
(t
(setq count (1- count))))))
(point))
(defun espresso--re-search-backward (regexp &optional bound noerror count)
"Search backward but ignore strings, preprocessor macros, and
comments. Invokes `re-search-backward' but treats the buffer as
if strings, preprocessor macros, and comments have been removed.
If inside a macro when called, treat the macro as normal text.
"
(let ((saved-point (point))
(search-expr
(cond ((null count)
'(espresso--re-search-backward-inner regexp bound 1))
((< count 0)
'(espresso--re-search-forward-inner regexp bound (- count)))
((> count 0)
'(espresso--re-search-backward-inner regexp bound count)))))
(condition-case err
(eval search-expr)
(search-failed
(goto-char saved-point)
(unless noerror
(error (error-message-string err)))))))
(defun espresso--forward-function-decl ()
(assert (looking-at "\\_<function\\_>"))
(forward-word)
(forward-comment most-positive-fixnum)
(skip-chars-forward "^(")
(unless (eobp)
(forward-list)
(forward-comment most-positive-fixnum)
(skip-chars-forward "^{"))
t)
(defun espresso--beginning-of-defun ()
(cond ((espresso--re-search-backward "\\_<function\\_>" (point-min) t)
(let ((pos (point)))
(save-excursion
(forward-line 0)
(when (looking-at espresso--function-heading-2-re)
(setq pos (match-beginning 1))))
(goto-char pos)))
(t
(goto-char (point-min)))))
(defun espresso--end-of-defun ()
(unless (looking-at "\\_<")
(skip-syntax-backward "w_"))
(let ((orig-point (point)) pos)
(when (or (looking-at "\\_<function\\_>")
(espresso--re-search-backward "\\_<function\\_>" (point-min) t))
(goto-char (match-beginning 0))
(let* ((func-loc (point))
(opening-brace-loc (progn (espresso--forward-function-decl)
(point))))
(cond ((and (<= func-loc orig-point)
(<= orig-point opening-brace-loc))
(setq pos opening-brace-loc))
((/= 0 (nth 0 (parse-partial-sexp
opening-brace-loc orig-point 0)))
(setq pos opening-brace-loc)))))
(cond
(pos (goto-char pos)
(forward-list))
((espresso--re-search-forward "\\_<function\\_>" (point-max) t)
(espresso--end-of-defun))
(t (goto-char (point-max))))))
(defun espresso--beginning-of-macro (&optional lim)
(let ((here (point)))
(save-restriction
(if lim (narrow-to-region lim (point-max)))
(beginning-of-line)
(while (eq (char-before (1- (point))) ?\\)
(forward-line -1))
(back-to-indentation)
(if (and (<= (point) here)
(looking-at espresso--opt-cpp-start))
t
(goto-char here)
nil))))
(defun espresso--backward-syntactic-ws (&optional lim)
"Simple implementation of c-backward-syntactic-ws"
(save-restriction
(when lim (narrow-to-region lim (point-max)))
(let ((in-macro (save-excursion (espresso--beginning-of-macro)))
(pos (point)))
(while (progn (unless in-macro (espresso--beginning-of-macro))
(forward-comment most-negative-fixnum)
(/= (point)
(prog1
pos
(setq pos (point)))))))))
(defun espresso--forward-syntactic-ws (&optional lim)
"Simple implementation of c-forward-syntactic-ws"
(save-restriction
(when lim (narrow-to-region (point-min) min))
(let ((pos (point)))
(while (progn
(forward-comment most-positive-fixnum)
(when (eq (char-after) ?#)
(c-end-of-macro))
(/= (point)
(prog1
pos
(setq pos (point)))))))))
(defun espresso--inside-param-list-p ()
"Return non-nil iff point is inside a function parameter list."
(condition-case err
(save-excursion
(up-list -1)
(and (looking-at "(")
(progn (forward-symbol -1)
(or (looking-at "function")
(progn (forward-symbol -1) (looking-at "function"))))))
(error nil)))
(defconst espresso--function-heading-1-re
(concat
"^\\s-*function\\s-+\\(" espresso--name-re "\\)")
"Regular expression matching the start of a function header. Match group 1
is the name of the function.")
(defconst espresso--function-heading-2-re
(concat
"^\\s-*\\(" espresso--name-re "\\)\\s-*:\\s-*function\\_>")
"Regular expression matching the start of a function entry in
an associative array. Match group 1 is the name of the function.")
(defconst espresso--macro-decl-re
(concat "^\\s-*#\\s-*define\\s-+\\(" espresso--cpp-name-re "\\)\\s-*(")
"Regular expression matching a CPP macro definition up to the opening
parenthesis. Match group 1 is the name of the function.")
(defconst espresso--keyword-re
(espresso--regexp-opt-symbol
'("abstract" "break" "case" "catch" "class" "const"
"continue" "debugger" "default" "delete" "do" "else"
"enum" "export" "extends" "final" "finally" "for"
"function" "goto" "if" "implements" "import" "in"
"instanceof" "interface" "native" "new" "package"
"private" "protected" "public" "return" "static"
"super" "switch" "synchronized" "throw"
"throws" "transient" "try" "typeof" "var" "void"
"volatile" "while" "with" "let"))
"Regular expression matching any JavaScript keyword.")
(defconst espresso--basic-type-re
(espresso--regexp-opt-symbol
'("boolean" "byte" "char" "double" "float" "int" "long"
"short" "void"))
"Regular expression matching any predefined type in JavaScript.")
(defconst espresso--constant-re
(espresso--regexp-opt-symbol '("false" "null" "undefined"
"true" "arguments" "this"))
"Regular expression matching any future reserved words in JavaScript.")
(defconst espresso--font-lock-keywords-1
(list
"\\_<import\\_>"
(list espresso--function-heading-1-re 1 font-lock-function-name-face)
(list espresso--function-heading-2-re 1 font-lock-function-name-face))
"Level one font lock.")
(defconst espresso--font-lock-keywords-2
(append espresso--font-lock-keywords-1
(list (list espresso--keyword-re 1 font-lock-keyword-face)
(cons espresso--basic-type-re font-lock-type-face)
(cons espresso--constant-re font-lock-constant-face)))
"Level two font lock.")
(defconst espresso--font-lock-keywords-3
`(
,@cpp-font-lock-keywords
,@espresso--font-lock-keywords-2
,(list
(concat "\\_<\\(const\\|var\\)\\_>\\|" espresso--basic-type-re)
(list (concat "\\(" espresso--name-re "\\)"
"\\s-*\\([=;].*\\|\\_<in\\_>.*\\|,\\|/[/*]\\|$\\)")
nil
nil
'(1 font-lock-variable-name-face)))
,(list
(concat "\\_<new\\_>\\s-+\\(" espresso--dotted-name-re "\\)")
(list 1 'font-lock-type-face))
,(list
(concat "\\_<instanceof\\_>\\s-+\\(" espresso--dotted-name-re "\\)")
(list 1 'font-lock-type-face))
,(list
(concat
"\\_<function\\_>\\(\\s-+" espresso--name-re "\\)?\\s-*(\\s-*"
espresso--name-start-re)
(list (concat "\\(" espresso--name-re "\\)\\(\\s-*).*\\)?")
'(backward-char)
'(end-of-line)
'(1 font-lock-variable-name-face)))
,(list
(concat
"^\\s-*" espresso--name-re "\\s-*[,)]")
(list espresso--name-re
'(if (save-excursion (backward-char)
(espresso--inside-param-list-p))
(forward-symbol -1)
(end-of-line))
'(end-of-line)
'(0 font-lock-variable-name-face)))
,@(mapcar #'(lambda (x)
`(,x
(1 font-lock-type-face t t)
(2 font-lock-type-face t t)))
espresso--class-decls))
"Level three font lock.")
(defconst espresso--font-lock-keywords
'(espresso--font-lock-keywords-3 espresso--font-lock-keywords-1
espresso--font-lock-keywords-2
espresso--font-lock-keywords-3)
"See `font-lock-keywords'.")
(defconst espresso--regexp-literal
"[=(,]\\(?:\\s-\\|\n\\)*\\(/\\)[^/*]\\(?:.*?[^\\]\\)?\\(/\\)"
"Match a regular expression literal. Match groups 1 and 2 are
the characters forming the beginning and end of the literal")
(defconst espresso--font-lock-syntactic-keywords
`((,espresso--regexp-literal (1 "|") (2 "|")))
"Highlighting of regular expressions. See also the variable
`font-lock-keywords'.")
(defconst espresso--possibly-braceless-keyword-re
(espresso--regexp-opt-symbol
'("catch" "do" "else" "finally" "for" "if" "try" "while" "with" "let"))
"Regular expression matching keywords that are optionally
followed by an opening brace.")
(defconst espresso--indent-operator-re
(concat "[-+*/%<>=&^|?:.]\\([^-+*/]\\|$\\)\\|"
(espresso--regexp-opt-symbol '("in" "instanceof")))
"Regular expression matching operators that affect indentation
of continued expressions.")
(defun espresso--looking-at-operator-p ()
"Return non-nil if text after point is an operator (that is not
a comma)."
(save-match-data
(and (looking-at espresso--indent-operator-re)
(or (not (looking-at ":"))
(save-excursion
(and (espresso--re-search-backward "[?:{]\\|\\_<case\\_>" nil t)
(looking-at "?")))))))
(defun espresso--continued-expression-p ()
"Returns non-nil if the current line continues an expression."
(save-excursion
(back-to-indentation)
(or (espresso--looking-at-operator-p)
(and (espresso--re-search-backward "\n" nil t)
(progn
(skip-chars-backward " \t")
(or (bobp) (backward-char))
(and (> (point) (point-min))
(save-excursion (backward-char) (not (looking-at "[/*]/")))
(espresso--looking-at-operator-p)
(and (progn (backward-char)
(not (looking-at "++\\|--\\|/[/*]"))))))))))
(defun espresso--end-of-do-while-loop-p ()
"Returns non-nil if word after point is `while' of a do-while
statement, else returns nil. A braceless do-while statement
spanning several lines requires that the start of the loop is
indented to the same column as the current line."
(interactive)
(save-excursion
(save-match-data
(when (looking-at "\\s-*\\_<while\\_>")
(if (save-excursion
(skip-chars-backward "[ \t\n]*}")
(looking-at "[ \t\n]*}"))
(save-excursion
(backward-list) (forward-symbol -1) (looking-at "\\_<do\\_>"))
(espresso--re-search-backward "\\_<do\\_>" (point-at-bol) t)
(or (looking-at "\\_<do\\_>")
(let ((saved-indent (current-indentation)))
(while (and (espresso--re-search-backward "^\\s-*\\_<" nil t)
(/= (current-indentation) saved-indent)))
(and (looking-at "\\s-*\\_<do\\_>")
(not (espresso--re-search-forward
"\\_<while\\_>" (point-at-eol) t))
(= (current-indentation) saved-indent)))))))))
(defun espresso--ctrl-statement-indentation ()
"Returns the proper indentation of the current line if it
starts the body of a control statement without braces, else
returns nil."
(save-excursion
(back-to-indentation)
(when (save-excursion
(and (not (looking-at "[{]"))
(progn
(espresso--re-search-backward "[[:graph:]]" nil t)
(or (eobp) (forward-char))
(when (= (char-before) ?\)) (backward-list))
(skip-syntax-backward " ")
(skip-syntax-backward "w_")
(looking-at espresso--possibly-braceless-keyword-re))
(not (espresso--end-of-do-while-loop-p))))
(save-excursion
(goto-char (match-beginning 0))
(+ (current-indentation) espresso-indent-level)))))
(defun espresso--proper-indentation (parse-status)
"Return the proper indentation for the current line."
(save-excursion
(back-to-indentation)
(let ((ctrl-stmt-indent (espresso--ctrl-statement-indentation))
(same-indent-p (looking-at "[]})]\\|\\_<case\\_>\\|\\_<default\\_>"))
(continued-expr-p (espresso--continued-expression-p)))
(cond (ctrl-stmt-indent)
((eq (char-after) ?#) 0)
((save-excursion (espresso--beginning-of-macro))
4)
((nth 1 parse-status)
(goto-char (nth 1 parse-status))
(if (looking-at "[({[]\\s-*\\(/[/*]\\|$\\)")
(progn
(skip-syntax-backward " ")
(when (= (char-before) ?\)) (backward-list))
(back-to-indentation)
(cond (same-indent-p
(current-column))
(continued-expr-p
(+ (current-column) (* 2 espresso-indent-level)
espresso-expr-indent-offset))
(t
(+ (current-column) espresso-indent-level))))
(unless same-indent-p
(forward-char)
(skip-chars-forward " \t"))
(current-column)))
(continued-expr-p (+ espresso-indent-level
espresso-expr-indent-offset))
(t 0)))))
(defun espresso-indent-line ()
"Indent the current line as JavaScript source text."
(interactive)
(save-restriction
(widen)
(let* ((parse-status
(save-excursion (syntax-ppss (point-at-bol))))
(offset (- (current-column) (current-indentation))))
(if (nth 8 parse-status)
(indent-relative-maybe)
(indent-line-to (espresso--proper-indentation parse-status))
(when (> offset 0) (forward-char offset))))))
(defun espresso-c-fill-paragraph (&optional justify)
"Fill the paragraph with c-fill-paragraph"
(interactive "*P")
(flet ((c-forward-sws
(&optional limit)
(espresso--forward-syntactic-ws limit))
(c-backward-sws
(&optional limit)
(espresso--backward-syntactic-ws limit))
(c-beginning-of-macro
(&optional limit)
(espresso--beginning-of-macro limit)))
(let ((fill-paragraph-function 'c-fill-paragraph))
(c-fill-paragraph justify))))
(defun espresso--imenu-create-index ()
(let ((search-re (mapconcat (lambda (x)
(concat "\\(" x "\\)"))
(list espresso--function-heading-1-re
espresso--function-heading-2-re
(concat "\\(?:"
(mapconcat
#'identity
espresso--class-decls "\\|")
"\\)")
espresso--macro-decl-re)
"\\|"))
entries parent-entries ends tmp syntax)
(save-excursion
(save-restriction
(widen)
(goto-char (point-min))
(while (re-search-forward search-re (point-max) t)
(goto-char (match-beginning 0))
(setq syntax (syntax-ppss))
(unless (or (nth 3 syntax) (nth 4 syntax))
(while (and ends (>= (point) (car ends)))
(setq tmp (nreverse entries)
entries (pop parent-entries))
(unless tmp
(setq tmp (list
(cons "[empty]" (set-marker (make-marker)
(car ends))))))
(pop ends)
(setcdr (car entries) tmp))
(cond ((and (not parent-entries)
(or (looking-at espresso--function-heading-1-re)
(looking-at espresso--macro-decl-re)))
(push (cons (match-string-no-properties 1)
(set-marker (make-marker) (match-beginning 1)))
entries))
((let ((r espresso--class-decls))
(while (and r (not (looking-at (car r) )))
(setq r (cdr r)))
r)
(push (cons
(match-string-no-properties 1)
nil)
entries)
(push entries parent-entries)
(setq entries nil)
(goto-char (match-end 1))
(condition-case err
(forward-list)
(error nil))
(push (point) ends))
((and parent-entries
(looking-at espresso--function-heading-2-re))
(push (cons (match-string-no-properties 1)
(set-marker (make-marker) (match-beginning 1)))
entries))))
(goto-char (match-end 0)))
(while parent-entries
(setq tmp (nreverse entries)
entries (pop parent-entries))
(setcdr (car entries) tmp))))
(nreverse entries)))
(defun espresso--which-func-joiner (parts)
(mapconcat #'identity parts "."))
(defun espresso-mode ()
"Major mode for editing JavaScript source text.
Key bindings:
\\{espresso-mode-map}"
(interactive)
(kill-all-local-variables)
(use-local-map espresso-mode-map)
(set-syntax-table espresso-mode-syntax-table)
(set (make-local-variable 'indent-line-function) 'espresso-indent-line)
(set (make-local-variable 'beginning-of-defun-function)
'espresso--beginning-of-defun)
(set (make-local-variable 'end-of-defun-function)
'espresso--end-of-defun)
(set (make-local-variable 'open-paren-in-column-0-is-defun-start) nil)
(set (make-local-variable 'font-lock-defaults)
(list espresso--font-lock-keywords
nil nil nil nil
'(font-lock-syntactic-keywords
. espresso--font-lock-syntactic-keywords)))
(set (make-local-variable 'parse-sexp-ignore-comments) t)
(set (make-local-variable 'parse-sexp-lookup-properties) t)
(set (make-local-variable 'which-func-imenu-joiner-function)
#'espresso--which-func-joiner)
(setq comment-start "// ")
(setq comment-end "")
(set (make-local-variable 'fill-paragraph-function)
'espresso-c-fill-paragraph)
(setq imenu-case-fold-search nil)
(set (make-local-variable 'imenu-create-index-function)
#'espresso--imenu-create-index)
(setq major-mode 'espresso-mode)
(setq mode-name "Espresso")
(setq c-comment-prefix-regexp "//+\\|\\**"
c-paragraph-start "$"
c-paragraph-separate "$"
c-block-comment-prefix "* "
c-line-comment-starter "//"
c-comment-start-regexp "/[*/]\\|\\s!"
comment-start-skip "\\(//+\\|/\\*+\\)\\s *")
(let ((c-buffer-is-cc-mode t))
(c-setup-paragraph-variables))
(font-lock-set-defaults)
(let (font-lock-keywords)
(font-lock-fontify-buffer))
(run-mode-hooks 'espresso-mode-hook))
(eval-after-load "hideshow"
'(add-to-list 'hs-special-modes-alist
'(espresso-mode "{" "}" "/[*/]"
nil hs-c-like-adjust-block-beginning)))
(eval-after-load "folding"
(when (fboundp 'folding-add-to-marks-list)
(folding-add-to-marks-list 'espresso-mode "// {{{" "// }}}" )))
(provide 'espresso-mode)