2 /* Keyword definition for the GNU compiler for the Java(TM) language.
3 Copyright (C) 1997, 1998, 2001, 2002, 2003
4 Free Software Foundation, Inc.
5 Contributed by Alexandre Petit-Bianco (apbianco@cygnus.com)
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2, or (at your option)
14 GCC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING. If not, write to
21 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
22 Boston, MA 02110-1301, USA.
24 Java and all Java-based marks are trademarks or registered trademarks
25 of Sun Microsystems, Inc. in the United States and other countries.
26 The Free Software Foundation is independent of Sun Microsystems, Inc. */
29 struct java_keyword { const char *const name; const int token; };
33 static unsigned int hash (const char *, unsigned int);
37 const struct java_keyword *java_keyword (const char *, unsigned int);
46 implements, IMPLEMENTS_TK
47 protected, PROTECTED_TK
53 transient, TRANSIENT_TK
56 instanceof, INSTANCEOF_TK
66 interface, INTERFACE_TK
81 synchronized, SYNCHRONIZED_TK
87 # true, false and null aren't keyword. But we match them easily this way