package babel
- Alphabetic
- Public
- All
Type Members
- case class BabelElabError (reason: String) extends BabelParseError with Product with Serializable
-
class
BabelExporter
extends PrettyPrinter
Exports lambda expressions in the Babel format.
Exports lambda expressions in the Babel format. You probably do not want to use this class, use one of expression.toString, .toSigRelativeString, or .toAsciiString instead. These are all implemented using this class.
This exporter is implemented using the pretty-printing library included in Kiama.
- sealed abstract class BabelParseError extends IllegalArgumentException
- case class BabelParsingError (parseError: Failure) extends BabelParseError with Product with Serializable
-
abstract
class
BabelSignature
extends AnyRef
A signature for the Babel parser.
A signature for the Babel parser. This class decides whether a free identifier is a variable or a constant.
-
case class
MapBabelSignature
(map: Map[String, Ty]) extends BabelSignature with Product with Serializable
A signature based on a map: The identifiers for which the map is defined are constants, the rest are variables.
A signature based on a map: The identifiers for which the map is defined are constants, the rest are variables.
- map
A map from strings to types.
Value Members
- object BabelLexical
- object BabelParser
- object BabelParserCombinators
-
object
BabelSignature
Contains various methods for generating signatures.
- object MapBabelSignature extends Serializable