Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(513)

Side by Side Diff: pkg/compiler/lib/src/js_backend/custom_elements_analysis.dart

Issue 2647043002: Fix hints reported by analyzer. (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 import '../compiler.dart' show Compiler; 5 import '../compiler.dart' show Compiler;
6 import '../constants/values.dart'; 6 import '../constants/values.dart';
7 import '../elements/resolution_types.dart'; 7 import '../elements/resolution_types.dart';
8 import '../elements/elements.dart'; 8 import '../elements/elements.dart';
9 import '../enqueue.dart' show Enqueuer;
10 import '../universe/use.dart' show StaticUse; 9 import '../universe/use.dart' show StaticUse;
11 import '../universe/world_impact.dart' 10 import '../universe/world_impact.dart'
12 show WorldImpact, StagedWorldImpactBuilder; 11 show WorldImpact, StagedWorldImpactBuilder;
13 import 'backend.dart'; 12 import 'backend.dart';
14 13
15 /** 14 /**
16 * Support for Custom Elements. 15 * Support for Custom Elements.
17 * 16 *
18 * The support for custom elements the compiler builds a table that maps the 17 * The support for custom elements the compiler builds a table that maps the
19 * custom element class's [Type] to the interceptor for the class and the 18 * custom element class's [Type] to the interceptor for the class and the
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 result.add(member); 210 result.add(member);
212 } 211 }
213 } 212 }
214 } 213 }
215 214
216 classElement.forEachMember(selectGenerativeConstructors, 215 classElement.forEachMember(selectGenerativeConstructors,
217 includeBackendMembers: false, includeSuperAndInjectedMembers: false); 216 includeBackendMembers: false, includeSuperAndInjectedMembers: false);
218 return result; 217 return result;
219 } 218 }
220 } 219 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698