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

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

Issue 11361059: Fix issue 6472 that exhibited a few crashing bugs in dart2js. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month 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) 2012, 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 class A {
6 Map a;
7 Comparator b;
8 // This code exhibited a bug in dart2js checked mode, where the type
9 // of [a] was inferred to be [Comparator] or null;
10 A() : b = null, a = null;
11 }
12
13 main() {
14 // We would create a typed selector for the call to foo, where the
15 // receiver type is a typedef. Some code in the dart2js backend were
16 // not dealing correctly with typedefs and lead the compiler to
17 // crash.
18 new A().a.foo();
19 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698