Index: runtime/vm/kernel_binary.h |
diff --git a/runtime/vm/kernel_binary.h b/runtime/vm/kernel_binary.h |
index 116ea7d96df4b3ea93736b0c0b0631f17cdac2d1..0c3636db7af322feffc4063eb1a0f29d3020ac04 100644 |
--- a/runtime/vm/kernel_binary.h |
+++ b/runtime/vm/kernel_binary.h |
@@ -105,6 +105,7 @@ enum Tag { |
kFunctionDeclaration = 79, |
kAsyncForInStatement = 80, |
+ kVectorType = 88, |
kInvalidType = 90, |
kDynamicType = 91, |
kVoidType = 92, |
@@ -114,6 +115,13 @@ enum Tag { |
kSimpleInterfaceType = 96, |
kSimpleFunctionType = 97, |
+ kVectorCreation = 102, |
+ kVectorGet = 103, |
+ kVectorSet = 104, |
+ kVectorCopy = 105, |
+ |
+ kClosureCreation = 106, |
+ |
kSpecializedTagHighBit = 0x80, // 10000000 |
kSpecializedTagMask = 0xF8, // 11111000 |
kSpecializedPayloadMask = 0x7, // 00000111 |