Variable: js--extjs-class-decl-re-1
js--extjs-class-decl-re-1 is a variable defined in js.el.gz.
Value
"^\\s-*Ext\\.extend\\s-*(\\s-*\\([[:alpha:]_$]\\(?:\\s_\\|\\sw\\)*\\(?:\\.[[:alpha:]_$]\\(?:\\s_\\|\\sw\\)*\\)*\\)\\s-*,\\s-*\\([[:alpha:]_$]\\(?:\\s_\\|\\sw\\)*\\(?:\\.[[:alpha:]_$]\\(?:\\s_\\|\\sw\\)*\\)*\\)"
Documentation
Regexp matching an ExtJS class declaration (style 1).
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/js.el.gz
(defconst js--extjs-class-decl-re-1
(concat "^\\s-*Ext\\.extend\\s-*("
"\\s-*\\(" js--dotted-name-re "\\)"
"\\s-*,\\s-*\\(" js--dotted-name-re "\\)")
"Regexp matching an ExtJS class declaration (style 1).")