-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Labels
area-core-librarySDK core library issues (core, async, ...); use area-vm or area-web for platform specific libraries.SDK core library issues (core, async, ...); use area-vm or area-web for platform specific libraries.
Description
This is from dart/corelib/src/implementation/future_implementation.dart:
FutureImpl.immediate(T value) : this() {
_setValue(value);
}
This is illegal according to the specification:
"Redirecting Constructors A generative constructor may be redirecting, in which case its only action is to invoke another generative constructor. A redi- recting constructor has no body; instead, it has a redirect clause that specifies which constructor the invocation is redirected to, and with what arguments."
Metadata
Metadata
Assignees
Labels
area-core-librarySDK core library issues (core, async, ...); use area-vm or area-web for platform specific libraries.SDK core library issues (core, async, ...); use area-vm or area-web for platform specific libraries.