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

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

Issue 1278503004: Revert "Move dart2jslib parts into separate libraries." (Closed) Base URL: git@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
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.js_backend.patch_resolver; 5 library dart2js.js_backend.patch_resolver;
6 6
7 import '../dart2jslib.dart'; 7 import '../dart2jslib.dart';
8 import '../dart_types.dart'; 8 import '../dart_types.dart';
9 import '../elements/elements.dart'; 9 import '../elements/elements.dart';
10 import '../elements/modelx.dart'; 10 import '../elements/modelx.dart';
11 import '../messages.dart' show MessageKind;
12 import '../tree/tree.dart'; 11 import '../tree/tree.dart';
13 12
14 class PatchResolverTask extends CompilerTask { 13 class PatchResolverTask extends CompilerTask {
15 PatchResolverTask(Compiler compiler) : super(compiler); 14 PatchResolverTask(Compiler compiler) : super(compiler);
16 15
17 String get name => 'JavaScript patch resolver'; 16 String get name => 'JavaScript patch resolver';
18 17
19 FunctionElement resolveExternalFunction(FunctionElementX element) { 18 FunctionElement resolveExternalFunction(FunctionElementX element) {
20 if (element.isPatched) { 19 if (element.isPatched) {
21 FunctionElementX patch = element.patch; 20 FunctionElementX patch = element.patch;
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 'patchParameterCount': patchSignature.optionalParameterCount}); 145 'patchParameterCount': patchSignature.optionalParameterCount});
147 }); 146 });
148 } else { 147 } else {
149 checkMatchingPatchParameters(origin, 148 checkMatchingPatchParameters(origin,
150 originSignature.optionalParameters, 149 originSignature.optionalParameters,
151 patchSignature.optionalParameters); 150 patchSignature.optionalParameters);
152 } 151 }
153 } 152 }
154 153
155 } 154 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/js_backend/js_backend.dart ('k') | pkg/compiler/lib/src/js_emitter/full_emitter/emitter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698