org.kiama.example.oberon0.L4

SymbolTable

trait SymbolTable extends L3.SymbolTable

Linear Supertypes
L3.SymbolTable, L0.SymbolTable, base.SymbolTable, Environments, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SymbolTable
  2. SymbolTable
  3. SymbolTable
  4. SymbolTable
  5. Environments
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. case class ArrayType(size: Int, elemtype: SymbolTable.Type) extends Type with Product with Serializable

    An array type with the given size and element type.

  2. trait Builtin extends Named

    Marker trait for all built-in entities.

  3. case class BuiltinProc(ident: String, params: List[ParamInfo]) extends Entity with NamedEntity with Builtin with Product with Serializable

    A built-in procedure with its parameter information.

  4. case class BuiltinType(ident: String) extends Type with Named with Builtin with Product with Serializable

    A built-in type with an implicit definition that the compiler must have special knowledge about.

  5. case class Constant(ident: String, decl: ConstDecl) extends Entity with NamedEntity with Product with Serializable

    A user-defined constant entity represented by a constant declaration.

  6. abstract class Entity extends AnyRef

    Definition Classes
    Environments
  7. type Environment = Stack[Scope]

    Definition Classes
    Environments
  8. trait ErrorEntity extends Entity

    Definition Classes
    Environments
  9. case class Field(ident: String, tipe: SymbolTable.Type) extends Entity with Product with Serializable

    A record field.

  10. case class IntegerValue(ident: String, tipe: Type, value: Int) extends Entity with NamedEntity with Builtin with Product with Serializable

    A built-in value of some type that is represented by a particular integer value.

  11. case class Module(ident: String, decl: ModuleDecl) extends Entity with NamedEntity with Product with Serializable

    A user-defined module represented by a module declaration.

  12. case class MultipleEntity extends Entity with ErrorEntity with Product with Serializable

    Definition Classes
    Environments
  13. trait Named extends AnyRef

    Definition Classes
    Environments
  14. trait NamedEntity extends Entity with Named

    Definition Classes
    Environments
  15. case class ParamInfo(mode: Mode, ident: String, tipe: SymbolTable.Type) extends Product with Serializable

    Information about a particular parameter.

  16. case class Parameter(mode: Mode, varr: SymbolTable.Variable) extends Entity with NamedEntity with Product with Serializable

    A parameter is a variable augmented with a passing mode.

  17. case class Procedure(ident: String, decl: ProcDecl) extends Entity with NamedEntity with Product with Serializable

    A procedure entity represented by a procedure declaration.

  18. case class RecordType(fields: List[Field]) extends Type with Product with Serializable

    A record with the given fields.

  19. type Scope = Map[String, Entity]

    Definition Classes
    Environments
  20. abstract class Type extends Entity

    An entity representing by a user-provided type declaration.

  21. case class UnknownEntity extends Entity with ErrorEntity with Product with Serializable

    Definition Classes
    Environments
  22. case class UserType(ident: String, tipe: TypeDecl) extends Type with Named with Product with Serializable

    A user-defined type.

  23. case class Variable(ident: String, tipe: TypeDef) extends Entity with NamedEntity with Product with Serializable

    A variable entity including a reference to its types' definition.

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. lazy val booleanType: BuiltinType

    Built-in Boolean type.

    Built-in Boolean type.

    Definition Classes
    SymbolTable
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  9. def defenv: Environment

    The default environment.

    The default environment.

    Definition Classes
    SymbolTable
  10. def defenvPairs: List[(String, Entity)]

    The default environment with pre-defined procedures added.

    The default environment with pre-defined procedures added.

    Definition Classes
    SymbolTableSymbolTable
  11. def define(env: Environment, i: String, e: Entity): Environment

    Definition Classes
    Environments
  12. def enter(env: Environment): Environment

    Definition Classes
    Environments
  13. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  15. lazy val falseConstant: IntegerValue

    Built-in false constant.

    Built-in false constant.

    Definition Classes
    SymbolTable
  16. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  17. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  18. def hasField(t: Type, f: String): Boolean

    Is a given type a record type containing a field called f?

  19. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  20. lazy val integerType: BuiltinType

    Built-in integer type.

    Built-in integer type.

    Definition Classes
    SymbolTable
  21. def isArray(e: Entity): Boolean

    Return true if the entity is erroneous or is an array.

  22. def isBoolean(e: Type): Boolean

    Return true if the given type is Boolean or an unknown type.

    Return true if the given type is Boolean or an unknown type.

    Definition Classes
    SymbolTable
  23. def isConstant(e: Entity): Boolean

    Return true if the entity is erroneous or is a constant.

    Return true if the entity is erroneous or is a constant.

    Definition Classes
    SymbolTable
  24. def isDefinedInEnv(env: Environment, i: String): Boolean

    Definition Classes
    Environments
  25. def isDefinedInInner(env: Environment, i: String): Boolean

    Definition Classes
    Environments
  26. def isDefinedInOuter(env: Environment, i: String): Boolean

    Definition Classes
    Environments
  27. def isDefinedInScope(scope: Scope, i: String): Boolean

    Definition Classes
    Environments
  28. def isDefinedInScope(env: Environment, i: String): Boolean

    Definition Classes
    Environments
  29. def isError(e: Entity): Boolean

    Return true if the entity is an error, false otherwise.

    Return true if the entity is an error, false otherwise.

    Definition Classes
    SymbolTable
  30. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  31. def isInteger(e: Type): Boolean

    Return true if the given type is integer or an unknown type.

    Return true if the given type is integer or an unknown type.

    Definition Classes
    SymbolTable
  32. def isModule(e: Entity): Boolean

    Return true if the entity is erroneous or is a module.

    Return true if the entity is erroneous or is a module.

    Definition Classes
    SymbolTable
  33. def isNotArray(e: Entity): Boolean

    Return true if the entity is erroneous or is not an array.

  34. def isNotRecord(e: Entity): Boolean

    Return true if the entity is erroneous or is not a record.

  35. def isRecord(e: Entity): Boolean

    Return true if the entity is erroneous or is a record.

  36. def isType(e: Entity): Boolean

    Return true if the entity is erroneous or is a type.

    Return true if the entity is erroneous or is a type.

    Definition Classes
    SymbolTable
  37. def isVariable(e: Entity): Boolean

    Parameters are variables too.

    Parameters are variables too.

    Definition Classes
    SymbolTableSymbolTable
  38. def leave(env: Environment): Environment

    Definition Classes
    Environments
  39. def lookup(env: Environment, i: String, e: Entity, scope: Boolean): Entity

    Definition Classes
    Environments
  40. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  41. final def notify(): Unit

    Definition Classes
    AnyRef
  42. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  43. lazy val readProc: BuiltinProc

    The built-in Read procedure.

    The built-in Read procedure.

    Definition Classes
    SymbolTable
  44. def resetEnvironments: Unit

    Definition Classes
    Environments
  45. def rootenv(bindings: (String, Entity)*): Environment

    Definition Classes
    Environments
  46. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  47. def toString(): String

    Definition Classes
    AnyRef → Any
  48. lazy val trueConstant: IntegerValue

    Built-in true constant.

    Built-in true constant.

    Definition Classes
    SymbolTable
  49. lazy val unknownType: BuiltinType

    A type that is unknown, eg because the typed thing is erroneously defined.

    A type that is unknown, eg because the typed thing is erroneously defined.

    Definition Classes
    SymbolTable
  50. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  51. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  52. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  53. lazy val writeProc: BuiltinProc

    The built-in Write procedure.

    The built-in Write procedure.

    Definition Classes
    SymbolTable
  54. lazy val writelnProc: BuiltinProc

    The built-in WriteLn procedure.

    The built-in WriteLn procedure.

    Definition Classes
    SymbolTable

Inherited from L3.SymbolTable

Inherited from L0.SymbolTable

Inherited from base.SymbolTable

Inherited from Environments

Inherited from AnyRef

Inherited from Any

Ungrouped