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

Side by Side Diff: src/handles.h

Issue 23280004: Handlify Accessors::FunctionSetPrototype method. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 4 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/handles.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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 315
316 // Sets the expected number of properties based on estimate from compiler. 316 // Sets the expected number of properties based on estimate from compiler.
317 void SetExpectedNofPropertiesFromEstimate(Handle<SharedFunctionInfo> shared, 317 void SetExpectedNofPropertiesFromEstimate(Handle<SharedFunctionInfo> shared,
318 int estimate); 318 int estimate);
319 319
320 320
321 Handle<JSGlobalProxy> ReinitializeJSGlobalProxy( 321 Handle<JSGlobalProxy> ReinitializeJSGlobalProxy(
322 Handle<JSFunction> constructor, 322 Handle<JSFunction> constructor,
323 Handle<JSGlobalProxy> global); 323 Handle<JSGlobalProxy> global);
324 324
325 Handle<Object> SetPrototype(Handle<JSFunction> function,
326 Handle<Object> prototype);
327
328 Handle<ObjectHashSet> ObjectHashSetAdd(Handle<ObjectHashSet> table, 325 Handle<ObjectHashSet> ObjectHashSetAdd(Handle<ObjectHashSet> table,
329 Handle<Object> key); 326 Handle<Object> key);
330 327
331 Handle<ObjectHashSet> ObjectHashSetRemove(Handle<ObjectHashSet> table, 328 Handle<ObjectHashSet> ObjectHashSetRemove(Handle<ObjectHashSet> table,
332 Handle<Object> key); 329 Handle<Object> key);
333 330
334 Handle<ObjectHashTable> PutIntoObjectHashTable(Handle<ObjectHashTable> table, 331 Handle<ObjectHashTable> PutIntoObjectHashTable(Handle<ObjectHashTable> table,
335 Handle<Object> key, 332 Handle<Object> key,
336 Handle<Object> value); 333 Handle<Object> value);
337 334
(...skipping 11 matching lines...) Expand all
349 private: 346 private:
350 Isolate* isolate_; 347 Isolate* isolate_;
351 Object** limit_; 348 Object** limit_;
352 int level_; 349 int level_;
353 #endif 350 #endif
354 }; 351 };
355 352
356 } } // namespace v8::internal 353 } } // namespace v8::internal
357 354
358 #endif // V8_HANDLES_H_ 355 #endif // V8_HANDLES_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/handles.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698