| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |