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

Side by Side Diff: src/accessors.h

Issue 181113008: Revert "Remove Script::SetData and the script_data parameter from Script::(Compile|New)." (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 9 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 | « include/v8.h ('k') | 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 // 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 V(FunctionName) \ 42 V(FunctionName) \
43 V(FunctionArguments) \ 43 V(FunctionArguments) \
44 V(FunctionCaller) \ 44 V(FunctionCaller) \
45 V(ArrayLength) \ 45 V(ArrayLength) \
46 V(StringLength) \ 46 V(StringLength) \
47 V(ScriptSource) \ 47 V(ScriptSource) \
48 V(ScriptName) \ 48 V(ScriptName) \
49 V(ScriptId) \ 49 V(ScriptId) \
50 V(ScriptLineOffset) \ 50 V(ScriptLineOffset) \
51 V(ScriptColumnOffset) \ 51 V(ScriptColumnOffset) \
52 V(ScriptData) \
52 V(ScriptType) \ 53 V(ScriptType) \
53 V(ScriptCompilationType) \ 54 V(ScriptCompilationType) \
54 V(ScriptLineEnds) \ 55 V(ScriptLineEnds) \
55 V(ScriptContextData) \ 56 V(ScriptContextData) \
56 V(ScriptEvalFromScript) \ 57 V(ScriptEvalFromScript) \
57 V(ScriptEvalFromScriptPosition) \ 58 V(ScriptEvalFromScriptPosition) \
58 V(ScriptEvalFromFunctionName) 59 V(ScriptEvalFromFunctionName)
59 60
60 // Accessors contains all predefined proxy accessors. 61 // Accessors contains all predefined proxy accessors.
61 62
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 static MaybeObject* StringGetLength(Isolate* isolate, Object* object, void*); 121 static MaybeObject* StringGetLength(Isolate* isolate, Object* object, void*);
121 static MaybeObject* ScriptGetName(Isolate* isolate, Object* object, void*); 122 static MaybeObject* ScriptGetName(Isolate* isolate, Object* object, void*);
122 static MaybeObject* ScriptGetId(Isolate* isolate, Object* object, void*); 123 static MaybeObject* ScriptGetId(Isolate* isolate, Object* object, void*);
123 static MaybeObject* ScriptGetSource(Isolate* isolate, Object* object, void*); 124 static MaybeObject* ScriptGetSource(Isolate* isolate, Object* object, void*);
124 static MaybeObject* ScriptGetLineOffset(Isolate* isolate, 125 static MaybeObject* ScriptGetLineOffset(Isolate* isolate,
125 Object* object, 126 Object* object,
126 void*); 127 void*);
127 static MaybeObject* ScriptGetColumnOffset(Isolate* isolate, 128 static MaybeObject* ScriptGetColumnOffset(Isolate* isolate,
128 Object* object, 129 Object* object,
129 void*); 130 void*);
131 static MaybeObject* ScriptGetData(Isolate* isolate, Object* object, void*);
130 static MaybeObject* ScriptGetType(Isolate* isolate, Object* object, void*); 132 static MaybeObject* ScriptGetType(Isolate* isolate, Object* object, void*);
131 static MaybeObject* ScriptGetCompilationType(Isolate* isolate, 133 static MaybeObject* ScriptGetCompilationType(Isolate* isolate,
132 Object* object, 134 Object* object,
133 void*); 135 void*);
134 static MaybeObject* ScriptGetLineEnds(Isolate* isolate, 136 static MaybeObject* ScriptGetLineEnds(Isolate* isolate,
135 Object* object, 137 Object* object,
136 void*); 138 void*);
137 static MaybeObject* ScriptGetContextData(Isolate* isolate, 139 static MaybeObject* ScriptGetContextData(Isolate* isolate,
138 Object* object, 140 Object* object,
139 void*); 141 void*);
(...skipping 16 matching lines...) Expand all
156 static Object* IllegalGetAccessor(Isolate* isolate, Object* object, void*); 158 static Object* IllegalGetAccessor(Isolate* isolate, Object* object, void*);
157 static MaybeObject* ReadOnlySetAccessor(Isolate* isolate, 159 static MaybeObject* ReadOnlySetAccessor(Isolate* isolate,
158 JSObject*, 160 JSObject*,
159 Object* value, 161 Object* value,
160 void*); 162 void*);
161 }; 163 };
162 164
163 } } // namespace v8::internal 165 } } // namespace v8::internal
164 166
165 #endif // V8_ACCESSORS_H_ 167 #endif // V8_ACCESSORS_H_
OLDNEW
« no previous file with comments | « include/v8.h ('k') | src/accessors.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698