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

Side by Side Diff: src/runtime.h

Issue 11601: Changing the semantics of cross-frame eval to be compatible with Safari and F... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 12 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 | « no previous file | 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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 \ 188 \
189 /* Numbers */ \ 189 /* Numbers */ \
190 F(NumberIsFinite, 1) \ 190 F(NumberIsFinite, 1) \
191 \ 191 \
192 /* Globals */ \ 192 /* Globals */ \
193 F(CompileString, 3) \ 193 F(CompileString, 3) \
194 F(CompileScript, 4) \ 194 F(CompileScript, 4) \
195 F(GlobalPrint, 1) \ 195 F(GlobalPrint, 1) \
196 \ 196 \
197 /* Eval */ \ 197 /* Eval */ \
198 F(EvalReceiver, 1) \
199 F(GlobalReceiver, 1) \ 198 F(GlobalReceiver, 1) \
200 \ 199 \
201 F(SetProperty, -1 /* 3 or 4 */) \ 200 F(SetProperty, -1 /* 3 or 4 */) \
202 F(IgnoreAttributesAndSetProperty, -1 /* 3 or 4 */) \ 201 F(IgnoreAttributesAndSetProperty, -1 /* 3 or 4 */) \
203 \ 202 \
204 /* Arrays */ \ 203 /* Arrays */ \
205 F(RemoveArrayHoles, 1) \ 204 F(RemoveArrayHoles, 1) \
206 F(GetArrayKeys, 2) \ 205 F(GetArrayKeys, 2) \
207 F(MoveArrayContents, 2) \ 206 F(MoveArrayContents, 2) \
208 F(EstimateNumberOfElements, 1) \ 207 F(EstimateNumberOfElements, 1) \
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); 358 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key);
360 359
361 // Helper functions used stubs. 360 // Helper functions used stubs.
362 static void PerformGC(Object* result); 361 static void PerformGC(Object* result);
363 }; 362 };
364 363
365 364
366 } } // namespace v8::internal 365 } } // namespace v8::internal
367 366
368 #endif // V8_RUNTIME_H_ 367 #endif // V8_RUNTIME_H_
OLDNEW
« no previous file with comments | « no previous file | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698