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

Unified Diff: runtime/vm/object.cc

Issue 23452055: Address comments of committed change https://codereview.chromium.org/24397002/ (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/object.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.cc
===================================================================
--- runtime/vm/object.cc (revision 27836)
+++ runtime/vm/object.cc (working copy)
@@ -4857,13 +4857,13 @@
const GrowableObjectArray& pieces =
GrowableObjectArray::Handle(GrowableObjectArray::New());
const TypeArguments& instantiator = TypeArguments::Handle();
- BuildSinatureParameters(false, kUserVisibleName, instantiator, pieces);
+ BuildSignatureParameters(false, kUserVisibleName, instantiator, pieces);
const Array& strings = Array::Handle(Array::MakeArray(pieces));
return String::ConcatAll(strings);
}
-void Function::BuildSinatureParameters(
+void Function::BuildSignatureParameters(
bool instantiate,
NameVisibility name_visibility,
const AbstractTypeArguments& instantiator,
@@ -4969,10 +4969,10 @@
}
}
pieces.Add(Symbols::LParen());
- BuildSinatureParameters(instantiate,
- name_visibility,
- instantiator,
- pieces);
+ BuildSignatureParameters(instantiate,
+ name_visibility,
+ instantiator,
+ pieces);
pieces.Add(Symbols::RParenArrow());
AbstractType& res_type = AbstractType::Handle(result_type());
if (instantiate && !res_type.IsInstantiated()) {
« no previous file with comments | « runtime/vm/object.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698