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

Генерация переопределённых геттеров/сеттеров для классов, расширяющих плеерные as3 классы. #312

Open
k0t0vich opened this issue Nov 13, 2017 · 0 comments

Comments

@k0t0vich
Copy link

k0t0vich commented Nov 13, 2017

as3 code for example:

package {
    public class Test extends flash.display.Sprite {
    private var _width:Number;
  
    override public function set width(value:Number): Number {
        _width = value;
        return _width;
    }

    override public function get width():Number {
        return _width;
    }
}
}
class Child extends Test {
    
    override public function get width():Number {
        return 10;
    }
}

expected result

class Test extends flash.display.Sprite {
    private var _width:Float;
    static function main() {
        trace("Haxe is great!");
    }
    
     #if flash @:setter(width) #else override #end
    public function set_width(value:Float): #if flash Void #else Float #end {
        _width = value;
        #if !flash return _width; #end
    }
 #if flash @:getter(width) #else override #end
    public function get_width():Float {
        return _width;
    }
}
    
class Child extends Test {
    #if flash @:getter(width) #end
    override public function get_width():Float {
        return 10;
    }
}

actual result

class Test extends flash.display.Sprite {
    private var _width:Float;
    static function main() {
        trace("Haxe is great!");
    }
     
    override public function set_width(value:Float): Float {
        _width = value;
        return _width;
    }

    override public function get_width():Float {
        return _width;
    }
}
    
class Child extends Test {
    
    override public function get_width():Float {
        return 10;
    }
}  

Особое внимание уделить наличию модификатора override у впервые переопределённого сеттера/геттера и уже повторного.

@k0t0vich k0t0vich changed the title Генерация переопределённых геттеров/сеттеров для классов, расширяющих as3 классы. Генерация переопределённых геттеров/сеттеров для классов, расширяющих плеерные as3 классы. Nov 13, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant