Re: [perl #41604] [BUG] pbc_output_is doesn't work?

2007-02-25 Thread Klaas-Jan Stol
Leopold Toetsch wrote: Am Samstag, 24. Februar 2007 17:05 schrieb Klaas-Jan Stol: it seems the .pbc files are stored in the repository is that desirable? Yes for these files. IMO, it would be enough to store the PIR only, and have that compiled to PBC If you have a clo

[perl #41608] [NEW] and [PATCH]: tools/build/ops2c.pl refactored

2007-02-25 Thread James Keenan via RT
Please substitute the two files attached for the identically named files in my previous posting in this thread. These two test files extend the test coverage (http://thenceforward.net/parrot/ coverage/). t/tools/ops2cutils/04-print_c_source_top.t t/tools/ops2cutils/05-print_c_source_bottom.t

[PATCH] Pynie updates

2007-02-25 Thread Klaas-Jan Stol
hi, attached a patch for languages/Pynie, adding: * more grammar rules * statement.t for testing statements -- kinda simple, should be extended * keyword rule, so that id's are not recognized as identifiers regards, kjs Index: languages/pynie/src/parser/Grammar.pg =

[PATCH] welcome message and prompt for HLLCompiler

2007-02-25 Thread Klaas-Jan Stol
hi, most languages that can run in interactive mode have some kind of welcome message and prompt that is printed before the user can give any input. For example, Python prints: Python 2.5 (r25:51908, Sep 19 2006, 09:52:17) [MSC v.1310 32 bit (Intel)] on win 32 Type "help", "copyright", "cr

Re: [PATCH] welcome message and prompt for HLLCompiler

2007-02-25 Thread Patrick R. Michaud
On Sun, Feb 25, 2007 at 04:39:17PM +0100, Klaas-Jan Stol wrote: > most languages that can run in interactive mode have some kind of > welcome message and prompt that is printed before the user can give any > input. Yes, this is helpful. But also one of the things we need is a way so that we can

Re: [PATCH] welcome message and prompt for HLLCompiler

2007-02-25 Thread Klaas-Jan Stol
Patrick R. Michaud wrote: On Sun, Feb 25, 2007 at 04:39:17PM +0100, Klaas-Jan Stol wrote: most languages that can run in interactive mode have some kind of welcome message and prompt that is printed before the user can give any input. Yes, this is helpful. But also one of the things

Re: [PATCH] welcome message and prompt for HLLCompiler

2007-02-25 Thread Will Coleda
Nifty. FYI, in tcl, the two prompts can be overridden via a user defined procedure. See http://www.tcl.tk/man/tcl8.5/UserCmd/tclsh.htm#M11 Be nice if this was also possible with the default tool. On Feb 25, 2007, at 11:24 AM, Klaas-Jan Stol wrote: Patrick R. Michaud wrote: On Sun, Feb 25,

Re: [PATCH] welcome message and prompt for HLLCompiler

2007-02-25 Thread Klaas-Jan Stol
Will Coleda wrote: Nifty. FYI, in tcl, the two prompts can be overridden via a user defined procedure. See http://www.tcl.tk/man/tcl8.5/UserCmd/tclsh.htm#M11 Be nice if this was also possible with the default tool. yup that should be possible as long as the language can access its own compil

Re: [perl #41601] [BUG] parrotbug b0rken

2007-02-25 Thread Jerome Quelin
On 07/02/24 12:00 +0100, Paul Cochrane wrote: > >parrotbug seems to be broken on win32. > Actually, I think it's broken on all platforms. as parrotbug (the program) father, i'd like to add that i don't have time to work on it. (and it seems to show up) anyone wanting to work on it or even adopt i

Re: [perl #41614] Can't set non-core object attribs yet

2007-02-25 Thread Alek Storm
The problem is that a Sub is not a ParrotObject, so it has nowhere to store attributes. That's why attr_str_2_num throws "Can't set non-core object attribs": it can't safely use PMC_data unless you've passed a ParrotObject. I've attached a patch that implements a basic attribute storage system f

Re: [perl #41364] [PATCH] Fixed object vtable method overrides in PIR

2007-02-25 Thread Alek Storm
Now that 0.4.9 has been released, can this be committed? Thanks, Alek Storm On 2/19/07, Alek Storm <[EMAIL PROTECTED]> wrote: Thanks for the head start; now I know to include a test in the future. Here is an updated version of your patch, with various minor fixes. On 2/17/07, Allison Randal