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

Side by Side Diff: pkg/compiler/lib/src/js_emitter/model.dart

Issue 1762723002: Cleanup 1: split parts into their own libraries, remove unused imports (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 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) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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.new_js_emitter.model; 5 library dart2js.new_js_emitter.model;
6 6
7 import '../common.dart';
8 import '../constants/values.dart' show 7 import '../constants/values.dart' show
9 ConstantValue; 8 ConstantValue;
10 import '../deferred_load.dart' show 9 import '../deferred_load.dart' show
11 OutputUnit; 10 OutputUnit;
12 import '../elements/elements.dart' show 11 import '../elements/elements.dart' show
13 Element; 12 Element;
14 import '../js/js.dart' as js show 13 import '../js/js.dart' as js show
15 Expression, 14 Expression,
16 Literal, 15 Literal,
17 Name, 16 Name,
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after
530 functionType: functionType); 529 functionType: functionType);
531 530
532 bool get isStatic => true; 531 bool get isStatic => true;
533 } 532 }
534 533
535 class StaticStubMethod extends StubMethod implements StaticMethod { 534 class StaticStubMethod extends StubMethod implements StaticMethod {
536 Holder holder; 535 Holder holder;
537 StaticStubMethod(js.Name name, this.holder, js.Expression code) 536 StaticStubMethod(js.Name name, this.holder, js.Expression code)
538 : super(name, code); 537 : super(name, code);
539 } 538 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698