uu-cco-0.1.0.4: Utilities for compiler construction: core functionality

Copyright(c) 2008 Utrecht University
LicenseAll rights reserved
Maintainerstefan@cs.uu.nl
Stabilityprovisional
Portabilityportable
Safe HaskellSafe
LanguageHaskell98

CCO.SourcePos

Contents

Description

Representation of source positions.

Synopsis

Source positions

data Source Source

A description of an input stream.

Constructors

File FilePath

A file.

Stdin

The standard input channel.

data Pos Source

A position.

Constructors

Pos !Int !Int

An actual position (line number, column number).

EOF

End of input.

data SourcePos Source

A position in an input stream.

Constructors

SourcePos Source Pos

Combines a Source and a Pos.