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

default parameter with other param #326

Merged
merged 1 commit into from
May 13, 2014

Conversation

tuchida
Copy link

@tuchida tuchida commented May 13, 2014

This code fails to compile.

class _Main {
    static function fn(a : number, b : number = a * 2) : number {
        return a + b;
    }

    static function main(args : string[]) : void {
        log _Main.fn(5);
    }
}
ERROR!
[input:2:48] could not find definition for template class: 'a'
    static function fn(a : number, b : number = a * 2) : number {
                                                ^
[input:2:48] no class definition or variable for 'a'
    static function fn(a : number, b : number = a * 2) : number {
                                                ^

In ECMAScript6 of Firefox, allow default parameters to be initialized with other parameter value.
How do you feel about that?

@kazuho kazuho merged commit 220ca7c into jsx:master May 13, 2014
@kazuho
Copy link
Member

kazuho commented May 13, 2014

Thank you for the pull request. The feature will be included in the upcoming release.

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

Successfully merging this pull request may close these issues.

2 participants