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

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

Issue 11817013: Do not apply optimizations based on an element if that element cannot be resolved. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 11 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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 'compiler_helper.dart'; 5 import 'compiler_helper.dart';
6 6
7 const String TEST_ONE = r""" 7 const String TEST_ONE = r"""
8 foo(String a) { 8 foo(String a) {
9 // Make sure the string class is registered. 9 // Make sure the string class is registered.
10 var c = 'foo'; 10 var c = 'foo';
(...skipping 28 matching lines...) Expand all
39 String generated = compile(TEST_ONE, entry: 'foo'); 39 String generated = compile(TEST_ONE, entry: 'foo');
40 Expect.isTrue(generated.contains("a.length")); 40 Expect.isTrue(generated.contains("a.length"));
41 41
42 generated = compile(TEST_TWO, entry: 'foo'); 42 generated = compile(TEST_TWO, entry: 'foo');
43 Expect.isTrue(generated.contains("return 3;")); 43 Expect.isTrue(generated.contains("return 3;"));
44 44
45 generated = compile(TEST_THREE, entry: 'foo'); 45 generated = compile(TEST_THREE, entry: 'foo');
46 Expect.isTrue(generated.contains("return 3;")); 46 Expect.isTrue(generated.contains("return 3;"));
47 47
48 generated = compile(TEST_FOUR, entry: 'foo'); 48 generated = compile(TEST_FOUR, entry: 'foo');
49 // TODO(6829): Re-enable this test. 49 Expect.isTrue(generated.contains("push(2);"));
50 // Expect.isTrue(generated.contains("push(2);"));
51 } 50 }
OLDNEW
« no previous file with comments | « sdk/lib/_internal/compiler/implementation/js_backend/backend.dart ('k') | tests/compiler/dart2js/compiler_helper.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698