Re: Silly question...

2001-11-30 Thread Simon Cozens
On Thu, Nov 29, 2001 at 10:51:52PM -0500, Jeff G wrote: > > Shouldn't we be placing set_p_i and the like in vtable.ops? > Of course, I meant vtable.tbl. No you didn't. vtable.tbl is the methods. > wondering if it wouldn't be better to let a human create the vtable.ops > file and leave vtable.tbl

Re: Silly question...

2001-11-29 Thread Jeff G
Jeff G wrote: > > Shouldn't we be placing set_p_i and the like in vtable.ops? Of course, I meant vtable.tbl... Based on this confusion I'm now wondering if it wouldn't be better to let a human create the vtable.ops file and leave vtable.tbl as an auxiliary file that's used to generate the approp

Silly question...

2001-11-29 Thread Jeff G
Shouldn't we be placing set_p_i and the like in vtable.ops? -Jeff Radio Shack: You've got questions, we've got blank stares!

RE: another silly question about Parrot::Opcode

2001-09-19 Thread Gibbs Tanton - tgibbs
ECTED] Sent: 9/19/2001 2:11 PM Subject: another silly question about Parrot::Opcode I found one more bit that looks odd to me (again in _load), near the end of the while loop is this code: my $num_i = () = grep {/i/} @params; my $num_n = () = grep {/n/} @params; $opcode{

another silly question about Parrot::Opcode

2001-09-19 Thread Pat Eyler
I found one more bit that looks odd to me (again in _load), near the end of the while loop is this code: my $num_i = () = grep {/i/} @params; my $num_n = () = grep {/n/} @params; $opcode{$name}{RETURN_OFFSET} = 1 + $num_i + $num_n * 2; which could be reduced to: