ghci-history-parser-0.1.0.0: parse output of ghci ":history" command

Safe HaskellSafe
LanguageHaskell98

GHCi.History

Synopsis

Documentation

data FilePos Source

A line and column number in a file.

Constructors

FilePos 

Fields

lineNum :: Int
 
colNum :: Int
 

Instances

data HistoryItem Source

the type of an item in ghci's history.

Constructors

HistoryItem 

Fields

histStepNum :: Int
 
funcName :: String
 
fileName :: String
 
startPos :: FilePos
 
endPos :: FilePos
 

Instances