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
{{ message }}
This repository was archived by the owner on Feb 22, 2018. It is now read-only.
We're seeing 1000s if issues due to missing types on Array literals. If an error occurred we know what they should have written. Go ahead and write it as a quick fix.
Example:
Iterable<Type> get _types {
if (_bindings ==null) return/* severe: StaticTypeError */ [];
...
}
should be rewritten asIterable<Type> get _types {
if (_bindings ==null) return<Type>[];
...
}
by the quickfix tool
The text was updated successfully, but these errors were encountered:
We're seeing 1000s if issues due to missing types on Array literals. If an error occurred we know what they should have written. Go ahead and write it as a quick fix.
Example:
by the quickfix tool
The text was updated successfully, but these errors were encountered: