;;; wisent-csharp-wy.el --- Generated parser support file ;; Copyright (C) 2003 David Shilvock ;; Author: Eric M. Ludlam ;; Created: 2007-06-05 21:48:10-0400 ;; Keywords: syntax ;; X-RCS: $Id$ ;; This file is not part of GNU Emacs. ;; ;; This program 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 2, or (at ;; your option) any later version. ;; ;; This software 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., 51 Franklin Street, Fifth Floor, ;; Boston, MA 02110-1301, USA. ;;; Commentary: ;; ;; PLEASE DO NOT MANUALLY EDIT THIS FILE! It is automatically ;; generated from the grammar file wisent-csharp.wy. ;;; History: ;; ;;; Code: ;;; Prologue ;; ;;; Declarations ;; (defconst wisent-csharp-wy--keyword-table (semantic-lex-make-keyword-table '(("abstract" . ABSTRACT) ("add" . ADD) ("as" . AS) ("base" . BASE) ("bool" . BOOL) ("break" . BREAK) ("byte" . BYTE) ("case" . CASE) ("catch" . CATCH) ("char" . CHAR) ("checked" . CHECKED) ("class" . CLASS) ("const" . CONST) ("continue" . CONTINUE) ("decimal" . DECIMAL) ("default" . DEFAULT) ("delegate" . DELEGATE) ("do" . DO) ("double" . DOUBLE) ("else" . ELSE) ("enum" . ENUM) ("event" . EVENT) ("explicit" . EXPLICIT) ("extern" . EXTERN) ("finally" . FINALLY) ("fixed" . FIXED) ("float" . FLOAT) ("for" . FOR) ("foreach" . FOREACH) ("get" . GET) ("goto" . GOTO) ("if" . IF) ("implicit" . IMPLICIT) ("in" . IN) ("int" . INT) ("interface" . INTERFACE) ("internal" . INTERNAL) ("is" . IS) ("lock" . LOCK) ("long" . LONG) ("namespace" . NAMESPACE) ("new" . NEW) ("object" . OBJECT) ("operator" . OPERATOR) ("out" . OUT) ("override" . OVERRIDE) ("params" . PARAMS) ("private" . PRIVATE) ("protected" . PROTECTED) ("public" . PUBLIC) ("readonly" . READONLY) ("ref" . REF) ("remove" . REMOVE) ("return" . RETURN) ("sbyte" . SBYTE) ("sealed" . SEALED) ("set" . SET) ("short" . SHORT) ("sizeof" . SIZEOF) ("stackalloc" . STACKALLOC) ("static" . STATIC) ("string" . STRING) ("struct" . STRUCT) ("switch" . SWITCH) ("this" . THIS) ("throw" . THROW) ("try" . TRY) ("typeof" . TYPEOF) ("unit" . UINT) ("ulong" . ULONG) ("unchecked" . UNCHECKED) ("unsafe" . UNSAFE) ("ushort" . USHORT) ("using" . USING) ("virtual" . VIRTUAL) ("void" . VOID) ("volatile" . VOLATILE) ("while" . WHILE)) '(("while" summary "while () | do while ();") ("volatile" summary "Field declaration modifier: volatile ...") ("void" summary "Method return type: void ...") ("virtual" summary "") ("using" summary "Namespace import: using | using = ;") ("ushort" summary "") ("unsafe" summary "") ("unchecked" summary "") ("ulong" summary "") ("unit" summary "") ("typeof" summary "") ("try" summary "try {} [catch() {} ...] [finally {}]") ("throw" summary "throw ;") ("switch" summary "switch() {[case : ...] [default: ]}") ("struct" summary "") ("string" summary "") ("static" summary "Declaration modifier: static {class|interface|} ...") ("stackalloc" summary "") ("sizeof" summary "") ("short" summary "Integral primitive type (-32768 to 32767)") ("set" summary "") ("sealed" summary "") ("sbyte" summary "") ("return" summary "return [] ;") ("remove" summary "") ("ref" summary "") ("readonly" summary "") ("public" summary "Access level modifier: public {class|interface|} ...") ("protected" summary "Access level modifier: protected {class|interface|} ...") ("private" summary "Access level modifier: private {class|interface|} ...") ("params" summary "") ("override" summary "") ("out" summary "") ("operator" summary "") ("object" summary "") ("namespace" summary "") ("long" summary "Integral primitive type (-9223372036854775808 to 9223372036854775807)") ("lock" summary "") ("is" summary "") ("internal" summary "") ("interface" summary "Interface declaration: interface ") ("int" summary "Integral primitive type (-2147483648 to 2147483647)") ("in" summary "") ("implicit" summary "") ("if" summary "if () [else ]") ("goto" summary "Unused reserved word") ("get" summary "") ("foreach" summary "") ("for" summary "for ([]; []; []) ") ("float" summary "Primitive floating-point type (single-precision 32-bit IEEE 754)") ("fixed" summary "") ("finally" summary "try {} ... finally {}") ("extern" summary "") ("explicit" summary "") ("event" summary "") ("enum" summary "") ("else" summary "if () else ") ("double" summary "Primitive floating-point type (double-precision 64-bit IEEE 754)") ("do" summary "do while ();") ("delegate" summary "") ("default" summary "switch() { ... default: }") ("decimal" summary "") ("continue" summary "continue [