]> code.delx.au - gnu-emacs/blob - lisp/progmodes/js.el
Merge from emacs-23
[gnu-emacs] / lisp / progmodes / js.el
1 ;;; js.el --- Major mode for editing JavaScript
2
3 ;; Copyright (C) 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
4
5 ;; Author: Karl Landstrom <karl.landstrom@brgeight.se>
6 ;; Daniel Colascione <dan.colascione@gmail.com>
7 ;; Maintainer: Daniel Colascione <dan.colascione@gmail.com>
8 ;; Version: 9
9 ;; Date: 2009-07-25
10 ;; Keywords: languages, javascript
11
12 ;; This file is part of GNU Emacs.
13
14 ;; GNU Emacs is free software: you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation, either version 3 of the License, or
17 ;; (at your option) any later version.
18
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
23
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26
27 ;;; Commentary
28
29 ;; This is based on Karl Landstrom's barebones javascript-mode. This
30 ;; is much more robust and works with cc-mode's comment filling
31 ;; (mostly).
32 ;;
33 ;; The main features of this JavaScript mode are syntactic
34 ;; highlighting (enabled with `font-lock-mode' or
35 ;; `global-font-lock-mode'), automatic indentation and filling of
36 ;; comments, C preprocessor fontification, and MozRepl integration.
37 ;;
38 ;; General Remarks:
39 ;;
40 ;; XXX: This mode assumes that block comments are not nested inside block
41 ;; XXX: comments
42 ;;
43 ;; Exported names start with "js-"; private names start with
44 ;; "js--".
45
46 ;;; Code:
47
48
49 (require 'cc-mode)
50 (require 'newcomment)
51 (require 'thingatpt) ; forward-symbol etc
52 (require 'imenu)
53 (require 'moz nil t)
54 (require 'json nil t)
55
56 (eval-when-compile
57 (require 'cl)
58 (require 'comint)
59 (require 'ido))
60
61 (defvar inferior-moz-buffer)
62 (defvar moz-repl-name)
63 (defvar ido-cur-list)
64 (declare-function ido-mode "ido")
65 (declare-function inferior-moz-process "ext:mozrepl" ())
66
67 ;;; Constants
68
69 (defconst js--name-start-re "[a-zA-Z_$]"
70 "Regexp matching the start of a JavaScript identifier, without grouping.")
71
72 (defconst js--stmt-delim-chars "^;{}?:")
73
74 (defconst js--name-re (concat js--name-start-re
75 "\\(?:\\s_\\|\\sw\\)*")
76 "Regexp matching a JavaScript identifier, without grouping.")
77
78 (defconst js--objfield-re (concat js--name-re ":")
79 "Regexp matching the start of a JavaScript object field.")
80
81 (defconst js--dotted-name-re
82 (concat js--name-re "\\(?:\\." js--name-re "\\)*")
83 "Regexp matching a dot-separated sequence of JavaScript names.")
84
85 (defconst js--cpp-name-re js--name-re
86 "Regexp matching a C preprocessor name.")
87
88 (defconst js--opt-cpp-start "^\\s-*#\\s-*\\([[:alnum:]]+\\)"
89 "Regexp matching the prefix of a cpp directive.
90 This includes the directive name, or nil in languages without
91 preprocessor support. The first submatch surrounds the directive
92 name.")
93
94 (defconst js--plain-method-re
95 (concat "^\\s-*?\\(" js--dotted-name-re "\\)\\.prototype"
96 "\\.\\(" js--name-re "\\)\\s-*?=\\s-*?\\(function\\)\\_>")
97 "Regexp matching an explicit JavaScript prototype \"method\" declaration.
98 Group 1 is a (possibly-dotted) class name, group 2 is a method name,
99 and group 3 is the 'function' keyword.")
100
101 (defconst js--plain-class-re
102 (concat "^\\s-*\\(" js--dotted-name-re "\\)\\.prototype"
103 "\\s-*=\\s-*{")
104 "Regexp matching a JavaScript explicit prototype \"class\" declaration.
105 An example of this is \"Class.prototype = { method1: ...}\".")
106
107 ;; var NewClass = BaseClass.extend(
108 (defconst js--mp-class-decl-re
109 (concat "^\\s-*var\\s-+"
110 "\\(" js--name-re "\\)"
111 "\\s-*=\\s-*"
112 "\\(" js--dotted-name-re
113 "\\)\\.extend\\(?:Final\\)?\\s-*(\\s-*{?\\s-*$"))
114
115 ;; var NewClass = Class.create()
116 (defconst js--prototype-obsolete-class-decl-re
117 (concat "^\\s-*\\(?:var\\s-+\\)?"
118 "\\(" js--dotted-name-re "\\)"
119 "\\s-*=\\s-*Class\\.create()"))
120
121 (defconst js--prototype-objextend-class-decl-re-1
122 (concat "^\\s-*Object\\.extend\\s-*("
123 "\\(" js--dotted-name-re "\\)"
124 "\\s-*,\\s-*{"))
125
126 (defconst js--prototype-objextend-class-decl-re-2
127 (concat "^\\s-*\\(?:var\\s-+\\)?"
128 "\\(" js--dotted-name-re "\\)"
129 "\\s-*=\\s-*Object\\.extend\\s-*\("))
130
131 ;; var NewClass = Class.create({
132 (defconst js--prototype-class-decl-re
133 (concat "^\\s-*\\(?:var\\s-+\\)?"
134 "\\(" js--name-re "\\)"
135 "\\s-*=\\s-*Class\\.create\\s-*(\\s-*"
136 "\\(?:\\(" js--dotted-name-re "\\)\\s-*,\\s-*\\)?{?"))
137
138 ;; Parent class name(s) (yes, multiple inheritance in JavaScript) are
139 ;; matched with dedicated font-lock matchers
140 (defconst js--dojo-class-decl-re
141 (concat "^\\s-*dojo\\.declare\\s-*(\"\\(" js--dotted-name-re "\\)"))
142
143 (defconst js--extjs-class-decl-re-1
144 (concat "^\\s-*Ext\\.extend\\s-*("
145 "\\s-*\\(" js--dotted-name-re "\\)"
146 "\\s-*,\\s-*\\(" js--dotted-name-re "\\)")
147 "Regexp matching an ExtJS class declaration (style 1).")
148
149 (defconst js--extjs-class-decl-re-2
150 (concat "^\\s-*\\(?:var\\s-+\\)?"
151 "\\(" js--name-re "\\)"
152 "\\s-*=\\s-*Ext\\.extend\\s-*(\\s-*"
153 "\\(" js--dotted-name-re "\\)")
154 "Regexp matching an ExtJS class declaration (style 2).")
155
156 (defconst js--mochikit-class-re
157 (concat "^\\s-*MochiKit\\.Base\\.update\\s-*(\\s-*"
158 "\\(" js--dotted-name-re "\\)")
159 "Regexp matching a MochiKit class declaration.")
160
161 (defconst js--dummy-class-style
162 '(:name "[Automatically Generated Class]"))
163
164 (defconst js--class-styles
165 `((:name "Plain"
166 :class-decl ,js--plain-class-re
167 :prototype t
168 :contexts (toplevel)
169 :framework javascript)
170
171 (:name "MochiKit"
172 :class-decl ,js--mochikit-class-re
173 :prototype t
174 :contexts (toplevel)
175 :framework mochikit)
176
177 (:name "Prototype (Obsolete)"
178 :class-decl ,js--prototype-obsolete-class-decl-re
179 :contexts (toplevel)
180 :framework prototype)
181
182 (:name "Prototype (Modern)"
183 :class-decl ,js--prototype-class-decl-re
184 :contexts (toplevel)
185 :framework prototype)
186
187 (:name "Prototype (Object.extend)"
188 :class-decl ,js--prototype-objextend-class-decl-re-1
189 :prototype t
190 :contexts (toplevel)
191 :framework prototype)
192
193 (:name "Prototype (Object.extend) 2"
194 :class-decl ,js--prototype-objextend-class-decl-re-2
195 :prototype t
196 :contexts (toplevel)
197 :framework prototype)
198
199 (:name "Dojo"
200 :class-decl ,js--dojo-class-decl-re
201 :contexts (toplevel)
202 :framework dojo)
203
204 (:name "ExtJS (style 1)"
205 :class-decl ,js--extjs-class-decl-re-1
206 :prototype t
207 :contexts (toplevel)
208 :framework extjs)
209
210 (:name "ExtJS (style 2)"
211 :class-decl ,js--extjs-class-decl-re-2
212 :contexts (toplevel)
213 :framework extjs)
214
215 (:name "Merrill Press"
216 :class-decl ,js--mp-class-decl-re
217 :contexts (toplevel)
218 :framework merrillpress))
219
220 "List of JavaScript class definition styles.
221
222 A class definition style is a plist with the following keys:
223
224 :name is a human-readable name of the class type
225
226 :class-decl is a regular expression giving the start of the
227 class. Its first group must match the name of its class. If there
228 is a parent class, the second group should match, and it should be
229 the name of the class.
230
231 If :prototype is present and non-nil, the parser will merge
232 declarations for this constructs with others at the same lexical
233 level that have the same name. Otherwise, multiple definitions
234 will create multiple top-level entries. Don't use :prototype
235 unnecessarily: it has an associated cost in performance.
236
237 If :strip-prototype is present and non-nil, then if the class
238 name as matched contains
239 ")
240
241 (defconst js--available-frameworks
242 (loop with available-frameworks
243 for style in js--class-styles
244 for framework = (plist-get style :framework)
245 unless (memq framework available-frameworks)
246 collect framework into available-frameworks
247 finally return available-frameworks)
248 "List of available JavaScript frameworks symbols.")
249
250 (defconst js--function-heading-1-re
251 (concat
252 "^\\s-*function\\s-+\\(" js--name-re "\\)")
253 "Regexp matching the start of a JavaScript function header.
254 Match group 1 is the name of the function.")
255
256 (defconst js--function-heading-2-re
257 (concat
258 "^\\s-*\\(" js--name-re "\\)\\s-*:\\s-*function\\_>")
259 "Regexp matching the start of a function entry in an associative array.
260 Match group 1 is the name of the function.")
261
262 (defconst js--function-heading-3-re
263 (concat
264 "^\\s-*\\(?:var\\s-+\\)?\\(" js--dotted-name-re "\\)"
265 "\\s-*=\\s-*function\\_>")
266 "Regexp matching a line in the JavaScript form \"var MUMBLE = function\".
267 Match group 1 is MUMBLE.")
268
269 (defconst js--macro-decl-re
270 (concat "^\\s-*#\\s-*define\\s-+\\(" js--cpp-name-re "\\)\\s-*(")
271 "Regexp matching a CPP macro definition, up to the opening parenthesis.
272 Match group 1 is the name of the macro.")
273
274 (defun js--regexp-opt-symbol (list)
275 "Like `regexp-opt', but surround the result with `\\\\_<' and `\\\\_>'."
276 (concat "\\_<" (regexp-opt list t) "\\_>"))
277
278 (defconst js--keyword-re
279 (js--regexp-opt-symbol
280 '("abstract" "break" "case" "catch" "class" "const"
281 "continue" "debugger" "default" "delete" "do" "else"
282 "enum" "export" "extends" "final" "finally" "for"
283 "function" "goto" "if" "implements" "import" "in"
284 "instanceof" "interface" "native" "new" "package"
285 "private" "protected" "public" "return" "static"
286 "super" "switch" "synchronized" "throw"
287 "throws" "transient" "try" "typeof" "var" "void" "let"
288 "yield" "volatile" "while" "with"))
289 "Regexp matching any JavaScript keyword.")
290
291 (defconst js--basic-type-re
292 (js--regexp-opt-symbol
293 '("boolean" "byte" "char" "double" "float" "int" "long"
294 "short" "void"))
295 "Regular expression matching any predefined type in JavaScript.")
296
297 (defconst js--constant-re
298 (js--regexp-opt-symbol '("false" "null" "undefined"
299 "Infinity" "NaN"
300 "true" "arguments" "this"))
301 "Regular expression matching any future reserved words in JavaScript.")
302
303
304 (defconst js--font-lock-keywords-1
305 (list
306 "\\_<import\\_>"
307 (list js--function-heading-1-re 1 font-lock-function-name-face)
308 (list js--function-heading-2-re 1 font-lock-function-name-face))
309 "Level one font lock keywords for `js-mode'.")
310
311 (defconst js--font-lock-keywords-2
312 (append js--font-lock-keywords-1
313 (list (list js--keyword-re 1 font-lock-keyword-face)
314 (list "\\_<for\\_>"
315 "\\s-+\\(each\\)\\_>" nil nil
316 (list 1 'font-lock-keyword-face))
317 (cons js--basic-type-re font-lock-type-face)
318 (cons js--constant-re font-lock-constant-face)))
319 "Level two font lock keywords for `js-mode'.")
320
321 ;; js--pitem is the basic building block of the lexical
322 ;; database. When one refers to a real part of the buffer, the region
323 ;; of text to which it refers is split into a conceptual header and
324 ;; body. Consider the (very short) block described by a hypothetical
325 ;; js--pitem:
326 ;;
327 ;; function foo(a,b,c) { return 42; }
328 ;; ^ ^ ^
329 ;; | | |
330 ;; +- h-begin +- h-end +- b-end
331 ;;
332 ;; (Remember that these are buffer positions, and therefore point
333 ;; between characters, not at them. An arrow drawn to a character
334 ;; indicates the corresponding position is between that character and
335 ;; the one immediately preceding it.)
336 ;;
337 ;; The header is the region of text [h-begin, h-end], and is
338 ;; the text needed to unambiguously recognize the start of the
339 ;; construct. If the entire header is not present, the construct is
340 ;; not recognized at all. No other pitems may be nested inside the
341 ;; header.
342 ;;
343 ;; The body is the region [h-end, b-end]. It may contain nested
344 ;; js--pitem instances. The body of a pitem may be empty: in
345 ;; that case, b-end is equal to header-end.
346 ;;
347 ;; The three points obey the following relationship:
348 ;;
349 ;; h-begin < h-end <= b-end
350 ;;
351 ;; We put a text property in the buffer on the character *before*
352 ;; h-end, and if we see it, on the character *before* b-end.
353 ;;
354 ;; The text property for h-end, js--pstate, is actually a list
355 ;; of all js--pitem instances open after the marked character.
356 ;;
357 ;; The text property for b-end, js--pend, is simply the
358 ;; js--pitem that ends after the marked character. (Because
359 ;; pitems always end when the paren-depth drops below a critical
360 ;; value, and because we can only drop one level per character, only
361 ;; one pitem may end at a given character.)
362 ;;
363 ;; In the structure below, we only store h-begin and (sometimes)
364 ;; b-end. We can trivially and quickly find h-end by going to h-begin
365 ;; and searching for an js--pstate text property. Since no other
366 ;; js--pitem instances can be nested inside the header of a
367 ;; pitem, the location after the character with this text property
368 ;; must be h-end.
369 ;;
370 ;; js--pitem instances are never modified (with the exception
371 ;; of the b-end field). Instead, modified copies are added at subseqnce parse points.
372 ;; (The exception for b-end and its caveats is described below.)
373 ;;
374
375 (defstruct (js--pitem (:type list))
376 ;; IMPORTANT: Do not alter the position of fields within the list.
377 ;; Various bits of code depend on their positions, particularly
378 ;; anything that manipulates the list of children.
379
380 ;; List of children inside this pitem's body
381 (children nil :read-only t)
382
383 ;; When we reach this paren depth after h-end, the pitem ends
384 (paren-depth nil :read-only t)
385
386 ;; Symbol or class-style plist if this is a class
387 (type nil :read-only t)
388
389 ;; See above
390 (h-begin nil :read-only t)
391
392 ;; List of strings giving the parts of the name of this pitem (e.g.,
393 ;; '("MyClass" "myMethod"), or t if this pitem is anonymous
394 (name nil :read-only t)
395
396 ;; THIS FIELD IS MUTATED, and its value is shared by all copies of
397 ;; this pitem: when we copy-and-modify pitem instances, we share
398 ;; their tail structures, so all the copies actually have the same
399 ;; terminating cons cell. We modify that shared cons cell directly.
400 ;;
401 ;; The field value is either a number (buffer location) or nil if
402 ;; unknown.
403 ;;
404 ;; If the field's value is greater than `js--cache-end', the
405 ;; value is stale and must be treated as if it were nil. Conversely,
406 ;; if this field is nil, it is guaranteed that this pitem is open up
407 ;; to at least `js--cache-end'. (This property is handy when
408 ;; computing whether we're inside a given pitem.)
409 ;;
410 (b-end nil))
411
412 ;; The pitem we start parsing with.
413 (defconst js--initial-pitem
414 (make-js--pitem
415 :paren-depth most-negative-fixnum
416 :type 'toplevel))
417
418 ;;; User Customization
419
420 (defgroup js nil
421 "Customization variables for JavaScript mode."
422 :tag "JavaScript"
423 :group 'languages)
424
425 (defcustom js-indent-level 4
426 "Number of spaces for each indentation step in `js-mode'."
427 :type 'integer
428 :group 'js)
429
430 (defcustom js-expr-indent-offset 0
431 "Number of additional spaces for indenting continued expressions.
432 The value must be no less than minus `js-indent-level'."
433 :type 'integer
434 :group 'js)
435
436 (defcustom js-paren-indent-offset 0
437 "Number of additional spaces for indenting expressions in parentheses.
438 The value must be no less than minus `js-indent-level'."
439 :type 'integer
440 :group 'js
441 :version "24.1")
442
443 (defcustom js-square-indent-offset 0
444 "Number of additional spaces for indenting expressions in square braces.
445 The value must be no less than minus `js-indent-level'."
446 :type 'integer
447 :group 'js
448 :version "24.1")
449
450 (defcustom js-curly-indent-offset 0
451 "Number of additional spaces for indenting expressions in curly braces.
452 The value must be no less than minus `js-indent-level'."
453 :type 'integer
454 :group 'js
455 :version "24.1")
456
457 (defcustom js-auto-indent-flag t
458 "Whether to automatically indent when typing punctuation characters.
459 If non-nil, the characters {}();,: also indent the current line
460 in Javascript mode."
461 :type 'boolean
462 :group 'js)
463
464 (defcustom js-flat-functions nil
465 "Treat nested functions as top-level functions in `js-mode'.
466 This applies to function movement, marking, and so on."
467 :type 'boolean
468 :group 'js)
469
470 (defcustom js-comment-lineup-func #'c-lineup-C-comments
471 "Lineup function for `cc-mode-style', for C comments in `js-mode'."
472 :type 'function
473 :group 'js)
474
475 (defcustom js-enabled-frameworks js--available-frameworks
476 "Frameworks recognized by `js-mode'.
477 To improve performance, you may turn off some frameworks you
478 seldom use, either globally or on a per-buffer basis."
479 :type (cons 'set (mapcar (lambda (x)
480 (list 'const x))
481 js--available-frameworks))
482 :group 'js)
483
484 (defcustom js-js-switch-tabs
485 (and (memq system-type '(darwin)) t)
486 "Whether `js-mode' should display tabs while selecting them.
487 This is useful only if the windowing system has a good mechanism
488 for preventing Firefox from stealing the keyboard focus."
489 :type 'boolean
490 :group 'js)
491
492 (defcustom js-js-tmpdir
493 "~/.emacs.d/js/js"
494 "Temporary directory used by `js-mode' to communicate with Mozilla.
495 This directory must be readable and writable by both Mozilla and Emacs."
496 :type 'directory
497 :group 'js)
498
499 (defcustom js-js-timeout 5
500 "Reply timeout for executing commands in Mozilla via `js-mode'.
501 The value is given in seconds. Increase this value if you are
502 getting timeout messages."
503 :type 'integer
504 :group 'js)
505
506 ;;; KeyMap
507
508 (defvar js-mode-map
509 (let ((keymap (make-sparse-keymap)))
510 (mapc (lambda (key)
511 (define-key keymap key #'js-insert-and-indent))
512 '("{" "}" "(" ")" ":" ";" ","))
513 (define-key keymap [(control ?c) (meta ?:)] #'js-eval)
514 (define-key keymap [(control ?c) (control ?j)] #'js-set-js-context)
515 (define-key keymap [(control meta ?x)] #'js-eval-defun)
516 (define-key keymap [(meta ?.)] #'js-find-symbol)
517 (easy-menu-define nil keymap "Javascript Menu"
518 '("Javascript"
519 ["Select New Mozilla Context..." js-set-js-context
520 (fboundp #'inferior-moz-process)]
521 ["Evaluate Expression in Mozilla Context..." js-eval
522 (fboundp #'inferior-moz-process)]
523 ["Send Current Function to Mozilla..." js-eval-defun
524 (fboundp #'inferior-moz-process)]))
525 keymap)
526 "Keymap for `js-mode'.")
527
528 (defun js-insert-and-indent (key)
529 "Run the command bound to KEY, and indent if necessary.
530 Indentation does not take place if point is in a string or
531 comment."
532 (interactive (list (this-command-keys)))
533 (call-interactively (lookup-key (current-global-map) key))
534 (let ((syntax (save-restriction (widen) (syntax-ppss))))
535 (when (or (and (not (nth 8 syntax))
536 js-auto-indent-flag)
537 (and (nth 4 syntax)
538 (eq (current-column)
539 (1+ (current-indentation)))))
540 (indent-according-to-mode))))
541
542
543 ;;; Syntax table and parsing
544
545 (defvar js-mode-syntax-table
546 (let ((table (make-syntax-table)))
547 (c-populate-syntax-table table)
548 (modify-syntax-entry ?$ "_" table)
549 table)
550 "Syntax table for `js-mode'.")
551
552 (defvar js--quick-match-re nil
553 "Autogenerated regexp used by `js-mode' to match buffer constructs.")
554
555 (defvar js--quick-match-re-func nil
556 "Autogenerated regexp used by `js-mode' to match constructs and functions.")
557
558 (make-variable-buffer-local 'js--quick-match-re)
559 (make-variable-buffer-local 'js--quick-match-re-func)
560
561 (defvar js--cache-end 1
562 "Last valid buffer position for the `js-mode' function cache.")
563 (make-variable-buffer-local 'js--cache-end)
564
565 (defvar js--last-parse-pos nil
566 "Latest parse position reached by `js--ensure-cache'.")
567 (make-variable-buffer-local 'js--last-parse-pos)
568
569 (defvar js--state-at-last-parse-pos nil
570 "Parse state at `js--last-parse-pos'.")
571 (make-variable-buffer-local 'js--state-at-last-parse-pos)
572
573 (defun js--flatten-list (list)
574 (loop for item in list
575 nconc (cond ((consp item)
576 (js--flatten-list item))
577 (item (list item)))))
578
579 (defun js--maybe-join (prefix separator suffix &rest list)
580 "Helper function for `js--update-quick-match-re'.
581 If LIST contains any element that is not nil, return its non-nil
582 elements, separated by SEPARATOR, prefixed by PREFIX, and ended
583 with SUFFIX as with `concat'. Otherwise, if LIST is empty, return
584 nil. If any element in LIST is itself a list, flatten that
585 element."
586 (setq list (js--flatten-list list))
587 (when list
588 (concat prefix (mapconcat #'identity list separator) suffix)))
589
590 (defun js--update-quick-match-re ()
591 "Internal function used by `js-mode' for caching buffer constructs.
592 This updates `js--quick-match-re', based on the current set of
593 enabled frameworks."
594 (setq js--quick-match-re
595 (js--maybe-join
596 "^[ \t]*\\(?:" "\\|" "\\)"
597
598 ;; #define mumble
599 "#define[ \t]+[a-zA-Z_]"
600
601 (when (memq 'extjs js-enabled-frameworks)
602 "Ext\\.extend")
603
604 (when (memq 'prototype js-enabled-frameworks)
605 "Object\\.extend")
606
607 ;; var mumble = THING (
608 (js--maybe-join
609 "\\(?:var[ \t]+\\)?[a-zA-Z_$0-9.]+[ \t]*=[ \t]*\\(?:"
610 "\\|"
611 "\\)[ \t]*\("
612
613 (when (memq 'prototype js-enabled-frameworks)
614 "Class\\.create")
615
616 (when (memq 'extjs js-enabled-frameworks)
617 "Ext\\.extend")
618
619 (when (memq 'merrillpress js-enabled-frameworks)
620 "[a-zA-Z_$0-9]+\\.extend\\(?:Final\\)?"))
621
622 (when (memq 'dojo js-enabled-frameworks)
623 "dojo\\.declare[ \t]*\(")
624
625 (when (memq 'mochikit js-enabled-frameworks)
626 "MochiKit\\.Base\\.update[ \t]*\(")
627
628 ;; mumble.prototypeTHING
629 (js--maybe-join
630 "[a-zA-Z_$0-9.]+\\.prototype\\(?:" "\\|" "\\)"
631
632 (when (memq 'javascript js-enabled-frameworks)
633 '( ;; foo.prototype.bar = function(
634 "\\.[a-zA-Z_$0-9]+[ \t]*=[ \t]*function[ \t]*\("
635
636 ;; mumble.prototype = {
637 "[ \t]*=[ \t]*{")))))
638
639 (setq js--quick-match-re-func
640 (concat "function\\|" js--quick-match-re)))
641
642 (defun js--forward-text-property (propname)
643 "Move over the next value of PROPNAME in the buffer.
644 If found, return that value and leave point after the character
645 having that value; otherwise, return nil and leave point at EOB."
646 (let ((next-value (get-text-property (point) propname)))
647 (if next-value
648 (forward-char)
649
650 (goto-char (next-single-property-change
651 (point) propname nil (point-max)))
652 (unless (eobp)
653 (setq next-value (get-text-property (point) propname))
654 (forward-char)))
655
656 next-value))
657
658 (defun js--backward-text-property (propname)
659 "Move over the previous value of PROPNAME in the buffer.
660 If found, return that value and leave point just before the
661 character that has that value, otherwise return nil and leave
662 point at BOB."
663 (unless (bobp)
664 (let ((prev-value (get-text-property (1- (point)) propname)))
665 (if prev-value
666 (backward-char)
667
668 (goto-char (previous-single-property-change
669 (point) propname nil (point-min)))
670
671 (unless (bobp)
672 (backward-char)
673 (setq prev-value (get-text-property (point) propname))))
674
675 prev-value)))
676
677 (defsubst js--forward-pstate ()
678 (js--forward-text-property 'js--pstate))
679
680 (defsubst js--backward-pstate ()
681 (js--backward-text-property 'js--pstate))
682
683 (defun js--pitem-goto-h-end (pitem)
684 (goto-char (js--pitem-h-begin pitem))
685 (js--forward-pstate))
686
687 (defun js--re-search-forward-inner (regexp &optional bound count)
688 "Helper function for `js--re-search-forward'."
689 (let ((parse)
690 str-terminator
691 (orig-macro-end (save-excursion
692 (when (js--beginning-of-macro)
693 (c-end-of-macro)
694 (point)))))
695 (while (> count 0)
696 (re-search-forward regexp bound)
697 (setq parse (syntax-ppss))
698 (cond ((setq str-terminator (nth 3 parse))
699 (when (eq str-terminator t)
700 (setq str-terminator ?/))
701 (re-search-forward
702 (concat "\\([^\\]\\|^\\)" (string str-terminator))
703 (point-at-eol) t))
704 ((nth 7 parse)
705 (forward-line))
706 ((or (nth 4 parse)
707 (and (eq (char-before) ?\/) (eq (char-after) ?\*)))
708 (re-search-forward "\\*/"))
709 ((and (not (and orig-macro-end
710 (<= (point) orig-macro-end)))
711 (js--beginning-of-macro))
712 (c-end-of-macro))
713 (t
714 (setq count (1- count))))))
715 (point))
716
717
718 (defun js--re-search-forward (regexp &optional bound noerror count)
719 "Search forward, ignoring strings, cpp macros, and comments.
720 This function invokes `re-search-forward', but treats the buffer
721 as if strings, cpp macros, and comments have been removed.
722
723 If invoked while inside a macro, it treats the contents of the
724 macro as normal text."
725 (unless count (setq count 1))
726 (let ((saved-point (point))
727 (search-fun
728 (cond ((< count 0) (setq count (- count))
729 #'js--re-search-backward-inner)
730 ((> count 0) #'js--re-search-forward-inner)
731 (t #'ignore))))
732 (condition-case err
733 (funcall search-fun regexp bound count)
734 (search-failed
735 (goto-char saved-point)
736 (unless noerror
737 (signal (car err) (cdr err)))))))
738
739
740 (defun js--re-search-backward-inner (regexp &optional bound count)
741 "Auxiliary function for `js--re-search-backward'."
742 (let ((parse)
743 str-terminator
744 (orig-macro-start
745 (save-excursion
746 (and (js--beginning-of-macro)
747 (point)))))
748 (while (> count 0)
749 (re-search-backward regexp bound)
750 (when (and (> (point) (point-min))
751 (save-excursion (backward-char) (looking-at "/[/*]")))
752 (forward-char))
753 (setq parse (syntax-ppss))
754 (cond ((setq str-terminator (nth 3 parse))
755 (when (eq str-terminator t)
756 (setq str-terminator ?/))
757 (re-search-backward
758 (concat "\\([^\\]\\|^\\)" (string str-terminator))
759 (point-at-bol) t))
760 ((nth 7 parse)
761 (goto-char (nth 8 parse)))
762 ((or (nth 4 parse)
763 (and (eq (char-before) ?/) (eq (char-after) ?*)))
764 (re-search-backward "/\\*"))
765 ((and (not (and orig-macro-start
766 (>= (point) orig-macro-start)))
767 (js--beginning-of-macro)))
768 (t
769 (setq count (1- count))))))
770 (point))
771
772
773 (defun js--re-search-backward (regexp &optional bound noerror count)
774 "Search backward, ignoring strings, preprocessor macros, and comments.
775
776 This function invokes `re-search-backward' but treats the buffer
777 as if strings, preprocessor macros, and comments have been
778 removed.
779
780 If invoked while inside a macro, treat the macro as normal text."
781 (js--re-search-forward regexp bound noerror (if count (- count) -1)))
782
783 (defun js--forward-expression ()
784 "Move forward over a whole JavaScript expression.
785 This function doesn't move over expressions continued across
786 lines."
787 (loop
788 ;; non-continued case; simplistic, but good enough?
789 do (loop until (or (eolp)
790 (progn
791 (forward-comment most-positive-fixnum)
792 (memq (char-after) '(?\, ?\; ?\] ?\) ?\}))))
793 do (forward-sexp))
794
795 while (and (eq (char-after) ?\n)
796 (save-excursion
797 (forward-char)
798 (js--continued-expression-p)))))
799
800 (defun js--forward-function-decl ()
801 "Move forward over a JavaScript function declaration.
802 This puts point at the 'function' keyword.
803
804 If this is a syntactically-correct non-expression function,
805 return the name of the function, or t if the name could not be
806 determined. Otherwise, return nil."
807 (assert (looking-at "\\_<function\\_>"))
808 (let ((name t))
809 (forward-word)
810 (forward-comment most-positive-fixnum)
811 (when (looking-at js--name-re)
812 (setq name (match-string-no-properties 0))
813 (goto-char (match-end 0)))
814 (forward-comment most-positive-fixnum)
815 (and (eq (char-after) ?\( )
816 (ignore-errors (forward-list) t)
817 (progn (forward-comment most-positive-fixnum)
818 (and (eq (char-after) ?{)
819 name)))))
820
821 (defun js--function-prologue-beginning (&optional pos)
822 "Return the start of the JavaScript function prologue containing POS.
823 A function prologue is everything from start of the definition up
824 to and including the opening brace. POS defaults to point.
825 If POS is not in a function prologue, return nil."
826 (let (prologue-begin)
827 (save-excursion
828 (if pos
829 (goto-char pos)
830 (setq pos (point)))
831
832 (when (save-excursion
833 (forward-line 0)
834 (or (looking-at js--function-heading-2-re)
835 (looking-at js--function-heading-3-re)))
836
837 (setq prologue-begin (match-beginning 1))
838 (when (<= prologue-begin pos)
839 (goto-char (match-end 0))))
840
841 (skip-syntax-backward "w_")
842 (and (or (looking-at "\\_<function\\_>")
843 (js--re-search-backward "\\_<function\\_>" nil t))
844
845 (save-match-data (goto-char (match-beginning 0))
846 (js--forward-function-decl))
847
848 (<= pos (point))
849 (or prologue-begin (match-beginning 0))))))
850
851 (defun js--beginning-of-defun-raw ()
852 "Helper function for `js-beginning-of-defun'.
853 Go to previous defun-beginning and return the parse state for it,
854 or nil if we went all the way back to bob and don't find
855 anything."
856 (js--ensure-cache)
857 (let (pstate)
858 (while (and (setq pstate (js--backward-pstate))
859 (not (eq 'function (js--pitem-type (car pstate))))))
860 (and (not (bobp)) pstate)))
861
862 (defun js--pstate-is-toplevel-defun (pstate)
863 "Helper function for `js--beginning-of-defun-nested'.
864 If PSTATE represents a non-empty top-level defun, return the
865 top-most pitem. Otherwise, return nil."
866 (loop for pitem in pstate
867 with func-depth = 0
868 with func-pitem
869 if (eq 'function (js--pitem-type pitem))
870 do (incf func-depth)
871 and do (setq func-pitem pitem)
872 finally return (if (eq func-depth 1) func-pitem)))
873
874 (defun js--beginning-of-defun-nested ()
875 "Helper function for `js--beginning-of-defun'.
876 Return the pitem of the function we went to the beginning of."
877 (or
878 ;; Look for the smallest function that encloses point...
879 (loop for pitem in (js--parse-state-at-point)
880 if (and (eq 'function (js--pitem-type pitem))
881 (js--inside-pitem-p pitem))
882 do (goto-char (js--pitem-h-begin pitem))
883 and return pitem)
884
885 ;; ...and if that isn't found, look for the previous top-level
886 ;; defun
887 (loop for pstate = (js--backward-pstate)
888 while pstate
889 if (js--pstate-is-toplevel-defun pstate)
890 do (goto-char (js--pitem-h-begin it))
891 and return it)))
892
893 (defun js--beginning-of-defun-flat ()
894 "Helper function for `js-beginning-of-defun'."
895 (let ((pstate (js--beginning-of-defun-raw)))
896 (when pstate
897 (goto-char (js--pitem-h-begin (car pstate))))))
898
899 (defun js-beginning-of-defun (&optional arg)
900 "Value of `beginning-of-defun-function' for `js-mode'."
901 (setq arg (or arg 1))
902 (while (and (not (eobp)) (< arg 0))
903 (incf arg)
904 (when (and (not js-flat-functions)
905 (or (eq (js-syntactic-context) 'function)
906 (js--function-prologue-beginning)))
907 (js-end-of-defun))
908
909 (if (js--re-search-forward
910 "\\_<function\\_>" nil t)
911 (goto-char (js--function-prologue-beginning))
912 (goto-char (point-max))))
913
914 (while (> arg 0)
915 (decf arg)
916 ;; If we're just past the end of a function, the user probably wants
917 ;; to go to the beginning of *that* function
918 (when (eq (char-before) ?})
919 (backward-char))
920
921 (let ((prologue-begin (js--function-prologue-beginning)))
922 (cond ((and prologue-begin (< prologue-begin (point)))
923 (goto-char prologue-begin))
924
925 (js-flat-functions
926 (js--beginning-of-defun-flat))
927 (t
928 (js--beginning-of-defun-nested))))))
929
930 (defun js--flush-caches (&optional beg ignored)
931 "Flush the `js-mode' syntax cache after position BEG.
932 BEG defaults to `point-min', meaning to flush the entire cache."
933 (interactive)
934 (setq beg (or beg (save-restriction (widen) (point-min))))
935 (setq js--cache-end (min js--cache-end beg)))
936
937 (defmacro js--debug (&rest arguments)
938 ;; `(message ,@arguments)
939 )
940
941 (defun js--ensure-cache--pop-if-ended (open-items paren-depth)
942 (let ((top-item (car open-items)))
943 (when (<= paren-depth (js--pitem-paren-depth top-item))
944 (assert (not (get-text-property (1- (point)) 'js-pend)))
945 (put-text-property (1- (point)) (point) 'js--pend top-item)
946 (setf (js--pitem-b-end top-item) (point))
947 (setq open-items
948 ;; open-items must contain at least two items for this to
949 ;; work, but because we push a dummy item to start with,
950 ;; that assumption holds.
951 (cons (js--pitem-add-child (second open-items) top-item)
952 (cddr open-items)))))
953 open-items)
954
955 (defmacro js--ensure-cache--update-parse ()
956 "Helper function for `js--ensure-cache'.
957 Update parsing information up to point, referring to parse,
958 prev-parse-point, goal-point, and open-items bound lexically in
959 the body of `js--ensure-cache'."
960 `(progn
961 (setq goal-point (point))
962 (goto-char prev-parse-point)
963 (while (progn
964 (setq open-items (js--ensure-cache--pop-if-ended
965 open-items (car parse)))
966 ;; Make sure parse-partial-sexp doesn't stop because we *entered*
967 ;; the given depth -- i.e., make sure we're deeper than the target
968 ;; depth.
969 (assert (> (nth 0 parse)
970 (js--pitem-paren-depth (car open-items))))
971 (setq parse (parse-partial-sexp
972 prev-parse-point goal-point
973 (js--pitem-paren-depth (car open-items))
974 nil parse))
975
976 ;; (let ((overlay (make-overlay prev-parse-point (point))))
977 ;; (overlay-put overlay 'face '(:background "red"))
978 ;; (unwind-protect
979 ;; (progn
980 ;; (js--debug "parsed: %S" parse)
981 ;; (sit-for 1))
982 ;; (delete-overlay overlay)))
983
984 (setq prev-parse-point (point))
985 (< (point) goal-point)))
986
987 (setq open-items (js--ensure-cache--pop-if-ended
988 open-items (car parse)))))
989
990 (defun js--show-cache-at-point ()
991 (interactive)
992 (require 'pp)
993 (let ((prop (get-text-property (point) 'js--pstate)))
994 (with-output-to-temp-buffer "*Help*"
995 (pp prop))))
996
997 (defun js--split-name (string)
998 "Split a JavaScript name into its dot-separated parts.
999 This also removes any prototype parts from the split name
1000 \(unless the name is just \"prototype\" to start with)."
1001 (let ((name (save-match-data
1002 (split-string string "\\." t))))
1003 (unless (and (= (length name) 1)
1004 (equal (car name) "prototype"))
1005
1006 (setq name (remove "prototype" name)))))
1007
1008 (defvar js--guess-function-name-start nil)
1009
1010 (defun js--guess-function-name (position)
1011 "Guess the name of the JavaScript function at POSITION.
1012 POSITION should be just after the end of the word \"function\".
1013 Return the name of the function, or nil if the name could not be
1014 guessed.
1015
1016 This function clobbers match data. If we find the preamble
1017 begins earlier than expected while guessing the function name,
1018 set `js--guess-function-name-start' to that position; otherwise,
1019 set that variable to nil."
1020 (setq js--guess-function-name-start nil)
1021 (save-excursion
1022 (goto-char position)
1023 (forward-line 0)
1024 (cond
1025 ((looking-at js--function-heading-3-re)
1026 (and (eq (match-end 0) position)
1027 (setq js--guess-function-name-start (match-beginning 1))
1028 (match-string-no-properties 1)))
1029
1030 ((looking-at js--function-heading-2-re)
1031 (and (eq (match-end 0) position)
1032 (setq js--guess-function-name-start (match-beginning 1))
1033 (match-string-no-properties 1))))))
1034
1035 (defun js--clear-stale-cache ()
1036 ;; Clear any endings that occur after point
1037 (let (end-prop)
1038 (save-excursion
1039 (while (setq end-prop (js--forward-text-property
1040 'js--pend))
1041 (setf (js--pitem-b-end end-prop) nil))))
1042
1043 ;; Remove any cache properties after this point
1044 (remove-text-properties (point) (point-max)
1045 '(js--pstate t js--pend t)))
1046
1047 (defun js--ensure-cache (&optional limit)
1048 "Ensures brace cache is valid up to the character before LIMIT.
1049 LIMIT defaults to point."
1050 (setq limit (or limit (point)))
1051 (when (< js--cache-end limit)
1052
1053 (c-save-buffer-state
1054 (open-items
1055 orig-match-start
1056 orig-match-end
1057 orig-depth
1058 parse
1059 prev-parse-point
1060 name
1061 case-fold-search
1062 filtered-class-styles
1063 new-item
1064 goal-point
1065 end-prop)
1066
1067 ;; Figure out which class styles we need to look for
1068 (setq filtered-class-styles
1069 (loop for style in js--class-styles
1070 if (memq (plist-get style :framework)
1071 js-enabled-frameworks)
1072 collect style))
1073
1074 (save-excursion
1075 (save-restriction
1076 (widen)
1077
1078 ;; Find last known good position
1079 (goto-char js--cache-end)
1080 (unless (bobp)
1081 (setq open-items (get-text-property
1082 (1- (point)) 'js--pstate))
1083
1084 (unless open-items
1085 (goto-char (previous-single-property-change
1086 (point) 'js--pstate nil (point-min)))
1087
1088 (unless (bobp)
1089 (setq open-items (get-text-property (1- (point))
1090 'js--pstate))
1091 (assert open-items))))
1092
1093 (unless open-items
1094 ;; Make a placeholder for the top-level definition
1095 (setq open-items (list js--initial-pitem)))
1096
1097 (setq parse (syntax-ppss))
1098 (setq prev-parse-point (point))
1099
1100 (js--clear-stale-cache)
1101
1102 (narrow-to-region (point-min) limit)
1103
1104 (loop while (re-search-forward js--quick-match-re-func nil t)
1105 for orig-match-start = (goto-char (match-beginning 0))
1106 for orig-match-end = (match-end 0)
1107 do (js--ensure-cache--update-parse)
1108 for orig-depth = (nth 0 parse)
1109
1110 ;; Each of these conditions should return non-nil if
1111 ;; we should add a new item and leave point at the end
1112 ;; of the new item's header (h-end in the
1113 ;; js--pitem diagram). This point is the one
1114 ;; after the last character we need to unambiguously
1115 ;; detect this construct. If one of these evaluates to
1116 ;; nil, the location of the point is ignored.
1117 if (cond
1118 ;; In comment or string
1119 ((nth 8 parse) nil)
1120
1121 ;; Regular function declaration
1122 ((and (looking-at "\\_<function\\_>")
1123 (setq name (js--forward-function-decl)))
1124
1125 (when (eq name t)
1126 (setq name (js--guess-function-name orig-match-end))
1127 (if name
1128 (when js--guess-function-name-start
1129 (setq orig-match-start
1130 js--guess-function-name-start))
1131
1132 (setq name t)))
1133
1134 (assert (eq (char-after) ?{))
1135 (forward-char)
1136 (make-js--pitem
1137 :paren-depth orig-depth
1138 :h-begin orig-match-start
1139 :type 'function
1140 :name (if (eq name t)
1141 name
1142 (js--split-name name))))
1143
1144 ;; Macro
1145 ((looking-at js--macro-decl-re)
1146
1147 ;; Macros often contain unbalanced parentheses.
1148 ;; Make sure that h-end is at the textual end of
1149 ;; the macro no matter what the parenthesis say.
1150 (c-end-of-macro)
1151 (js--ensure-cache--update-parse)
1152
1153 (make-js--pitem
1154 :paren-depth (nth 0 parse)
1155 :h-begin orig-match-start
1156 :type 'macro
1157 :name (list (match-string-no-properties 1))))
1158
1159 ;; "Prototype function" declaration
1160 ((looking-at js--plain-method-re)
1161 (goto-char (match-beginning 3))
1162 (when (save-match-data
1163 (js--forward-function-decl))
1164 (forward-char)
1165 (make-js--pitem
1166 :paren-depth orig-depth
1167 :h-begin orig-match-start
1168 :type 'function
1169 :name (nconc (js--split-name
1170 (match-string-no-properties 1))
1171 (list (match-string-no-properties 2))))))
1172
1173 ;; Class definition
1174 ((loop with syntactic-context =
1175 (js--syntactic-context-from-pstate open-items)
1176 for class-style in filtered-class-styles
1177 if (and (memq syntactic-context
1178 (plist-get class-style :contexts))
1179 (looking-at (plist-get class-style
1180 :class-decl)))
1181 do (goto-char (match-end 0))
1182 and return
1183 (make-js--pitem
1184 :paren-depth orig-depth
1185 :h-begin orig-match-start
1186 :type class-style
1187 :name (js--split-name
1188 (match-string-no-properties 1))))))
1189
1190 do (js--ensure-cache--update-parse)
1191 and do (push it open-items)
1192 and do (put-text-property
1193 (1- (point)) (point) 'js--pstate open-items)
1194 else do (goto-char orig-match-end))
1195
1196 (goto-char limit)
1197 (js--ensure-cache--update-parse)
1198 (setq js--cache-end limit)
1199 (setq js--last-parse-pos limit)
1200 (setq js--state-at-last-parse-pos open-items)
1201 )))))
1202
1203 (defun js--end-of-defun-flat ()
1204 "Helper function for `js-end-of-defun'."
1205 (loop while (js--re-search-forward "}" nil t)
1206 do (js--ensure-cache)
1207 if (get-text-property (1- (point)) 'js--pend)
1208 if (eq 'function (js--pitem-type it))
1209 return t
1210 finally do (goto-char (point-max))))
1211
1212 (defun js--end-of-defun-nested ()
1213 "Helper function for `js-end-of-defun'."
1214 (message "test")
1215 (let* (pitem
1216 (this-end (save-excursion
1217 (and (setq pitem (js--beginning-of-defun-nested))
1218 (js--pitem-goto-h-end pitem)
1219 (progn (backward-char)
1220 (forward-list)
1221 (point)))))
1222 found)
1223
1224 (if (and this-end (< (point) this-end))
1225 ;; We're already inside a function; just go to its end.
1226 (goto-char this-end)
1227
1228 ;; Otherwise, go to the end of the next function...
1229 (while (and (js--re-search-forward "\\_<function\\_>" nil t)
1230 (not (setq found (progn
1231 (goto-char (match-beginning 0))
1232 (js--forward-function-decl))))))
1233
1234 (if found (forward-list)
1235 ;; ... or eob.
1236 (goto-char (point-max))))))
1237
1238 (defun js-end-of-defun (&optional arg)
1239 "Value of `end-of-defun-function' for `js-mode'."
1240 (setq arg (or arg 1))
1241 (while (and (not (bobp)) (< arg 0))
1242 (incf arg)
1243 (js-beginning-of-defun)
1244 (js-beginning-of-defun)
1245 (unless (bobp)
1246 (js-end-of-defun)))
1247
1248 (while (> arg 0)
1249 (decf arg)
1250 ;; look for function backward. if we're inside it, go to that
1251 ;; function's end. otherwise, search for the next function's end and
1252 ;; go there
1253 (if js-flat-functions
1254 (js--end-of-defun-flat)
1255
1256 ;; if we're doing nested functions, see whether we're in the
1257 ;; prologue. If we are, go to the end of the function; otherwise,
1258 ;; call js--end-of-defun-nested to do the real work
1259 (let ((prologue-begin (js--function-prologue-beginning)))
1260 (cond ((and prologue-begin (<= prologue-begin (point)))
1261 (goto-char prologue-begin)
1262 (re-search-forward "\\_<function")
1263 (goto-char (match-beginning 0))
1264 (js--forward-function-decl)
1265 (forward-list))
1266
1267 (t (js--end-of-defun-nested)))))))
1268
1269 (defun js--beginning-of-macro (&optional lim)
1270 (let ((here (point)))
1271 (save-restriction
1272 (if lim (narrow-to-region lim (point-max)))
1273 (beginning-of-line)
1274 (while (eq (char-before (1- (point))) ?\\)
1275 (forward-line -1))
1276 (back-to-indentation)
1277 (if (and (<= (point) here)
1278 (looking-at js--opt-cpp-start))
1279 t
1280 (goto-char here)
1281 nil))))
1282
1283 (defun js--backward-syntactic-ws (&optional lim)
1284 "Simple implementation of `c-backward-syntactic-ws' for `js-mode'."
1285 (save-restriction
1286 (when lim (narrow-to-region lim (point-max)))
1287
1288 (let ((in-macro (save-excursion (js--beginning-of-macro)))
1289 (pos (point)))
1290
1291 (while (progn (unless in-macro (js--beginning-of-macro))
1292 (forward-comment most-negative-fixnum)
1293 (/= (point)
1294 (prog1
1295 pos
1296 (setq pos (point)))))))))
1297
1298 (defun js--forward-syntactic-ws (&optional lim)
1299 "Simple implementation of `c-forward-syntactic-ws' for `js-mode'."
1300 (save-restriction
1301 (when lim (narrow-to-region (point-min) lim))
1302 (let ((pos (point)))
1303 (while (progn
1304 (forward-comment most-positive-fixnum)
1305 (when (eq (char-after) ?#)
1306 (c-end-of-macro))
1307 (/= (point)
1308 (prog1
1309 pos
1310 (setq pos (point)))))))))
1311
1312 ;; Like (up-list -1), but only considers lists that end nearby"
1313 (defun js--up-nearby-list ()
1314 (save-restriction
1315 ;; Look at a very small region so our compuation time doesn't
1316 ;; explode in pathological cases.
1317 (narrow-to-region (max (point-min) (- (point) 500)) (point))
1318 (up-list -1)))
1319
1320 (defun js--inside-param-list-p ()
1321 "Return non-nil iff point is in a function parameter list."
1322 (ignore-errors
1323 (save-excursion
1324 (js--up-nearby-list)
1325 (and (looking-at "(")
1326 (progn (forward-symbol -1)
1327 (or (looking-at "function")
1328 (progn (forward-symbol -1)
1329 (looking-at "function"))))))))
1330
1331 (defun js--inside-dojo-class-list-p ()
1332 "Return non-nil iff point is in a Dojo multiple-inheritance class block."
1333 (ignore-errors
1334 (save-excursion
1335 (js--up-nearby-list)
1336 (let ((list-begin (point)))
1337 (forward-line 0)
1338 (and (looking-at js--dojo-class-decl-re)
1339 (goto-char (match-end 0))
1340 (looking-at "\"\\s-*,\\s-*\\[")
1341 (eq (match-end 0) (1+ list-begin)))))))
1342
1343 (defun js--syntax-begin-function ()
1344 (when (< js--cache-end (point))
1345 (goto-char (max (point-min) js--cache-end)))
1346
1347 (let ((pitem))
1348 (while (and (setq pitem (car (js--backward-pstate)))
1349 (not (eq 0 (js--pitem-paren-depth pitem)))))
1350
1351 (when pitem
1352 (goto-char (js--pitem-h-begin pitem )))))
1353
1354 ;;; Font Lock
1355 (defun js--make-framework-matcher (framework &rest regexps)
1356 "Helper function for building `js--font-lock-keywords'.
1357 Create a byte-compiled function for matching a concatenation of
1358 REGEXPS, but only if FRAMEWORK is in `js-enabled-frameworks'."
1359 (setq regexps (apply #'concat regexps))
1360 (byte-compile
1361 `(lambda (limit)
1362 (when (memq (quote ,framework) js-enabled-frameworks)
1363 (re-search-forward ,regexps limit t)))))
1364
1365 (defvar js--tmp-location nil)
1366 (make-variable-buffer-local 'js--tmp-location)
1367
1368 (defun js--forward-destructuring-spec (&optional func)
1369 "Move forward over a JavaScript destructuring spec.
1370 If FUNC is supplied, call it with no arguments before every
1371 variable name in the spec. Return true iff this was actually a
1372 spec. FUNC must preserve the match data."
1373 (case (char-after)
1374 (?\[
1375 (forward-char)
1376 (while
1377 (progn
1378 (forward-comment most-positive-fixnum)
1379 (cond ((memq (char-after) '(?\[ ?\{))
1380 (js--forward-destructuring-spec func))
1381
1382 ((eq (char-after) ?,)
1383 (forward-char)
1384 t)
1385
1386 ((looking-at js--name-re)
1387 (and func (funcall func))
1388 (goto-char (match-end 0))
1389 t))))
1390 (when (eq (char-after) ?\])
1391 (forward-char)
1392 t))
1393
1394 (?\{
1395 (forward-char)
1396 (forward-comment most-positive-fixnum)
1397 (while
1398 (when (looking-at js--objfield-re)
1399 (goto-char (match-end 0))
1400 (forward-comment most-positive-fixnum)
1401 (and (cond ((memq (char-after) '(?\[ ?\{))
1402 (js--forward-destructuring-spec func))
1403 ((looking-at js--name-re)
1404 (and func (funcall func))
1405 (goto-char (match-end 0))
1406 t))
1407 (progn (forward-comment most-positive-fixnum)
1408 (when (eq (char-after) ?\,)
1409 (forward-char)
1410 (forward-comment most-positive-fixnum)
1411 t)))))
1412 (when (eq (char-after) ?\})
1413 (forward-char)
1414 t))))
1415
1416 (defun js--variable-decl-matcher (limit)
1417 "Font-lock matcher for variable names in a variable declaration.
1418 This is a cc-mode-style matcher that *always* fails, from the
1419 point of view of font-lock. It applies highlighting directly with
1420 `font-lock-apply-highlight'."
1421 (condition-case nil
1422 (save-restriction
1423 (narrow-to-region (point-min) limit)
1424
1425 (let ((first t))
1426 (forward-comment most-positive-fixnum)
1427 (while
1428 (and (or first
1429 (when (eq (char-after) ?,)
1430 (forward-char)
1431 (forward-comment most-positive-fixnum)
1432 t))
1433 (cond ((looking-at js--name-re)
1434 (font-lock-apply-highlight
1435 '(0 font-lock-variable-name-face))
1436 (goto-char (match-end 0)))
1437
1438 ((save-excursion
1439 (js--forward-destructuring-spec))
1440
1441 (js--forward-destructuring-spec
1442 (lambda ()
1443 (font-lock-apply-highlight
1444 '(0 font-lock-variable-name-face)))))))
1445
1446 (forward-comment most-positive-fixnum)
1447 (when (eq (char-after) ?=)
1448 (forward-char)
1449 (js--forward-expression)
1450 (forward-comment most-positive-fixnum))
1451
1452 (setq first nil))))
1453
1454 ;; Conditions to handle
1455 (scan-error nil)
1456 (end-of-buffer nil))
1457
1458 ;; Matcher always "fails"
1459 nil)
1460
1461 (defconst js--font-lock-keywords-3
1462 `(
1463 ;; This goes before keywords-2 so it gets used preferentially
1464 ;; instead of the keywords in keywords-2. Don't use override
1465 ;; because that will override syntactic fontification too, which
1466 ;; will fontify commented-out directives as if they weren't
1467 ;; commented out.
1468 ,@cpp-font-lock-keywords ; from font-lock.el
1469
1470 ,@js--font-lock-keywords-2
1471
1472 ("\\.\\(prototype\\)\\_>"
1473 (1 font-lock-constant-face))
1474
1475 ;; Highlights class being declared, in parts
1476 (js--class-decl-matcher
1477 ,(concat "\\(" js--name-re "\\)\\(?:\\.\\|.*$\\)")
1478 (goto-char (match-beginning 1))
1479 nil
1480 (1 font-lock-type-face))
1481
1482 ;; Highlights parent class, in parts, if available
1483 (js--class-decl-matcher
1484 ,(concat "\\(" js--name-re "\\)\\(?:\\.\\|.*$\\)")
1485 (if (match-beginning 2)
1486 (progn
1487 (setq js--tmp-location (match-end 2))
1488 (goto-char js--tmp-location)
1489 (insert "=")
1490 (goto-char (match-beginning 2)))
1491 (setq js--tmp-location nil)
1492 (goto-char (point-at-eol)))
1493 (when js--tmp-location
1494 (save-excursion
1495 (goto-char js--tmp-location)
1496 (delete-char 1)))
1497 (1 font-lock-type-face))
1498
1499 ;; Highlights parent class
1500 (js--class-decl-matcher
1501 (2 font-lock-type-face nil t))
1502
1503 ;; Dojo needs its own matcher to override the string highlighting
1504 (,(js--make-framework-matcher
1505 'dojo
1506 "^\\s-*dojo\\.declare\\s-*(\""
1507 "\\(" js--dotted-name-re "\\)"
1508 "\\(?:\"\\s-*,\\s-*\\(" js--dotted-name-re "\\)\\)?")
1509 (1 font-lock-type-face t)
1510 (2 font-lock-type-face nil t))
1511
1512 ;; Match Dojo base classes. Of course Mojo has to be different
1513 ;; from everything else under the sun...
1514 (,(js--make-framework-matcher
1515 'dojo
1516 "^\\s-*dojo\\.declare\\s-*(\""
1517 "\\(" js--dotted-name-re "\\)\"\\s-*,\\s-*\\[")
1518 ,(concat "[[,]\\s-*\\(" js--dotted-name-re "\\)\\s-*"
1519 "\\(?:\\].*$\\)?")
1520 (backward-char)
1521 (end-of-line)
1522 (1 font-lock-type-face))
1523
1524 ;; continued Dojo base-class list
1525 (,(js--make-framework-matcher
1526 'dojo
1527 "^\\s-*" js--dotted-name-re "\\s-*[],]")
1528 ,(concat "\\(" js--dotted-name-re "\\)"
1529 "\\s-*\\(?:\\].*$\\)?")
1530 (if (save-excursion (backward-char)
1531 (js--inside-dojo-class-list-p))
1532 (forward-symbol -1)
1533 (end-of-line))
1534 (end-of-line)
1535 (1 font-lock-type-face))
1536
1537 ;; variable declarations
1538 ,(list
1539 (concat "\\_<\\(const\\|var\\|let\\)\\_>\\|" js--basic-type-re)
1540 (list #'js--variable-decl-matcher nil nil nil))
1541
1542 ;; class instantiation
1543 ,(list
1544 (concat "\\_<new\\_>\\s-+\\(" js--dotted-name-re "\\)")
1545 (list 1 'font-lock-type-face))
1546
1547 ;; instanceof
1548 ,(list
1549 (concat "\\_<instanceof\\_>\\s-+\\(" js--dotted-name-re "\\)")
1550 (list 1 'font-lock-type-face))
1551
1552 ;; formal parameters
1553 ,(list
1554 (concat
1555 "\\_<function\\_>\\(\\s-+" js--name-re "\\)?\\s-*(\\s-*"
1556 js--name-start-re)
1557 (list (concat "\\(" js--name-re "\\)\\(\\s-*).*\\)?")
1558 '(backward-char)
1559 '(end-of-line)
1560 '(1 font-lock-variable-name-face)))
1561
1562 ;; continued formal parameter list
1563 ,(list
1564 (concat
1565 "^\\s-*" js--name-re "\\s-*[,)]")
1566 (list js--name-re
1567 '(if (save-excursion (backward-char)
1568 (js--inside-param-list-p))
1569 (forward-symbol -1)
1570 (end-of-line))
1571 '(end-of-line)
1572 '(0 font-lock-variable-name-face))))
1573 "Level three font lock for `js-mode'.")
1574
1575 (defun js--inside-pitem-p (pitem)
1576 "Return whether point is inside the given pitem's header or body."
1577 (js--ensure-cache)
1578 (assert (js--pitem-h-begin pitem))
1579 (assert (js--pitem-paren-depth pitem))
1580
1581 (and (> (point) (js--pitem-h-begin pitem))
1582 (or (null (js--pitem-b-end pitem))
1583 (> (js--pitem-b-end pitem) (point)))))
1584
1585 (defun js--parse-state-at-point ()
1586 "Parse the JavaScript program state at point.
1587 Return a list of `js--pitem' instances that apply to point, most
1588 specific first. In the worst case, the current toplevel instance
1589 will be returned."
1590 (save-excursion
1591 (save-restriction
1592 (widen)
1593 (js--ensure-cache)
1594 (let* ((bound (if (eobp) (point) (1+ (point))))
1595 (pstate (or (save-excursion
1596 (js--backward-pstate))
1597 (list js--initial-pitem))))
1598
1599 ;; Loop until we either hit a pitem at BOB or pitem ends after
1600 ;; point (or at point if we're at eob)
1601 (loop for pitem = (car pstate)
1602 until (or (eq (js--pitem-type pitem)
1603 'toplevel)
1604 (js--inside-pitem-p pitem))
1605 do (pop pstate))
1606
1607 pstate))))
1608
1609 (defun js--syntactic-context-from-pstate (pstate)
1610 "Return the JavaScript syntactic context corresponding to PSTATE."
1611 (let ((type (js--pitem-type (car pstate))))
1612 (cond ((memq type '(function macro))
1613 type)
1614 ((consp type)
1615 'class)
1616 (t 'toplevel))))
1617
1618 (defun js-syntactic-context ()
1619 "Return the JavaScript syntactic context at point.
1620 When called interatively, also display a message with that
1621 context."
1622 (interactive)
1623 (let* ((syntactic-context (js--syntactic-context-from-pstate
1624 (js--parse-state-at-point))))
1625
1626 (when (called-interactively-p 'interactive)
1627 (message "Syntactic context: %s" syntactic-context))
1628
1629 syntactic-context))
1630
1631 (defun js--class-decl-matcher (limit)
1632 "Font lock function used by `js-mode'.
1633 This performs fontification according to `js--class-styles'."
1634 (loop initially (js--ensure-cache limit)
1635 while (re-search-forward js--quick-match-re limit t)
1636 for orig-end = (match-end 0)
1637 do (goto-char (match-beginning 0))
1638 if (loop for style in js--class-styles
1639 for decl-re = (plist-get style :class-decl)
1640 if (and (memq (plist-get style :framework)
1641 js-enabled-frameworks)
1642 (memq (js-syntactic-context)
1643 (plist-get style :contexts))
1644 decl-re
1645 (looking-at decl-re))
1646 do (goto-char (match-end 0))
1647 and return t)
1648 return t
1649 else do (goto-char orig-end)))
1650
1651 (defconst js--font-lock-keywords
1652 '(js--font-lock-keywords-3 js--font-lock-keywords-1
1653 js--font-lock-keywords-2
1654 js--font-lock-keywords-3)
1655 "Font lock keywords for `js-mode'. See `font-lock-keywords'.")
1656
1657 ;; XXX: Javascript can continue a regexp literal across lines so long
1658 ;; as the newline is escaped with \. Account for that in the regexp
1659 ;; below.
1660 (eval-and-compile
1661 (defconst js--regexp-literal
1662 "[=(,:]\\(?:\\s-\\|\n\\)*\\(/\\)\\(?:\\\\/\\|[^/*]\\)\\(?:\\\\/\\|[^/]\\)*\\(/\\)"
1663 "Regexp matching a JavaScript regular expression literal.
1664 Match groups 1 and 2 are the characters forming the beginning and
1665 end of the literal."))
1666
1667
1668 (defconst js-syntax-propertize-function
1669 (syntax-propertize-rules
1670 ;; We want to match regular expressions only at the beginning of
1671 ;; expressions.
1672 (js--regexp-literal (1 "\"") (2 "\""))))
1673
1674 ;;; Indentation
1675
1676 (defconst js--possibly-braceless-keyword-re
1677 (js--regexp-opt-symbol
1678 '("catch" "do" "else" "finally" "for" "if" "try" "while" "with"
1679 "each"))
1680 "Regexp matching keywords optionally followed by an opening brace.")
1681
1682 (defconst js--indent-operator-re
1683 (concat "[-+*/%<>=&^|?:.]\\([^-+*/]\\|$\\)\\|"
1684 (js--regexp-opt-symbol '("in" "instanceof")))
1685 "Regexp matching operators that affect indentation of continued expressions.")
1686
1687
1688 (defun js--looking-at-operator-p ()
1689 "Return non-nil if point is on a JavaScript operator, other than a comma."
1690 (save-match-data
1691 (and (looking-at js--indent-operator-re)
1692 (or (not (looking-at ":"))
1693 (save-excursion
1694 (and (js--re-search-backward "[?:{]\\|\\_<case\\_>" nil t)
1695 (looking-at "?")))))))
1696
1697
1698 (defun js--continued-expression-p ()
1699 "Return non-nil if the current line continues an expression."
1700 (save-excursion
1701 (back-to-indentation)
1702 (or (js--looking-at-operator-p)
1703 (and (js--re-search-backward "\n" nil t)
1704 (progn
1705 (skip-chars-backward " \t")
1706 (or (bobp) (backward-char))
1707 (and (> (point) (point-min))
1708 (save-excursion (backward-char) (not (looking-at "[/*]/")))
1709 (js--looking-at-operator-p)
1710 (and (progn (backward-char)
1711 (not (looking-at "++\\|--\\|/[/*]"))))))))))
1712
1713
1714 (defun js--end-of-do-while-loop-p ()
1715 "Return non-nil if point is on the \"while\" of a do-while statement.
1716 Otherwise, return nil. A braceless do-while statement spanning
1717 several lines requires that the start of the loop is indented to
1718 the same column as the current line."
1719 (interactive)
1720 (save-excursion
1721 (save-match-data
1722 (when (looking-at "\\s-*\\_<while\\_>")
1723 (if (save-excursion
1724 (skip-chars-backward "[ \t\n]*}")
1725 (looking-at "[ \t\n]*}"))
1726 (save-excursion
1727 (backward-list) (forward-symbol -1) (looking-at "\\_<do\\_>"))
1728 (js--re-search-backward "\\_<do\\_>" (point-at-bol) t)
1729 (or (looking-at "\\_<do\\_>")
1730 (let ((saved-indent (current-indentation)))
1731 (while (and (js--re-search-backward "^\\s-*\\_<" nil t)
1732 (/= (current-indentation) saved-indent)))
1733 (and (looking-at "\\s-*\\_<do\\_>")
1734 (not (js--re-search-forward
1735 "\\_<while\\_>" (point-at-eol) t))
1736 (= (current-indentation) saved-indent)))))))))
1737
1738
1739 (defun js--ctrl-statement-indentation ()
1740 "Helper function for `js--proper-indentation'.
1741 Return the proper indentation of the current line if it starts
1742 the body of a control statement without braces; otherwise, return
1743 nil."
1744 (save-excursion
1745 (back-to-indentation)
1746 (when (save-excursion
1747 (and (not (eq (point-at-bol) (point-min)))
1748 (not (looking-at "[{]"))
1749 (progn
1750 (js--re-search-backward "[[:graph:]]" nil t)
1751 (or (eobp) (forward-char))
1752 (when (= (char-before) ?\)) (backward-list))
1753 (skip-syntax-backward " ")
1754 (skip-syntax-backward "w_")
1755 (looking-at js--possibly-braceless-keyword-re))
1756 (not (js--end-of-do-while-loop-p))))
1757 (save-excursion
1758 (goto-char (match-beginning 0))
1759 (+ (current-indentation) js-indent-level)))))
1760
1761 (defun js--get-c-offset (symbol anchor)
1762 (let ((c-offsets-alist
1763 (list (cons 'c js-comment-lineup-func))))
1764 (c-get-syntactic-indentation (list (cons symbol anchor)))))
1765
1766 (defun js--proper-indentation (parse-status)
1767 "Return the proper indentation for the current line."
1768 (save-excursion
1769 (back-to-indentation)
1770 (cond ((nth 4 parse-status)
1771 (js--get-c-offset 'c (nth 8 parse-status)))
1772 ((nth 8 parse-status) 0) ; inside string
1773 ((js--ctrl-statement-indentation))
1774 ((eq (char-after) ?#) 0)
1775 ((save-excursion (js--beginning-of-macro)) 4)
1776 ((nth 1 parse-status)
1777 ;; A single closing paren/bracket should be indented at the
1778 ;; same level as the opening statement. Same goes for
1779 ;; "case" and "default".
1780 (let ((same-indent-p (looking-at
1781 "[]})]\\|\\_<case\\_>\\|\\_<default\\_>"))
1782 (continued-expr-p (js--continued-expression-p)))
1783 (goto-char (nth 1 parse-status)) ; go to the opening char
1784 (if (looking-at "[({[]\\s-*\\(/[/*]\\|$\\)")
1785 (progn ; nothing following the opening paren/bracket
1786 (skip-syntax-backward " ")
1787 (when (eq (char-before) ?\)) (backward-list))
1788 (back-to-indentation)
1789 (cond (same-indent-p
1790 (current-column))
1791 (continued-expr-p
1792 (+ (current-column) (* 2 js-indent-level)
1793 js-expr-indent-offset))
1794 (t
1795 (+ (current-column) js-indent-level
1796 (case (char-after (nth 1 parse-status))
1797 (?\( js-paren-indent-offset)
1798 (?\[ js-square-indent-offset)
1799 (?\{ js-curly-indent-offset))))))
1800 ;; If there is something following the opening
1801 ;; paren/bracket, everything else should be indented at
1802 ;; the same level.
1803 (unless same-indent-p
1804 (forward-char)
1805 (skip-chars-forward " \t"))
1806 (current-column))))
1807
1808 ((js--continued-expression-p)
1809 (+ js-indent-level js-expr-indent-offset))
1810 (t 0))))
1811
1812 (defun js-indent-line ()
1813 "Indent the current line as JavaScript."
1814 (interactive)
1815 (save-restriction
1816 (widen)
1817 (let* ((parse-status
1818 (save-excursion (syntax-ppss (point-at-bol))))
1819 (offset (- (current-column) (current-indentation))))
1820 (indent-line-to (js--proper-indentation parse-status))
1821 (when (> offset 0) (forward-char offset)))))
1822
1823 ;;; Filling
1824
1825 (defun js-c-fill-paragraph (&optional justify)
1826 "Fill the paragraph with `c-fill-paragraph'."
1827 (interactive "*P")
1828 (flet ((c-forward-sws
1829 (&optional limit)
1830 (js--forward-syntactic-ws limit))
1831 (c-backward-sws
1832 (&optional limit)
1833 (js--backward-syntactic-ws limit))
1834 (c-beginning-of-macro
1835 (&optional limit)
1836 (js--beginning-of-macro limit)))
1837 (let ((fill-paragraph-function 'c-fill-paragraph))
1838 (c-fill-paragraph justify))))
1839
1840 ;;; Type database and Imenu
1841
1842 ;; We maintain a cache of semantic information, i.e., the classes and
1843 ;; functions we've encountered so far. In order to avoid having to
1844 ;; re-parse the buffer on every change, we cache the parse state at
1845 ;; each interesting point in the buffer. Each parse state is a
1846 ;; modified copy of the previous one, or in the case of the first
1847 ;; parse state, the empty state.
1848 ;;
1849 ;; The parse state itself is just a stack of js--pitem
1850 ;; instances. It starts off containing one element that is never
1851 ;; closed, that is initially js--initial-pitem.
1852 ;;
1853
1854
1855 (defun js--pitem-format (pitem)
1856 (let ((name (js--pitem-name pitem))
1857 (type (js--pitem-type pitem)))
1858
1859 (format "name:%S type:%S"
1860 name
1861 (if (atom type)
1862 type
1863 (plist-get type :name)))))
1864
1865 (defun js--make-merged-item (item child name-parts)
1866 "Helper function for `js--splice-into-items'.
1867 Return a new item that is the result of merging CHILD into
1868 ITEM. NAME-PARTS is a list of parts of the name of CHILD
1869 that we haven't consumed yet."
1870 (js--debug "js--make-merged-item: {%s} into {%s}"
1871 (js--pitem-format child)
1872 (js--pitem-format item))
1873
1874 ;; If the item we're merging into isn't a class, make it into one
1875 (unless (consp (js--pitem-type item))
1876 (js--debug "js--make-merged-item: changing dest into class")
1877 (setq item (make-js--pitem
1878 :children (list item)
1879
1880 ;; Use the child's class-style if it's available
1881 :type (if (atom (js--pitem-type child))
1882 js--dummy-class-style
1883 (js--pitem-type child))
1884
1885 :name (js--pitem-strname item))))
1886
1887 ;; Now we can merge either a function or a class into a class
1888 (cons (cond
1889 ((cdr name-parts)
1890 (js--debug "js--make-merged-item: recursing")
1891 ;; if we have more name-parts to go before we get to the
1892 ;; bottom of the class hierarchy, call the merger
1893 ;; recursively
1894 (js--splice-into-items (car item) child
1895 (cdr name-parts)))
1896
1897 ((atom (js--pitem-type child))
1898 (js--debug "js--make-merged-item: straight merge")
1899 ;; Not merging a class, but something else, so just prepend
1900 ;; it
1901 (cons child (car item)))
1902
1903 (t
1904 ;; Otherwise, merge the new child's items into those
1905 ;; of the new class
1906 (js--debug "js--make-merged-item: merging class contents")
1907 (append (car child) (car item))))
1908 (cdr item)))
1909
1910 (defun js--pitem-strname (pitem)
1911 "Last part of the name of PITEM, as a string or symbol."
1912 (let ((name (js--pitem-name pitem)))
1913 (if (consp name)
1914 (car (last name))
1915 name)))
1916
1917 (defun js--splice-into-items (items child name-parts)
1918 "Splice CHILD into the `js--pitem' ITEMS at NAME-PARTS.
1919 If a class doesn't exist in the tree, create it. Return
1920 the new items list. NAME-PARTS is a list of strings given
1921 the broken-down class name of the item to insert."
1922
1923 (let ((top-name (car name-parts))
1924 (item-ptr items)
1925 new-items last-new-item new-cons item)
1926
1927 (js--debug "js--splice-into-items: name-parts: %S items:%S"
1928 name-parts
1929 (mapcar #'js--pitem-name items))
1930
1931 (assert (stringp top-name))
1932 (assert (> (length top-name) 0))
1933
1934 ;; If top-name isn't found in items, then we build a copy of items
1935 ;; and throw it away. But that's okay, since most of the time, we
1936 ;; *will* find an instance.
1937
1938 (while (and item-ptr
1939 (cond ((equal (js--pitem-strname (car item-ptr)) top-name)
1940 ;; Okay, we found an entry with the right name. Splice
1941 ;; the merged item into the list...
1942 (setq new-cons (cons (js--make-merged-item
1943 (car item-ptr) child
1944 name-parts)
1945 (cdr item-ptr)))
1946
1947 (if last-new-item
1948 (setcdr last-new-item new-cons)
1949 (setq new-items new-cons))
1950
1951 ;; ...and terminate the loop
1952 nil)
1953
1954 (t
1955 ;; Otherwise, copy the current cons and move onto the
1956 ;; text. This is tricky; we keep track of the tail of
1957 ;; the list that begins with new-items in
1958 ;; last-new-item.
1959 (setq new-cons (cons (car item-ptr) nil))
1960 (if last-new-item
1961 (setcdr last-new-item new-cons)
1962 (setq new-items new-cons))
1963 (setq last-new-item new-cons)
1964
1965 ;; Go to the next cell in items
1966 (setq item-ptr (cdr item-ptr))))))
1967
1968 (if item-ptr
1969 ;; Yay! We stopped because we found something, not because
1970 ;; we ran out of items to search. Just return the new
1971 ;; list.
1972 (progn
1973 (js--debug "search succeeded: %S" name-parts)
1974 new-items)
1975
1976 ;; We didn't find anything. If the child is a class and we don't
1977 ;; have any classes to drill down into, just push that class;
1978 ;; otherwise, make a fake class and carry on.
1979 (js--debug "search failed: %S" name-parts)
1980 (cons (if (cdr name-parts)
1981 ;; We have name-parts left to process. Make a fake
1982 ;; class for this particular part...
1983 (make-js--pitem
1984 ;; ...and recursively digest the rest of the name
1985 :children (js--splice-into-items
1986 nil child (cdr name-parts))
1987 :type js--dummy-class-style
1988 :name top-name)
1989
1990 ;; Otherwise, this is the only name we have, so stick
1991 ;; the item on the front of the list
1992 child)
1993 items))))
1994
1995 (defun js--pitem-add-child (pitem child)
1996 "Copy `js--pitem' PITEM, and push CHILD onto its list of children."
1997 (assert (integerp (js--pitem-h-begin child)))
1998 (assert (if (consp (js--pitem-name child))
1999 (loop for part in (js--pitem-name child)
2000 always (stringp part))
2001 t))
2002
2003 ;; This trick works because we know (based on our defstructs) that
2004 ;; the child list is always the first element, and so the second
2005 ;; element and beyond can be shared when we make our "copy".
2006 (cons
2007
2008 (let ((name (js--pitem-name child))
2009 (type (js--pitem-type child)))
2010
2011 (cond ((cdr-safe name) ; true if a list of at least two elements
2012 ;; Use slow path because we need class lookup
2013 (js--splice-into-items (car pitem) child name))
2014
2015 ((and (consp type)
2016 (plist-get type :prototype))
2017
2018 ;; Use slow path because we need class merging. We know
2019 ;; name is a list here because down in
2020 ;; `js--ensure-cache', we made sure to only add
2021 ;; class entries with lists for :name
2022 (assert (consp name))
2023 (js--splice-into-items (car pitem) child name))
2024
2025 (t
2026 ;; Fast path
2027 (cons child (car pitem)))))
2028
2029 (cdr pitem)))
2030
2031 (defun js--maybe-make-marker (location)
2032 "Return a marker for LOCATION if `imenu-use-markers' is non-nil."
2033 (if imenu-use-markers
2034 (set-marker (make-marker) location)
2035 location))
2036
2037 (defun js--pitems-to-imenu (pitems unknown-ctr)
2038 "Convert PITEMS, a list of `js--pitem' structures, to imenu format."
2039
2040 (let (imenu-items pitem pitem-type pitem-name subitems)
2041
2042 (while (setq pitem (pop pitems))
2043 (setq pitem-type (js--pitem-type pitem))
2044 (setq pitem-name (js--pitem-strname pitem))
2045 (when (eq pitem-name t)
2046 (setq pitem-name (format "[unknown %s]"
2047 (incf (car unknown-ctr)))))
2048
2049 (cond
2050 ((memq pitem-type '(function macro))
2051 (assert (integerp (js--pitem-h-begin pitem)))
2052 (push (cons pitem-name
2053 (js--maybe-make-marker
2054 (js--pitem-h-begin pitem)))
2055 imenu-items))
2056
2057 ((consp pitem-type) ; class definition
2058 (setq subitems (js--pitems-to-imenu
2059 (js--pitem-children pitem)
2060 unknown-ctr))
2061 (cond (subitems
2062 (push (cons pitem-name subitems)
2063 imenu-items))
2064
2065 ((js--pitem-h-begin pitem)
2066 (assert (integerp (js--pitem-h-begin pitem)))
2067 (setq subitems (list
2068 (cons "[empty]"
2069 (js--maybe-make-marker
2070 (js--pitem-h-begin pitem)))))
2071 (push (cons pitem-name subitems)
2072 imenu-items))))
2073
2074 (t (error "Unknown item type: %S" pitem-type))))
2075
2076 imenu-items))
2077
2078 (defun js--imenu-create-index ()
2079 "Return an imenu index for the current buffer."
2080 (save-excursion
2081 (save-restriction
2082 (widen)
2083 (goto-char (point-max))
2084 (js--ensure-cache)
2085 (assert (or (= (point-min) (point-max))
2086 (eq js--last-parse-pos (point))))
2087 (when js--last-parse-pos
2088 (let ((state js--state-at-last-parse-pos)
2089 (unknown-ctr (cons -1 nil)))
2090
2091 ;; Make sure everything is closed
2092 (while (cdr state)
2093 (setq state
2094 (cons (js--pitem-add-child (second state) (car state))
2095 (cddr state))))
2096
2097 (assert (= (length state) 1))
2098
2099 ;; Convert the new-finalized state into what imenu expects
2100 (js--pitems-to-imenu
2101 (car (js--pitem-children state))
2102 unknown-ctr))))))
2103
2104 ;; Silence the compiler.
2105 (defvar which-func-imenu-joiner-function)
2106
2107 (defun js--which-func-joiner (parts)
2108 (mapconcat #'identity parts "."))
2109
2110 (defun js--imenu-to-flat (items prefix symbols)
2111 (loop for item in items
2112 if (imenu--subalist-p item)
2113 do (js--imenu-to-flat
2114 (cdr item) (concat prefix (car item) ".")
2115 symbols)
2116 else
2117 do (let* ((name (concat prefix (car item)))
2118 (name2 name)
2119 (ctr 0))
2120
2121 (while (gethash name2 symbols)
2122 (setq name2 (format "%s<%d>" name (incf ctr))))
2123
2124 (puthash name2 (cdr item) symbols))))
2125
2126 (defun js--get-all-known-symbols ()
2127 "Return a hash table of all JavaScript symbols.
2128 This searches all existing `js-mode' buffers. Each key is the
2129 name of a symbol (possibly disambiguated with <N>, where N > 1),
2130 and each value is a marker giving the location of that symbol."
2131 (loop with symbols = (make-hash-table :test 'equal)
2132 with imenu-use-markers = t
2133 for buffer being the buffers
2134 for imenu-index = (with-current-buffer buffer
2135 (when (derived-mode-p 'js-mode)
2136 (js--imenu-create-index)))
2137 do (js--imenu-to-flat imenu-index "" symbols)
2138 finally return symbols))
2139
2140 (defvar js--symbol-history nil
2141 "History of entered JavaScript symbols.")
2142
2143 (defun js--read-symbol (symbols-table prompt &optional initial-input)
2144 "Helper function for `js-find-symbol'.
2145 Read a symbol from SYMBOLS-TABLE, which is a hash table like the
2146 one from `js--get-all-known-symbols', using prompt PROMPT and
2147 initial input INITIAL-INPUT. Return a cons of (SYMBOL-NAME
2148 . LOCATION), where SYMBOL-NAME is a string and LOCATION is a
2149 marker."
2150 (unless ido-mode
2151 (ido-mode t)
2152 (ido-mode nil))
2153
2154 (let ((choice (ido-completing-read
2155 prompt
2156 (loop for key being the hash-keys of symbols-table
2157 collect key)
2158 nil t initial-input 'js--symbol-history)))
2159 (cons choice (gethash choice symbols-table))))
2160
2161 (defun js--guess-symbol-at-point ()
2162 (let ((bounds (bounds-of-thing-at-point 'symbol)))
2163 (when bounds
2164 (save-excursion
2165 (goto-char (car bounds))
2166 (when (eq (char-before) ?.)
2167 (backward-char)
2168 (setf (car bounds) (point))))
2169 (buffer-substring (car bounds) (cdr bounds)))))
2170
2171 (defvar find-tag-marker-ring) ; etags
2172
2173 (defun js-find-symbol (&optional arg)
2174 "Read a JavaScript symbol and jump to it.
2175 With a prefix argument, restrict symbols to those from the
2176 current buffer. Pushes a mark onto the tag ring just like
2177 `find-tag'."
2178 (interactive "P")
2179 (require 'etags)
2180 (let (symbols marker)
2181 (if (not arg)
2182 (setq symbols (js--get-all-known-symbols))
2183 (setq symbols (make-hash-table :test 'equal))
2184 (js--imenu-to-flat (js--imenu-create-index)
2185 "" symbols))
2186
2187 (setq marker (cdr (js--read-symbol
2188 symbols "Jump to: "
2189 (js--guess-symbol-at-point))))
2190
2191 (ring-insert find-tag-marker-ring (point-marker))
2192 (switch-to-buffer (marker-buffer marker))
2193 (push-mark)
2194 (goto-char marker)))
2195
2196 ;;; MozRepl integration
2197
2198 (put 'js-moz-bad-rpc 'error-conditions '(error timeout))
2199 (put 'js-moz-bad-rpc 'error-message "Mozilla RPC Error")
2200
2201 (put 'js-js-error 'error-conditions '(error js-error))
2202 (put 'js-js-error 'error-message "Javascript Error")
2203
2204 (defun js--wait-for-matching-output
2205 (process regexp timeout &optional start)
2206 "Wait TIMEOUT seconds for PROCESS to output a match for REGEXP.
2207 On timeout, return nil. On success, return t with match data
2208 set. If START is non-nil, look for output starting from START.
2209 Otherwise, use the current value of `process-mark'."
2210 (with-current-buffer (process-buffer process)
2211 (loop with start-pos = (or start
2212 (marker-position (process-mark process)))
2213 with end-time = (+ (float-time) timeout)
2214 for time-left = (- end-time (float-time))
2215 do (goto-char (point-max))
2216 if (looking-back regexp start-pos) return t
2217 while (> time-left 0)
2218 do (accept-process-output process time-left nil t)
2219 do (goto-char (process-mark process))
2220 finally do (signal
2221 'js-moz-bad-rpc
2222 (list (format "Timed out waiting for output matching %S" regexp))))))
2223
2224 (defstruct js--js-handle
2225 ;; Integer, mirrors the value we see in JS
2226 (id nil :read-only t)
2227
2228 ;; Process to which this thing belongs
2229 (process nil :read-only t))
2230
2231 (defun js--js-handle-expired-p (x)
2232 (not (eq (js--js-handle-process x)
2233 (inferior-moz-process))))
2234
2235 (defvar js--js-references nil
2236 "Maps Elisp JavaScript proxy objects to their JavaScript IDs.")
2237
2238 (defvar js--js-process nil
2239 "The most recent MozRepl process object.")
2240
2241 (defvar js--js-gc-idle-timer nil
2242 "Idle timer for cleaning up JS object references.")
2243
2244 (defvar js--js-last-gcs-done nil)
2245
2246 (defconst js--moz-interactor
2247 (replace-regexp-in-string
2248 "[ \n]+" " "
2249 ; */" Make Emacs happy
2250 "(function(repl) {
2251 repl.defineInteractor('js', {
2252 onStart: function onStart(repl) {
2253 if(!repl._jsObjects) {
2254 repl._jsObjects = {};
2255 repl._jsLastID = 0;
2256 repl._jsGC = this._jsGC;
2257 }
2258 this._input = '';
2259 },
2260
2261 _jsGC: function _jsGC(ids_in_use) {
2262 var objects = this._jsObjects;
2263 var keys = [];
2264 var num_freed = 0;
2265
2266 for(var pn in objects) {
2267 keys.push(Number(pn));
2268 }
2269
2270 keys.sort(function(x, y) x - y);
2271 ids_in_use.sort(function(x, y) x - y);
2272 var i = 0;
2273 var j = 0;
2274
2275 while(i < ids_in_use.length && j < keys.length) {
2276 var id = ids_in_use[i++];
2277 while(j < keys.length && keys[j] !== id) {
2278 var k_id = keys[j++];
2279 delete objects[k_id];
2280 ++num_freed;
2281 }
2282 ++j;
2283 }
2284
2285 while(j < keys.length) {
2286 var k_id = keys[j++];
2287 delete objects[k_id];
2288 ++num_freed;
2289 }
2290
2291 return num_freed;
2292 },
2293
2294 _mkArray: function _mkArray() {
2295 var result = [];
2296 for(var i = 0; i < arguments.length; ++i) {
2297 result.push(arguments[i]);
2298 }
2299 return result;
2300 },
2301
2302 _parsePropDescriptor: function _parsePropDescriptor(parts) {
2303 if(typeof parts === 'string') {
2304 parts = [ parts ];
2305 }
2306
2307 var obj = parts[0];
2308 var start = 1;
2309
2310 if(typeof obj === 'string') {
2311 obj = window;
2312 start = 0;
2313 } else if(parts.length < 2) {
2314 throw new Error('expected at least 2 arguments');
2315 }
2316
2317 for(var i = start; i < parts.length - 1; ++i) {
2318 obj = obj[parts[i]];
2319 }
2320
2321 return [obj, parts[parts.length - 1]];
2322 },
2323
2324 _getProp: function _getProp(/*...*/) {
2325 if(arguments.length === 0) {
2326 throw new Error('no arguments supplied to getprop');
2327 }
2328
2329 if(arguments.length === 1 &&
2330 (typeof arguments[0]) !== 'string')
2331 {
2332 return arguments[0];
2333 }
2334
2335 var [obj, propname] = this._parsePropDescriptor(arguments);
2336 return obj[propname];
2337 },
2338
2339 _putProp: function _putProp(properties, value) {
2340 var [obj, propname] = this._parsePropDescriptor(properties);
2341 obj[propname] = value;
2342 },
2343
2344 _delProp: function _delProp(propname) {
2345 var [obj, propname] = this._parsePropDescriptor(arguments);
2346 delete obj[propname];
2347 },
2348
2349 _typeOf: function _typeOf(thing) {
2350 return typeof thing;
2351 },
2352
2353 _callNew: function(constructor) {
2354 if(typeof constructor === 'string')
2355 {
2356 constructor = window[constructor];
2357 } else if(constructor.length === 1 &&
2358 typeof constructor[0] !== 'string')
2359 {
2360 constructor = constructor[0];
2361 } else {
2362 var [obj,propname] = this._parsePropDescriptor(constructor);
2363 constructor = obj[propname];
2364 }
2365
2366 /* Hacky, but should be robust */
2367 var s = 'new constructor(';
2368 for(var i = 1; i < arguments.length; ++i) {
2369 if(i != 1) {
2370 s += ',';
2371 }
2372
2373 s += 'arguments[' + i + ']';
2374 }
2375
2376 s += ')';
2377 return eval(s);
2378 },
2379
2380 _callEval: function(thisobj, js) {
2381 return eval.call(thisobj, js);
2382 },
2383
2384 getPrompt: function getPrompt(repl) {
2385 return 'EVAL>'
2386 },
2387
2388 _lookupObject: function _lookupObject(repl, id) {
2389 if(typeof id === 'string') {
2390 switch(id) {
2391 case 'global':
2392 return window;
2393 case 'nil':
2394 return null;
2395 case 't':
2396 return true;
2397 case 'false':
2398 return false;
2399 case 'undefined':
2400 return undefined;
2401 case 'repl':
2402 return repl;
2403 case 'interactor':
2404 return this;
2405 case 'NaN':
2406 return NaN;
2407 case 'Infinity':
2408 return Infinity;
2409 case '-Infinity':
2410 return -Infinity;
2411 default:
2412 throw new Error('No object with special id:' + id);
2413 }
2414 }
2415
2416 var ret = repl._jsObjects[id];
2417 if(ret === undefined) {
2418 throw new Error('No object with id:' + id + '(' + typeof id + ')');
2419 }
2420 return ret;
2421 },
2422
2423 _findOrAllocateObject: function _findOrAllocateObject(repl, value) {
2424 if(typeof value !== 'object' && typeof value !== 'function') {
2425 throw new Error('_findOrAllocateObject called on non-object('
2426 + typeof(value) + '): '
2427 + value)
2428 }
2429
2430 for(var id in repl._jsObjects) {
2431 id = Number(id);
2432 var obj = repl._jsObjects[id];
2433 if(obj === value) {
2434 return id;
2435 }
2436 }
2437
2438 var id = ++repl._jsLastID;
2439 repl._jsObjects[id] = value;
2440 return id;
2441 },
2442
2443 _fixupList: function _fixupList(repl, list) {
2444 for(var i = 0; i < list.length; ++i) {
2445 if(list[i] instanceof Array) {
2446 this._fixupList(repl, list[i]);
2447 } else if(typeof list[i] === 'object') {
2448 var obj = list[i];
2449 if(obj.funcall) {
2450 var parts = obj.funcall;
2451 this._fixupList(repl, parts);
2452 var [thisobj, func] = this._parseFunc(parts[0]);
2453 list[i] = func.apply(thisobj, parts.slice(1));
2454 } else if(obj.objid) {
2455 list[i] = this._lookupObject(repl, obj.objid);
2456 } else {
2457 throw new Error('Unknown object type: ' + obj.toSource());
2458 }
2459 }
2460 }
2461 },
2462
2463 _parseFunc: function(func) {
2464 var thisobj = null;
2465
2466 if(typeof func === 'string') {
2467 func = window[func];
2468 } else if(func instanceof Array) {
2469 if(func.length === 1 && typeof func[0] !== 'string') {
2470 func = func[0];
2471 } else {
2472 [thisobj, func] = this._parsePropDescriptor(func);
2473 func = thisobj[func];
2474 }
2475 }
2476
2477 return [thisobj,func];
2478 },
2479
2480 _encodeReturn: function(value, array_as_mv) {
2481 var ret;
2482
2483 if(value === null) {
2484 ret = ['special', 'null'];
2485 } else if(value === true) {
2486 ret = ['special', 'true'];
2487 } else if(value === false) {
2488 ret = ['special', 'false'];
2489 } else if(value === undefined) {
2490 ret = ['special', 'undefined'];
2491 } else if(typeof value === 'number') {
2492 if(isNaN(value)) {
2493 ret = ['special', 'NaN'];
2494 } else if(value === Infinity) {
2495 ret = ['special', 'Infinity'];
2496 } else if(value === -Infinity) {
2497 ret = ['special', '-Infinity'];
2498 } else {
2499 ret = ['atom', value];
2500 }
2501 } else if(typeof value === 'string') {
2502 ret = ['atom', value];
2503 } else if(array_as_mv && value instanceof Array) {
2504 ret = ['array', value.map(this._encodeReturn, this)];
2505 } else {
2506 ret = ['objid', this._findOrAllocateObject(repl, value)];
2507 }
2508
2509 return ret;
2510 },
2511
2512 _handleInputLine: function _handleInputLine(repl, line) {
2513 var ret;
2514 var array_as_mv = false;
2515
2516 try {
2517 if(line[0] === '*') {
2518 array_as_mv = true;
2519 line = line.substring(1);
2520 }
2521 var parts = eval(line);
2522 this._fixupList(repl, parts);
2523 var [thisobj, func] = this._parseFunc(parts[0]);
2524 ret = this._encodeReturn(
2525 func.apply(thisobj, parts.slice(1)),
2526 array_as_mv);
2527 } catch(x) {
2528 ret = ['error', x.toString() ];
2529 }
2530
2531 var JSON = Components.classes['@mozilla.org/dom/json;1'].createInstance(Components.interfaces.nsIJSON);
2532 repl.print(JSON.encode(ret));
2533 repl._prompt();
2534 },
2535
2536 handleInput: function handleInput(repl, chunk) {
2537 this._input += chunk;
2538 var match, line;
2539 while(match = this._input.match(/.*\\n/)) {
2540 line = match[0];
2541
2542 if(line === 'EXIT\\n') {
2543 repl.popInteractor();
2544 repl._prompt();
2545 return;
2546 }
2547
2548 this._input = this._input.substring(line.length);
2549 this._handleInputLine(repl, line);
2550 }
2551 }
2552 });
2553 })
2554 ")
2555
2556 "String to set MozRepl up into a simple-minded evaluation mode.")
2557
2558 (defun js--js-encode-value (x)
2559 "Marshall the given value for JS.
2560 Strings and numbers are JSON-encoded. Lists (including nil) are
2561 made into JavaScript array literals and their contents encoded
2562 with `js--js-encode-value'."
2563 (cond ((stringp x) (json-encode-string x))
2564 ((numberp x) (json-encode-number x))
2565 ((symbolp x) (format "{objid:%S}" (symbol-name x)))
2566 ((js--js-handle-p x)
2567
2568 (when (js--js-handle-expired-p x)
2569 (error "Stale JS handle"))
2570
2571 (format "{objid:%s}" (js--js-handle-id x)))
2572
2573 ((sequencep x)
2574 (if (eq (car-safe x) 'js--funcall)
2575 (format "{funcall:[%s]}"
2576 (mapconcat #'js--js-encode-value (cdr x) ","))
2577 (concat
2578 "[" (mapconcat #'js--js-encode-value x ",") "]")))
2579 (t
2580 (error "Unrecognized item: %S" x))))
2581
2582 (defconst js--js-prompt-regexp "\\(repl[0-9]*\\)> $")
2583 (defconst js--js-repl-prompt-regexp "^EVAL>$")
2584 (defvar js--js-repl-depth 0)
2585
2586 (defun js--js-wait-for-eval-prompt ()
2587 (js--wait-for-matching-output
2588 (inferior-moz-process)
2589 js--js-repl-prompt-regexp js-js-timeout
2590
2591 ;; start matching against the beginning of the line in
2592 ;; order to catch a prompt that's only partially arrived
2593 (save-excursion (forward-line 0) (point))))
2594
2595 (defun js--js-enter-repl ()
2596 (inferior-moz-process) ; called for side-effect
2597 (with-current-buffer inferior-moz-buffer
2598 (goto-char (point-max))
2599
2600 ;; Do some initialization the first time we see a process
2601 (unless (eq (inferior-moz-process) js--js-process)
2602 (setq js--js-process (inferior-moz-process))
2603 (setq js--js-references (make-hash-table :test 'eq :weakness t))
2604 (setq js--js-repl-depth 0)
2605
2606 ;; Send interactor definition
2607 (comint-send-string js--js-process js--moz-interactor)
2608 (comint-send-string js--js-process
2609 (concat "(" moz-repl-name ")\n"))
2610 (js--wait-for-matching-output
2611 (inferior-moz-process) js--js-prompt-regexp
2612 js-js-timeout))
2613
2614 ;; Sanity check
2615 (when (looking-back js--js-prompt-regexp
2616 (save-excursion (forward-line 0) (point)))
2617 (setq js--js-repl-depth 0))
2618
2619 (if (> js--js-repl-depth 0)
2620 ;; If js--js-repl-depth > 0, we *should* be seeing an
2621 ;; EVAL> prompt. If we don't, give Mozilla a chance to catch
2622 ;; up with us.
2623 (js--js-wait-for-eval-prompt)
2624
2625 ;; Otherwise, tell Mozilla to enter the interactor mode
2626 (insert (match-string-no-properties 1)
2627 ".pushInteractor('js')")
2628 (comint-send-input nil t)
2629 (js--wait-for-matching-output
2630 (inferior-moz-process) js--js-repl-prompt-regexp
2631 js-js-timeout))
2632
2633 (incf js--js-repl-depth)))
2634
2635 (defun js--js-leave-repl ()
2636 (assert (> js--js-repl-depth 0))
2637 (when (= 0 (decf js--js-repl-depth))
2638 (with-current-buffer inferior-moz-buffer
2639 (goto-char (point-max))
2640 (js--js-wait-for-eval-prompt)
2641 (insert "EXIT")
2642 (comint-send-input nil t)
2643 (js--wait-for-matching-output
2644 (inferior-moz-process) js--js-prompt-regexp
2645 js-js-timeout))))
2646
2647 (defsubst js--js-not (value)
2648 (memq value '(nil null false undefined)))
2649
2650 (defsubst js--js-true (value)
2651 (not (js--js-not value)))
2652
2653 (eval-and-compile
2654 (defun js--optimize-arglist (arglist)
2655 "Convert immediate js< and js! references to deferred ones."
2656 (loop for item in arglist
2657 if (eq (car-safe item) 'js<)
2658 collect (append (list 'list ''js--funcall
2659 '(list 'interactor "_getProp"))
2660 (js--optimize-arglist (cdr item)))
2661 else if (eq (car-safe item) 'js>)
2662 collect (append (list 'list ''js--funcall
2663 '(list 'interactor "_putProp"))
2664
2665 (if (atom (cadr item))
2666 (list (cadr item))
2667 (list
2668 (append
2669 (list 'list ''js--funcall
2670 '(list 'interactor "_mkArray"))
2671 (js--optimize-arglist (cadr item)))))
2672 (js--optimize-arglist (cddr item)))
2673 else if (eq (car-safe item) 'js!)
2674 collect (destructuring-bind (ignored function &rest body) item
2675 (append (list 'list ''js--funcall
2676 (if (consp function)
2677 (cons 'list
2678 (js--optimize-arglist function))
2679 function))
2680 (js--optimize-arglist body)))
2681 else
2682 collect item)))
2683
2684 (defmacro js--js-get-service (class-name interface-name)
2685 `(js! ("Components" "classes" ,class-name "getService")
2686 (js< "Components" "interfaces" ,interface-name)))
2687
2688 (defmacro js--js-create-instance (class-name interface-name)
2689 `(js! ("Components" "classes" ,class-name "createInstance")
2690 (js< "Components" "interfaces" ,interface-name)))
2691
2692 (defmacro js--js-qi (object interface-name)
2693 `(js! (,object "QueryInterface")
2694 (js< "Components" "interfaces" ,interface-name)))
2695
2696 (defmacro with-js (&rest forms)
2697 "Run FORMS with the Mozilla repl set up for js commands.
2698 Inside the lexical scope of `with-js', `js?', `js!',
2699 `js-new', `js-eval', `js-list', `js<', `js>', `js-get-service',
2700 `js-create-instance', and `js-qi' are defined."
2701
2702 `(progn
2703 (js--js-enter-repl)
2704 (unwind-protect
2705 (macrolet ((js? (&rest body) `(js--js-true ,@body))
2706 (js! (function &rest body)
2707 `(js--js-funcall
2708 ,(if (consp function)
2709 (cons 'list
2710 (js--optimize-arglist function))
2711 function)
2712 ,@(js--optimize-arglist body)))
2713
2714 (js-new (function &rest body)
2715 `(js--js-new
2716 ,(if (consp function)
2717 (cons 'list
2718 (js--optimize-arglist function))
2719 function)
2720 ,@body))
2721
2722 (js-eval (thisobj js)
2723 `(js--js-eval
2724 ,@(js--optimize-arglist
2725 (list thisobj js))))
2726
2727 (js-list (&rest args)
2728 `(js--js-list
2729 ,@(js--optimize-arglist args)))
2730
2731 (js-get-service (&rest args)
2732 `(js--js-get-service
2733 ,@(js--optimize-arglist args)))
2734
2735 (js-create-instance (&rest args)
2736 `(js--js-create-instance
2737 ,@(js--optimize-arglist args)))
2738
2739 (js-qi (&rest args)
2740 `(js--js-qi
2741 ,@(js--optimize-arglist args)))
2742
2743 (js< (&rest body) `(js--js-get
2744 ,@(js--optimize-arglist body)))
2745 (js> (props value)
2746 `(js--js-funcall
2747 '(interactor "_putProp")
2748 ,(if (consp props)
2749 (cons 'list
2750 (js--optimize-arglist props))
2751 props)
2752 ,@(js--optimize-arglist (list value))
2753 ))
2754 (js-handle? (arg) `(js--js-handle-p ,arg)))
2755 ,@forms)
2756 (js--js-leave-repl))))
2757
2758 (defvar js--js-array-as-list nil
2759 "Whether to listify any Array returned by a Mozilla function.
2760 If nil, the whole Array is treated as a JS symbol.")
2761
2762 (defun js--js-decode-retval (result)
2763 (ecase (intern (first result))
2764 (atom (second result))
2765 (special (intern (second result)))
2766 (array
2767 (mapcar #'js--js-decode-retval (second result)))
2768 (objid
2769 (or (gethash (second result)
2770 js--js-references)
2771 (puthash (second result)
2772 (make-js--js-handle
2773 :id (second result)
2774 :process (inferior-moz-process))
2775 js--js-references)))
2776
2777 (error (signal 'js-js-error (list (second result))))))
2778
2779 (defun js--js-funcall (function &rest arguments)
2780 "Call the Mozilla function FUNCTION with arguments ARGUMENTS.
2781 If function is a string, look it up as a property on the global
2782 object and use the global object for `this'.
2783 If FUNCTION is a list with one element, use that element as the
2784 function with the global object for `this', except that if that
2785 single element is a string, look it up on the global object.
2786 If FUNCTION is a list with more than one argument, use the list
2787 up to the last value as a property descriptor and the last
2788 argument as a function."
2789
2790 (with-js
2791 (let ((argstr (js--js-encode-value
2792 (cons function arguments))))
2793
2794 (with-current-buffer inferior-moz-buffer
2795 ;; Actual funcall
2796 (when js--js-array-as-list
2797 (insert "*"))
2798 (insert argstr)
2799 (comint-send-input nil t)
2800 (js--wait-for-matching-output
2801 (inferior-moz-process) "EVAL>"
2802 js-js-timeout)
2803 (goto-char comint-last-input-end)
2804
2805 ;; Read the result
2806 (let* ((json-array-type 'list)
2807 (result (prog1 (json-read)
2808 (goto-char (point-max)))))
2809 (js--js-decode-retval result))))))
2810
2811 (defun js--js-new (constructor &rest arguments)
2812 "Call CONSTRUCTOR as a constructor, with arguments ARGUMENTS.
2813 CONSTRUCTOR is a JS handle, a string, or a list of these things."
2814 (apply #'js--js-funcall
2815 '(interactor "_callNew")
2816 constructor arguments))
2817
2818 (defun js--js-eval (thisobj js)
2819 (js--js-funcall '(interactor "_callEval") thisobj js))
2820
2821 (defun js--js-list (&rest arguments)
2822 "Return a Lisp array resulting from evaluating each of ARGUMENTS."
2823 (let ((js--js-array-as-list t))
2824 (apply #'js--js-funcall '(interactor "_mkArray")
2825 arguments)))
2826
2827 (defun js--js-get (&rest props)
2828 (apply #'js--js-funcall '(interactor "_getProp") props))
2829
2830 (defun js--js-put (props value)
2831 (js--js-funcall '(interactor "_putProp") props value))
2832
2833 (defun js-gc (&optional force)
2834 "Tell the repl about any objects we don't reference anymore.
2835 With argument, run even if no intervening GC has happened."
2836 (interactive)
2837
2838 (when force
2839 (setq js--js-last-gcs-done nil))
2840
2841 (let ((this-gcs-done gcs-done) keys num)
2842 (when (and js--js-references
2843 (boundp 'inferior-moz-buffer)
2844 (buffer-live-p inferior-moz-buffer)
2845
2846 ;; Don't bother running unless we've had an intervening
2847 ;; garbage collection; without a gc, nothing is deleted
2848 ;; from the weak hash table, so it's pointless telling
2849 ;; MozRepl about that references we still hold
2850 (not (eq js--js-last-gcs-done this-gcs-done))
2851
2852 ;; Are we looking at a normal prompt? Make sure not to
2853 ;; interrupt the user if he's doing something
2854 (with-current-buffer inferior-moz-buffer
2855 (save-excursion
2856 (goto-char (point-max))
2857 (looking-back js--js-prompt-regexp
2858 (save-excursion (forward-line 0) (point))))))
2859
2860 (setq keys (loop for x being the hash-keys
2861 of js--js-references
2862 collect x))
2863 (setq num (js--js-funcall '(repl "_jsGC") (or keys [])))
2864
2865 (setq js--js-last-gcs-done this-gcs-done)
2866 (when (called-interactively-p 'interactive)
2867 (message "Cleaned %s entries" num))
2868
2869 num)))
2870
2871 (run-with-idle-timer 30 t #'js-gc)
2872
2873 (defun js-eval (js)
2874 "Evaluate the JavaScript in JS and return JSON-decoded result."
2875 (interactive "MJavascript to evaluate: ")
2876 (with-js
2877 (let* ((content-window (js--js-content-window
2878 (js--get-js-context)))
2879 (result (js-eval content-window js)))
2880 (when (called-interactively-p 'interactive)
2881 (message "%s" (js! "String" result)))
2882 result)))
2883
2884 (defun js--get-tabs ()
2885 "Enumerate all JavaScript contexts available.
2886 Each context is a list:
2887 (TITLE URL BROWSER TAB TABBROWSER) for content documents
2888 (TITLE URL WINDOW) for windows
2889
2890 All tabs of a given window are grouped together. The most recent
2891 window is first. Within each window, the tabs are returned
2892 left-to-right."
2893 (with-js
2894 (let (windows)
2895
2896 (loop with window-mediator = (js! ("Components" "classes"
2897 "@mozilla.org/appshell/window-mediator;1"
2898 "getService")
2899 (js< "Components" "interfaces"
2900 "nsIWindowMediator"))
2901 with enumerator = (js! (window-mediator "getEnumerator") nil)
2902
2903 while (js? (js! (enumerator "hasMoreElements")))
2904 for window = (js! (enumerator "getNext"))
2905 for window-info = (js-list window
2906 (js< window "document" "title")
2907 (js! (window "location" "toString"))
2908 (js< window "closed")
2909 (js< window "windowState"))
2910
2911 unless (or (js? (fourth window-info))
2912 (eq (fifth window-info) 2))
2913 do (push window-info windows))
2914
2915 (loop for window-info in windows
2916 for window = (first window-info)
2917 collect (list (second window-info)
2918 (third window-info)
2919 window)
2920
2921 for gbrowser = (js< window "gBrowser")
2922 if (js-handle? gbrowser)
2923 nconc (loop
2924 for x below (js< gbrowser "browsers" "length")
2925 collect (js-list (js< gbrowser
2926 "browsers"
2927 x
2928 "contentDocument"
2929 "title")
2930
2931 (js! (gbrowser
2932 "browsers"
2933 x
2934 "contentWindow"
2935 "location"
2936 "toString"))
2937 (js< gbrowser
2938 "browsers"
2939 x)
2940
2941 (js! (gbrowser
2942 "tabContainer"
2943 "childNodes"
2944 "item")
2945 x)
2946
2947 gbrowser))))))
2948
2949 (defvar js-read-tab-history nil)
2950
2951 (defun js--read-tab (prompt)
2952 "Read a Mozilla tab with prompt PROMPT.
2953 Return a cons of (TYPE . OBJECT). TYPE is either 'window or
2954 'tab, and OBJECT is a JavaScript handle to a ChromeWindow or a
2955 browser, respectively."
2956
2957 ;; Prime IDO
2958 (unless ido-mode
2959 (ido-mode t)
2960 (ido-mode nil))
2961
2962 (with-js
2963 (lexical-let ((tabs (js--get-tabs)) selected-tab-cname
2964 selected-tab prev-hitab)
2965
2966 ;; Disambiguate names
2967 (setq tabs (loop with tab-names = (make-hash-table :test 'equal)
2968 for tab in tabs
2969 for cname = (format "%s (%s)" (second tab) (first tab))
2970 for num = (incf (gethash cname tab-names -1))
2971 if (> num 0)
2972 do (setq cname (format "%s <%d>" cname num))
2973 collect (cons cname tab)))
2974
2975 (labels ((find-tab-by-cname
2976 (cname)
2977 (loop for tab in tabs
2978 if (equal (car tab) cname)
2979 return (cdr tab)))
2980
2981 (mogrify-highlighting
2982 (hitab unhitab)
2983
2984 ;; Hack to reduce the number of
2985 ;; round-trips to mozilla
2986 (let (cmds)
2987 (cond
2988 ;; Highlighting tab
2989 ((fourth hitab)
2990 (push '(js! ((fourth hitab) "setAttribute")
2991 "style"
2992 "color: red; font-weight: bold")
2993 cmds)
2994
2995 ;; Highlight window proper
2996 (push '(js! ((third hitab)
2997 "setAttribute")
2998 "style"
2999 "border: 8px solid red")
3000 cmds)
3001
3002 ;; Select tab, when appropriate
3003 (when js-js-switch-tabs
3004 (push
3005 '(js> ((fifth hitab) "selectedTab") (fourth hitab))
3006 cmds)))
3007
3008 ;; Hilighting whole window
3009 ((third hitab)
3010 (push '(js! ((third hitab) "document"
3011 "documentElement" "setAttribute")
3012 "style"
3013 (concat "-moz-appearance: none;"
3014 "border: 8px solid red;"))
3015 cmds)))
3016
3017 (cond
3018 ;; Unhighlighting tab
3019 ((fourth unhitab)
3020 (push '(js! ((fourth unhitab) "setAttribute") "style" "")
3021 cmds)
3022 (push '(js! ((third unhitab) "setAttribute") "style" "")
3023 cmds))
3024
3025 ;; Unhighlighting window
3026 ((third unhitab)
3027 (push '(js! ((third unhitab) "document"
3028 "documentElement" "setAttribute")
3029 "style" "")
3030 cmds)))
3031
3032 (eval (list 'with-js
3033 (cons 'js-list (nreverse cmds))))))
3034
3035 (command-hook
3036 ()
3037 (let* ((tab (find-tab-by-cname (car ido-matches))))
3038 (mogrify-highlighting tab prev-hitab)
3039 (setq prev-hitab tab)))
3040
3041 (setup-hook
3042 ()
3043 ;; Fiddle with the match list a bit: if our first match
3044 ;; is a tabbrowser window, rotate the match list until
3045 ;; the active tab comes up
3046 (let ((matched-tab (find-tab-by-cname (car ido-matches))))
3047 (when (and matched-tab
3048 (null (fourth matched-tab))
3049 (equal "navigator:browser"
3050 (js! ((third matched-tab)
3051 "document"
3052 "documentElement"
3053 "getAttribute")
3054 "windowtype")))
3055
3056 (loop with tab-to-match = (js< (third matched-tab)
3057 "gBrowser"
3058 "selectedTab")
3059
3060 with index = 0
3061 for match in ido-matches
3062 for candidate-tab = (find-tab-by-cname match)
3063 if (eq (fourth candidate-tab) tab-to-match)
3064 do (setq ido-cur-list (ido-chop ido-cur-list match))
3065 and return t)))
3066
3067 (add-hook 'post-command-hook #'command-hook t t)))
3068
3069
3070 (unwind-protect
3071 (setq selected-tab-cname
3072 (let ((ido-minibuffer-setup-hook
3073 (cons #'setup-hook ido-minibuffer-setup-hook)))
3074 (ido-completing-read
3075 prompt
3076 (mapcar #'car tabs)
3077 nil t nil
3078 'js-read-tab-history)))
3079
3080 (when prev-hitab
3081 (mogrify-highlighting nil prev-hitab)
3082 (setq prev-hitab nil)))
3083
3084 (add-to-history 'js-read-tab-history selected-tab-cname)
3085
3086 (setq selected-tab (loop for tab in tabs
3087 if (equal (car tab) selected-tab-cname)
3088 return (cdr tab)))
3089
3090 (if (fourth selected-tab)
3091 (cons 'browser (third selected-tab))
3092 (cons 'window (third selected-tab)))))))
3093
3094 (defun js--guess-eval-defun-info (pstate)
3095 "Helper function for `js-eval-defun'.
3096 Return a list (NAME . CLASSPARTS), where CLASSPARTS is a list of
3097 strings making up the class name and NAME is the name of the
3098 function part."
3099 (cond ((and (= (length pstate) 3)
3100 (eq (js--pitem-type (first pstate)) 'function)
3101 (= (length (js--pitem-name (first pstate))) 1)
3102 (consp (js--pitem-type (second pstate))))
3103
3104 (append (js--pitem-name (second pstate))
3105 (list (first (js--pitem-name (first pstate))))))
3106
3107 ((and (= (length pstate) 2)
3108 (eq (js--pitem-type (first pstate)) 'function))
3109
3110 (append
3111 (butlast (js--pitem-name (first pstate)))
3112 (list (car (last (js--pitem-name (first pstate)))))))
3113
3114 (t (error "Function not a toplevel defun or class member"))))
3115
3116 (defvar js--js-context nil
3117 "The current JavaScript context.
3118 This is a cons like the one returned from `js--read-tab'.
3119 Change with `js-set-js-context'.")
3120
3121 (defconst js--js-inserter
3122 "(function(func_info,func) {
3123 func_info.unshift('window');
3124 var obj = window;
3125 for(var i = 1; i < func_info.length - 1; ++i) {
3126 var next = obj[func_info[i]];
3127 if(typeof next !== 'object' && typeof next !== 'function') {
3128 next = obj.prototype && obj.prototype[func_info[i]];
3129 if(typeof next !== 'object' && typeof next !== 'function') {
3130 alert('Could not find ' + func_info.slice(0, i+1).join('.') +
3131 ' or ' + func_info.slice(0, i+1).join('.') + '.prototype');
3132 return;
3133 }
3134
3135 func_info.splice(i+1, 0, 'prototype');
3136 ++i;
3137 }
3138 }
3139
3140 obj[func_info[i]] = func;
3141 alert('Successfully updated '+func_info.join('.'));
3142 })")
3143
3144 (defun js-set-js-context (context)
3145 "Set the JavaScript context to CONTEXT.
3146 When called interactively, prompt for CONTEXT."
3147 (interactive (list (js--read-tab "Javascript Context: ")))
3148 (setq js--js-context context))
3149
3150 (defun js--get-js-context ()
3151 "Return a valid JavaScript context.
3152 If one hasn't been set, or if it's stale, prompt for a new one."
3153 (with-js
3154 (when (or (null js--js-context)
3155 (js--js-handle-expired-p (cdr js--js-context))
3156 (ecase (car js--js-context)
3157 (window (js? (js< (cdr js--js-context) "closed")))
3158 (browser (not (js? (js< (cdr js--js-context)
3159 "contentDocument"))))))
3160 (setq js--js-context (js--read-tab "Javascript Context: ")))
3161 js--js-context))
3162
3163 (defun js--js-content-window (context)
3164 (with-js
3165 (ecase (car context)
3166 (window (cdr context))
3167 (browser (js< (cdr context)
3168 "contentWindow" "wrappedJSObject")))))
3169
3170 (defun js--make-nsilocalfile (path)
3171 (with-js
3172 (let ((file (js-create-instance "@mozilla.org/file/local;1"
3173 "nsILocalFile")))
3174 (js! (file "initWithPath") path)
3175 file)))
3176
3177 (defun js--js-add-resource-alias (alias path)
3178 (with-js
3179 (let* ((io-service (js-get-service "@mozilla.org/network/io-service;1"
3180 "nsIIOService"))
3181 (res-prot (js! (io-service "getProtocolHandler") "resource"))
3182 (res-prot (js-qi res-prot "nsIResProtocolHandler"))
3183 (path-file (js--make-nsilocalfile path))
3184 (path-uri (js! (io-service "newFileURI") path-file)))
3185 (js! (res-prot "setSubstitution") alias path-uri))))
3186
3187 (defun* js-eval-defun ()
3188 "Update a Mozilla tab using the JavaScript defun at point."
3189 (interactive)
3190
3191 ;; This function works by generating a temporary file that contains
3192 ;; the function we'd like to insert. We then use the elisp-js bridge
3193 ;; to command mozilla to load this file by inserting a script tag
3194 ;; into the document we set. This way, debuggers and such will have
3195 ;; a way to find the source of the just-inserted function.
3196 ;;
3197 ;; We delete the temporary file if there's an error, but otherwise
3198 ;; we add an unload event listener on the Mozilla side to delete the
3199 ;; file.
3200
3201 (save-excursion
3202 (let (begin end pstate defun-info temp-name defun-body)
3203 (js-end-of-defun)
3204 (setq end (point))
3205 (js--ensure-cache)
3206 (js-beginning-of-defun)
3207 (re-search-forward "\\_<function\\_>")
3208 (setq begin (match-beginning 0))
3209 (setq pstate (js--forward-pstate))
3210
3211 (when (or (null pstate)
3212 (> (point) end))
3213 (error "Could not locate function definition"))
3214
3215 (setq defun-info (js--guess-eval-defun-info pstate))
3216
3217 (let ((overlay (make-overlay begin end)))
3218 (overlay-put overlay 'face 'highlight)
3219 (unwind-protect
3220 (unless (y-or-n-p (format "Send %s to Mozilla? "
3221 (mapconcat #'identity defun-info ".")))
3222 (message "") ; question message lingers until next command
3223 (return-from js-eval-defun))
3224 (delete-overlay overlay)))
3225
3226 (setq defun-body (buffer-substring-no-properties begin end))
3227
3228 (make-directory js-js-tmpdir t)
3229
3230 ;; (Re)register a Mozilla resource URL to point to the
3231 ;; temporary directory
3232 (js--js-add-resource-alias "js" js-js-tmpdir)
3233
3234 (setq temp-name (make-temp-file (concat js-js-tmpdir
3235 "/js-")
3236 nil ".js"))
3237 (unwind-protect
3238 (with-js
3239 (with-temp-buffer
3240 (insert js--js-inserter)
3241 (insert "(")
3242 (insert (json-encode-list defun-info))
3243 (insert ",\n")
3244 (insert defun-body)
3245 (insert "\n)")
3246 (write-region (point-min) (point-max) temp-name
3247 nil 1))
3248
3249 ;; Give Mozilla responsibility for deleting this file
3250 (let* ((content-window (js--js-content-window
3251 (js--get-js-context)))
3252 (content-document (js< content-window "document"))
3253 (head (if (js? (js< content-document "body"))
3254 ;; Regular content
3255 (js< (js! (content-document "getElementsByTagName")
3256 "head")
3257 0)
3258 ;; Chrome
3259 (js< content-document "documentElement")))
3260 (elem (js! (content-document "createElementNS")
3261 "http://www.w3.org/1999/xhtml" "script")))
3262
3263 (js! (elem "setAttribute") "type" "text/javascript")
3264 (js! (elem "setAttribute") "src"
3265 (format "resource://js/%s"
3266 (file-name-nondirectory temp-name)))
3267
3268 (js! (head "appendChild") elem)
3269
3270 (js! (content-window "addEventListener") "unload"
3271 (js! ((js-new
3272 "Function" "file"
3273 "return function() { file.remove(false) }"))
3274 (js--make-nsilocalfile temp-name))
3275 'false)
3276 (setq temp-name nil)
3277
3278
3279
3280 ))
3281
3282 ;; temp-name is set to nil on success
3283 (when temp-name
3284 (delete-file temp-name))))))
3285
3286 ;;; Main Function
3287
3288 ;;;###autoload
3289 (define-derived-mode js-mode prog-mode "Javascript"
3290 "Major mode for editing JavaScript."
3291 :group 'js
3292
3293 (set (make-local-variable 'indent-line-function) 'js-indent-line)
3294 (set (make-local-variable 'beginning-of-defun-function)
3295 'js-beginning-of-defun)
3296 (set (make-local-variable 'end-of-defun-function)
3297 'js-end-of-defun)
3298
3299 (set (make-local-variable 'open-paren-in-column-0-is-defun-start) nil)
3300 (set (make-local-variable 'font-lock-defaults)
3301 (list js--font-lock-keywords))
3302 (set (make-local-variable 'syntax-propertize-function)
3303 js-syntax-propertize-function)
3304
3305 (set (make-local-variable 'parse-sexp-ignore-comments) t)
3306 (set (make-local-variable 'parse-sexp-lookup-properties) t)
3307 (set (make-local-variable 'which-func-imenu-joiner-function)
3308 #'js--which-func-joiner)
3309
3310 ;; Comments
3311 (setq comment-start "// ")
3312 (setq comment-end "")
3313 (set (make-local-variable 'fill-paragraph-function)
3314 'js-c-fill-paragraph)
3315
3316 ;; Parse cache
3317 (add-hook 'before-change-functions #'js--flush-caches t t)
3318
3319 ;; Frameworks
3320 (js--update-quick-match-re)
3321
3322 ;; Imenu
3323 (setq imenu-case-fold-search nil)
3324 (set (make-local-variable 'imenu-create-index-function)
3325 #'js--imenu-create-index)
3326
3327 ;; for filling, pretend we're cc-mode
3328 (setq c-comment-prefix-regexp "//+\\|\\**"
3329 c-paragraph-start "$"
3330 c-paragraph-separate "$"
3331 c-block-comment-prefix "* "
3332 c-line-comment-starter "//"
3333 c-comment-start-regexp "/[*/]\\|\\s!"
3334 comment-start-skip "\\(//+\\|/\\*+\\)\\s *")
3335
3336 (let ((c-buffer-is-cc-mode t))
3337 ;; FIXME: These are normally set by `c-basic-common-init'. Should
3338 ;; we call it instead? (Bug#6071)
3339 (make-local-variable 'paragraph-start)
3340 (make-local-variable 'paragraph-separate)
3341 (make-local-variable 'paragraph-ignore-fill-prefix)
3342 (make-local-variable 'adaptive-fill-mode)
3343 (make-local-variable 'adaptive-fill-regexp)
3344 (c-setup-paragraph-variables))
3345
3346 (set (make-local-variable 'syntax-begin-function)
3347 #'js--syntax-begin-function)
3348
3349 ;; Important to fontify the whole buffer syntactically! If we don't,
3350 ;; then we might have regular expression literals that aren't marked
3351 ;; as strings, which will screw up parse-partial-sexp, scan-lists,
3352 ;; etc. and and produce maddening "unbalanced parenthesis" errors.
3353 ;; When we attempt to find the error and scroll to the portion of
3354 ;; the buffer containing the problem, JIT-lock will apply the
3355 ;; correct syntax to the regular expresion literal and the problem
3356 ;; will mysteriously disappear.
3357 ;; FIXME: We should actually do this fontification lazily by adding
3358 ;; calls to syntax-propertize wherever it's really needed.
3359 (syntax-propertize (point-max)))
3360
3361 ;;;###autoload
3362 (defalias 'javascript-mode 'js-mode)
3363
3364 (eval-after-load 'folding
3365 '(when (fboundp 'folding-add-to-marks-list)
3366 (folding-add-to-marks-list 'js-mode "// {{{" "// }}}" )))
3367
3368 (provide 'js)
3369
3370 ;; js.el ends here