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

Side by Side Diff: pkg/compiler/lib/src/common/registry.dart

Issue 1280343002: Copy files for splitting src/compiler.dart into several libraries (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 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
« no previous file with comments | « pkg/compiler/lib/src/common/codegen.dart ('k') | pkg/compiler/lib/src/common/resolution.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 part of dart2js; 5 part of dart2js;
6 6
7 /** 7 /**
8 * If true, print a warning for each method that was resolved, but not 8 * If true, print a warning for each method that was resolved, but not
9 * compiled. 9 * compiled.
10 */ 10 */
(...skipping 2501 matching lines...) Expand 10 before | Expand all | Expand 10 after
2512 InterfaceType streamType([DartType elementType]) { 2512 InterfaceType streamType([DartType elementType]) {
2513 InterfaceType type = streamClass.computeType(compiler); 2513 InterfaceType type = streamClass.computeType(compiler);
2514 if (elementType == null) { 2514 if (elementType == null) {
2515 return streamClass.rawType; 2515 return streamClass.rawType;
2516 } 2516 }
2517 return type.createInstantiation([elementType]); 2517 return type.createInstantiation([elementType]);
2518 } 2518 }
2519 } 2519 }
2520 2520
2521 typedef void InternalErrorFunction(Spannable location, String message); 2521 typedef void InternalErrorFunction(Spannable location, String message);
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/common/codegen.dart ('k') | pkg/compiler/lib/src/common/resolution.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698