Safe Haskell | Safe-Inferred |
---|---|
Language | GHC2021 |
Recalc.EngineSpec
Contents
Description
Implements a simple calculator language and uses it instantiate
the Recalc
interface. Use this language to validate the
spreadsheet engine.
Synopsis
- type Result = Either (FetchError ())
- run :: [[(CellAddr, Maybe String)]] -> (ResultsOf Term, EngineStateOf Term)
- evalSheet :: [[(CellAddr, Maybe String)]] -> [(CellAddr, Int)]
- evalSheetKeepErrors :: [[(CellAddr, Maybe String)]] -> [(CellAddr, Result Int)]
- spec :: Spec
- data SheetRef
- data Term
- type Parser = ReaderT SheetId (Parsec Void String)
- formulaP :: Parser Term
- valueP :: Parser Term
Documentation
type Result = Either (FetchError ()) Source #
run :: [[(CellAddr, Maybe String)]] -> (ResultsOf Term, EngineStateOf Term) Source #
evalSheet all inputs in sequence
evalSheet :: [[(CellAddr, Maybe String)]] -> [(CellAddr, Int)] Source #
evalSheet inputs in sequence and prepare Results for hspec
the specification checks a few (single-document, single-sheet) examples to make sure results are expected (incl. making sure dependencies are resolved)
when referencing a cell, the uri and sheetName can be omited (defaults to "current" sheet)
a simple term language
Instances
Show Term Source # | |
Pretty Term Source # | |
Defined in Recalc.EngineSpec | |
Recalc Term Source # | |
Defined in Recalc.EngineSpec Associated Types type ElaborationOf Term # | |
type ElaborationOf Term Source # | |
Defined in Recalc.EngineSpec | |
type EnvOf Term Source # | |
Defined in Recalc.EngineSpec | |
type ErrorOf Term Source # | |
Defined in Recalc.EngineSpec | |
type TypeOf Term Source # | |
Defined in Recalc.EngineSpec | |
type ValueOf Term Source # | |
Defined in Recalc.EngineSpec |
formulaP :: Parser Term Source #
simple parser, does not deal with lexing (whitespaces might break things)