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

Side by Side Diff: tests/compiler/dart2js/js_model/model_test.dart

Issue 2970943002: Use index in J/KTypeVariable and fix remaining inequivalence (Closed)
Patch Set: Created 3 years, 5 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) 2017, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2017, 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:async_helper/async_helper.dart'; 6 import 'package:async_helper/async_helper.dart';
7 import 'package:compiler/src/kernel/kernel_backend_strategy.dart'; 7 import 'package:compiler/src/kernel/kernel_backend_strategy.dart';
8 import '../kernel/compile_from_dill_test_helper.dart'; 8 import '../kernel/compile_from_dill_test_helper.dart';
9 import '../serialization/helper.dart'; 9 import '../serialization/helper.dart';
10 10
(...skipping 22 matching lines...) Expand all
33 print( 33 print(
34 '--- running test code -------------------------------------------'); 34 '--- running test code -------------------------------------------');
35 print(test.sources.values.first); 35 print(test.sources.values.first);
36 print('----------------------------------------------------------------'); 36 print('----------------------------------------------------------------');
37 } 37 }
38 await runTest(test.entryPoint, test.sources, 38 await runTest(test.entryPoint, test.sources,
39 verbose: arguments.verbose, 39 verbose: arguments.verbose,
40 skipWarnings: skipWarnings, 40 skipWarnings: skipWarnings,
41 skipErrors: skipErrors, 41 skipErrors: skipErrors,
42 options: options, 42 options: options,
43 expectAstEquivalence: false, 43 expectAstEquivalence: true,
44 expectIdenticalOutput: false); 44 expectIdenticalOutput: false);
45 } 45 }
46 } 46 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698