This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: Question about purge_unchecked_exceptions
- To: tromey at redhat dot com
- Subject: Re: Question about purge_unchecked_exceptions
- From: Alexandre Petit-Bianco <apbianco at cygnus dot com>
- Date: Thu, 23 Aug 2001 16:01:53 -0700 (PDT)
- Cc: Java Discuss List <java at gcc dot gnu dot org>
- References: <878zga8j9i.fsf@creche.redhat.com>
- Reply-To: apbianco at cygnus dot com
Tom Tromey writes:
> Is this "ok"? I looked a bit but couldn't find any info in the
> various references about what a Java compiler is supposed to do
> here.
It's a matter of convenience. We remove unchecked exception so that we
don't have to take them into consideration (see JLS2.0 11.2.1 and
11.2.2)
If we have to take them into consideration, we can either keep the
list intact and add the tests where relevant to skip unchecked
exception or keep the original list intact somewhere and use it when
required.
What would be the most convenient for what you're working on?
./A