-
Notifications
You must be signed in to change notification settings - Fork 0
/
espresso.el
3421 lines (2864 loc) · 122 KB
/
espresso.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
;;; espresso.el --- Major mode for editing JavaScript source text
;; Copyright (C) 2008 Free Software Foundation, Inc.
;; Copyright (C) 2009 Daniel Colascione <[email protected]>
;; Author: Karl Landstrom <[email protected]>
;; Author: Daniel Colascione <[email protected]>
;; Maintainer: Daniel Colascione <[email protected]>
;; Version: 9
;; Date: 2009-07-25
;; Keywords: languages, oop, javascript
;; This file is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 3, or (at your option)
;; any later version.
;; This file is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING. If not, write to
;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
;;; Commentary
;; This is based on Karl Landstrom's barebones javascript-mode. This
;; is much more robust and works with cc-mode's comment filling
;; (mostly).
;;
;; The main features of this JavaScript mode are syntactic
;; highlighting (enabled with `font-lock-mode' or
;; `global-font-lock-mode'), automatic indentation and filling of
;; comments, C preprocessor fontification, and MozRepl integration.
;;
;; This package has (only) been tested with GNU Emacs 22 (the latest
;; stable release).
;;
;; Installation:
;;
;; Put this file in a directory where Emacs can find it (`C-h v
;; load-path' for more info). Then add the following lines to your
;; Emacs initialization file:
;;
;; (add-to-list 'auto-mode-alist '("\\.js\\'" . espresso-mode))
;; (autoload 'espresso-mode "espresso" nil t)
;;
;; After that, type M-x byte-compile-file and have Emacs byte-compile
;; this file. Performance is vastly better when this file is
;; byte-compiled.
;;
;; General Remarks:
;;
;; XXX: This mode assumes that block comments are not nested inside block
;; XXX: comments
;;
;; Exported names start with "espresso-"; private names start with
;; "espresso--".
;;
;; Code:
;;; Code
(eval-and-compile
(require 'cc-mode)
(require 'font-lock)
(require 'newcomment)
(require 'imenu)
(require 'etags)
(require 'thingatpt)
(require 'easymenu)
(require 'moz nil t)
(require 'json nil t))
(eval-when-compile
(require 'cl)
(require 'comint)
(require 'ido)
(proclaim '(optimize (speed 0) (safety 3))))
;;; Constants
(defconst espresso--name-start-re "[a-zA-Z_$]"
"Matches the first character of a Espresso identifier. No grouping")
(defconst espresso--stmt-delim-chars "^;{}?:")
(defconst espresso--name-re (concat espresso--name-start-re
"\\(?:\\s_\\|\\sw\\)*")
"Matches a Javascript identifier. No grouping.")
(defconst espresso--objfield-re (concat espresso--name-re ":")
"Matches a Javascript object field start")
(defconst espresso--dotted-name-re
(concat espresso--name-re "\\(?:\\." espresso--name-re "\\)*")
"Matches a dot-separated sequence of Javascript names")
(defconst espresso--cpp-name-re espresso--name-re
"Matches a C preprocessor name")
(defconst espresso--opt-cpp-start "^\\s-*#\\s-*\\([[:alnum:]]+\\)"
"Regexp matching the prefix of a cpp directive including the directive
name, or nil in languages without preprocessor support. The first
submatch surrounds the directive name.")
(defconst espresso--plain-method-re
(concat "^\\s-*?\\(" espresso--dotted-name-re "\\)\\.prototype"
"\\.\\(" espresso--name-re "\\)\\s-*?=\\s-*?\\(function\\)\\_>")
"Regexp matching an old-fashioned explicit prototype \"method\"
declaration. Group 1 is a (possibly-dotted) class name, group 2
is a method name, and group 3 is the 'function' keyword." )
(defconst espresso--plain-class-re
(concat "^\\s-*\\(" espresso--dotted-name-re "\\)\\.prototype"
"\\s-*=\\s-*{")
"Regexp matching an old-fashioned explicit prototype \"class\"
declaration, as in Class.prototype = { method1: ...} ")
(defconst espresso--mp-class-decl-re
(concat "^\\s-*var\\s-+"
"\\(" espresso--name-re "\\)"
"\\s-*=\\s-*"
"\\(" espresso--dotted-name-re
"\\)\\.extend\\(?:Final\\)?\\s-*(\\s-*{?\\s-*$")
"var NewClass = BaseClass.extend(")
(defconst espresso--prototype-obsolete-class-decl-re
(concat "^\\s-*\\(?:var\\s-+\\)?"
"\\(" espresso--dotted-name-re "\\)"
"\\s-*=\\s-*Class\\.create()")
"var NewClass = Class.create()")
(defconst espresso--prototype-objextend-class-decl-re-1
(concat "^\\s-*Object\\.extend\\s-*("
"\\(" espresso--dotted-name-re "\\)"
"\\s-*,\\s-*{"))
(defconst espresso--prototype-objextend-class-decl-re-2
(concat "^\\s-*\\(?:var\\s-+\\)?"
"\\(" espresso--dotted-name-re "\\)"
"\\s-*=\\s-*Object\\.extend\\s-*\("))
(defconst espresso--prototype-class-decl-re
(concat "^\\s-*\\(?:var\\s-+\\)?"
"\\(" espresso--name-re "\\)"
"\\s-*=\\s-*Class\\.create\\s-*(\\s-*"
"\\(?:\\(" espresso--dotted-name-re "\\)\\s-*,\\s-*\\)?{?")
"var NewClass = Class.create({")
;; Parent class name(s) (yes, multiple inheritance in Javascript) are
;; matched with dedicated font-lock matchers
(defconst espresso--dojo-class-decl-re
(concat "^\\s-*dojo\\.declare\\s-*(\"\\(" espresso--dotted-name-re "\\)"))
(defconst espresso--extjs-class-decl-re-1
(concat "^\\s-*Ext\\.extend\\s-*("
"\\s-*\\(" espresso--dotted-name-re "\\)"
"\\s-*,\\s-*\\(" espresso--dotted-name-re "\\)")
"ExtJS class declaration (style 1)")
(defconst espresso--extjs-class-decl-re-2
(concat "^\\s-*\\(?:var\\s-+\\)?"
"\\(" espresso--name-re "\\)"
"\\s-*=\\s-*Ext\\.extend\\s-*(\\s-*"
"\\(" espresso--dotted-name-re "\\)")
"ExtJS class declaration (style 2)")
(defconst espresso--mochikit-class-re
(concat "^\\s-*MochiKit\\.Base\\.update\\s-*(\\s-*"
"\\(" espresso--dotted-name-re "\\)")
"MochiKit class declaration?")
(defconst espresso--dummy-class-style
'(:name "[Automatically Generated Class]"))
(defconst espresso--class-styles
`((:name "Plain"
:class-decl ,espresso--plain-class-re
:prototype t
:contexts (toplevel)
:framework javascript)
(:name "MochiKit"
:class-decl ,espresso--mochikit-class-re
:prototype t
:contexts (toplevel)
:framework mochikit)
(:name "Prototype (Obsolete)"
:class-decl ,espresso--prototype-obsolete-class-decl-re
:contexts (toplevel)
:framework prototype)
(:name "Prototype (Modern)"
:class-decl ,espresso--prototype-class-decl-re
:contexts (toplevel)
:framework prototype)
(:name "Prototype (Object.extend)"
:class-decl ,espresso--prototype-objextend-class-decl-re-1
:prototype t
:contexts (toplevel)
:framework prototype)
(:name "Prototype (Object.extend) 2"
:class-decl ,espresso--prototype-objextend-class-decl-re-2
:prototype t
:contexts (toplevel)
:framework prototype)
(:name "Dojo"
:class-decl ,espresso--dojo-class-decl-re
:contexts (toplevel)
:framework dojo)
(:name "ExtJS (style 1)"
:class-decl ,espresso--extjs-class-decl-re-1
:prototype t
:contexts (toplevel)
:framework extjs)
(:name "ExtJS (style 2)"
:class-decl ,espresso--extjs-class-decl-re-2
:contexts (toplevel)
:framework extjs)
(:name "Merrill Press"
:class-decl ,espresso--mp-class-decl-re
:contexts (toplevel)
:framework merrillpress))
"A list of class definition styles.
A class definition style is a plist with the following keys:
:name is a human-readable name of the class type
:class-decl is a regular expression giving the start of the
class. Its first group must match the name of its class. If there
is a parent class, the second group should match, and it should
be the name of the class.
If :prototype is present and non-nil, the parser will merge
declarations for this constructs with others at the same lexical
level that have the same name. Otherwise, multiple definitions
will create multiple top-level entries. Don't use :prototype
unnecessarily: it has an associated cost in performance.
If :strip-prototype is present and non-nil, then if the class
name as matched contains
")
(defconst espresso--available-frameworks
(loop with available-frameworks
for style in espresso--class-styles
for framework = (plist-get style :framework)
unless (memq framework available-frameworks)
collect framework into available-frameworks
finally return available-frameworks)
"List of available frameworks symbols")
(defconst espresso--function-heading-1-re
(concat
"^\\s-*function\\s-+\\(" espresso--name-re "\\)")
"Regular expression matching the start of a function header. Match group 1
is the name of the function.")
(defconst espresso--function-heading-2-re
(concat
"^\\s-*\\(" espresso--name-re "\\)\\s-*:\\s-*function\\_>")
"Regular expression matching the start of a function entry in
an associative array. Match group 1 is the name of the function.")
(defconst espresso--function-heading-3-re
(concat
"^\\s-*\\(?:var\\s-+\\)?\\(" espresso--dotted-name-re "\\)"
"\\s-*=\\s-*function\\_>")
"Matches a line in the form var MUMBLE = function. Match group
1 is MUMBLE.")
(defconst espresso--macro-decl-re
(concat "^\\s-*#\\s-*define\\s-+\\(" espresso--cpp-name-re "\\)\\s-*(")
"Regular expression matching a CPP macro definition up to the opening
parenthesis. Match group 1 is the name of the function.")
(defun espresso--regexp-opt-symbol (list)
"Like regexp-opt, but surround the optimized regular expression
with `\\\\_<' and `\\\\_>'."
(concat "\\_<" (regexp-opt list t) "\\_>"))
(defconst espresso--keyword-re
(espresso--regexp-opt-symbol
'("abstract" "break" "case" "catch" "class" "const"
"continue" "debugger" "default" "delete" "do" "else"
"enum" "export" "extends" "final" "finally" "for"
"function" "goto" "if" "implements" "import" "in"
"instanceof" "interface" "native" "new" "package"
"private" "protected" "public" "return" "static"
"super" "switch" "synchronized" "throw"
"throws" "transient" "try" "typeof" "var" "void" "let"
"yield" "volatile" "while" "with"))
"Regular expression matching any JavaScript keyword.")
(defconst espresso--basic-type-re
(espresso--regexp-opt-symbol
'("boolean" "byte" "char" "double" "float" "int" "long"
"short" "void"))
"Regular expression matching any predefined type in JavaScript.")
(defconst espresso--constant-re
(espresso--regexp-opt-symbol '("false" "null" "undefined"
"Infinity" "NaN"
"true" "arguments" "this"))
"Regular expression matching any future reserved words in JavaScript.")
(defconst espresso--font-lock-keywords-1
(list
"\\_<import\\_>"
(list espresso--function-heading-1-re 1 font-lock-function-name-face)
(list espresso--function-heading-2-re 1 font-lock-function-name-face))
"Level one font lock.")
(defconst espresso--font-lock-keywords-2
(append espresso--font-lock-keywords-1
(list (list espresso--keyword-re 1 font-lock-keyword-face)
(list "\\_<for\\_>"
"\\s-+\\(each\\)\\_>" nil nil
(list 1 'font-lock-keyword-face))
(cons espresso--basic-type-re font-lock-type-face)
(cons espresso--constant-re font-lock-constant-face)))
"Level two font lock.")
;; espresso--pitem is the basic building block of the lexical
;; database. When one refesr to a real part of the buffer, the region
;; of text to which it refers is split into a conceptual header and
;; body. Consider the (very short) block described by a hypothetical
;; espresso--pitem:
;;
;; function foo(a,b,c) { return 42; }
;; ^ ^ ^
;; | | |
;; +- h-begin +- h-end +- b-end
;;
;; (Remember that these are buffer positions, and therefore point
;; between characters, not at them. An arrow drawn to a character
;; indicates the corresponding position is between that character and
;; the one immediately preceding it.)
;;
;; The header is the region of text [h-begin, h-end], and is
;; the text needed to unambiguously recognize the start of the
;; construct. If the entire header is not present, the construct is
;; not recognized at all. No other pitems may be nested inside the
;; header.
;;
;; The body is the region [h-end, b-end]. It may contain nested
;; espresso--pitem instances. The body of a pitem may be empty: in
;; that case, b-end is equal to header-end.
;;
;; The three points obey the following relationship:
;;
;; h-begin < h-end <= b-end
;;
;; We put a text property in the buffer on the character *before*
;; h-end, and if we see it, on the character *before* b-end.
;;
;; The text property for h-end, espresso--pstate, is actually a list
;; of all espresso--pitem instances open after the marked character.
;;
;; The text property for b-end, espresso--pend, is simply the
;; espresso--pitem that ends after the marked character. (Because
;; pitems always end when the paren-depth drops below a critical
;; value, and because we can only drop one level per character, only
;; one pitem may end at a given character.)
;;
;; In the structure below, we only store h-begin and (sometimes)
;; b-end. We can trivially and quickly find h-end by going to h-begin
;; and searching for an espresso--pstate text property. Since no other
;; espresso--pitem instances can be nested inside the header of a
;; pitem, the location after the character with this text property
;; must be h-end.
;;
;; espresso--pitem instances, are never modified (with the exception
;; of the b-end field), and instead copied and changed in the process.
;; (The exception and its caveats for b-end is described below.)
;;
(defstruct (espresso--pitem (:type list))
;; IMPORTANT: Do not alter the offsets of fields within the list.
;; Various bits of code depend on their positions, particularly
;; anything that manipulates the children list.
;; List of children inside this pitem's body
(children nil :read-only t)
;; When we reach this paren depth after h-end, the pitem ends
(paren-depth nil :read-only t)
;; Symbol or class-style plist if this is a class
(type nil :read-only t)
;; See above
(h-begin nil :read-only t)
;; List of strings giving the parts of the name of this pitem (e.g.,
;; '("MyClass" "myMethod"), or t if this pitem is anonymous
(name nil :read-only t)
;; THIS FIELD IS MUTATED, and its value is shared by all copies of
;; this pitem: when we copy-and-modify pitem instances, we share
;; their tail structures, so all the copies actually have the same
;; terminating cons cell, which we modify directly.
;;
;; The field value is either a number (buffer location) or nil if
;; unknown.
;;
;; If the field's value is greater than `espresso--cache-end', the
;; value is stale and must be treated as if it were nil. Conversely,
;; if this field is nil, it is guaranteed that this pitem is open up
;; to at least `espresso--cache-end'. (This property is handy when
;; computing whether we're inside a given pitem.)
;;
(b-end nil))
(defconst espresso--initial-pitem
(make-espresso--pitem
:paren-depth most-negative-fixnum
:type 'toplevel)
"The pitem we start parsing with")
;;; User Customization
(defgroup espresso nil
"Customization variables for `espresso-mode'."
:tag "JavaScript - Espresso-Mode"
:group 'languages)
(defcustom espresso-indent-level 4
"Number of spaces for each indentation step."
:type 'integer
:group 'espresso)
(defcustom espresso-expr-indent-offset 0
"Number of additional spaces used for indentation of continued
expressions. The value must be no less than minus
`espresso-indent-level'."
:type 'integer
:group 'espresso)
(defcustom espresso-auto-indent-flag t
"Automatic indentation with punctuation characters. If non-nil, the
current line is indented when certain punctuations are inserted."
:type 'boolean
:group 'espresso)
(defcustom espresso-flat-functions nil
"Treat nested functions as if they were top-level functions for
function movement, marking, and so on."
:type 'boolean
:group 'espresso)
(defcustom espresso-comment-lineup-func #'c-lineup-C-comments
"cc-mode-style lineup function for C comments"
:type 'function
:group 'espresso)
(defcustom espresso-enabled-frameworks espresso--available-frameworks
"Select which frameworks espresso-mode will recognize.
Turn off some frameworks you seldom use to improve performance.
The set of recognized frameworks can also be overriden on a
per-buffer basis."
:type (cons 'set (mapcar (lambda (x)
(list 'const x))
espresso--available-frameworks))
:group 'espresso)
(defcustom espresso-js-switch-tabs
(and (memq system-type '(darwin)) t)
"Non-nil if Emacs should display tabs while selecting them.
Useful only if the windowing system has a good mechanism for
preventing Firefox from stealing the keyboard focus."
:type 'boolean
:group 'espresso)
(defcustom espresso-js-tmpdir
"~/.emacs.d/espresso/js"
"Temporary directory used for communicating with Mozilla. It
must be readable and writable by both Mozilla and Emacs."
:type 'directory
:group 'espresso)
(defcustom espresso-js-timeout 5
"Wait this many seconds for a reply from Mozilla when executing
commands. Increase this value if you are getting timeout
messages."
:type 'integer
:group 'espresso)
;;; KeyMap
(defvar espresso-mode-map
(let ((keymap (make-sparse-keymap)))
(mapc (lambda (key)
(define-key keymap key #'espresso-insert-and-indent))
'("+" "-" "*" "{" "}" "(" ")" ":" ";" ","))
(define-key keymap [(control ?c) (meta ?:)] #'espresso-js-eval)
(define-key keymap [(control ?c) (control ?j)] #'espresso-set-js-context)
(define-key keymap [(control meta ?x)] #'espresso-eval-defun)
(define-key keymap [(meta ?.)] #'espresso-find-symbol)
(easy-menu-define nil keymap "Espresso Menu"
'("Javascript"
["Select new Mozilla context…" espresso-set-js-context
(fboundp #'inferior-moz-process)]
["Evaluate expression in Mozilla context…" espresso-js-eval
(fboundp #'inferior-moz-process)]
["Send current function to Mozilla…" espresso-eval-defun
(fboundp #'inferior-moz-process)]
)
)
keymap)
"Keymap for espresso-mode")
(defun espresso-insert-and-indent (key)
"Runs the command bound to KEY in the global keymap, and if
we're not in a string or comment, indents the current line."
(interactive (list (this-command-keys)))
(call-interactively (lookup-key (current-global-map) key))
(let ((syntax (save-restriction (widen) (syntax-ppss))))
(when (or (and (not (nth 8 syntax))
espresso-auto-indent-flag)
(and (nth 4 syntax)
(eq (current-column)
(1+ (current-indentation)))))
(indent-according-to-mode))))
;;; Syntax table and parsing
(defvar espresso-mode-syntax-table
(let ((table (make-syntax-table)))
(c-populate-syntax-table table)
(modify-syntax-entry ?$ "_" table)
table)
"Syntax table used in Espresso mode.")
(defvar espresso--quick-match-re nil
"Autogenerated regular expression to match buffer constructs")
(defvar espresso--quick-match-re-func nil
"Autogenerated regular expression to match buffer constructs
and functions")
(make-variable-buffer-local 'espresso--quick-match-re)
(make-variable-buffer-local 'espresso--quick-match-re-func)
(defvar espresso--cache-end 1
"Last place in the buffer the function cache is valid")
(make-variable-buffer-local 'espresso--cache-end)
(defvar espresso--last-parse-pos nil
"Last place we parsed up to in espresso--ensure-cache")
(make-variable-buffer-local 'espresso--last-parse-pos)
(defvar espresso--state-at-last-parse-pos nil
"pstate at espresso--last-parse-pos")
(make-variable-buffer-local 'espresso--state-at-last-parse-pos)
(defun espresso--flatten-list (list)
(loop for item in list
nconc (cond ((consp item)
(espresso--flatten-list item))
(item (list item)))))
(defun espresso--maybe-join (prefix separator suffix &rest list)
"If LIST contains any element that is not nil, return its
non-nil elements, separated by SEPARATOR, prefixed by PREFIX, and
ended with SUFFIX as with `concat'. Otherwise, if LIST is empty,
return nil. If any element in LIST is itself a list, flatten that
element."
(setq list (espresso--flatten-list list))
(when list
(concat prefix (mapconcat #'identity list separator) suffix)))
(defun espresso--update-quick-match-re ()
"Update espresso--quick-match-re based on the current set of
enabled frameworks"
(setq espresso--quick-match-re
(espresso--maybe-join
"^[ \t]*\\(?:" "\\|" "\\)"
;; #define mumble
"#define[ \t]+[a-zA-Z_]"
(when (memq 'extjs espresso-enabled-frameworks)
"Ext\\.extend")
(when (memq 'prototype espresso-enabled-frameworks)
"Object\\.extend")
;; var mumble = THING (
(espresso--maybe-join
"\\(?:var[ \t]+\\)?[a-zA-Z_$0-9.]+[ \t]*=[ \t]*\\(?:"
"\\|"
"\\)[ \t]*\("
(when (memq 'prototype espresso-enabled-frameworks)
"Class\\.create")
(when (memq 'extjs espresso-enabled-frameworks)
"Ext\\.extend")
(when (memq 'merrillpress espresso-enabled-frameworks)
"[a-zA-Z_$0-9]+\\.extend\\(?:Final\\)?"))
(when (memq 'dojo espresso-enabled-frameworks)
"dojo\\.declare[ \t]*\(")
(when (memq 'mochikit espresso-enabled-frameworks)
"MochiKit\\.Base\\.update[ \t]*\(")
;; mumble.prototypeTHING
(espresso--maybe-join
"[a-zA-Z_$0-9.]+\\.prototype\\(?:" "\\|" "\\)"
(when (memq 'javascript espresso-enabled-frameworks)
'( ;; foo.prototype.bar = function(
"\\.[a-zA-Z_$0-9]+[ \t]*=[ \t]*function[ \t]*\("
;; mumble.prototype = {
"[ \t]*=[ \t]*{")))))
(setq espresso--quick-match-re-func
(concat "function\\|" espresso--quick-match-re)))
(defun espresso--forward-text-property (propname)
"Move over the next value of PROPNAME in the buffer. If found,
return that value and leave point after the character having that
value, otherwise return nil and leave point at EOB."
(let ((next-value (get-text-property (point) propname)))
(if next-value
(forward-char)
(goto-char (next-single-property-change
(point) propname nil (point-max)))
(unless (eobp)
(setq next-value (get-text-property (point) propname))
(forward-char)))
next-value))
(defun espresso--backward-text-property (propname)
"Move over the previous value of PROPNAME in the buffer. If found,
return that value and leave point just before the character that
has that value, otherwise return nil and leave point at BOB."
(unless (bobp)
(let ((prev-value (get-text-property (1- (point)) propname)))
(if prev-value
(backward-char)
(goto-char (previous-single-property-change
(point) propname nil (point-min)))
(unless (bobp)
(backward-char)
(setq prev-value (get-text-property (point) propname))))
prev-value)))
(defsubst espresso--forward-pstate ()
(espresso--forward-text-property 'espresso--pstate))
(defsubst espresso--backward-pstate ()
(espresso--backward-text-property 'espresso--pstate))
(defun espresso--pitem-goto-h-end (pitem)
(goto-char (espresso--pitem-h-begin pitem))
(espresso--forward-pstate))
(defun espresso--re-search-forward-inner (regexp &optional bound count)
"Auxiliary function for `espresso--re-search-forward'."
(let ((parse)
str-terminator
(orig-macro-end (save-excursion
(when (espresso--beginning-of-macro)
(c-end-of-macro)
(point)))))
(while (> count 0)
(re-search-forward regexp bound)
(setq parse (syntax-ppss))
(cond ((setq str-terminator (nth 3 parse))
(when (eq str-terminator t)
(setq str-terminator ?/))
(re-search-forward
(concat "\\([^\\]\\|^\\)" (string str-terminator))
(save-excursion (end-of-line) (point)) t))
((nth 7 parse)
(forward-line))
((or (nth 4 parse)
(and (eq (char-before) ?\/) (eq (char-after) ?\*)))
(re-search-forward "\\*/"))
((and (not (and orig-macro-end
(<= (point) orig-macro-end)))
(espresso--beginning-of-macro))
(c-end-of-macro))
(t
(setq count (1- count))))))
(point))
(defun espresso--re-search-forward (regexp &optional bound noerror count)
"Search forward but ignore strings, cpp macros, and comments.
Invokes `re-search-forward' but treats the buffer as if strings,
cpp macros, and comments have been removed.
If invoked while inside a macro, treat the contents of the macro
as normal text.
"
(let ((saved-point (point))
(search-expr
(cond ((null count)
'(espresso--re-search-forward-inner regexp bound 1))
((< count 0)
'(espresso--re-search-backward-inner regexp bound (- count)))
((> count 0)
'(espresso--re-search-forward-inner regexp bound count)))))
(condition-case err
(eval search-expr)
(search-failed
(goto-char saved-point)
(unless noerror
(error (error-message-string err)))))))
(defun espresso--re-search-backward-inner (regexp &optional bound count)
"Auxiliary function for `espresso--re-search-backward'."
(let ((parse)
str-terminator
(orig-macro-start
(save-excursion
(and (espresso--beginning-of-macro)
(point)))))
(while (> count 0)
(re-search-backward regexp bound)
(when (and (> (point) (point-min))
(save-excursion (backward-char) (looking-at "/[/*]")))
(forward-char))
(setq parse (syntax-ppss))
(cond ((setq str-terminator (nth 3 parse))
(when (eq str-terminator t)
(setq str-terminator ?/))
(re-search-backward
(concat "\\([^\\]\\|^\\)" (string str-terminator))
(save-excursion (beginning-of-line) (point)) t))
((nth 7 parse)
(goto-char (nth 8 parse)))
((or (nth 4 parse)
(and (eq (char-before) ?/) (eq (char-after) ?*)))
(re-search-backward "/\\*"))
((and (not (and orig-macro-start
(>= (point) orig-macro-start)))
(espresso--beginning-of-macro)))
(t
(setq count (1- count))))))
(point))
(defun espresso--re-search-backward (regexp &optional bound noerror count)
"Search backward but ignore strings, preprocessor macros, and
comments. Invokes `re-search-backward' but treats the buffer as
if strings, preprocessor macros, and comments have been removed.
If inside a macro when called, treat the macro as normal text.
"
(let ((saved-point (point))
(search-expr
(cond ((null count)
'(espresso--re-search-backward-inner regexp bound 1))
((< count 0)
'(espresso--re-search-forward-inner regexp bound (- count)))
((> count 0)
'(espresso--re-search-backward-inner regexp bound count)))))
(condition-case err
(eval search-expr)
(search-failed
(goto-char saved-point)
(unless noerror
(error (error-message-string err)))))))
(defun espresso--forward-expression ()
"Move forward over a whole expression. Doesn't move over
expressions continued across lines, but we don't actually care"
(loop
;; non-continued case; simplistic, but good enough?
do (loop until (or (eolp)
(progn
(forward-comment most-positive-fixnum)
(memq (char-after) '(?\, ?\; ?\] ?\) ?\}))))
do (forward-sexp))
while (and (eq (char-after) ?\n)
(save-excursion
(forward-char)
(espresso--continued-expression-p)))))
(defun espresso--forward-function-decl ()
"Move forward over a function declaration with point at the
'function' keyword. Return no-nil if this is a
syntactically-correct non-expression function, nil otherwise.
Specifically, return the name of the function, or t if the name
could not be determined."
(assert (looking-at "\\_<function\\_>"))
(let ((name t))
(forward-word)
(forward-comment most-positive-fixnum)
(when (looking-at espresso--name-re)
(setq name (match-string-no-properties 0))
(goto-char (match-end 0)))
(forward-comment most-positive-fixnum)
(and (eq (char-after) ?\( )
(ignore-errors (forward-list) t)
(progn (forward-comment most-positive-fixnum)
(and (eq (char-after) ?{)
name)))))
(defun espresso--function-prologue-beginning (&optional pos)
"Return the start of the function prologue that contains POS,
or nil if we're not in a function prologue. A function prologue
is everything from start of the definition up to and including
the opening brace. POS defaults to point."
(let (prologue-begin)
(save-excursion
(if pos
(goto-char pos)
(setq pos (point)))
(when (save-excursion
(forward-line 0)
(or (looking-at espresso--function-heading-2-re)
(looking-at espresso--function-heading-3-re)))
(setq prologue-begin (match-beginning 1))
(when (<= prologue-begin pos)
(goto-char (match-end 0))))
(skip-syntax-backward "w_")
(and (or (looking-at "\\_<function\\_>")
(espresso--re-search-backward "\\_<function\\_>" nil t))
(save-match-data (goto-char (match-beginning 0))
(espresso--forward-function-decl))
(<= pos (point))
(or prologue-begin (match-beginning 0))))))
(defun espresso--beginning-of-defun-raw ()
"Internal helper for espresso--beginning-of-defun. Go to
previous defun-beginning and return the parse state for it, or
nil if we went all the way back to bob and don't find anything."
(espresso--ensure-cache)
(let (pstate)
(while (and (setq pstate (espresso--backward-pstate))
(not (eq 'function (espresso--pitem-type (car pstate))))))
(and (not (bobp)) pstate)))
(defun espresso--pstate-is-toplevel-defun (pstate)
"If PSTATE represents a non-empty top-level defun, return the
top-most pitem. Otherwise, return nil."
(loop for pitem in pstate
with func-depth = 0
with func-pitem
if (eq 'function (espresso--pitem-type pitem))
do (incf func-depth)
and do (setq func-pitem pitem)
finally return (if (eq func-depth 1) func-pitem)))
(defun espresso--beginning-of-defun-nested ()
"Internal helper for espresso--beginning-of-defun. Returns the
pitem of the function we went to the beginning of."
(or
;; Look for the smallest function that encloses point...
(loop for pitem in (espresso--parse-state-at-point)
if (and (eq 'function (espresso--pitem-type pitem))
(espresso--inside-pitem-p pitem))
do (goto-char (espresso--pitem-h-begin pitem))
and return pitem)
;; ...and if that isn't found, look for the previous top-level
;; defun
(loop for pstate = (espresso--backward-pstate)
while pstate
if (espresso--pstate-is-toplevel-defun pstate)
do (goto-char (espresso--pitem-h-begin it))
and return it)))
(defun espresso--beginning-of-defun-flat ()
"Internal helper for espresso--beginning-of-defun"
(let ((pstate (espresso--beginning-of-defun-raw)))
(when pstate
(goto-char (espresso--pitem-h-begin (car pstate))))))
(defun espresso--beginning-of-defun (&optional arg)
"Used as beginning-of-defun-function"
(setq arg (or arg 1))
(while (and (not (eobp)) (< arg 0))
(incf arg)
(when (and (not espresso-flat-functions)
(or (eq (espresso-syntactic-context) 'function)
(espresso--function-prologue-beginning)))
(espresso--end-of-defun))
(if (espresso--re-search-forward
"\\_<function\\_>" nil t)
(goto-char (espresso--function-prologue-beginning))
(goto-char (point-max))))
(while (> arg 0)
(decf arg)
;; If we're just past the end of a function, the user probably wants
;; to go to the beginning of *that* function
(when (eq (char-before) ?})
(backward-char))
(let ((prologue-begin (espresso--function-prologue-beginning)))
(cond ((and prologue-begin (< prologue-begin (point)))
(goto-char prologue-begin))
(espresso-flat-functions
(espresso--beginning-of-defun-flat))
(t
(espresso--beginning-of-defun-nested))))))
(defun espresso--flush-caches (&optional beg ignored)
"Flush syntax cache info after position BEG. BEG defaults to
point-min, flushing the entire cache."
(interactive)
(setq beg (or beg (save-restriction (widen) (point-min))))
(setq espresso--cache-end (min espresso--cache-end beg)))
(defmacro espresso--debug (&rest arguments)
;; `(message ,@arguments)
)
(defun espresso--ensure-cache--pop-if-ended (open-items paren-depth)
(let ((top-item (car open-items)))
(when (<= paren-depth (espresso--pitem-paren-depth top-item))
(assert (not (get-text-property (1- (point)) 'espresso-pend)))
(put-text-property (1- (point)) (point) 'espresso--pend top-item)
(setf (espresso--pitem-b-end top-item) (point))
(setq open-items
;; open-items must contain at least two items for this to
;; work, but because we push a dummy item to start with,
;; that assumption holds.
(cons (espresso--pitem-add-child (second open-items) top-item)
(cddr open-items)))))
open-items)
(defmacro espresso--ensure-cache--update-parse ()
"Helper for use inside espresso--ensure-cache. Updates parsing
information up to point. Refers to parse, prev-parse-point,
goal-point, and open-items bound lexically in the body of
`espresso--ensure-cache'."
`(progn
(setq goal-point (point))
(goto-char prev-parse-point)
(while (progn
(setq open-items (espresso--ensure-cache--pop-if-ended
open-items (car parse)))
;; Make sure parse-partial-sexp doesn't stop because we *entered*
;; the given depth -- i.e., make sure we're deeper than the target
;; depth.
(assert (> (nth 0 parse)
(espresso--pitem-paren-depth (car open-items))))
(setq parse (parse-partial-sexp
prev-parse-point goal-point
(espresso--pitem-paren-depth (car open-items))
nil parse))
;; (let ((overlay (make-overlay prev-parse-point (point))))
;; (overlay-put overlay 'face '(:background "red"))
;; (unwind-protect
;; (progn
;; (espresso--debug "parsed: %S" parse)
;; (sit-for 1))
;; (delete-overlay overlay)))
(setq prev-parse-point (point))