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

Side by Side Diff: src/factory.h

Issue 17064002: Refactor only: Rename JSGlobaPropertyCell to PropertyCell (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 6 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/bootstrapper.cc ('k') | src/factory.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 PretenureFlag pretenure = NOT_TENURED); 230 PretenureFlag pretenure = NOT_TENURED);
231 231
232 Handle<ExternalArray> NewExternalArray( 232 Handle<ExternalArray> NewExternalArray(
233 int length, 233 int length,
234 ExternalArrayType array_type, 234 ExternalArrayType array_type,
235 void* external_pointer, 235 void* external_pointer,
236 PretenureFlag pretenure = NOT_TENURED); 236 PretenureFlag pretenure = NOT_TENURED);
237 237
238 Handle<Cell> NewCell(Handle<Object> value); 238 Handle<Cell> NewCell(Handle<Object> value);
239 239
240 Handle<JSGlobalPropertyCell> NewJSGlobalPropertyCell( 240 Handle<PropertyCell> NewPropertyCell(Handle<Object> value);
241 Handle<Object> value);
242 241
243 Handle<Map> NewMap( 242 Handle<Map> NewMap(
244 InstanceType type, 243 InstanceType type,
245 int instance_size, 244 int instance_size,
246 ElementsKind elements_kind = TERMINAL_FAST_ELEMENTS_KIND); 245 ElementsKind elements_kind = TERMINAL_FAST_ELEMENTS_KIND);
247 246
248 Handle<JSObject> NewFunctionPrototype(Handle<JSFunction> function); 247 Handle<JSObject> NewFunctionPrototype(Handle<JSFunction> function);
249 248
250 Handle<Map> CopyWithPreallocatedFieldDescriptors(Handle<Map> map); 249 Handle<Map> CopyWithPreallocatedFieldDescriptors(Handle<Map> map);
251 250
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
556 } else { 555 } else {
557 return NewNumber(static_cast<double>(value), pretenure); 556 return NewNumber(static_cast<double>(value), pretenure);
558 } 557 }
559 } 558 }
560 559
561 560
562 561
563 } } // namespace v8::internal 562 } } // namespace v8::internal
564 563
565 #endif // V8_FACTORY_H_ 564 #endif // V8_FACTORY_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698