1998-11-05 00:08:28 -08:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Objective Caml *)
|
|
|
|
(* *)
|
|
|
|
(* Pierre Weis && Damien Doligez, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
|
|
|
(* Copyright 1998 Institut National de Recherche en Informatique et *)
|
|
|
|
(* en Automatique. Distributed only by permission. *)
|
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
|
|
|
type t =
|
1999-10-29 07:42:37 -07:00
|
|
|
| Partial_match of string (* P *)
|
1998-11-05 00:08:28 -08:00
|
|
|
| Unused_match (* U *)
|
|
|
|
| Method_override of string list (* M *)
|
|
|
|
| Hide_instance_variable of string (* V *)
|
|
|
|
| Partial_application (* F *)
|
|
|
|
| Statement_type (* S *)
|
1999-10-21 03:04:08 -07:00
|
|
|
| Comment of string (* C *)
|
1998-11-05 00:08:28 -08:00
|
|
|
| Other of string (* X *)
|
|
|
|
;;
|
|
|
|
|
|
|
|
val parse_options : string -> unit;;
|
|
|
|
|
|
|
|
val is_active : t -> bool;;
|
|
|
|
|
|
|
|
val message : t -> string;;
|