Type.hx 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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 HF32 = 4;
  30. public var HF64 = 5;
  31. public var HBool = 6;
  32. public var HBytes = 7;
  33. public var HDyn = 8;
  34. public var HFun = 9;
  35. public var HObj = 10;
  36. public var HArray = 11;
  37. public var HType = 12;
  38. public var HRef = 13;
  39. public var HVirtual = 14;
  40. public var HDynObj = 15;
  41. public var HAbstract = 16;
  42. public var HEnum = 17;
  43. public var HNull = 18;
  44. }
  45. @:coreType abstract Type {
  46. public var kind(get,never) : TypeKind;
  47. @:extern inline function get_kind() : TypeKind {
  48. return untyped $tkind(this);
  49. }
  50. @:hlNative("std","type_name") function getNameBytes() : Bytes {
  51. return null;
  52. }
  53. @:extern public static inline function getDynamic( v : Dynamic ) : Type {
  54. return untyped $tdyntype(v);
  55. }
  56. @:extern public static inline function get<T>( v : T ) : Type {
  57. return untyped $ttype(v);
  58. }
  59. @:extern public inline function getName() : String {
  60. var s = getNameBytes();
  61. return @:privateAccess String.fromUCS2(s);
  62. }
  63. @:hlNative("std", "type_safe_cast") public function safeCast( t : Type ) : Bool {
  64. return false;
  65. }
  66. @:hlNative("std","type_instance_fields") public function getInstanceFields() : NativeArray<Bytes> {
  67. return null;
  68. }
  69. @:hlNative("std","type_get_global") public function getGlobal() : Dynamic {
  70. return null;
  71. }
  72. @:hlNative("std","type_args_count") public function getArgsCount() : Int {
  73. return 0;
  74. }
  75. @:hlNative("std","type_super") public function getSuper() : Type {
  76. return null;
  77. }
  78. @:hlNative("std","type_enum_fields") public function getEnumFields() : NativeArray<Bytes> {
  79. return null;
  80. }
  81. @:hlNative("std","alloc_obj") public function allocObject() : Dynamic {
  82. return null;
  83. }
  84. @:hlNative("std", "alloc_enum") public function allocEnum( index : Int, args : NativeArray<Dynamic>, nargs : Int ) : Dynamic {
  85. return null;
  86. }
  87. }