XCTLRuntimeVariableType.swift 318 B

1234567891011121314151617181920
  1. //
  2. // XCTLRuntimeVariableType.swift
  3. // notebook
  4. //
  5. // Created by 邢铖 on 2023/5/18.
  6. //
  7. import Foundation
  8. public enum XCTLRuntimeVariableType: String {
  9. case typeVoid
  10. case typeObject
  11. case typeString
  12. case typeNumber
  13. case typeBoolean
  14. case typeFuncIntrinsic
  15. case typeFuncImpl
  16. }