Type.hx 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /*
  2. * Copyright (C)2005-2017 Haxe Foundation
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  19. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  20. * DEALINGS IN THE SOFTWARE.
  21. */
  22. package hl;
  23. @:enum
  24. abstract TypeKind(Int) {
  25. public var HVoid = 0;
  26. public var HUI8 = 1;
  27. public var HUI16 = 2;
  28. public var HI32 = 3;
  29. public var HI64 = 4;
  30. public var HF32 = 5;
  31. public var HF64 = 6;
  32. public var HBool = 7;
  33. public var HBytes = 8;
  34. public var HDyn = 9;
  35. public var HFun = 10;
  36. public var HObj = 11;
  37. public var HArray = 12;
  38. public var HType = 13;
  39. public var HRef = 14;
  40. public var HVirtual = 15;
  41. public var HDynObj = 16;
  42. public var HAbstract = 17;
  43. public var HEnum = 18;
  44. public var HNull = 19;
  45. }
  46. @:coreType abstract Type {
  47. public var kind(get,never) : TypeKind;
  48. @:extern inline function get_kind() : TypeKind {
  49. return untyped $tkind(this);
  50. }
  51. @:hlNative("std","type_name") function getNameBytes() : Bytes {
  52. return null;
  53. }
  54. @:extern public static inline function getDynamic( v : Dynamic ) : Type {
  55. return untyped $tdyntype(v);
  56. }
  57. @:extern public static inline function get<T>( v : T ) : Type {
  58. return untyped $ttype(v);
  59. }
  60. @:extern public inline function getName() : String {
  61. var s = getNameBytes();
  62. return @:privateAccess String.fromUCS2(s);
  63. }
  64. @:hlNative("std", "type_safe_cast") public function safeCast( t : Type ) : Bool {
  65. return false;
  66. }
  67. @:hlNative("std","type_instance_fields") public function getInstanceFields() : NativeArray<Bytes> {
  68. return null;
  69. }
  70. @:hlNative("std","type_get_global") public function getGlobal() : Dynamic {
  71. return null;
  72. }
  73. @:hlNative("std","type_set_global") public function setGlobal( v : Dynamic ) : Bool {
  74. return false;
  75. }
  76. @:hlNative("std","type_args_count") public function getArgsCount() : Int {
  77. return 0;
  78. }
  79. @:hlNative("std","type_super") public function getSuper() : Type {
  80. return null;
  81. }
  82. @:hlNative("std","type_enum_fields") public function getEnumFields() : NativeArray<Bytes> {
  83. return null;
  84. }
  85. @:hlNative("std","type_enum_values") public function getEnumValues() : NativeArray<Dynamic> {
  86. return null;
  87. }
  88. @:hlNative("std","alloc_obj") public function allocObject() : Dynamic {
  89. return null;
  90. }
  91. @:hlNative("std", "alloc_enum_dyn") public function allocEnum( index : Int, args : NativeArray<Dynamic>, nargs : Int ) : Dynamic {
  92. return null;
  93. }
  94. }