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

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

Issue 11364212: Track the origin element of inlined arguments to super constructor. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
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
« no previous file with comments | « dart/tests/language/inline_super_part.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
(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 // Regression test for dart2js issue 6639.
6
7 library inline_super_test;
8
9 part 'inline_super_part.dart';
10
11 // Long comment to ensure source positions in the following code are
12 // larger than the part file. Best way to ensure that is to include
13 // the part as a comment:
14 //
15 // class Player extends LivingActor {
16 // Player (deathCallback) : super(null, deathCallback);
17 // }
18
19 class Percept {}
20
21 class Actor {
22 final percept;
23 Actor(this.percept);
24 }
25
26 class LivingActor extends Actor {
27 // The bug occurs when inlining the node [:new Percept():] into
28 // [Actor]'s constructor. When this inlining is being initiated
29 // from [Player], we must take care to ensure that we know that we
30 // are inlining from this location, and not [Player].
31 LivingActor () : super(new Percept());
32 }
33
34 main() {
35 Expect.isTrue(new Player().percept is Percept);
36 }
OLDNEW
« no previous file with comments | « dart/tests/language/inline_super_part.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698