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

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

Issue 2809203003: Remove Compiler/JavaScriptBackend from metadata_collector (Closed)
Patch Set: Created 3 years, 8 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 import 'dart:async'; 5 import 'dart:async';
6 import 'package:expect/expect.dart'; 6 import 'package:expect/expect.dart';
7 import 'package:async_helper/async_helper.dart'; 7 import 'package:async_helper/async_helper.dart';
8 import 'mock_compiler.dart'; 8 import 'mock_compiler.dart';
9 import 'package:compiler/src/js/js.dart' as jsAst; 9 import 'package:compiler/src/js/js.dart' as jsAst;
10 import 'package:compiler/src/js/js.dart' show js; 10 import 'package:compiler/src/js/js.dart' show js;
11 11
12 Future testStatement(String statement, arguments, String expect) { 12 Future testStatement(String statement, arguments, String expect) {
13 jsAst.Node node = js.statement(statement, arguments); 13 jsAst.Node node = js.statement(statement, arguments);
14 return MockCompiler.create((MockCompiler compiler) { 14 return MockCompiler.create((MockCompiler compiler) {
15 String jsText = 15 String jsText = jsAst.prettyPrint(node, compiler.options,
16 jsAst.prettyPrint(node, compiler, allowVariableMinification: false); 16 allowVariableMinification: false);
17 17
18 Expect.stringEquals(expect.trim(), jsText.trim()); 18 Expect.stringEquals(expect.trim(), jsText.trim());
19 }); 19 });
20 } 20 }
21 21
22 Future testError(String statement, arguments, [String expect = ""]) { 22 Future testError(String statement, arguments, [String expect = ""]) {
23 return new Future.sync(() { 23 return new Future.sync(() {
24 bool doCheck(exception) { 24 bool doCheck(exception) {
25 String message = '$exception'; 25 String message = '$exception';
26 Expect.isTrue(message.contains(expect), '"$message" contains "$expect"'); 26 Expect.isTrue(message.contains(expect), '"$message" contains "$expect"');
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after
514 [], 514 [],
515 """ 515 """
516 if (a) { 516 if (a) {
517 while (true) 517 while (true)
518 if (b) 518 if (b)
519 foo1(); 519 foo1();
520 } else 520 } else
521 foo2();"""), 521 foo2();"""),
522 ])); 522 ]));
523 } 523 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698