Interesting, but this seems to be purely for decorating method definitions, not 
method calls, and I'm not sure how any similar syntax would help.
 
The only thing I could think of would be to hint the parser, which may be what 
you had in mind.
 
def foo(int)
def foo(string)
def bar[T](T, int)
def bar[T](T, string)
 
foo(/* int */ 1)
foo(/* string */ "one")
bar[baz](bazVal, /* int */ 1)

________________________________

From: [EMAIL PROTECTED] on behalf of Morgan Martinet
Sent: Thu 7/21/2005 2:46 PM


I know this is purely Python stuff, but maybe it could help for the new
syntax you're investigating...


<<winmail.dat>>

_______________________________________________
users-ironpython.com mailing list
users-ironpython.com@lists.ironpython.com
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Reply via email to