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

Side by Side Diff: src/runtime.h

Issue 7035007: Implement get trap for proxies. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Implementing get trap for proxies. Created 9 years, 7 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
OLDNEW
1 // Copyright 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 /* Literals */ \ 268 /* Literals */ \
269 F(MaterializeRegExpLiteral, 4, 1)\ 269 F(MaterializeRegExpLiteral, 4, 1)\
270 F(CreateArrayLiteralBoilerplate, 3, 1) \ 270 F(CreateArrayLiteralBoilerplate, 3, 1) \
271 F(CloneLiteralBoilerplate, 1, 1) \ 271 F(CloneLiteralBoilerplate, 1, 1) \
272 F(CloneShallowLiteralBoilerplate, 1, 1) \ 272 F(CloneShallowLiteralBoilerplate, 1, 1) \
273 F(CreateObjectLiteral, 4, 1) \ 273 F(CreateObjectLiteral, 4, 1) \
274 F(CreateObjectLiteralShallow, 4, 1) \ 274 F(CreateObjectLiteralShallow, 4, 1) \
275 F(CreateArrayLiteral, 3, 1) \ 275 F(CreateArrayLiteral, 3, 1) \
276 F(CreateArrayLiteralShallow, 3, 1) \ 276 F(CreateArrayLiteralShallow, 3, 1) \
277 \ 277 \
278 /* Harmony proxies */ \
279 F(CreateJSProxy, 2, 1) \
280 \
278 /* Catch context extension objects */ \ 281 /* Catch context extension objects */ \
279 F(CreateCatchExtensionObject, 2, 1) \ 282 F(CreateCatchExtensionObject, 2, 1) \
280 \ 283 \
281 /* Statements */ \ 284 /* Statements */ \
282 F(NewClosure, 3, 1) \ 285 F(NewClosure, 3, 1) \
283 F(NewObject, 1, 1) \ 286 F(NewObject, 1, 1) \
284 F(NewObjectFromBound, 2, 1) \ 287 F(NewObjectFromBound, 2, 1) \
285 F(FinalizeInstanceSize, 1, 1) \ 288 F(FinalizeInstanceSize, 1, 1) \
286 F(Throw, 1, 1) \ 289 F(Throw, 1, 1) \
287 F(ReThrow, 1, 1) \ 290 F(ReThrow, 1, 1) \
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after
640 Handle<Script> script, 643 Handle<Script> script,
641 int position); 644 int position);
642 645
643 // Helper functions used stubs. 646 // Helper functions used stubs.
644 static void PerformGC(Object* result); 647 static void PerformGC(Object* result);
645 }; 648 };
646 649
647 } } // namespace v8::internal 650 } } // namespace v8::internal
648 651
649 #endif // V8_RUNTIME_H_ 652 #endif // V8_RUNTIME_H_
OLDNEW
« src/objects.cc ('K') | « src/proxy.js ('k') | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698