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

Side by Side Diff: src/handles.h

Issue 50073005: Handlify concat string and substring. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 1 month 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/factory.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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 Handle<Object> ForceDeleteProperty(Handle<JSObject> object, Handle<Object> key); 245 Handle<Object> ForceDeleteProperty(Handle<JSObject> object, Handle<Object> key);
246 246
247 Handle<Object> HasProperty(Handle<JSReceiver> obj, Handle<Object> key); 247 Handle<Object> HasProperty(Handle<JSReceiver> obj, Handle<Object> key);
248 248
249 Handle<Object> GetProperty(Handle<JSReceiver> obj, const char* name); 249 Handle<Object> GetProperty(Handle<JSReceiver> obj, const char* name);
250 250
251 Handle<Object> GetProperty(Isolate* isolate, 251 Handle<Object> GetProperty(Isolate* isolate,
252 Handle<Object> obj, 252 Handle<Object> obj,
253 Handle<Object> key); 253 Handle<Object> key);
254 254
255 Handle<Object> LookupSingleCharacterStringFromCode(Isolate* isolate, 255 Handle<String> LookupSingleCharacterStringFromCode(Isolate* isolate,
256 uint32_t index); 256 uint32_t index);
257 257
258 Handle<FixedArray> AddKeysFromJSArray(Handle<FixedArray>, 258 Handle<FixedArray> AddKeysFromJSArray(Handle<FixedArray>,
259 Handle<JSArray> array); 259 Handle<JSArray> array);
260 260
261 // Get the JS object corresponding to the given script; create it 261 // Get the JS object corresponding to the given script; create it
262 // if none exists. 262 // if none exists.
263 Handle<JSValue> GetScriptWrapper(Handle<Script> script); 263 Handle<JSValue> GetScriptWrapper(Handle<Script> script);
264 264
265 // Script line number computations. Note that the line number is zero-based. 265 // Script line number computations. Note that the line number is zero-based.
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 private: 330 private:
331 Isolate* isolate_; 331 Isolate* isolate_;
332 Object** limit_; 332 Object** limit_;
333 int level_; 333 int level_;
334 #endif 334 #endif
335 }; 335 };
336 336
337 } } // namespace v8::internal 337 } } // namespace v8::internal
338 338
339 #endif // V8_HANDLES_H_ 339 #endif // V8_HANDLES_H_
OLDNEW
« no previous file with comments | « src/factory.cc ('k') | src/handles.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698