Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Invalid assignment. #31

Closed
GoogleCodeExporter opened this issue Jan 21, 2016 · 2 comments
Closed

Invalid assignment. #31

GoogleCodeExporter opened this issue Jan 21, 2016 · 2 comments

Comments

@GoogleCodeExporter
Copy link

public function AbstractMember(name:String, type:String, declaringType:String, 
isStatic:Boolean, applicationDomain:ApplicationDomain, metaData:HashArray = 
null) {
                        super(metaData);
                        _name = name;
                        _isStatic = isStatic;
                        typeName = type;
                        declaringTypeName = declaringType;
                        applicationDomain = applicationDomain;
                }

should be (the last line must use 'this' for class property reference):

public function AbstractMember(name:String, type:String, declaringType:String, 
isStatic:Boolean, applicationDomain:ApplicationDomain, metaData:HashArray = 
null) {
                        super(metaData);
                        _name = name;
                        _isStatic = isStatic;
                        typeName = type;
                        declaringTypeName = declaringType;
                        this.applicationDomain = applicationDomain;
                }

Original issue reported on code.google.com by Captain.Cook.83@gmail.com on 10 Nov 2010 at 9:05

@GoogleCodeExporter
Copy link
Author

Thanx for catching this one, I found the same mistake in Method.as. Changes are 
available in the trunk.

Original comment by ihatelivelyids on 10 Nov 2010 at 9:12

@GoogleCodeExporter
Copy link
Author

Original comment by ihatelivelyids on 10 Nov 2010 at 9:13

  • Changed state: Fixed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant