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

Side by Side Diff: src/accessors.cc

Issue 43020: Move InitLineEnds and GetLineNumber to handles.cc to avoid... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 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 | « no previous file | src/compiler.cc » ('j') | src/handles.cc » ('J')
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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « no previous file | src/compiler.cc » ('j') | src/handles.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698