package melange

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Statement.ExportDefaultDeclarationSource

Sourcetype ('M, 'T) t = {
  1. default : 'T;
  2. declaration : ('M, 'T) declaration;
  3. comments : ('M, unit) Syntax.t option;
}
Sourceand ('M, 'T) declaration =
  1. | Declaration of ('M, 'T) Statement.t
  2. | Expression of ('M, 'T) Expression.t
Sourceval pp : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) t -> unit
Sourceval show : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) t -> string
Sourceval pp_declaration : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) declaration -> unit
Sourceval show_declaration : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) declaration -> string