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

Side by Side Diff: src/accessors.h

Issue 653593002: Catch exceptions thrown when enqueuing change records. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: addressed comment Created 6 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | src/accessors.cc » ('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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 #ifndef V8_ACCESSORS_H_ 5 #ifndef V8_ACCESSORS_H_
6 #define V8_ACCESSORS_H_ 6 #define V8_ACCESSORS_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/globals.h" 9 #include "src/globals.h"
10 10
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 enum DescriptorId { 59 enum DescriptorId {
60 #define ACCESSOR_INFO_DECLARATION(name) \ 60 #define ACCESSOR_INFO_DECLARATION(name) \
61 k##name##Getter, \ 61 k##name##Getter, \
62 k##name##Setter, 62 k##name##Setter,
63 ACCESSOR_INFO_LIST(ACCESSOR_INFO_DECLARATION) 63 ACCESSOR_INFO_LIST(ACCESSOR_INFO_DECLARATION)
64 #undef ACCESSOR_INFO_DECLARATION 64 #undef ACCESSOR_INFO_DECLARATION
65 descriptorCount 65 descriptorCount
66 }; 66 };
67 67
68 // Accessor functions called directly from the runtime system. 68 // Accessor functions called directly from the runtime system.
69 static Handle<Object> FunctionSetPrototype(Handle<JSFunction> object, 69 MUST_USE_RESULT static MaybeHandle<Object> FunctionSetPrototype(
70 Handle<Object> value); 70 Handle<JSFunction> object, Handle<Object> value);
71 static Handle<Object> FunctionGetArguments(Handle<JSFunction> object); 71 static Handle<Object> FunctionGetArguments(Handle<JSFunction> object);
72 72
73 // Accessor infos. 73 // Accessor infos.
74 static Handle<AccessorInfo> MakeModuleExport( 74 static Handle<AccessorInfo> MakeModuleExport(
75 Handle<String> name, int index, PropertyAttributes attributes); 75 Handle<String> name, int index, PropertyAttributes attributes);
76 76
77 // Returns true for properties that are accessors to object fields. 77 // Returns true for properties that are accessors to object fields.
78 // If true, *object_offset contains offset of object field. 78 // If true, *object_offset contains offset of object field.
79 template <class T> 79 template <class T>
80 static bool IsJSObjectFieldAccessor(typename T::TypeHandle type, 80 static bool IsJSObjectFieldAccessor(typename T::TypeHandle type,
(...skipping 13 matching lines...) Expand all
94 94
95 95
96 private: 96 private:
97 // Helper functions. 97 // Helper functions.
98 static Handle<Object> FlattenNumber(Isolate* isolate, Handle<Object> value); 98 static Handle<Object> FlattenNumber(Isolate* isolate, Handle<Object> value);
99 }; 99 };
100 100
101 } } // namespace v8::internal 101 } } // namespace v8::internal
102 102
103 #endif // V8_ACCESSORS_H_ 103 #endif // V8_ACCESSORS_H_
OLDNEW
« no previous file with comments | « no previous file | src/accessors.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698