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

Side by Side Diff: src/objects.h

Issue 1756413003: [runtime] Rename IsUndetectableObject to IsUndetectable. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 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
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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/assert-scope.h" 10 #include "src/assert-scope.h"
(...skipping 959 matching lines...) Expand 10 before | Expand all | Expand 10 after
970 V(HashTable) \ 970 V(HashTable) \
971 V(Dictionary) \ 971 V(Dictionary) \
972 V(StringTable) \ 972 V(StringTable) \
973 V(NormalizedMapCache) \ 973 V(NormalizedMapCache) \
974 V(CompilationCacheTable) \ 974 V(CompilationCacheTable) \
975 V(CodeCacheHashTable) \ 975 V(CodeCacheHashTable) \
976 V(PolymorphicCodeCacheHashTable) \ 976 V(PolymorphicCodeCacheHashTable) \
977 V(MapCache) \ 977 V(MapCache) \
978 V(JSGlobalObject) \ 978 V(JSGlobalObject) \
979 V(JSGlobalProxy) \ 979 V(JSGlobalProxy) \
980 V(UndetectableObject) \ 980 V(Undetectable) \
981 V(AccessCheckNeeded) \ 981 V(AccessCheckNeeded) \
982 V(Callable) \ 982 V(Callable) \
983 V(Function) \ 983 V(Function) \
984 V(Constructor) \ 984 V(Constructor) \
985 V(TemplateInfo) \ 985 V(TemplateInfo) \
986 V(Filler) \ 986 V(Filler) \
987 V(FixedArrayBase) \ 987 V(FixedArrayBase) \
988 V(External) \ 988 V(External) \
989 V(Struct) \ 989 V(Struct) \
990 V(Cell) \ 990 V(Cell) \
(...skipping 9873 matching lines...) Expand 10 before | Expand all | Expand 10 after
10864 } 10864 }
10865 return value; 10865 return value;
10866 } 10866 }
10867 }; 10867 };
10868 10868
10869 10869
10870 } // NOLINT, false-positive due to second-order macros. 10870 } // NOLINT, false-positive due to second-order macros.
10871 } // NOLINT, false-positive due to second-order macros. 10871 } // NOLINT, false-positive due to second-order macros.
10872 10872
10873 #endif // V8_OBJECTS_H_ 10873 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/ic/ic-state.cc ('k') | src/objects.cc » ('j') | src/objects.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698