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

Side by Side Diff: src/field-type.h

Issue 1700923002: Move FieldType to separate h/cc files. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 10 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/ast/ast-expression-visitor.h ('k') | src/field-type.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 2016 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_FIELD_TYPE_H_
6 #define V8_FIELD_TYPE_H_
7
8 #include "src/handles.h"
9 #include "src/objects.h"
10 #include "src/ostreams.h"
11
12 namespace v8 {
13 namespace internal {
14
15 class FieldType : public Object {
16 public:
17 static FieldType* None();
18 static FieldType* Any();
19 static Handle<FieldType> None(Isolate* isolate);
20 static Handle<FieldType> Any(Isolate* isolate);
21 static FieldType* Class(i::Map* map);
22 static Handle<FieldType> Class(i::Handle<i::Map> map, Isolate* isolate);
23 static FieldType* cast(Object* object);
24
25 bool NowContains(Object* value);
26 bool NowContains(Handle<Object> value);
27 bool IsClass();
28 Handle<i::Map> AsClass();
29 bool IsNone() { return this == None(); }
30 bool IsAny() { return this == Any(); }
31 bool NowStable();
32 bool NowIs(FieldType* other);
33 bool NowIs(Handle<FieldType> other);
34 Type* Convert(Zone* zone);
35
36 void PrintTo(std::ostream& os);
37 };
38
39 } // namespace internal
40 } // namespace v8
41
42 #endif // V8_FIELD_TYPE_H_
OLDNEW
« no previous file with comments | « src/ast/ast-expression-visitor.h ('k') | src/field-type.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698