FlatLang / Flat

(Deprecated) Soon-to-be legacy Flat compiler all in one
6 stars 0 forks source link

Add 'super' parameter modifier #388

Closed BSteffaniak closed 7 years ago

BSteffaniak commented 7 years ago

Modifier to copy the modifiers and default value from the parameter specified in the overriden function.

e.g.

class Interval {
    public construct(this DateTime start = null, this DateTime end = null) {}
}
class BoundlessInterval extends Interval {
    public construct(super DateTime start, super DateTime end) {}
}

Where the BoundlessInterval constructor is equivalent to:

class BoundlessInterval extends Interval {
    public construct(this DateTime start = null, this DateTime end = null) {}
}
BSteffaniak commented 7 years ago

95c78a1