;ELC ;;; Compiled ;;; in Emacs version 27.1 ;;; with all optimizations. ;;; This file uses dynamic docstrings, first added in Emacs 19.29. ;;; This file does not contain utf-8 non-ASCII characters, ;;; and so can be loaded in Emacs versions earlier than 23. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (require 'semantic/lex) #@64 The number of expected shift/reduce conflicts in this grammar. (defconst wisent-javascript-jv-wy--expected-conflicts nil (#$ . 432)) #@29 Table of language keywords. (defconst wisent-javascript-jv-wy--keyword-table (semantic-lex-make-keyword-table '(("if" . IF) ("break" . BREAK) ("continue" . CONTINUE) ("else" . ELSE) ("for" . FOR) ("function" . FUNCTION) ("this" . THIS) ("return" . RETURN) ("while" . WHILE) ("void" . VOID_SYMBOL) ("new" . NEW) ("delete" . DELETE) ("var" . VAR) ("with" . WITH) ("typeof" . TYPEOF) ("in" . IN)) '(("in" summary "in something") ("typeof" summary "typeof ") ("with" summary "with ") ("var" summary "var [= value];") ("delete" summary "delete() - Deletes the object.") ("new" summary "new - Creates a new object.") ("void" summary "Method return type: void ...") ("while" summary "while () | do while ();") ("return" summary "return [] ;") ("this" summary "this") ("function" summary "function declaration blah blah") ("for" summary "for ([]; []; []) ") ("else" summary "if () else ") ("continue" summary "continue [