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

Side by Side Diff: tests/compiler/dart2js/deferred_follow_constant_dependencies_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 constants depended on by other constants are correctly deferred. 5 // Test that constants depended on by other constants are correctly deferred.
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'package:async_helper/async_helper.dart'; 8 import 'package:async_helper/async_helper.dart';
9 import 'package:compiler/implementation/constants/values.dart'; 9 import 'package:compiler/src/constants/values.dart';
10 import 'package:expect/expect.dart'; 10 import 'package:expect/expect.dart';
11 import 'memory_source_file_helper.dart'; 11 import 'memory_source_file_helper.dart';
12 12
13 13
14 class FakeOutputStream<T> extends EventSink<T> { 14 class FakeOutputStream<T> extends EventSink<T> {
15 void add(T event) {} 15 void add(T event) {}
16 void addError(T event, [StackTrace stackTrace]) {} 16 void addError(T event, [StackTrace stackTrace]) {}
17 void close() {} 17 void close() {}
18 } 18 }
19 19
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 print(lib.L); 75 print(lib.L);
76 } 76 }
77 """, "lib.dart": """ 77 """, "lib.dart": """
78 class C { 78 class C {
79 final a; 79 final a;
80 const C(this.a); 80 const C(this.a);
81 } 81 }
82 82
83 const L = const {"cA": const C(const {"cB": "cC"})}; 83 const L = const {"cA": const C(const {"cB": "cC"})};
84 """,}; 84 """,};
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698