ソースを参照

added clarifying comment

Simon Krajewski 12 年 前
コミット
62c3b1e74d
2 ファイル変更2 行追加0 行削除
  1. 1 0
      ast.ml
  2. 1 0
      common.ml

+ 1 - 0
ast.ml

@@ -131,6 +131,7 @@ module Meta = struct
 		| Usage
 		| Used
 		| Last
+		(* do not put any custom metadata after Last *)
 		| Dollar of string
 		| Custom of string
 

+ 1 - 0
common.ml

@@ -388,6 +388,7 @@ module MetaInfo = struct
 		| Usage -> ":usage",("?",[])
 		| Used -> ":used",("Internally used by DCE to mark a class or field as used",[])
 		| Last -> assert false
+		(* do not put any custom metadata after Last *)
 		| Dollar s -> "$" ^ s,("",[])
 		| Custom s -> s,("",[])