Interface AnalysisResult


public interface AnalysisResult
An interface with the results from the expression/block analysis
  • Method Details

    • getIdentifiers

      Set<String> getIdentifiers()
      Returns the Set of all used identifiers
      Returns:
    • getBoundIdentifiers

      BoundIdentifiers getBoundIdentifiers()
      Returns the array of lists of bound identifiers
      Returns:
    • getNotBoundedIdentifiers

      Set<String> getNotBoundedIdentifiers()
      Returns the Set of not bounded identifiers
      Returns:
    • getLocalVariables

      Set<String> getLocalVariables()
      Returns the Set of declared local variables
      Returns:
    • getReturnType

      Class<?> getReturnType()
    • isTypesafe

      default boolean isTypesafe()