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

Unified Diff: dart/tests/try/web/incremental_compilation_update_test.dart

Issue 755223002: Always enable RTI for incremental compilation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Merged with r41955. Created 6 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: dart/tests/try/web/incremental_compilation_update_test.dart
diff --git a/dart/tests/try/web/incremental_compilation_update_test.dart b/dart/tests/try/web/incremental_compilation_update_test.dart
index d9d0a110332e35140d13643d46cb17004774518d..518cfa235461ec942ad9a4c3f79624ea49bd1f9c 100644
--- a/dart/tests/try/web/incremental_compilation_update_test.dart
+++ b/dart/tests/try/web/incremental_compilation_update_test.dart
@@ -866,6 +866,8 @@ main() {
const <ProgramResult>[
const ProgramResult(
r"""
+import 'dart:collection';
Johnni Winther 2014/12/01 08:50:19 Import in both ProgramResult's? The only differenc
ahe 2014/12/01 10:15:02 Below I use the MockCompiler to serialize scope in
+
class C {
static m() {
print('v1');
@@ -873,13 +875,8 @@ class C {
}
main() {
- try {
- // TODO(ahe): Incremental compiler can't handle new noSuchMethod
- // situations, crashes when compiling a constructor which uses type
- // arguments.
- C.missing();
- } catch (e) {
- }
+ // TODO(ahe): The incremental compiler magter ikke static tear-off closures.
Johnni Winther 2014/12/01 08:50:19 Elaborate on what goes wrong.
ahe 2014/12/01 10:15:02 Since I've fixed it already, I'd rather not get in
+ new HashMap(equals: identical);
try {
C.m();
} catch (e) {

Powered by Google App Engine
This is Rietveld 408576698