yi-0.6.2.4: The Haskell-Scriptable Editor

Yi.Syntax.Paren

Description

Parser for haskell that takes in account only parenthesis and layout

Synopsis

Documentation

type Expr t = [Tree t]Source

data Tree t Source

Constructors

Paren t (Expr t) t 
Block [Tree t] 
Atom t 
Error t 
Expr [Tree t] 

Instances

getIndentingSubtree :: Tree TT -> Point -> Int -> Maybe (Tree TT)Source

Search the given list, and return the 1st tree after the given point on the given line. This is the tree that will be moved if something is inserted at the point. Precondition: point is in the given line.

getSubtreeSpan :: Tree TT -> (Point, Int)Source

Given a tree, return (first offset, number of lines).

makeFunctor ''Tree)

parse' :: (TT -> Token) -> (Token -> TT) -> P TT [Tree TT]Source