Reviewers: Yang,
Description:
Fixed presubmit error.
Please review this at https://chromiumcodereview.appspot.com/9584011/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files:
M src/ast.cc
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:
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev