2 /* Keyword definition for the GNU compiler for the Java(TM) language.
3 Copyright (C) 1997, 1998 Free Software Foundation, Inc.
4 Contributed by Alexandre Petit-Bianco (apbianco@cygnus.com)
6 This file is part of GNU CC.
8 GNU CC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
13 GNU CC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU CC; see the file COPYING. If not, write to
20 the Free Software Foundation, 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA.
23 Java and all Java-based marks are trademarks or registered trademarks
24 of Sun Microsystems, Inc. in the United States and other countries.
25 The Free Software Foundation is independent of Sun Microsystems, Inc. */
28 struct java_keyword { const char *name; int token; };
32 static unsigned int hash PARAMS ((const char *, unsigned int));
36 struct java_keyword *java_keyword PARAMS ((const char *, unsigned int));
45 implements, IMPLEMENTS_TK
46 protected, PROTECTED_TK
52 transient, TRANSIENT_TK
55 instanceof, INSTANCEOF_TK
65 interface, INTERFACE_TK
80 synchronized, SYNCHRONIZED_TK
85 # true, false and null aren't keyword. But we match them easily this way