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

Side by Side Diff: tests/language/inference_captured_variable2_test.dart

Issue 22947008: Refine the type of a local after it has been used as the receiver of a call. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 4 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
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 // Ensure that dart2js's receiver specialization optimization works
6 // with captured variables.
7
8 import "package:expect/expect.dart";
9
10 var list = [new Object(), 31];
11
12 main() {
13 Expect.throws(() => foo()() + 42, (e) => e is NoSuchMethodError);
14 }
15
16 foo() {
17 var a = list[0];
18 var closure = (() => a - 42);
19 return () => a + 54;
20 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/simple_inferrer_test.dart ('k') | tests/language/inference_captured_variable_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698