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

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

Issue 2936233003: Remove Compiler.mainApp and Compiler.mainFunction (Closed)
Patch Set: Created 3 years, 6 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
« no previous file with comments | « tests/compiler/dart2js/use_checks_test.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 // Test that global analysis in dart2js propagates positive integers. 5 // Test that global analysis in dart2js propagates positive integers.
6 6
7 import 'package:expect/expect.dart'; 7 import 'package:expect/expect.dart';
8 import "package:async_helper/async_helper.dart"; 8 import "package:async_helper/async_helper.dart";
9 import 'memory_compiler.dart'; 9 import 'memory_compiler.dart';
10 10
11 const MEMORY_SOURCE_FILES = const { 11 const MEMORY_SOURCE_FILES = const {
12 'main.dart': ''' 12 'main.dart': '''
13 13
14 var a = [42]; 14 var a = [42];
15 15
16 main() { 16 main() {
17 var value = a[0]; 17 var value = a[0];
18 if (value < 42) { 18 if (value < 42) {
19 return new List(42)[value]; 19 return new List(42)[value];
20 } 20 }
21 } 21 }
22 ''', 22 ''',
23 }; 23 };
24 24
25 main() { 25 main() {
26 asyncTest(() async { 26 asyncTest(() async {
27 var result = await runCompiler(memorySourceFiles: MEMORY_SOURCE_FILES); 27 var result = await runCompiler(memorySourceFiles: MEMORY_SOURCE_FILES);
28 var compiler = result.compiler; 28 var compiler = result.compiler;
29 var element = compiler.mainFunction; 29 var element = compiler.frontendStrategy.elementEnvironment.mainFunction;
30 var code = compiler.backend.getGeneratedCode(element); 30 var code = compiler.backend.getGeneratedCode(element);
31 Expect.isFalse(code.contains('ioore')); 31 Expect.isFalse(code.contains('ioore'));
32 }); 32 });
33 } 33 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/use_checks_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698