File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -200,7 +200,6 @@ let rec follow_basic t =
200
200
| TAbstract ({ a_path = ([] ," Bool" ) },[] )
201
201
| TInst ({ cl_path = (["haxe" ],"Int32" ) } ,[] ) -> t
202
202
| t -> t)
203
- | TType ({ t_path = [" flash" ;" utils" ]," Object" },[] )
204
203
| TType ({ t_path = [" flash" ;" utils" ]," Function" },[] )
205
204
| TType ({ t_path = [] ,"UInt" } ,[] ) ->
206
205
t
@@ -280,7 +279,7 @@ let classify ctx t =
280
279
(match ! (a.a_status) with
281
280
| Statics _ -> KNone
282
281
| _ -> KDynamic )
283
- | TType ({ t_path = [" flash" ;" utils" ],"Object" } ,[] ) ->
282
+ | TAbstract ({ a_path = [" flash" ;" utils" ],"Object" } ,[] ) ->
284
283
KType (HMPath ([] ," Object" ))
285
284
| TInst _ | TAbstract _ ->
286
285
KType (type_id ctx t)
Original file line number Diff line number Diff line change 1
1
package flash .utils ;
2
2
3
- typedef Object = Dynamic
3
+ @:coreType @:runtimeValue
4
+ abstract Object from Dynamic to Dynamic {}
You can’t perform that action at this time.
0 commit comments