OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |