Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:22209 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 67077 invoked by uid 1010); 7 Mar 2006 16:41:44 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 67062 invoked from network); 7 Mar 2006 16:41:44 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 7 Mar 2006 16:41:44 -0000 X-Host-Fingerprint: 69.12.155.130 69-12-155-130.dsl.static.sonic.net Linux 2.4/2.6 Received: from ([69.12.155.130:2811] helo=pigeon.alphaweb.net) by pb1.pair.com (ecelerity 2.0 beta r(6323M)) with SMTP id 5A/4A-22029-7C7BD044 for ; Tue, 07 Mar 2006 11:41:44 -0500 Received: from localhost ([127.0.0.1] helo=stumpy) by pigeon.alphaweb.net with smtp (Exim 4.10) id 1FGehV-0001Fr-00 for internals@lists.php.net; Tue, 07 Mar 2006 08:06:17 -0800 Message-ID: <008f01c64206$7327c120$7d051fac@stumpy> To: References: <000001c641c9$80dbfad0$6e02a8c0@thinkpad> Date: Tue, 7 Mar 2006 08:43:34 -0800 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2180 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 Subject: Re: GOTO and/or BREAK LABEL From: pollita@php.net ("Sara Golemon") > 1) goto and break label +0 Making goto's labels work with break is cheap, but less vital than goto. > 2) goto only (like C) +1 Within scope and out of break context is a given. My preference is to not limit jumping to forward only, though such a limit would still be a step in the right direction. > 3) break label only (like Java) 0 See #1 > 4) nothing -1