[perl #38929] [TODO] Get executable code out of .h files

2006-04-16 Thread via RT
# New Ticket Created by Andy Lester # Please include the string: [perl #38929] # in the subject line of all future correspondence about this issue. # URL: https://rt.perl.org/rt3/Ticket/Display.html?id=38929 include/parrot/jit_emit.h is filled with functions. They should be removed and

Re: [svn:perl6-synopsis] r8698 - doc/trunk/design/syn

2006-04-16 Thread Dr.Ruud
[EMAIL PROTECTED] schreef: +The unary prefix operator C* casts a value to an CCapture s/\ban\b/a @@ -1340,7 +1340,7 @@ PairTuple of two elements that serves as an one-element idem +my $ref = [EMAIL PROTECTED]; # $ref is an Capture object - see S02 idem --

Re: [perl #38931] [RFE] Double-quoted strings automatically determine string type

2006-04-16 Thread Nicholas Clark
On Sun, Apr 16, 2006 at 11:22:40AM -0700, Patrick R. Michaud wrote: This is a suggestion regarding double-quoted string literals in Parrot. Currently double-quoted strings are always assumed to be ASCII unless prefixed by a different charset identifier such as 'unicode:' or 'iso-8859-1:'.

[perl #38931] [RFE] Double-quoted strings automatically determine string type

2006-04-16 Thread via RT
# New Ticket Created by Patrick R. Michaud # Please include the string: [perl #38931] # in the subject line of all future correspondence about this issue. # URL: https://rt.perl.org/rt3/Ticket/Display.html?id=38931 This is a suggestion regarding double-quoted string literals in Parrot.

Re: [perl #38931] [RFE] Double-quoted strings automatically determine string type

2006-04-16 Thread Patrick R. Michaud
On Sun, Apr 16, 2006 at 11:36:10AM -0700, Nicholas Clark via RT wrote: IIRC having ASCII as the default was a deliberate design choice to avoid the confusion of is it iso-8859-1 or is it utf-8 when encountering a string literal with bytes outside the range 0-127. Reasonable. Essentially I'm

Re: [perl #38931] [RFE] Double-quoted strings automatically determine string type

2006-04-16 Thread Patrick R. Michaud
On Sun, Apr 16, 2006 at 04:41:05PM -0500, Patrick R. Michaud wrote: If PGE is always outputting UTF-8 literals, what stops it from always prefixing every literal unicode:, even if it only uses Unicode characters 0 to 127? [...] Also, once introduced unicode strings tend can easily spread

Re: [perl #38931] [RFE] Double-quoted strings automatically determine string type

2006-04-16 Thread Nicholas Clark
On Sun, Apr 16, 2006 at 04:41:05PM -0500, Patrick R. Michaud wrote: I also realized this past week that using 'unicode:' on strings with \x (codepoints 128-255) may *still* be a bit too liberal -- the « french angles » will still cause no ICU library present errors, but would seemingly work

Variable-length PMC - level of need

2006-04-16 Thread Chip Salzenberg
On Thu, Apr 13, 2006 at 01:55:28AM +0200, Leopold Toetsch wrote: On Apr 11, 2006, at 19:03, Chip Salzenberg wrote: 2. Reference Model for value objects In Parrot, this mostly amounts to unique read-only PMCs. We'll have the read-only part, but the unique part, probably not. Can I/we

Re: [perl #38931] [RFE] Double-quoted strings automatically determine string type

2006-04-16 Thread Audrey Tang
Nicholas Clark wrote: On Sun, Apr 16, 2006 at 11:22:40AM -0700, Patrick R. Michaud wrote: $S1 = He said, \xabHello\xbb $S2 = 3 \u2212 4 = \u207b 1 are treated as ASCII strings even though they obviously contain codepoints outside of the ASCII range. (The first results in a

[svn:perl6-synopsis] r8724 - doc/trunk/design/syn

2006-04-16 Thread autrijus
Author: autrijus Date: Sun Apr 16 18:24:04 2006 New Revision: 8724 Modified: doc/trunk/design/syn/S06.pod doc/trunk/design/syn/S09.pod Log: * more typo cleanups promted by Dr. Ruud. Modified: doc/trunk/design/syn/S06.pod

Non-Perl TAP implementations

2006-04-16 Thread Andy Lester
I'm adding a section to Test::Harness::TAP on non-Perl TAP. http://svn.perl.org/modules/Test-Harness/trunk/lib/Test/Harness/TAP.pod If you know of one, please send me some text to add. Thanks, xoxo, Andy -- Andy Lester = [EMAIL PROTECTED] = www.petdance.com = AIM:petdance

Re: Non-Perl TAP implementations

2006-04-16 Thread Ricardo SIGNES
* Andy Lester [EMAIL PROTECTED] [2006-04-16T23:08:26] I'm adding a section to Test::Harness::TAP on non-Perl TAP. http://svn.perl.org/modules/Test-Harness/trunk/lib/Test/Harness/TAP.pod If you know of one, please send me some text to add. It's not really ready to be publicized, and I

[svn:parrot-pdd] r12283 - trunk/docs/pdds

2006-04-16 Thread chip
Author: chip Date: Sun Apr 16 20:33:54 2006 New Revision: 12283 Modified: trunk/docs/pdds/pdd21_namespaces.pod Log: * Added requirement that compiler.load_library() throw an exception on failure. Also noted that the exception is only covering for the lack of a universal error PMC, which

Re: Non-Perl TAP implementations

2006-04-16 Thread Ricardo SIGNES
* Ricardo SIGNES [EMAIL PROTECTED] [2006-04-16T23:33:19] It's not really ready to be publicized, and I haven't touched it in a little while, but I'll mention PyTap: http://svn.codesimply.com/projects/pytap I got a request, off-list, for more info, so here is some: PyTap will, when it's done,

[svn:parrot-pdd] r12284 - trunk/docs/pdds

2006-04-16 Thread chip
Author: chip Date: Sun Apr 16 21:21:53 2006 New Revision: 12284 Modified: trunk/docs/pdds/pdd21_namespaces.pod Log: * Documented clearly consistently that all namespace opcodes start their search in the HLL root namespace, *not* at the global root. * Added a second namespace method to the

Re: Namespace roundup

2006-04-16 Thread Chip Salzenberg
This is an old message I'm replying to, so I'll copy most of it. On Fri, Mar 10, 2006 at 07:05:34PM +0100, Leopold Toetsch wrote: Code snippet # NameSpace::name .sub main # '' actually parrot [1] store_global 'x', $P0#

Namespaces TODO list, April 16 '06

2006-04-16 Thread Chip Salzenberg
Based on a status report from Leo {thanks!} and my recent revisions to pdd21, here's a list of things that need to be done to bring parrot fully into the new world of namespaces. The items are roughly in descending order of importance. There's room for several contributors here [[

Re: Non-Perl TAP implementations

2006-04-16 Thread David Wheeler
On Apr 16, 2006, at 20:08, Andy Lester wrote: I'm adding a section to Test::Harness::TAP on non-Perl TAP. http://svn.perl.org/modules/Test-Harness/trunk/lib/Test/Harness/ TAP.pod If you know of one, please send me some text to add. Test.Simple—JavaScript. It looks and acts just like tap,

Re: Non-Perl TAP implementations

2006-04-16 Thread chromatic
On Sunday 16 April 2006 20:08, Andy Lester wrote: I'm adding a section to Test::Harness::TAP on non-Perl TAP. http://svn.perl.org/modules/Test-Harness/trunk/lib/Test/Harness/TAP.pod If you know of one, please send me some text to add. How non-Perl do you want? Does the Perl 6 version of