Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
SourceMap.Types
Description
Types for the source maps.
Synopsis
- data SourceMapping = SourceMapping {
- smFile :: !FilePath
- smSourceRoot :: !(Maybe FilePath)
- smMappings :: ![Mapping]
- data Mapping = Mapping {
- mapGenerated :: !Pos
- mapOriginal :: !(Maybe Pos)
- mapSourceFile :: !(Maybe FilePath)
- mapName :: !(Maybe Text)
- data Pos = Pos {}
Documentation
data SourceMapping Source #
The source mapping.
Constructors
SourceMapping | |
Fields
|
Instances
Show SourceMapping Source # | |
Defined in SourceMap.Types Methods showsPrec :: Int -> SourceMapping -> ShowS # show :: SourceMapping -> String # showList :: [SourceMapping] -> ShowS # |
A mapping.
Constructors
Mapping | |
Fields
|