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

Side by Side Diff: tests/compiler/dart2js/message_kind_helper.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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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.test.message_kind_helper; 5 library dart2js.test.message_kind_helper;
6 6
7 import 'package:expect/expect.dart'; 7 import 'package:expect/expect.dart';
8 import 'dart:async'; 8 import 'dart:async';
9 9
10 import 'package:compiler/implementation/dart2jslib.dart' show 10 import 'package:compiler/src/dart2jslib.dart' show
11 Compiler, 11 Compiler,
12 MessageKind; 12 MessageKind;
13 13
14 import 'memory_compiler.dart'; 14 import 'memory_compiler.dart';
15 15
16 const String ESCAPE_REGEXP = r'[[\]{}()*+?.\\^$|]'; 16 const String ESCAPE_REGEXP = r'[[\]{}()*+?.\\^$|]';
17 17
18 /// Most examples generate a single diagnostic. 18 /// Most examples generate a single diagnostic.
19 /// Add an exception here if a single diagnostic cannot be produced. 19 /// Add an exception here if a single diagnostic cannot be produced.
20 /// However, consider that a single concise diagnostic is easier to understand, 20 /// However, consider that a single concise diagnostic is easier to understand,
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 Expect.isTrue(!pendingStuff || kindsWithPendingClasses.contains(kind)); 138 Expect.isTrue(!pendingStuff || kindsWithPendingClasses.contains(kind));
139 139
140 if (!pendingStuff && !compiler.compilerWasCancelled) { 140 if (!pendingStuff && !compiler.compilerWasCancelled) {
141 // If there is pending stuff, or the compiler was cancelled, we 141 // If there is pending stuff, or the compiler was cancelled, we
142 // shouldn't reuse the compiler. 142 // shouldn't reuse the compiler.
143 cachedCompiler = compiler; 143 cachedCompiler = compiler;
144 } 144 }
145 }); 145 });
146 }).then((_) => cachedCompiler); 146 }).then((_) => cachedCompiler);
147 } 147 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/memory_source_file_helper.dart ('k') | tests/compiler/dart2js/message_kind_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698