Browse Source

changed type_param (no more extends/implements)

Nicolas Cannasse 20 years ago
parent
commit
6e1d778f88
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ast.ml

+ 1 - 1
ast.ml

@@ -179,7 +179,7 @@ type type_param_flag =
 	| HExtends of type_path_normal
 	| HImplements of type_path_normal
 
-type type_param = string * type_param_flag list
+type type_param = string * type_path_normal list
 
 type type_def =
 	| EClass of string * type_param list * type_param_flag list * (class_field * pos) list