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

Side by Side Diff: src/handles.h

Issue 13626002: ES6 symbols: extend V8 API to support symbols (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Added TODO Created 7 years, 8 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/api.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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 Handle<Object> key, 216 Handle<Object> key,
217 Handle<Object> value, 217 Handle<Object> value,
218 PropertyAttributes attributes, 218 PropertyAttributes attributes,
219 StrictModeFlag strict_mode); 219 StrictModeFlag strict_mode);
220 220
221 Handle<Object> ForceSetProperty(Handle<JSObject> object, 221 Handle<Object> ForceSetProperty(Handle<JSObject> object,
222 Handle<Object> key, 222 Handle<Object> key,
223 Handle<Object> value, 223 Handle<Object> value,
224 PropertyAttributes attributes); 224 PropertyAttributes attributes);
225 225
226 Handle<Object> ForceDeleteProperty(Handle<JSObject> object, 226 Handle<Object> DeleteProperty(Handle<JSObject> object, Handle<Object> key);
227 Handle<Object> key);
228 227
229 Handle<Object> GetProperty(Handle<JSReceiver> obj, 228 Handle<Object> ForceDeleteProperty(Handle<JSObject> object, Handle<Object> key);
230 const char* name); 229
230 Handle<Object> HasProperty(Handle<JSReceiver> obj, Handle<Object> key);
231
232 Handle<Object> GetProperty(Handle<JSReceiver> obj, const char* name);
231 233
232 Handle<Object> GetProperty(Isolate* isolate, 234 Handle<Object> GetProperty(Isolate* isolate,
233 Handle<Object> obj, 235 Handle<Object> obj,
234 Handle<Object> key); 236 Handle<Object> key);
235 237
236 Handle<Object> SetPrototype(Handle<JSObject> obj, Handle<Object> value); 238 Handle<Object> SetPrototype(Handle<JSObject> obj, Handle<Object> value);
237 239
238 Handle<Object> LookupSingleCharacterStringFromCode(Isolate* isolate, 240 Handle<Object> LookupSingleCharacterStringFromCode(Isolate* isolate,
239 uint32_t index); 241 uint32_t index);
240 242
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
346 inline ~HandleDereferenceGuard(); 348 inline ~HandleDereferenceGuard();
347 private: 349 private:
348 Isolate* isolate_; 350 Isolate* isolate_;
349 bool old_state_; 351 bool old_state_;
350 #endif 352 #endif
351 }; 353 };
352 354
353 } } // namespace v8::internal 355 } } // namespace v8::internal
354 356
355 #endif // V8_HANDLES_H_ 357 #endif // V8_HANDLES_H_
OLDNEW
« no previous file with comments | « src/api.cc ('k') | src/handles.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698