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

Side by Side Diff: pkg/front_end/testcases/call.dart

Issue 3006963002: Add missing copyright on test cases. (Closed)
Patch Set: Created 3 years, 3 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 | « pkg/front_end/testcases/bad_store.dart ('k') | pkg/front_end/testcases/closure.dart » ('j') | 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) 2017, 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
1 class Callable { 5 class Callable {
2 call(x) { 6 call(x) {
3 return "string"; 7 return "string";
4 } 8 }
5 } 9 }
6 10
7 class CallableGetter { 11 class CallableGetter {
8 get call => new Callable(); 12 get call => new Callable();
9 } 13 }
10 14
(...skipping 24 matching lines...) Expand all
35 var nothing5 = callable(); 39 var nothing5 = callable();
36 var nothing6 = callable.call(); 40 var nothing6 = callable.call();
37 var nothing7 = callable.call.call(); 41 var nothing7 = callable.call.call();
38 var nothing8 = callable.call.call.call(); 42 var nothing8 = callable.call.call.call();
39 43
40 var nothing9 = callableGetter(); 44 var nothing9 = callableGetter();
41 var nothing10 = callableGetter.call(); 45 var nothing10 = callableGetter.call();
42 var nothing11 = callableGetter.call.call(); 46 var nothing11 = callableGetter.call.call();
43 var nothing12 = callableGetter.call.call.call(); 47 var nothing12 = callableGetter.call.call.call();
44 } 48 }
OLDNEW
« no previous file with comments | « pkg/front_end/testcases/bad_store.dart ('k') | pkg/front_end/testcases/closure.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698