Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Dynamic Languages Toolkit (DLTK) » Bug in Eclipse with XOTcl
Bug in Eclipse with XOTcl [message #20736] Sat, 16 February 2008 18:32 Go to next message
Eclipse UserFriend
Originally posted by: manfred.antispam.at

I have a small script.

##
Class Test -slots {
Attribute a -default 0
}
Test instproc t1 {args} {
puts nix
}
Test instproc t2 {args} {
my instvar a
if {$a eq ""} {
my t1 "nix $a"
} else {
my t1 a
}
}
##

Eclipse show me an error on the line "my t1 a"
The error is "'my ' can only be used in a context of an instproc or a
method specific proc"
But the syntax is correct.

Where can I report this error?

Regards
Manfred
Re: Bug in Eclipse with XOTcl [message #20750 is a reply to message #20736] Mon, 18 February 2008 03:57 Go to previous message
Timur Shipilov is currently offline Timur ShipilovFriend
Messages: 4
Registered: July 2009
Junior Member
Hi Manfred,
Thank you for reporting, I've created
https://bugs.eclipse.org/bugs/show_bug.cgi?id=219286 for this issue. In
future, you can report errors using eclipse bug tracking system
http://bugs.eclipse.org/bugs/

Regards,
Timur


Manfred Stelzhammer wrote:
> I have a small script.
>
> ##
> Class Test -slots {
> Attribute a -default 0
> }
> Test instproc t1 {args} {
> puts nix
> }
> Test instproc t2 {args} {
> my instvar a
> if {$a eq ""} {
> my t1 "nix $a"
> } else {
> my t1 a
> }
> }
> ##
>
> Eclipse show me an error on the line "my t1 a"
> The error is "'my ' can only be used in a context of an instproc or a
> method specific proc"
> But the syntax is correct.
>
> Where can I report this error?
>
> Regards
> Manfred
>
Previous Topic:Can't debug with JRuby
Next Topic:Question about the improved DLTK IDE Guide
Goto Forum:
  


Current Time: Thu Apr 25 07:01:13 GMT 2024

Powered by FUDForum. Page generated in 0.02871 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top