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

Side by Side Diff: sdk/lib/core/function.dart

Issue 11312237: Dynamic -> dynamic. (Closed) Base URL: https://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
« no previous file with comments | « sdk/lib/core/errors.dart ('k') | sdk/lib/core/invocation_mirror.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) 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 // Dart core library. 5 // Dart core library.
6 6
7 /** 7 /**
8 * Super-type of all function types. 8 * Super-type of all function types.
9 * 9 *
10 * A function value, or an instance of a class with a "call" method, is a 10 * A function value, or an instance of a class with a "call" method, is a
(...skipping 11 matching lines...) Expand all
22 * if it expects different parameters. 22 * if it expects different parameters.
23 * 23 *
24 * Example: [: Function.apply(foo, [1,2,3], {"f": 4, "g": 5}) :] gives 24 * Example: [: Function.apply(foo, [1,2,3], {"f": 4, "g": 5}) :] gives
25 * exactly the same result as [: foo(1, 2, 3, f: 4, g: 5) :]. 25 * exactly the same result as [: foo(1, 2, 3, f: 4, g: 5) :].
26 * 26 *
27 * If [positionalArguments] is null, it's considered an empty list. 27 * If [positionalArguments] is null, it's considered an empty list.
28 * If [namedArguments] is omitted or null, it is considered an empty map. 28 * If [namedArguments] is omitted or null, it is considered an empty map.
29 */ 29 */
30 external static apply(Function function, 30 external static apply(Function function,
31 List positionalArguments, 31 List positionalArguments,
32 [Map<String,Dynamic> namedArguments]); 32 [Map<String,dynamic> namedArguments]);
33 } 33 }
OLDNEW
« no previous file with comments | « sdk/lib/core/errors.dart ('k') | sdk/lib/core/invocation_mirror.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698