public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* java/1261
@ 2001-04-01  0:00 apbianco
  0 siblings, 0 replies; 3+ messages in thread
From: apbianco @ 2001-04-01  0:00 UTC (permalink / raw)
  To: apbianco; +Cc: gcc-prs

The following reply was made to PR java/1261; it has been noted by GNATS.

From: apbianco@gcc.gnu.org
To: gcc-gnats@gcc.gnu.org
Cc:  
Subject: java/1261
Date: 15 Feb 2001 01:23:23 -0000

 CVSROOT:	/cvs/gcc
 Module name:	gcc
 Branch: 	gcc-3_0-branch
 Changes by:	apbianco@gcc.gnu.org	2001-02-14 17:23:23
 
 Modified files:
 	gcc/java       : ChangeLog parse.y typeck.c 
 
 Log message:
 	2001-02-14  Tom Tromey  <tromey@redhat.com>
 	Alexandre Petit-Bianco  <apbianco@redhat.com>
 	
 	Fix for PR java/1261.
 	* typeck.c (build_java_array_type): Add public `clone' method to
 	arrays.
 	* parse.y (resolve_qualified_expression_name): Use current_class
 	when checking for inaccessibility.
 	(patch_method_invocation): Fixed error message when accessibility
 	denied.  Added `from_super' argument.
 	
 	2001-02-14  Alexandre Petit-Bianco  <apbianco@redhat.com>
 	
 	* parse.y (resolve_class): Don't build a fake decl. Use the one
 	already built.
 	* typeck.c (build_java_array_type): Build and assign decl to array
 	type.
 	
 	2001-02-14  Alexandre Petit-Bianco  <apbianco@redhat.com>
 	
 	* parse.y (not_accessible_p): Changed leading comment. Added extra
 	`where' argument. Use it to enforce protected access rules.
 	(resolve_qualified_expression_name): Added extra argument to
 	not_accessible_p.
 	(patch_method_invocation): Use argument `primary' to provide
 	not_accessible_p with an extra argument.
 	(lookup_method_invoke): Added extra argument to not_accessible_p.
 	(search_applicable_method_list): Likewise.
 	
 	( http://gcc.gnu.org/ml/gcc-patches/2001-02/msg00849.html )
 
 Patches:
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/java/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_0-branch&r1=1.647.2.2&r2=1.647.2.3
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/java/parse.y.diff?cvsroot=gcc&only_with_tag=gcc-3_0-branch&r1=1.251.2.2&r2=1.251.2.3
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/java/typeck.c.diff?cvsroot=gcc&only_with_tag=gcc-3_0-branch&r1=1.37&r2=1.37.2.1
 


^ permalink raw reply	[flat|nested] 3+ messages in thread

* java/1261
@ 2001-04-01  0:00 apbianco
  0 siblings, 0 replies; 3+ messages in thread
From: apbianco @ 2001-04-01  0:00 UTC (permalink / raw)
  To: apbianco; +Cc: gcc-prs

The following reply was made to PR java/1261; it has been noted by GNATS.

From: apbianco@gcc.gnu.org
To: gcc-gnats@gcc.gnu.org
Cc:  
Subject: java/1261
Date: 15 Feb 2001 01:23:32 -0000

 CVSROOT:	/cvs/gcc
 Module name:	egcs
 Changes by:	apbianco@gcc.gnu.org	2001-02-14 17:23:32
 
 Modified files:
 	gcc/java       : ChangeLog parse.y typeck.c 
 
 Log message:
 	2001-02-14  Tom Tromey  <tromey@redhat.com>
 	Alexandre Petit-Bianco  <apbianco@redhat.com>
 	
 	Fix for PR java/1261.
 	* typeck.c (build_java_array_type): Add public `clone' method to
 	arrays.
 	* parse.y (resolve_qualified_expression_name): Use current_class
 	when checking for inaccessibility.
 	(patch_method_invocation): Fixed error message when accessibility
 	denied.  Added `from_super' argument.
 	
 	2001-02-14  Alexandre Petit-Bianco  <apbianco@redhat.com>
 	
 	* parse.y (resolve_class): Don't build a fake decl. Use the one
 	already built.
 	* typeck.c (build_java_array_type): Build and assign decl to array
 	type.
 	
 	2001-02-14  Alexandre Petit-Bianco  <apbianco@redhat.com>
 	
 	* parse.y (not_accessible_p): Changed leading comment. Added extra
 	`where' argument. Use it to enforce protected access rules.
 	(resolve_qualified_expression_name): Added extra argument to
 	not_accessible_p.
 	(patch_method_invocation): Use argument `primary' to provide
 	not_accessible_p with an extra argument.
 	(lookup_method_invoke): Added extra argument to not_accessible_p.
 	(search_applicable_method_list): Likewise.
 	
 	( http://gcc.gnu.org/ml/gcc-patches/2001-02/msg00849.html )
 
 Patches:
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/gcc/java/ChangeLog.diff?cvsroot=gcc&r1=1.649&r2=1.650
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/gcc/java/parse.y.diff?cvsroot=gcc&r1=1.253&r2=1.254
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/gcc/java/typeck.c.diff?cvsroot=gcc&r1=1.37&r2=1.38
 


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: java/1261
@ 2001-04-01  0:00 apbianco
  0 siblings, 0 replies; 3+ messages in thread
From: apbianco @ 2001-04-01  0:00 UTC (permalink / raw)
  To: apbianco; +Cc: gcc-prs

The following reply was made to PR java/1261; it has been noted by GNATS.

From: apbianco@gcc.gnu.org
To: apbianco@gcc.gnu.org, bryce@albatross.co.nz, gcc-gnats@gcc.gnu.org
Cc:  
Subject: Re: java/1261
Date: 15 Feb 2001 01:24:28 -0000

 Synopsis: "protected" field access not restricted between packages
 
 State-Changed-From-To: open->feedback
 State-Changed-By: apbianco
 State-Changed-When: Wed Feb 14 17:24:28 2001
 State-Changed-Why:
     I checked in a patch:
     
       http://gcc.gnu.org/ml/gcc-patches/2001-02/msg00849.html
 
 http://sources.redhat.com/cgi-bin/gnatsweb.pl?cmd=view&pr=1261&database=gcc


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2001-04-01  0:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-04-01  0:00 java/1261 apbianco
  -- strict thread matches above, loose matches on Subject: below --
2001-04-01  0:00 java/1261 apbianco
2001-04-01  0:00 java/1261 apbianco

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).