Skip to content
Snippets Groups Projects
Select Git revision
  • main
1 result

commonclocks.ml

Blame
  • Frédéric Fort's avatar
    Fort Frédéric authored
    59cd2c0d
    History
    commonclocks.ml 208 B
    type decl =
      | DeclAny
      | Decl of decl_desc
    
    and decl_desc =
      | Pck of pck
      | On of on_decl
    
    and pck = {period: Int.t; offset: Int.t}
    
    and on_decl = {decl: decl; decl_case: String.t; decl_cond: String.t}