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

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

Issue 2668233002: Remove code supporting incremental compilation in dart2js (Closed)
Patch Set: Created 3 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) 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_emitter.lazy_emitter; 5 library dart2js.js_emitter.lazy_emitter;
6 6
7 import 'package:js_runtime/shared/embedded_names.dart' show JsBuiltin; 7 import 'package:js_runtime/shared/embedded_names.dart' show JsBuiltin;
8 8
9 import '../../common.dart'; 9 import '../../common.dart';
10 import '../../compiler.dart' show Compiler; 10 import '../../compiler.dart' show Compiler;
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 default: 185 default:
186 reporter.internalError( 186 reporter.internalError(
187 NO_LOCATION_SPANNABLE, "Unhandled Builtin: $builtin"); 187 NO_LOCATION_SPANNABLE, "Unhandled Builtin: $builtin");
188 return null; 188 return null;
189 } 189 }
190 } 190 }
191 191
192 @override 192 @override
193 // TODO(het): Generate this correctly 193 // TODO(het): Generate this correctly
194 int generatedSize(OutputUnit unit) => 0; 194 int generatedSize(OutputUnit unit) => 0;
195
196 @override
197 void invalidateCaches() {}
198 } 195 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698