sourcemap-0.1.6: Implementation of source maps as proposed by Google and Mozilla.

Safe HaskellSafe
LanguageHaskell98

SourceMap.Types

Description

Types for the source maps.

Synopsis

Documentation

data SourceMapping Source

The source mapping.

Constructors

SourceMapping 

data Mapping Source

A mapping.

Constructors

Mapping 

Instances

data Pos Source

A source position.

Constructors

Pos 

Fields

posLine :: !Int32
 
posColumn :: !Int32
 

Instances

Eq Pos Source 
Ord Pos Source

Compares the line, then the column.

Show Pos Source