Medium-sized application: arithmetic expression processor

 

Functional Programming in Haskell
3rd CCSC Northwest Conference • Fall 2001

Medium-sized application: arithmetic expression processor
bullet An arithmetic expression parser and processor
This example shows how a simple parser and evaluator can be defined for maximum flexibility using polymorphic types and higher-order functions.

Control bar


















































 

Functional Programming in Haskell
3rd CCSC Northwest Conference • Fall 2001

Medium-sized application: arithmetic expression processor
bullet An arithmetic expression parser and processor
bullet Token type and scanner

Control bar


















































 

Functional Programming in Haskell
3rd CCSC Northwest Conference • Fall 2001

Medium-sized application: arithmetic expression processor
bullet An arithmetic expression parser and processor
bullet Token type and scanner
bullet Tree type and parser (from concrete to abstract)

Control bar


















































 

Functional Programming in Haskell
3rd CCSC Northwest Conference • Fall 2001

Medium-sized application: arithmetic expression processor
bullet An arithmetic expression parser and processor
bullet Token type and scanner
bullet Tree type and parser (from concrete to abstract)
bullet Operator semantics ("back-end")

Control bar


















































 

Functional Programming in Haskell
3rd CCSC Northwest Conference • Fall 2001

Medium-sized application: arithmetic expression processor
bullet An arithmetic expression parser and processor
bullet Token type and scanner
bullet Tree type and parser (from concrete to abstract)
bullet Operator semantics ("back-end")
bullet Evaluation (and deforestation with folds)

Control bar


















































 

Functional Programming in Haskell
3rd CCSC Northwest Conference • Fall 2001

Medium-sized application: arithmetic expression processor
bullet An arithmetic expression parser and processor
bullet Token type and scanner
bullet Tree type and parser (from concrete to abstract)
bullet Operator semantics ("back-end")
bullet Evaluation (and deforestation with folds)
bullet Formatting/pretty-printing (in various forms)

Control bar


















































 

Functional Programming in Haskell
3rd CCSC Northwest Conference • Fall 2001

Medium-sized application: arithmetic expression processor
bullet An arithmetic expression parser and processor
bullet Token type and scanner
bullet Tree type and parser (from concrete to abstract)
bullet Operator semantics ("back-end")
bullet Evaluation (and deforestation with folds)
bullet Formatting/pretty-printing (in various forms)
bullet Variations on multi-parsing (pair of parsers, parser of pairs)

Control bar


















































 

Functional Programming in Haskell
3rd CCSC Northwest Conference • Fall 2001

Medium-sized application: arithmetic expression processor
bullet An arithmetic expression parser and processor
bullet Token type and scanner
bullet Tree type and parser (from concrete to abstract)
bullet Operator semantics ("back-end")
bullet Evaluation (and deforestation with folds)
bullet Formatting/pretty-printing (in various forms)
bullet Variations on multi-parsing (pair of parsers, parser of pairs)
bullet Traced calculations

Control bar


















































 

Functional Programming in Haskell
3rd CCSC Northwest Conference • Fall 2001

Medium-sized application: arithmetic expression processor
bullet An arithmetic expression parser and processor
bullet Token type and scanner
bullet Tree type and parser (from concrete to abstract)
bullet Operator semantics ("back-end")
bullet Evaluation (and deforestation with folds)
bullet Formatting/pretty-printing (in various forms)
bullet Variations on multi-parsing (pair of parsers, parser of pairs)
bullet Traced calculations
bullet Interactivity (at outer entry level)

Control bar