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 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 | 308 |
309 // | 309 // |
310 // Accessors::ScriptGetLineEnds | 310 // Accessors::ScriptGetLineEnds |
311 // | 311 // |
312 | 312 |
313 | 313 |
314 Object* Accessors::ScriptGetLineEnds(Object* object, void*) { | 314 Object* Accessors::ScriptGetLineEnds(Object* object, void*) { |
315 HandleScope scope; | 315 HandleScope scope; |
316 Handle<Script> script(Script::cast(JSValue::cast(object)->value())); | 316 Handle<Script> script(Script::cast(JSValue::cast(object)->value())); |
317 InitScriptLineEnds(script); | 317 InitScriptLineEnds(script); |
318 return script->line_ends(); | 318 if (script->line_ends_js_array()->IsUndefined()) { |
| 319 Handle<FixedArray> line_ends_fixed_array( |
| 320 FixedArray::cast(script->line_ends_fixed_array())); |
| 321 Handle<FixedArray> copy = Factory::CopyFixedArray(line_ends_fixed_array); |
| 322 Handle<JSArray> js_array = Factory::NewJSArrayWithElements(copy); |
| 323 script->set_line_ends_js_array(*js_array); |
| 324 } |
| 325 return script->line_ends_js_array(); |
319 } | 326 } |
320 | 327 |
321 | 328 |
322 const AccessorDescriptor Accessors::ScriptLineEnds = { | 329 const AccessorDescriptor Accessors::ScriptLineEnds = { |
323 ScriptGetLineEnds, | 330 ScriptGetLineEnds, |
324 IllegalSetter, | 331 IllegalSetter, |
325 0 | 332 0 |
326 }; | 333 }; |
327 | 334 |
328 | 335 |
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
645 } | 652 } |
646 | 653 |
647 | 654 |
648 const AccessorDescriptor Accessors::ObjectPrototype = { | 655 const AccessorDescriptor Accessors::ObjectPrototype = { |
649 ObjectGetPrototype, | 656 ObjectGetPrototype, |
650 ObjectSetPrototype, | 657 ObjectSetPrototype, |
651 0 | 658 0 |
652 }; | 659 }; |
653 | 660 |
654 } } // namespace v8::internal | 661 } } // namespace v8::internal |
OLD | NEW |