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

Side by Side Diff: runtime/vm/kernel_binary.h

Issue 2863493002: Support BottomType in the VM Kernel reader (Closed)
Patch Set: Created 3 years, 7 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 (c) 2017, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef RUNTIME_VM_KERNEL_BINARY_H_ 5 #ifndef RUNTIME_VM_KERNEL_BINARY_H_
6 #define RUNTIME_VM_KERNEL_BINARY_H_ 6 #define RUNTIME_VM_KERNEL_BINARY_H_
7 7
8 #if !defined(DART_PRECOMPILED_RUNTIME) 8 #if !defined(DART_PRECOMPILED_RUNTIME)
9 9
10 #include <map> 10 #include <map>
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 kReturnStatement = 74, 100 kReturnStatement = 74,
101 kTryCatch = 75, 101 kTryCatch = 75,
102 kTryFinally = 76, 102 kTryFinally = 76,
103 kYieldStatement = 77, 103 kYieldStatement = 77,
104 kVariableDeclaration = 78, 104 kVariableDeclaration = 78,
105 kFunctionDeclaration = 79, 105 kFunctionDeclaration = 79,
106 kAsyncForInStatement = 80, 106 kAsyncForInStatement = 80,
107 107
108 kTypedefType = 87, 108 kTypedefType = 87,
109 kVectorType = 88, 109 kVectorType = 88,
110 kBottomType = 89,
110 kInvalidType = 90, 111 kInvalidType = 90,
111 kDynamicType = 91, 112 kDynamicType = 91,
112 kVoidType = 92, 113 kVoidType = 92,
113 kInterfaceType = 93, 114 kInterfaceType = 93,
114 kFunctionType = 94, 115 kFunctionType = 94,
115 kTypeParameterType = 95, 116 kTypeParameterType = 95,
116 kSimpleInterfaceType = 96, 117 kSimpleInterfaceType = 96,
117 kSimpleFunctionType = 97, 118 kSimpleFunctionType = 97,
118 119
119 kVectorCreation = 102, 120 kVectorCreation = 102,
(...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after
580 Reader* reader_; 581 Reader* reader_;
581 TokenPosition min_; 582 TokenPosition min_;
582 TokenPosition max_; 583 TokenPosition max_;
583 }; 584 };
584 585
585 } // namespace kernel 586 } // namespace kernel
586 } // namespace dart 587 } // namespace dart
587 588
588 #endif // !defined(DART_PRECOMPILED_RUNTIME) 589 #endif // !defined(DART_PRECOMPILED_RUNTIME)
589 #endif // RUNTIME_VM_KERNEL_BINARY_H_ 590 #endif // RUNTIME_VM_KERNEL_BINARY_H_
OLDNEW
« no previous file with comments | « runtime/vm/kernel.cc ('k') | runtime/vm/kernel_binary.cc » ('j') | runtime/vm/kernel_to_il.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698