We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fffa88c commit ca03507Copy full SHA for ca03507
lib/src/model.dart
@@ -4882,7 +4882,6 @@ class TypeParameter extends ModelElement {
4882
4883
@override
4884
String get name {
4885
- var bound = _typeParameter.bound;
4886
return _typeParameter.bound != null
4887
? '${_typeParameter.name} extends ${boundType.nameWithGenerics}'
4888
: _typeParameter.name;
@@ -5011,7 +5010,6 @@ class PackageBuilder {
5011
5010
if (_context == null) {
5012
// TODO(jcollins-g): fix this so it actually obeys analyzer options files.
5013
var options = new AnalysisOptionsImpl();
5014
- options.enableAssertInitializer = true;
5015
options.enableSuperMixins = true;
5016
AnalysisEngine.instance.processRequiredPlugins();
5017
0 commit comments