| Issue 37: | Little Enum toString issue | |
| 1 person starred this issue and may be notified of changes. | Back to list |
What steps will reproduce the problem?
create the following file
enum A {
A1(name:String);
}
class Test2 {
public static function main () {
var a = A1(null);
trace(a);
}
}
What is the expected output? What do you see instead?
traces A1() but should trace A1(null) as in neko for example
What version of the product are you using? On what operating system?
current svn
Jul 28, 2010
Project Member
#1
gameh...@gmail.com
Status:
Fixed
|