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

Side by Side Diff: src/property-details-inl.h

Issue 1051393003: Removed src/{isolate,property-details,utils}-inl.h (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 8 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
« no previous file with comments | « src/property-details.h ('k') | src/runtime-profiler.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef V8_PROPERTY_DETAILS_INL_H_
6 #define V8_PROPERTY_DETAILS_INL_H_
7
8 #include "src/conversions.h"
9 #include "src/objects.h"
10 #include "src/property-details.h"
11 #include "src/types.h"
12
13 namespace v8 {
14 namespace internal {
15
16 Representation Representation::FromType(Type* type) {
17 DisallowHeapAllocation no_allocation;
18 if (type->Is(Type::None())) return Representation::None();
19 if (type->Is(Type::SignedSmall())) return Representation::Smi();
20 if (type->Is(Type::Signed32())) return Representation::Integer32();
21 if (type->Is(Type::Number())) return Representation::Double();
22 return Representation::Tagged();
23 }
24
25 } } // namespace v8::internal
26
27 #endif // V8_PROPERTY_DETAILS_INL_H_
OLDNEW
« no previous file with comments | « src/property-details.h ('k') | src/runtime-profiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698