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

Side by Side Diff: src/objects.h

Issue 384963002: ES6 Unscopables (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 5 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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_OBJECTS_H_ 5 #ifndef V8_OBJECTS_H_
6 #define V8_OBJECTS_H_ 6 #define V8_OBJECTS_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/assert-scope.h" 9 #include "src/assert-scope.h"
10 #include "src/builtins.h" 10 #include "src/builtins.h"
(...skipping 1463 matching lines...) Expand 10 before | Expand all | Expand 10 after
1474 MUST_USE_RESULT static inline MaybeHandle<Object> GetPropertyOrElement( 1474 MUST_USE_RESULT static inline MaybeHandle<Object> GetPropertyOrElement(
1475 Handle<Object> object, 1475 Handle<Object> object,
1476 Handle<Name> key); 1476 Handle<Name> key);
1477 MUST_USE_RESULT static inline MaybeHandle<Object> GetProperty( 1477 MUST_USE_RESULT static inline MaybeHandle<Object> GetProperty(
1478 Isolate* isolate, 1478 Isolate* isolate,
1479 Handle<Object> object, 1479 Handle<Object> object,
1480 const char* key); 1480 const char* key);
1481 MUST_USE_RESULT static inline MaybeHandle<Object> GetProperty( 1481 MUST_USE_RESULT static inline MaybeHandle<Object> GetProperty(
1482 Handle<Object> object, 1482 Handle<Object> object,
1483 Handle<Name> key); 1483 Handle<Name> key);
1484 MUST_USE_RESULT static inline MaybeHandle<Object> GetPropertyWithReceiver(
1485 Handle<JSReceiver> holder, Handle<Object> receiver, Handle<Name> name);
1484 1486
1485 MUST_USE_RESULT static MaybeHandle<Object> GetPropertyWithAccessor( 1487 MUST_USE_RESULT static MaybeHandle<Object> GetPropertyWithAccessor(
1486 Handle<Object> receiver, 1488 Handle<Object> receiver,
1487 Handle<Name> name, 1489 Handle<Name> name,
1488 Handle<JSObject> holder, 1490 Handle<JSObject> holder,
1489 Handle<Object> structure); 1491 Handle<Object> structure);
1490 MUST_USE_RESULT static MaybeHandle<Object> SetPropertyWithCallback( 1492 MUST_USE_RESULT static MaybeHandle<Object> SetPropertyWithCallback(
1491 Handle<Object> receiver, 1493 Handle<Object> receiver,
1492 Handle<Name> name, 1494 Handle<Name> name,
1493 Handle<Object> value, 1495 Handle<Object> value,
(...skipping 9733 matching lines...) Expand 10 before | Expand all | Expand 10 after
11227 } else { 11229 } else {
11228 value &= ~(1 << bit_position); 11230 value &= ~(1 << bit_position);
11229 } 11231 }
11230 return value; 11232 return value;
11231 } 11233 }
11232 }; 11234 };
11233 11235
11234 } } // namespace v8::internal 11236 } } // namespace v8::internal
11235 11237
11236 #endif // V8_OBJECTS_H_ 11238 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/flag-definitions.h ('k') | src/objects-inl.h » ('j') | src/objects-inl.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698