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

Side by Side Diff: tests/compiler/dart2js/deferred_emit_type_checks_test.dart

Issue 694353007: Move dart2js from sdk/lib/_internal/compiler to pkg/compiler (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
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 // Test that the additional runtime type support is output to the right 5 // Test that the additional runtime type support is output to the right
6 // Files when using deferred loading. 6 // Files when using deferred loading.
7 7
8 import 'package:expect/expect.dart'; 8 import 'package:expect/expect.dart';
9 import "package:async_helper/async_helper.dart"; 9 import "package:async_helper/async_helper.dart";
10 import 'memory_source_file_helper.dart'; 10 import 'memory_source_file_helper.dart';
11 import "dart:async"; 11 import "dart:async";
12 12
13 import 'package:compiler/implementation/dart2jslib.dart' 13 import 'package:compiler/src/dart2jslib.dart'
14 as dart2js; 14 as dart2js;
15 15
16 class MemoryOutputSink<T> extends EventSink<T> { 16 class MemoryOutputSink<T> extends EventSink<T> {
17 List<T> mem = new List<T>(); 17 List<T> mem = new List<T>();
18 void add(T event) { 18 void add(T event) {
19 mem.add(event); 19 mem.add(event);
20 } 20 }
21 void addError(T event, [StackTrace stackTrace]) {} 21 void addError(T event, [StackTrace stackTrace]) {}
22 void close() {} 22 void close() {}
23 } 23 }
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 } 72 }
73 """, "lib.dart": """ 73 """, "lib.dart": """
74 class A<T> {} 74 class A<T> {}
75 75
76 A<A> instance = new A<A>(); 76 A<A> instance = new A<A>();
77 77
78 bool f (Object o) { 78 bool f (Object o) {
79 return o is A<A>; 79 return o is A<A>;
80 } 80 }
81 """,}; 81 """,};
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698