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

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

Issue 2223133003: pkg/compiler: clean up imports (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 4 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) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 '../common.dart'; 5 import '../common.dart';
6 import '../common/names.dart' show Identifiers, Names, Selectors, Uris; 6 import '../common/names.dart' show Identifiers, Names, Selectors;
7 import '../compiler.dart' show Compiler; 7 import '../compiler.dart' show Compiler;
8 import '../elements/elements.dart'; 8 import '../elements/elements.dart';
9 import '../tree/tree.dart'; 9 import '../tree/tree.dart';
10 import '../types/types.dart'; 10 import '../types/types.dart';
11 import 'backend.dart'; 11 import 'backend.dart';
12 12
13 /** 13 /**
14 * Categorizes `noSuchMethod` implementations. 14 * Categorizes `noSuchMethod` implementations.
15 * 15 *
16 * If user code includes `noSuchMethod` implementations, type inference is 16 * If user code includes `noSuchMethod` implementations, type inference is
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 if (body.statements.nodes.head is ExpressionStatement) { 264 if (body.statements.nodes.head is ExpressionStatement) {
265 ExpressionStatement stmt = body.statements.nodes.head; 265 ExpressionStatement stmt = body.statements.nodes.head;
266 return stmt.expression is Throw; 266 return stmt.expression is Throw;
267 } 267 }
268 } 268 }
269 return false; 269 return false;
270 } 270 }
271 } 271 }
272 272
273 enum NsmCategory { DEFAULT, THROWING, NOT_APPLICABLE, OTHER, } 273 enum NsmCategory { DEFAULT, THROWING, NOT_APPLICABLE, OTHER, }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/js_backend/namer.dart ('k') | pkg/compiler/lib/src/js_backend/type_variable_handler.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698