Class ForStatementContext

    • Constructor Detail

      • ForStatementContext

        public ForStatementContext​(com.github.javaparser.ast.stmt.ForStmt wrappedNode,
                                   com.github.javaparser.symbolsolver.model.resolution.TypeSolver typeSolver)
    • Method Detail

      • solveSymbol

        public com.github.javaparser.symbolsolver.model.resolution.SymbolReference<? extends com.github.javaparser.resolution.declarations.ResolvedValueDeclaration> solveSymbol​(String name)
      • solveMethod

        public com.github.javaparser.symbolsolver.model.resolution.SymbolReference<com.github.javaparser.resolution.declarations.ResolvedMethodDeclaration> solveMethod​(String name,
                                                                                                                                                                        List<com.github.javaparser.resolution.types.ResolvedType> argumentsTypes,
                                                                                                                                                                        boolean staticOnly)
        Description copied from interface: Context
        We find the method declaration which is the best match for the given name and list of typeParametersValues.
      • localVariablesExposedToChild

        public List<com.github.javaparser.ast.body.VariableDeclarator> localVariablesExposedToChild​(com.github.javaparser.ast.Node child)
        Description copied from interface: Context
        The local variables that are declared in this immediate context and made visible to a given child. This list could include values which are shadowed.