1234567891011121314151617181920 |
- //
- // XCTLRuntimeVariableType.swift
- // notebook
- //
- // Created by 邢铖 on 2023/5/18.
- //
- import Foundation
- public enum XCTLRuntimeVariableType: String {
-
- case typeVoid
- case typeObject
- case typeString
- case typeNumber
- case typeBoolean
- case typeFuncIntrinsic
- case typeFuncImpl
-
- }
|