Packages

c

com.nawforce.apexlink.cst

BlockVerifyContext

abstract class BlockVerifyContext extends VerifyContext with ControlFlowContext

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BlockVerifyContext
  2. ControlFlowContext
  3. VerifyContext
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new BlockVerifyContext(parentContext: VerifyContext)

Abstract Value Members

  1. abstract def isStatic: Boolean
  2. abstract def returnType: TypeName

Concrete 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 addDependency(dependent: Dependent): Unit

    Declare a dependency on dependent

    Declare a dependency on dependent

    Definition Classes
    BlockVerifyContextVerifyContext
  5. def addPath(path: ControlPath): ControlPath
    Definition Classes
    ControlFlowContext
  6. def addVar(name: Name, definition: CST, typeName: TypeName): Unit
  7. def addVar(name: Name, definition: Option[CST], typeDeclaration: TypeDeclaration): Unit
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  10. def collectVars(accum: Map[Name, VarTypeAndDefinition]): Unit
  11. def declaredVars: Map[Name, VarTypeAndDefinition]
  12. def disableIssueReporting[T]()(op: => T): T
    Definition Classes
    VerifyContext
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. def getControlRoot(): ControlFlowContext
    Definition Classes
    ControlFlowContext
  17. def getPaths: Array[ControlPath]
    Definition Classes
    ControlFlowContext
  18. def getTypeAndAddDependency(typeName: TypeName, from: TypeDeclaration): TypeResponse

    Helper to locate a relative or absolute type and add as dependency if found

    Helper to locate a relative or absolute type and add as dependency if found

    Definition Classes
    BlockVerifyContextVerifyContext
  19. def getTypeFor(typeName: TypeName, from: TypeDeclaration): TypeResponse

    Locate a type, typeName may be relative so searching must be performed wrt a typeDeclaration

    Locate a type, typeName may be relative so searching must be performed wrt a typeDeclaration

    Definition Classes
    BlockVerifyContextVerifyContext
  20. def getVar(name: Name, markUsed: Boolean): Option[VarTypeAndDefinition]
  21. def hasBranchingControl(): Boolean
    Definition Classes
    ControlFlowContext
  22. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  24. def isSaving: Boolean

    Test if result saving is enabled

    Test if result saving is enabled

    Definition Classes
    BlockVerifyContextVerifyContext
  25. def log(issue: Issue): Unit
    Definition Classes
    VerifyContext
  26. def logError(location: PathLocation, msg: String): Unit
    Definition Classes
    VerifyContext
  27. def logUnreachableIssues(): Unit
    Definition Classes
    ControlFlowContext
  28. def missingIdentifier(location: PathLocation, typeName: TypeName, name: Name): Unit
    Definition Classes
    VerifyContext
  29. def missingType(location: PathLocation, typeName: TypeName): Unit
    Definition Classes
    VerifyContext
  30. def module: Module

    Module for current outer type

    Module for current outer type

    Definition Classes
    BlockVerifyContextVerifyContext
  31. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  32. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  33. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  34. def parent(): Option[VerifyContext]
    Definition Classes
    BlockVerifyContextVerifyContext
  35. def parentFlowContext: Option[BlockVerifyContext]
    Definition Classes
    ControlFlowContext
  36. def referencedVars: Set[Name]
  37. def saveResult(cst: CST, altLocation: Location, vars: Option[Map[Name, VarTypeAndDefinition]])(op: => ExprContext): ExprContext

    Save some result of a validation for later analysis with local var map

    Save some result of a validation for later analysis with local var map

    Definition Classes
    BlockVerifyContextVerifyContext
  38. def saveResult(cst: CST, altLocation: Location)(op: => ExprContext): ExprContext

    Save some result of a validation for later analysis

    Save some result of a validation for later analysis

    Definition Classes
    BlockVerifyContextVerifyContext
  39. def setControlRoot(context: BlockVerifyContext with ControlFlowContext): BlockVerifyContext
    Definition Classes
    ControlFlowContext
  40. def superType: Option[TypeDeclaration]

    Get type declaration of 'super'

    Get type declaration of 'super'

    Definition Classes
    BlockVerifyContextVerifyContext
  41. def suppressIssues: Boolean

    Test if issues are currently being suppressed

    Test if issues are currently being suppressed

    Definition Classes
    VerifyContext
  42. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  43. def thisType: TypeDeclaration

    Get type declaration of 'this', this may be a trigger declaration

    Get type declaration of 'this', this may be a trigger declaration

    Definition Classes
    BlockVerifyContextVerifyContext
  44. def toString(): String
    Definition Classes
    AnyRef → Any
  45. def typePlugin: Plugin

    Get Plugin instance for this type

    Get Plugin instance for this type

    Definition Classes
    BlockVerifyContextVerifyContext
  46. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  47. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  48. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  49. def withBranchingControl(): BlockVerifyContext
    Definition Classes
    ControlFlowContext

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from ControlFlowContext

Inherited from VerifyContext

Inherited from AnyRef

Inherited from Any

Ungrouped