case class SemanticState(currentScope: ScopeLocation, typeTable: ASTAnnotationMap[Expression, ExpressionTypeInfo], recordedScopes: ASTAnnotationMap[ASTNode, Scope], notifications: Set[InternalNotification] = Set.empty, features: Set[SemanticFeature] = Set.empty, initialWith: Boolean = false, declareVariablesToSuppressDuplicateErrors: Boolean = true, cypher9ComparabilitySemantics: Boolean = false) extends Product with Serializable

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SemanticState
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SemanticState(currentScope: ScopeLocation, typeTable: ASTAnnotationMap[Expression, ExpressionTypeInfo], recordedScopes: ASTAnnotationMap[ASTNode, Scope], notifications: Set[InternalNotification] = Set.empty, features: Set[SemanticFeature] = Set.empty, initialWith: Boolean = false, declareVariablesToSuppressDuplicateErrors: Boolean = true, cypher9ComparabilitySemantics: Boolean = false)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def addNotification(notification: InternalNotification): SemanticState
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clearInitialWith: SemanticState
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  8. val currentScope: ScopeLocation
  9. val cypher9ComparabilitySemantics: Boolean
  10. def declareVariable(variable: LogicalVariable, possibleTypes: TypeSpec, positions: Set[InputPosition] = Set.empty, overriding: Boolean = false): Either[SemanticError, SemanticState]

    overriding

    if true then a previous occurrence of that variable is overridden. if false then a previous occurrence of that variable leads to an error

  11. val declareVariablesToSuppressDuplicateErrors: Boolean
  12. def ensureVariableDefined(variable: LogicalVariable): Either[SemanticError, SemanticState]
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def expectType(expression: Expression, possibleTypes: TypeSpec): (SemanticState, TypeSpec)
  15. def expressionType(expression: Expression): ExpressionTypeInfo
  16. val features: Set[SemanticFeature]
  17. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. def implicitVariable(variable: LogicalVariable, possibleTypes: TypeSpec): Either[SemanticError, SemanticState]
  20. def importValuesFromScope(scope: Scope, exclude: Set[String] = Set.empty): SemanticState
  21. val initialWith: Boolean
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. def mergeSymbolPositionsFromScope(scope: Scope, exclude: Set[String] = Set.empty): SemanticState
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. def newChildScope: SemanticState
  26. def newSiblingScope: SemanticState
  27. val notifications: Set[InternalNotification]
  28. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  29. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  30. def popScope: SemanticState
  31. def recogniseInitialWith: SemanticState
  32. def recordCurrentScope(astNode: ASTNode): SemanticState
  33. val recordedScopes: ASTAnnotationMap[ASTNode, Scope]
  34. def scope(astNode: ASTNode): Option[Scope]
  35. def scopeTree: Scope
  36. def specifyType(expression: Expression, possibleTypes: TypeSpec): Either[SemanticError, SemanticState]
  37. def symbol(name: String): Option[Symbol]
  38. def symbolTypes(name: String): TypeSpec
  39. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  40. val typeTable: ASTAnnotationMap[Expression, ExpressionTypeInfo]
  41. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  44. def withCypher9ComparabilitySemantics(cypher9ComparabilitySemantics: Boolean): SemanticState
    Annotations
    @Deprecated
  45. def withFeature(feature: SemanticFeature): SemanticState
  46. def withFeatures(features: SemanticFeature*): SemanticState

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped