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

Side by Side Diff: lib/src/codegen/reify_coercions.dart

Issue 1644823002: Remove library tags, they aren't needed (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 10 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 library dev_compiler.src.codegen.reify_coercions;
6
7 import 'package:analyzer/analyzer.dart' as analyzer; 5 import 'package:analyzer/analyzer.dart' as analyzer;
8 import 'package:analyzer/src/generated/ast.dart'; 6 import 'package:analyzer/src/generated/ast.dart';
9 import 'package:analyzer/src/generated/element.dart'; 7 import 'package:analyzer/src/generated/element.dart';
10 import 'package:analyzer/src/generated/type_system.dart' 8 import 'package:analyzer/src/generated/type_system.dart'
11 show StrongTypeSystemImpl; 9 show StrongTypeSystemImpl;
12 import 'package:logging/logging.dart' as logger; 10 import 'package:logging/logging.dart' as logger;
13 11
14 import '../info.dart'; 12 import '../info.dart';
15 13
16 import 'ast_builder.dart'; 14 import 'ast_builder.dart';
(...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after
455 var t = _mkNewTypeName(dType, id, args); 453 var t = _mkNewTypeName(dType, id, args);
456 return t; 454 return t;
457 } 455 }
458 456
459 TypeName _mkNewTypeName(DartType type, Identifier id, List<TypeName> args) { 457 TypeName _mkNewTypeName(DartType type, Identifier id, List<TypeName> args) {
460 var t = AstBuilder.typeName(id, args); 458 var t = AstBuilder.typeName(id, args);
461 t.type = type; 459 t.type = type;
462 return t; 460 return t;
463 } 461 }
464 } 462 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698