1. Object Oriented Euphoria v1.1
- Posted by Matt Lewis <matthewwalkerlewis at yahoo.com>
Dec 14, 2004
-
Last edited Dec 15, 2004
I've put a copy of ooeu v1.1 up on my web page:
http://www14.brinkster.com/matthewlewis/projects.html
Here's the change log:
v1.1 * Preprocessor option to convert ooeu code to standard RDS code
* Methods called like handle class.method() were not parsed correctly
* Fixed bug when method name was same as previous routine name
* Now an ex.err file has the traceback of the last 10 lines like the
RDS interpreter does (shrouded code will do this, too, with -full_debug
option)
* Initial tracing support through dll
I didn't put up newly translated executables for this release (except
for the dll used for tracing--sorry, no linux shared lib yet, but you can
translate it yourself :).
Matt Lewis
2. Re: Object Oriented Euphoria v1.1
- Posted by cklester <cklester at yahoo.com>
Dec 14, 2004
-
Last edited Dec 15, 2004
Matt, if you'll send me the translated executables, I'll host them on
my web site. I have (practically) no bandwidth limits.
-=ck
"Programming in a state of EUPHORIA."
http://www.cklester.com/euphoria/
3. Re: Object Oriented Euphoria v1.1
Matt Lewis wrote:
> I've put a copy of ooeu v1.1 up on my web page:
>
> <a
> href="http://www14.brinkster.com/matthewlewis/projects.html">http://www14.brinkster.com/matthewlewis/projects.html</a>
>
> I didn't put up newly translated executables for this release (except
> for the dll used for tracing--sorry, no linux shared lib yet, but you can
> translate it yourself.
The translated executables (and source) are available from this page:
http://www.cklester.com/euphoria/?projects
(On the right (in the second column).) :)
-=ck
"Programming in a state of EUPHORIA."
http://www.cklester.com/euphoria/
4. Re: Object Oriented Euphoria v1.1
- Posted by akusaya at gmx.net
Dec 16, 2004
Seems so interesting!
What kind of file is .oe?
I think it's different from RDS' shrouded format.
Binding class.ex and executing it gives
Fatal run-time error:
repetition count must be an atom
though.
M> I've put a copy of ooeu v1.1 up on my web page:
M> http://www14.brinkster.com/matthewlewis/projects.html
M> Here's the change log:
M> v1.1 * Preprocessor option to convert ooeu code to standard RDS code
M> * Methods called like handle class.method() were not parsed correctly
M> * Fixed bug when method name was same as previous routine name
M> * Now an ex.err file has the traceback of the last 10 lines like the
M> RDS interpreter does (shrouded code will do this, too, with
-full_debug option)
M> * Initial tracing support through dll
M> I didn't put up newly translated executables for this release (except
M> for the dll used for tracing--sorry, no linux shared lib yet, but you can
M> translate it yourself :).
M> Matt Lewis
5. Re: Object Oriented Euphoria v1.1
>M> * Initial tracing support through dll
>
>M> I didn't put up newly translated executables for this release (except
>M> for the dll used for tracing
Ah, I've just twigged. everything in ooeu-src.zip is dated 11/12 (same
on ckl's site).
Pete
6. Re: Object Oriented Euphoria v1.1
Pete Lomax wrote:
>
>
> >M> * Initial tracing support through dll
> >
> >M> I didn't put up newly translated executables for this release (except
> >M> for the dll used for tracing
> Ah, I've just twigged. everything in ooeu-src.zip is dated 11/12 (same
> on ckl's site).
Grrr....I misnamed the file, so it's not linked properly. I'll be putting
up 1.2 shortly (just source for now).
Matt Lewis
7. Re: Object Oriented Euphoria v1.1
unknown wrote:
>
> Seems so interesting!
>
> What kind of file is .oe?
> I think it's different from RDS' shrouded format.
>
> Binding class.ex and executing it gives
>
> Fatal run-time error:
> repetition count must be an atom
> though.
Yes, looks like I broke this. It'll be fixed for 1.2 (coming soon).
An 'oe' file is my version of a shrouded file. It is definitely different
than an RDS il file. See sequencef.e for details on how it's used. I'm
also updating the documentation to include the file specs.
Matt Lewis