free-compiler-0.3.0.0: A Haskell to Coq compiler.

Safe HaskellSafe
LanguageHaskell2010

FreeC.IR.Syntax.Pragma

Description

This module contains the definition of comments and pragmas for our intermediate language.

Synopsis

Documentation

data Comment Source #

A comment.

Comments are collected during parsing. However, the final AST contains no comments. Pragmas (see DecArgPragma) are extracted from comments by the front end.

A single-line comment (i.e., -- ...).

Constructors

BlockComment

A multi-line comment (i.e., {- ... -}).

LineComment 
Instances
Pretty Comment Source #

Pretty instance for comments.

Instance details

Defined in FreeC.IR.Syntax.Pragma

Methods

pretty :: Comment -> Doc #

prettyList :: [Comment] -> Doc #

customPragmaPrefix :: String Source #

All custom pragmas of the compiler start with FreeC.

data Pragma Source #

Data type for custom {-# FreeC ... #-} pragmas.

Constructors

DecArgPragma

A {-# FreeC function DECREASES ON argument #-} or {-# FreeC function DECREASES ON ARGUMENT index #-} pragma.

Instances
Eq Pragma Source # 
Instance details

Defined in FreeC.IR.Syntax.Pragma

Show Pragma Source # 
Instance details

Defined in FreeC.IR.Syntax.Pragma

Pretty Pragma Source #

Pretty instance for custom {-# FreeC ... #-} pragmas.

Instance details

Defined in FreeC.IR.Syntax.Pragma

Methods

pretty :: Pragma -> Doc #

prettyList :: [Pragma] -> Doc #

Similar Pragma Source #

Two pragmas are similar if they are equal except for the source span.

Instance details

Defined in FreeC.IR.Similar

Methods

similar' :: Pragma -> Pragma -> Renaming -> Bool

prettyPragma :: Doc -> Doc Source #

Pretty prints a custom {-# FreeC ... #-} pragma with the given contents.