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

Side by Side Diff: dart/runtime/lib/function_patch.dart

Issue 14173005: Update dart:mirrors to use Symbol. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Also use _symbol_dev.Symbol.getName in dart2js Created 7 years, 8 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
« no previous file with comments | « dart/runtime/lib/core_patch.dart ('k') | dart/runtime/lib/lib_sources.gypi » ('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) 2012, the Dart project authors. Please see the AUTHORS file 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 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 patch class Function { 5 patch class Function {
6 static _apply(List arguments, List names) 6 static _apply(List arguments, List names)
7 native "Function_apply"; 7 native "Function_apply";
8 8
9 /* patch */ static apply(Function function, 9 /* patch */ static apply(Function function,
10 List positionalArguments, 10 List positionalArguments,
11 [Map<Symbol, dynamic> namedArguments]) { 11 [Map<Symbol, dynamic> namedArguments]) {
12 int numPositionalArguments = 1 + // Function is first implicit argument. 12 int numPositionalArguments = 1 + // Function is first implicit argument.
13 (positionalArguments != null ? positionalArguments.length : 0); 13 (positionalArguments != null ? positionalArguments.length : 0);
14 int numNamedArguments = namedArguments != null ? namedArguments.length : 0; 14 int numNamedArguments = namedArguments != null ? namedArguments.length : 0;
15 int numArguments = numPositionalArguments + numNamedArguments; 15 int numArguments = numPositionalArguments + numNamedArguments;
16 List arguments = new List(numArguments); 16 List arguments = new List(numArguments);
17 arguments[0] = function; 17 arguments[0] = function;
18 arguments.setRange(1, numPositionalArguments, positionalArguments); 18 arguments.setRange(1, numPositionalArguments, positionalArguments);
19 List names = new List(numNamedArguments); 19 List names = new List(numNamedArguments);
20 int argumentIndex = numPositionalArguments; 20 int argumentIndex = numPositionalArguments;
21 int nameIndex = 0; 21 int nameIndex = 0;
22 if (numNamedArguments > 0) { 22 if (numNamedArguments > 0) {
23 namedArguments.forEach((name, value) { 23 namedArguments.forEach((name, value) {
24 arguments[argumentIndex++] = value; 24 arguments[argumentIndex++] = value;
25 names[nameIndex++] = name._name; 25 names[nameIndex++] = _symbol_dev.Symbol.getName(name);
26 }); 26 });
27 } 27 }
28 return _apply(arguments, names); 28 return _apply(arguments, names);
29 } 29 }
30 } 30 }
OLDNEW
« no previous file with comments | « dart/runtime/lib/core_patch.dart ('k') | dart/runtime/lib/lib_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698