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

Side by Side Diff: src/runtime/runtime-function.cc

Issue 1106713002: Revert of [es6] Map/Set size getter should have "get size" name (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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
« no previous file with comments | « no previous file | src/v8natives.js » ('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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/v8.h" 5 #include "src/v8.h"
6 6
7 #include "src/accessors.h" 7 #include "src/accessors.h"
8 #include "src/arguments.h" 8 #include "src/arguments.h"
9 #include "src/compiler.h" 9 #include "src/compiler.h"
10 #include "src/cpu-profiler.h" 10 #include "src/cpu-profiler.h"
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 if (name->IsSymbol()) { 75 if (name->IsSymbol()) {
76 Handle<Object> description(Handle<Symbol>::cast(name)->name(), 76 Handle<Object> description(Handle<Symbol>::cast(name)->name(),
77 name->GetIsolate()); 77 name->GetIsolate());
78 if (description->IsString()) { 78 if (description->IsString()) {
79 stringName = Handle<String>::cast(description); 79 stringName = Handle<String>::cast(description);
80 } 80 }
81 } else { 81 } else {
82 stringName = Handle<String>::cast(name); 82 stringName = Handle<String>::cast(name);
83 } 83 }
84 84
85 return String::Flatten(stringName); 85 return stringName;
86 } 86 }
87 87
88 88
89 RUNTIME_FUNCTION(Runtime_FunctionSetName) { 89 RUNTIME_FUNCTION(Runtime_FunctionSetName) {
90 HandleScope scope(isolate); 90 HandleScope scope(isolate);
91 DCHECK(args.length() == 2); 91 DCHECK(args.length() == 2);
92 92
93 CONVERT_ARG_HANDLE_CHECKED(JSFunction, f, 0); 93 CONVERT_ARG_HANDLE_CHECKED(JSFunction, f, 0);
94 CONVERT_ARG_HANDLE_CHECKED(Name, name, 1); 94 CONVERT_ARG_HANDLE_CHECKED(Name, name, 1);
95 95
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
642 642
643 643
644 RUNTIME_FUNCTION(Runtime_IsFunction) { 644 RUNTIME_FUNCTION(Runtime_IsFunction) {
645 SealHandleScope shs(isolate); 645 SealHandleScope shs(isolate);
646 DCHECK(args.length() == 1); 646 DCHECK(args.length() == 1);
647 CONVERT_ARG_CHECKED(Object, obj, 0); 647 CONVERT_ARG_CHECKED(Object, obj, 0);
648 return isolate->heap()->ToBoolean(obj->IsJSFunction()); 648 return isolate->heap()->ToBoolean(obj->IsJSFunction());
649 } 649 }
650 } 650 }
651 } // namespace v8::internal 651 } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | src/v8natives.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698