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

Unified Diff: src/ast.cc

Issue 9584011: Fixed presubmit error. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 10 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ast.cc
diff --git a/src/ast.cc b/src/ast.cc
index d0aa0f0ab42fbd75c6675687b3cb3534ba6f7cae..65afd9a7b39d0bc0dabb61c57806f53d4e828f8e 100644
--- a/src/ast.cc
+++ b/src/ast.cc
@@ -524,7 +524,8 @@ bool Call::ComputeTarget(Handle<Map> type, Handle<String> name) {
switch (lookup.type()) {
case CONSTANT_FUNCTION:
// We surely know the target for a constant function.
- target_ = Handle<JSFunction>(lookup.GetConstantFunctionFromMap(*type));
+ target_ =
+ Handle<JSFunction>(lookup.GetConstantFunctionFromMap(*type));
return true;
case NORMAL:
case FIELD:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698