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

Side by Side Diff: src/accessors.h

Issue 2410823002: [modules] Simplify installation of @@toStringTag on namespace objects. (Closed)
Patch Set: Created 4 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
« 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 "include/v8.h" 8 #include "include/v8.h"
9 #include "src/allocation.h" 9 #include "src/allocation.h"
10 #include "src/globals.h" 10 #include "src/globals.h"
(...skipping 12 matching lines...) Expand all
23 V(ArgumentsIterator) \ 23 V(ArgumentsIterator) \
24 V(ArrayLength) \ 24 V(ArrayLength) \
25 V(BoundFunctionLength) \ 25 V(BoundFunctionLength) \
26 V(BoundFunctionName) \ 26 V(BoundFunctionName) \
27 V(ErrorStack) \ 27 V(ErrorStack) \
28 V(FunctionArguments) \ 28 V(FunctionArguments) \
29 V(FunctionCaller) \ 29 V(FunctionCaller) \
30 V(FunctionName) \ 30 V(FunctionName) \
31 V(FunctionLength) \ 31 V(FunctionLength) \
32 V(FunctionPrototype) \ 32 V(FunctionPrototype) \
33 V(ModuleNamespaceToStringTag) \
34 V(ScriptColumnOffset) \ 33 V(ScriptColumnOffset) \
35 V(ScriptCompilationType) \ 34 V(ScriptCompilationType) \
36 V(ScriptContextData) \ 35 V(ScriptContextData) \
37 V(ScriptEvalFromScript) \ 36 V(ScriptEvalFromScript) \
38 V(ScriptEvalFromScriptPosition) \ 37 V(ScriptEvalFromScriptPosition) \
39 V(ScriptEvalFromFunctionName) \ 38 V(ScriptEvalFromFunctionName) \
40 V(ScriptId) \ 39 V(ScriptId) \
41 V(ScriptLineEnds) \ 40 V(ScriptLineEnds) \
42 V(ScriptLineOffset) \ 41 V(ScriptLineOffset) \
43 V(ScriptName) \ 42 V(ScriptName) \
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 Handle<Name> name, 105 Handle<Name> name,
107 AccessorNameGetterCallback getter, 106 AccessorNameGetterCallback getter,
108 AccessorNameSetterCallback setter, 107 AccessorNameSetterCallback setter,
109 PropertyAttributes attributes); 108 PropertyAttributes attributes);
110 }; 109 };
111 110
112 } // namespace internal 111 } // namespace internal
113 } // namespace v8 112 } // namespace v8
114 113
115 #endif // V8_ACCESSORS_H_ 114 #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