idris-1.3.4: Functional Programming Language with Dependent Types
LicenseBSD3
MaintainerThe Idris Community.
Safe HaskellNone
LanguageHaskell2010

Idris.IdeMode

Description

 
Synopsis

Documentation

convSExp :: SExpable a => String -> a -> Integer -> String #

data WhatDocs #

Constructors

Overview 
Full 

toSExp :: SExpable a => a -> SExp #

data SExp #

Instances

Instances details
Show SExp # 
Instance details

Defined in Idris.IdeMode

Methods

showsPrec :: Int -> SExp -> ShowS #

show :: SExp -> String #

showList :: [SExp] -> ShowS #

Eq SExp # 
Instance details

Defined in Idris.IdeMode

Methods

(==) :: SExp -> SExp -> Bool #

(/=) :: SExp -> SExp -> Bool #

SExpable SExp # 
Instance details

Defined in Idris.IdeMode

Methods

toSExp :: SExp -> SExp #

class SExpable a #

Minimal complete definition

toSExp

Instances

Instances details
SExpable FC # 
Instance details

Defined in Idris.IdeMode

Methods

toSExp :: FC -> SExp #

SExpable Name # 
Instance details

Defined in Idris.IdeMode

Methods

toSExp :: Name -> SExp #

SExpable NameOutput # 
Instance details

Defined in Idris.IdeMode

Methods

toSExp :: NameOutput -> SExp #

SExpable OutputAnnotation # 
Instance details

Defined in Idris.IdeMode

SExpable SExp # 
Instance details

Defined in Idris.IdeMode

Methods

toSExp :: SExp -> SExp #

SExpable String # 
Instance details

Defined in Idris.IdeMode

Methods

toSExp :: String -> SExp #

SExpable Integer # 
Instance details

Defined in Idris.IdeMode

Methods

toSExp :: Integer -> SExp #

SExpable Bool # 
Instance details

Defined in Idris.IdeMode

Methods

toSExp :: Bool -> SExp #

SExpable Int # 
Instance details

Defined in Idris.IdeMode

Methods

toSExp :: Int -> SExp #

SExpable a => SExpable (Maybe a) # 
Instance details

Defined in Idris.IdeMode

Methods

toSExp :: Maybe a -> SExp #

SExpable a => SExpable [a] # 
Instance details

Defined in Idris.IdeMode

Methods

toSExp :: [a] -> SExp #

(SExpable a, SExpable b) => SExpable (a, b) # 
Instance details

Defined in Idris.IdeMode

Methods

toSExp :: (a, b) -> SExp #

(SExpable a, SExpable b, SExpable c) => SExpable (a, b, c) # 
Instance details

Defined in Idris.IdeMode

Methods

toSExp :: (a, b, c) -> SExp #

(SExpable a, SExpable b, SExpable c, SExpable d) => SExpable (a, b, c, d) # 
Instance details

Defined in Idris.IdeMode

Methods

toSExp :: (a, b, c, d) -> SExp #

(SExpable a, SExpable b, SExpable c, SExpable d, SExpable e) => SExpable (a, b, c, d, e) # 
Instance details

Defined in Idris.IdeMode

Methods

toSExp :: (a, b, c, d, e) -> SExp #

data Opt #

Constructors

ShowImpl 
ErrContext 

Instances

Instances details
Show Opt # 
Instance details

Defined in Idris.IdeMode

Methods

showsPrec :: Int -> Opt -> ShowS #

show :: Opt -> String #

showList :: [Opt] -> ShowS #

ideModeEpoch :: Int #

The version of the IDE mode command set. Increment this when you change it so clients can adapt.