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

Side by Side Diff: src/objects.h

Issue 705663004: harmony_scoping: Implement lexical bindings at top level (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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
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 <iosfwd> 8 #include <iosfwd>
9 9
10 #include "src/allocation.h" 10 #include "src/allocation.h"
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 // - CodeCacheHashTable 80 // - CodeCacheHashTable
81 // - MapCache 81 // - MapCache
82 // - OrderedHashTable 82 // - OrderedHashTable
83 // - OrderedHashSet 83 // - OrderedHashSet
84 // - OrderedHashMap 84 // - OrderedHashMap
85 // - Context 85 // - Context
86 // - TypeFeedbackVector 86 // - TypeFeedbackVector
87 // - JSFunctionResultCache 87 // - JSFunctionResultCache
88 // - ScopeInfo 88 // - ScopeInfo
89 // - TransitionArray 89 // - TransitionArray
90 // - GlobalContextTable
90 // - FixedDoubleArray 91 // - FixedDoubleArray
91 // - ExternalArray 92 // - ExternalArray
92 // - ExternalUint8ClampedArray 93 // - ExternalUint8ClampedArray
93 // - ExternalInt8Array 94 // - ExternalInt8Array
94 // - ExternalUint8Array 95 // - ExternalUint8Array
95 // - ExternalInt16Array 96 // - ExternalInt16Array
96 // - ExternalUint16Array 97 // - ExternalUint16Array
97 // - ExternalInt32Array 98 // - ExternalInt32Array
98 // - ExternalUint32Array 99 // - ExternalUint32Array
99 // - ExternalFloat32Array 100 // - ExternalFloat32Array
(...skipping 836 matching lines...) Expand 10 before | Expand all | Expand 10 after
936 V(DescriptorArray) \ 937 V(DescriptorArray) \
937 V(TransitionArray) \ 938 V(TransitionArray) \
938 V(TypeFeedbackVector) \ 939 V(TypeFeedbackVector) \
939 V(DeoptimizationInputData) \ 940 V(DeoptimizationInputData) \
940 V(DeoptimizationOutputData) \ 941 V(DeoptimizationOutputData) \
941 V(DependentCode) \ 942 V(DependentCode) \
942 V(FixedArray) \ 943 V(FixedArray) \
943 V(FixedDoubleArray) \ 944 V(FixedDoubleArray) \
944 V(ConstantPoolArray) \ 945 V(ConstantPoolArray) \
945 V(Context) \ 946 V(Context) \
947 V(GlobalContextTable) \
946 V(NativeContext) \ 948 V(NativeContext) \
947 V(ScopeInfo) \ 949 V(ScopeInfo) \
948 V(JSFunction) \ 950 V(JSFunction) \
949 V(Code) \ 951 V(Code) \
950 V(Oddball) \ 952 V(Oddball) \
951 V(SharedFunctionInfo) \ 953 V(SharedFunctionInfo) \
952 V(JSValue) \ 954 V(JSValue) \
953 V(JSDate) \ 955 V(JSDate) \
954 V(JSMessageObject) \ 956 V(JSMessageObject) \
955 V(StringWrapper) \ 957 V(StringWrapper) \
(...skipping 9973 matching lines...) Expand 10 before | Expand all | Expand 10 after
10929 } else { 10931 } else {
10930 value &= ~(1 << bit_position); 10932 value &= ~(1 << bit_position);
10931 } 10933 }
10932 return value; 10934 return value;
10933 } 10935 }
10934 }; 10936 };
10935 10937
10936 } } // namespace v8::internal 10938 } } // namespace v8::internal
10937 10939
10938 #endif // V8_OBJECTS_H_ 10940 #endif // V8_OBJECTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698