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

Side by Side Diff: src/accessors.cc

Issue 90003: Make it possible to add a user data object to each script compiled (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 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 | « src/accessors.h ('k') | src/api.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 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 245
246 246
247 const AccessorDescriptor Accessors::ScriptColumnOffset = { 247 const AccessorDescriptor Accessors::ScriptColumnOffset = {
248 ScriptGetColumnOffset, 248 ScriptGetColumnOffset,
249 IllegalSetter, 249 IllegalSetter,
250 0 250 0
251 }; 251 };
252 252
253 253
254 // 254 //
255 // Accessors::ScriptData
256 //
257
258
259 Object* Accessors::ScriptGetData(Object* object, void*) {
260 Object* script = JSValue::cast(object)->value();
261 return Script::cast(script)->data();
262 }
263
264
265 const AccessorDescriptor Accessors::ScriptData = {
266 ScriptGetData,
267 IllegalSetter,
268 0
269 };
270
271
272 //
255 // Accessors::ScriptType 273 // Accessors::ScriptType
256 // 274 //
257 275
258 276
259 Object* Accessors::ScriptGetType(Object* object, void*) { 277 Object* Accessors::ScriptGetType(Object* object, void*) {
260 Object* script = JSValue::cast(object)->value(); 278 Object* script = JSValue::cast(object)->value();
261 return Script::cast(script)->type(); 279 return Script::cast(script)->type();
262 } 280 }
263 281
264 282
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
539 } 557 }
540 558
541 559
542 const AccessorDescriptor Accessors::ObjectPrototype = { 560 const AccessorDescriptor Accessors::ObjectPrototype = {
543 ObjectGetPrototype, 561 ObjectGetPrototype,
544 ObjectSetPrototype, 562 ObjectSetPrototype,
545 0 563 0
546 }; 564 };
547 565
548 } } // namespace v8::internal 566 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/accessors.h ('k') | src/api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698