You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the paragraph below from page 66 of the dart language spec, I believe "keyword" should be changed to "named"
"If T is malformed or if T is a type variable a dynamic error occurs. In
checked mode, if T or any of its superclasses is malbounded a dynamic error
occurs. Otherwise, if q is not defined or not accessible, a NoSuchMethodError
is thrown. If q has less than n positional parameters or more than n required
parameters, or if q lacks any of the keyword parameters {xn+1, . . . , xn+k} a
NoSuchMethodError is thrown"
The text was updated successfully, but these errors were encountered:
I agree that keyword parameters should have been named parameters. The phrase keyword parameter occurs only once in the spec, it has never been added nor removed from the spec (and it was present in the version of the spec that was initially added to the repository on Oct 8 2013), and it all makes sense iff we make that change. ;-)
In the paragraph below from page 66 of the dart language spec, I believe "keyword" should be changed to "named"
"If T is malformed or if T is a type variable a dynamic error occurs. In
checked mode, if T or any of its superclasses is malbounded a dynamic error
occurs. Otherwise, if q is not defined or not accessible, a NoSuchMethodError
is thrown. If q has less than n positional parameters or more than n required
parameters, or if q lacks any of the keyword parameters {xn+1, . . . , xn+k} a
NoSuchMethodError is thrown"
The text was updated successfully, but these errors were encountered: