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

Side by Side Diff: src/accessors.h

Issue 257423009: Convert function.length to API-style accessor. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | src/accessors.cc » ('j') | src/accessors.cc » ('J')
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 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 19 matching lines...) Expand all
30 30
31 #include "allocation.h" 31 #include "allocation.h"
32 #include "v8globals.h" 32 #include "v8globals.h"
33 33
34 namespace v8 { 34 namespace v8 {
35 namespace internal { 35 namespace internal {
36 36
37 // The list of accessor descriptors. This is a second-order macro 37 // The list of accessor descriptors. This is a second-order macro
38 // taking a macro to be applied to all accessor descriptor names. 38 // taking a macro to be applied to all accessor descriptor names.
39 #define ACCESSOR_DESCRIPTOR_LIST(V) \ 39 #define ACCESSOR_DESCRIPTOR_LIST(V) \
40 V(FunctionLength) \
41 V(FunctionName) \ 40 V(FunctionName) \
42 V(FunctionArguments) \ 41 V(FunctionArguments) \
43 V(FunctionCaller) \ 42 V(FunctionCaller) \
44 V(ArrayLength) 43 V(ArrayLength)
45 44
46 #define ACCESSOR_INFO_LIST(V) \ 45 #define ACCESSOR_INFO_LIST(V) \
46 V(FunctionLength) \
47 V(FunctionPrototype) \ 47 V(FunctionPrototype) \
48 V(ScriptColumnOffset) \ 48 V(ScriptColumnOffset) \
49 V(ScriptCompilationType) \ 49 V(ScriptCompilationType) \
50 V(ScriptContextData) \ 50 V(ScriptContextData) \
51 V(ScriptEvalFromScript) \ 51 V(ScriptEvalFromScript) \
52 V(ScriptEvalFromScriptPosition) \ 52 V(ScriptEvalFromScriptPosition) \
53 V(ScriptEvalFromFunctionName) \ 53 V(ScriptEvalFromFunctionName) \
54 V(ScriptId) \ 54 V(ScriptId) \
55 V(ScriptLineEnds) \ 55 V(ScriptLineEnds) \
56 V(ScriptLineOffset) \ 56 V(ScriptLineOffset) \
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 static Object* IllegalGetAccessor(Isolate* isolate, Object* object, void*); 147 static Object* IllegalGetAccessor(Isolate* isolate, Object* object, void*);
148 static Object* ReadOnlySetAccessor(Isolate* isolate, 148 static Object* ReadOnlySetAccessor(Isolate* isolate,
149 JSObject*, 149 JSObject*,
150 Object* value, 150 Object* value,
151 void*); 151 void*);
152 }; 152 };
153 153
154 } } // namespace v8::internal 154 } } // namespace v8::internal
155 155
156 #endif // V8_ACCESSORS_H_ 156 #endif // V8_ACCESSORS_H_
OLDNEW
« no previous file with comments | « no previous file | src/accessors.cc » ('j') | src/accessors.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698