Uses of Class
org.fife.rsta.ac.js.ast.JavaScriptVariableDeclaration
Packages that use JavaScriptVariableDeclaration
Package
Description
JavaScript code completion classes.
-
Uses of JavaScriptVariableDeclaration in org.fife.rsta.ac.js
Methods in org.fife.rsta.ac.js that return JavaScriptVariableDeclarationModifier and TypeMethodDescriptionSourceCompletionProvider.findDeclaration(String name) Convenience method to call variable resolverSourceCompletionProvider.findNonLocalDeclaration(String name) Convenience method to call variable resolver for non-local variables i.e. -
Uses of JavaScriptVariableDeclaration in org.fife.rsta.ac.js.ast
Subclasses of JavaScriptVariableDeclaration in org.fife.rsta.ac.js.astFields in org.fife.rsta.ac.js.ast with type parameters of type JavaScriptVariableDeclarationModifier and TypeFieldDescriptionprivate HashMap<String, JavaScriptVariableDeclaration> VariableResolver.localVariablesprivate HashMap<String, JavaScriptVariableDeclaration> VariableResolver.preProcessedVariablesprivate HashMap<String, JavaScriptVariableDeclaration> VariableResolver.systemVariablesprivate List<JavaScriptVariableDeclaration> CodeBlock.varDeclarationsMethods in org.fife.rsta.ac.js.ast that return JavaScriptVariableDeclarationModifier and TypeMethodDescriptionVariableResolver.findDeclaration(String name, int dot) Find JSVariableDeclaration for name against all variable types and check is in scope of caret positionVariableResolver.findDeclaration(String name, int dot, boolean local, boolean preProcessed, boolean system) private JavaScriptVariableDeclarationVariableResolver.findDeclaration(HashMap<String, JavaScriptVariableDeclaration> variables, String name, int dot) Find JSVariableDeclaration and check the scope of the caret positionVariableResolver.findNonLocalDeclaration(String name, int dot) Find JSVariableDeclaration within pre-processed and system variable only.CodeBlock.getVariableDeclaration(int index) Returns a variable declaration.Methods in org.fife.rsta.ac.js.ast with parameters of type JavaScriptVariableDeclarationModifier and TypeMethodDescriptionvoidVariableResolver.addLocalVariable(JavaScriptVariableDeclaration declaration) Add local scope variable to cache.voidVariableResolver.addPreProcessingVariable(JavaScriptVariableDeclaration declaration) Add pre-processing scope variable to cache.voidVariableResolver.addSystemVariable(JavaScriptVariableDeclaration declaration) Add system scope variable to cachevoidCodeBlock.addVariable(JavaScriptVariableDeclaration varDec) Adds a variable declaration.Method parameters in org.fife.rsta.ac.js.ast with type arguments of type JavaScriptVariableDeclarationModifier and TypeMethodDescriptionprivate JavaScriptVariableDeclarationVariableResolver.findDeclaration(HashMap<String, JavaScriptVariableDeclaration> variables, String name, int dot) Find JSVariableDeclaration and check the scope of the caret position -
Uses of JavaScriptVariableDeclaration in org.fife.rsta.ac.js.ast.parser
Fields in org.fife.rsta.ac.js.ast.parser declared as JavaScriptVariableDeclarationModifier and TypeFieldDescription(package private) JavaScriptVariableDeclarationJavaScriptAstParser.ProcessFunctionType.decMethods in org.fife.rsta.ac.js.ast.parser that return JavaScriptVariableDeclarationModifier and TypeMethodDescriptionprivate JavaScriptVariableDeclarationJavaScriptAstParser.extractVariableFromNode(org.mozilla.javascript.ast.AstNode node, CodeBlock block, int offset) Extract the variable from the Rhino node and add to the CodeBlockprivate JavaScriptVariableDeclarationJavaScriptAstParser.extractVariableFromNode(org.mozilla.javascript.ast.AstNode node, CodeBlock block, int offset, org.mozilla.javascript.ast.AstNode initializer) Extract the variable from the Rhino node and add to the CodeBlock -
Uses of JavaScriptVariableDeclaration in org.fife.rsta.ac.js.completion
Fields in org.fife.rsta.ac.js.completion declared as JavaScriptVariableDeclarationConstructors in org.fife.rsta.ac.js.completion with parameters of type JavaScriptVariableDeclarationModifierConstructorDescriptionJSVariableCompletion(org.fife.ui.autocomplete.CompletionProvider provider, JavaScriptVariableDeclaration dec) JSVariableCompletion(org.fife.ui.autocomplete.CompletionProvider provider, JavaScriptVariableDeclaration dec, boolean localVariable)