aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/decl.c
diff options
context:
space:
mode:
authorAlexandre Petit-Bianco <apbianco@cygnus.com>2001-02-14 00:03:11 +0000
committerAlexandre Petit-Bianco <apbianco@cygnus.com>2001-02-14 00:03:11 +0000
commitae152f15145aae765f09b2ed44a16c1b09b0261f (patch)
tree2409121bec47bf9d0bb428da3a62dc4db716f8f8 /gcc/java/decl.c
parentb909a79ea63f3d15957ed9ad9bf6abd690a420c3 (diff)
2001-02-13 Alexandre Petit-Bianco <apbianco@cygnus.com>
* decl.c (classdollar_identifier_node): Initialize. * java-tree.h (enum java_tree_index): New entry `JTI_CLASSDOLLAR_IDENTIFIER_NODE.' (classdollar_identifier_node): New macro. (ID_CLASSDOLLAR_P): Likewise. * parse.y (build_dot_class_method): Use `classdollar_identifier_node.' (build_dot_class_method_invocation): Likewise. (find_applicable_accessible_methods_list): `class$' can't be inherited. (http://gcc.gnu.org/ml/gcc-patches/2001-02/msg00760.html) git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@39650 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/decl.c')
-rw-r--r--gcc/java/decl.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/java/decl.c b/gcc/java/decl.c
index f59605906a3..2f7f31583e0 100644
--- a/gcc/java/decl.c
+++ b/gcc/java/decl.c
@@ -602,6 +602,7 @@ init_decl_processing ()
super_identifier_node = get_identifier ("super");
continue_identifier_node = get_identifier ("continue");
access0_identifier_node = get_identifier ("access$0");
+ classdollar_identifier_node = get_identifier ("class$");
/* for lack of a better place to put this stub call */
init_expr_processing();