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

Side by Side Diff: src/runtime.h

Issue 555149: Added Object.defineProperty + needed internal functionality:... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 10 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/messages.js ('k') | src/runtime.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 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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 \ 208 \
209 /* Globals */ \ 209 /* Globals */ \
210 F(CompileString, 2, 1) \ 210 F(CompileString, 2, 1) \
211 F(GlobalPrint, 1, 1) \ 211 F(GlobalPrint, 1, 1) \
212 \ 212 \
213 /* Eval */ \ 213 /* Eval */ \
214 F(GlobalReceiver, 1, 1) \ 214 F(GlobalReceiver, 1, 1) \
215 F(ResolvePossiblyDirectEval, 3, 2) \ 215 F(ResolvePossiblyDirectEval, 3, 2) \
216 \ 216 \
217 F(SetProperty, -1 /* 3 or 4 */, 1) \ 217 F(SetProperty, -1 /* 3 or 4 */, 1) \
218 F(DefineOrRedefineDataProperty, 4, 1) \
219 F(DefineOrRedefineAccessorProperty, 5, 1) \
218 F(IgnoreAttributesAndSetProperty, -1 /* 3 or 4 */, 1) \ 220 F(IgnoreAttributesAndSetProperty, -1 /* 3 or 4 */, 1) \
219 \ 221 \
220 /* Arrays */ \ 222 /* Arrays */ \
221 F(RemoveArrayHoles, 2, 1) \ 223 F(RemoveArrayHoles, 2, 1) \
222 F(GetArrayKeys, 2, 1) \ 224 F(GetArrayKeys, 2, 1) \
223 F(MoveArrayContents, 2, 1) \ 225 F(MoveArrayContents, 2, 1) \
224 F(EstimateNumberOfElements, 1, 1) \ 226 F(EstimateNumberOfElements, 1, 1) \
225 \ 227 \
226 /* Getters and Setters */ \ 228 /* Getters and Setters */ \
227 F(DefineAccessor, -1 /* 4 or 5 */, 1) \ 229 F(DefineAccessor, -1 /* 4 or 5 */, 1) \
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 int position); 424 int position);
423 425
424 // Helper functions used stubs. 426 // Helper functions used stubs.
425 static void PerformGC(Object* result); 427 static void PerformGC(Object* result);
426 }; 428 };
427 429
428 430
429 } } // namespace v8::internal 431 } } // namespace v8::internal
430 432
431 #endif // V8_RUNTIME_H_ 433 #endif // V8_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/messages.js ('k') | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698