1 /* 2 * Copyright (c) 2021 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef PANDA_VERIFICATION_TYPE_TYPE_SYSTEM_KIND_H_ 17 #define PANDA_VERIFICATION_TYPE_TYPE_SYSTEM_KIND_H_ 18 19 namespace panda::verifier { 20 enum class TypeSystemKind { 21 PANDA, 22 JAVA_0, 23 JAVA_1, 24 JAVA_2, 25 JAVA_3, 26 JAVA_4, 27 JAVA_5, 28 JAVA_6, 29 JAVA_7, 30 JAVA_8, 31 JAVA_9, 32 JAVA_10, 33 JAVA_11, 34 JAVA_12, 35 JAVA_13, 36 JAVA_14, 37 JAVA_15, 38 __LAST__ = JAVA_15 39 }; 40 41 } // namespace panda::verifier 42 43 #endif // PANDA_VERIFICATION_TYPE_TYPE_SYSTEM_KIND_H_ 44