Преглед на файлове

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,("",[])