BabelSignature

gapt.formats.babel.BabelSignature
See theBabelSignature companion trait

Contains various methods for generating signatures.

Attributes

Companion
trait
Source
BabelSignature.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Members list

Type members

Classlikes

case class IsConst(c: Const) extends VarConst

Constant with known type.

Constant with known type.

Attributes

Source
BabelSignature.scala
Supertypes
trait Serializable
trait Product
trait Equals
class VarConst
class Object
trait Matchable
class Any
Show all
case object IsUnknownConst extends VarConst

Constant without known type.

Constant without known type.

Attributes

Source
BabelSignature.scala
Supertypes
trait Singleton
trait Product
trait Mirror
trait Serializable
trait Product
trait Equals
class VarConst
class Object
trait Matchable
class Any
Show all
Self type
case object IsVar extends VarConst

Variable without known type.

Variable without known type.

Attributes

Source
BabelSignature.scala
Supertypes
trait Singleton
trait Product
trait Mirror
trait Serializable
trait Product
trait Equals
class VarConst
class Object
trait Matchable
class Any
Show all
Self type
IsVar.type
sealed abstract class VarConst(val isVar: Boolean)

Attributes

Source
BabelSignature.scala
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class IsConst
object IsUnknownConst.type
object IsVar.type

The signature that the Babel parser will use if no other signature is in scope. In this signature, identifiers denote variables iff they start with [u-zU-Z]. The types of all identifiers are arbitrary.

The signature that the Babel parser will use if no other signature is in scope. In this signature, identifiers denote variables iff they start with [u-zU-Z]. The types of all identifiers are arbitrary.

Attributes

Source
BabelSignature.scala
Supertypes
class Object
trait Matchable
class Any
Self type