Re: [CVS ci] builtins

2005-03-22 Thread Leopold Toetsch
Dan Sugalski <[EMAIL PROTECTED]> wrote: > At 5:19 PM +0100 3/19/05, Leopold Toetsch wrote: >>1) builtin methods are living in a class namespace e.g. >> >> Float."cos" >> ParrotIO."open" # unimplemented > I'm way out of the loop and may have been dealt with in prior mail, > but are we doing re

Re: [CVS ci] builtins

2005-03-21 Thread Dan Sugalski
At 5:19 PM +0100 3/19/05, Leopold Toetsch wrote: 1) builtin methods are living in a class namespace e.g. Float."cos" ParrotIO."open" # unimplemented I'm way out of the loop and may have been dealt with in prior mail, but are we doing real method calls for cos() and suchlike things? That seem

Re: [CVS ci] builtins

2005-03-20 Thread Leopold Toetsch
Bob Rogers <[EMAIL PROTECTED]> wrote: >From: Leopold Toetsch <[EMAIL PROTECTED]> >2) these methods can be called in various ways: > This doesn't seem to be working for me. Oops. I did obviously some changes in classes/nci.c instead of the pmc file. Thanks for reporting - fixed, leo

[CVS ci] builtins

2005-03-19 Thread Bob Rogers
From: Leopold Toetsch <[EMAIL PROTECTED]> Date: Sat, 19 Mar 2005 17:19:49 +0100 . . . 2) these methods can be called in various ways: Px = cos Py # opcode syntax cos Px, Py # same Px = "cos"(Py) # function call

[CVS ci] builtins

2005-03-19 Thread Leopold Toetsch
1) builtin methods are living in a class namespace e.g. Float."cos" ParrotIO."open" # unimplemented 2) these methods can be called in various ways: Px = cos Py # opcode syntax cos Px, Py # same Px = "cos"(Py) # function call Px = Py."cos