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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 0 | 268 0 |
269 }; | 269 }; |
270 | 270 |
271 | 271 |
272 // | 272 // |
273 // Accessors::ScriptGetLineEnds | 273 // Accessors::ScriptGetLineEnds |
274 // | 274 // |
275 | 275 |
276 | 276 |
277 Object* Accessors::ScriptGetLineEnds(Object* object, void*) { | 277 Object* Accessors::ScriptGetLineEnds(Object* object, void*) { |
278 Object* script = JSValue::cast(object)->value(); | 278 HandleScope scope; |
279 Script::cast(script)->InitLineEnds(); | 279 Handle<Script> script(Script::cast(JSValue::cast(object)->value())); |
280 return Script::cast(script)->line_ends(); | 280 InitScriptLineEnds(script); |
| 281 return script->line_ends(); |
281 } | 282 } |
282 | 283 |
283 | 284 |
284 const AccessorDescriptor Accessors::ScriptLineEnds = { | 285 const AccessorDescriptor Accessors::ScriptLineEnds = { |
285 ScriptGetLineEnds, | 286 ScriptGetLineEnds, |
286 IllegalSetter, | 287 IllegalSetter, |
287 0 | 288 0 |
288 }; | 289 }; |
289 | 290 |
290 | 291 |
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
538 } | 539 } |
539 | 540 |
540 | 541 |
541 const AccessorDescriptor Accessors::ObjectPrototype = { | 542 const AccessorDescriptor Accessors::ObjectPrototype = { |
542 ObjectGetPrototype, | 543 ObjectGetPrototype, |
543 ObjectSetPrototype, | 544 ObjectSetPrototype, |
544 0 | 545 0 |
545 }; | 546 }; |
546 | 547 |
547 } } // namespace v8::internal | 548 } } // namespace v8::internal |
OLD | NEW |