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

Side by Side Diff: pkg/compiler/lib/src/enqueue.dart

Issue 2944843002: All strong mode cleaning of dart2js. (Closed)
Patch Set: More issues discovered during testing. Created 3 years, 6 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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 library dart2js.enqueue; 5 library dart2js.enqueue;
6 6
7 import 'dart:collection' show Queue; 7 import 'dart:collection' show Queue;
8 8
9 import 'common/tasks.dart' show CompilerTask; 9 import 'common/tasks.dart' show CompilerTask;
10 import 'common/work.dart' show WorkItem; 10 import 'common/work.dart' show WorkItem;
(...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after
595 595
596 class DeferredAction { 596 class DeferredAction {
597 final Entity element; 597 final Entity element;
598 final DeferredActionFunction action; 598 final DeferredActionFunction action;
599 599
600 DeferredAction(this.element, this.action); 600 DeferredAction(this.element, this.action);
601 } 601 }
602 602
603 /// Interface for creating work items for enqueued member entities. 603 /// Interface for creating work items for enqueued member entities.
604 abstract class WorkItemBuilder { 604 abstract class WorkItemBuilder {
605 WorkItem createWorkItem(MemberEntity entity); 605 WorkItem createWorkItem(covariant MemberEntity entity);
606 } 606 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/elements/visitor.dart ('k') | pkg/compiler/lib/src/helpers/expensive_map.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698