ABB.Swum.Nodes.VariableDeclarationNode.VariableDeclarationNode C# (CSharp) Method

VariableDeclarationNode() public method

Creates a new VariableDeclarationNode.
public VariableDeclarationNode ( string name, string type, bool isPrimitive, IdSplitter splitter, Tagger tagger, Location location, int position ) : System
name string The name of the variable.
type string A string giving the type of the variable.
isPrimitive bool Whether the type is a primitive data type.
splitter IdSplitter An IdSplitter to split the name into words.
tagger Tagger A part-of-speech tagger to tag the words in the name.
location Location The program location of the variable declaration.
position int The position of this variable in the declaration list.
return System
        public VariableDeclarationNode(string name, string type, bool isPrimitive, IdSplitter splitter, Tagger tagger, Location location, int position)
            : this(name, splitter) {
            this.InitType(type, isPrimitive, splitter, tagger);
            //tagger.TagVariableName(this.ParsedName);
            this.SetLocation(location);
            this.Position = position;
        }

Same methods

VariableDeclarationNode::VariableDeclarationNode ( string name ) : System
VariableDeclarationNode::VariableDeclarationNode ( string name, IdSplitter splitter ) : System
VariableDeclarationNode::VariableDeclarationNode ( string name, string type, bool isPrimitive, IdSplitter splitter, Tagger tagger ) : System
VariableDeclarationNode::VariableDeclarationNode ( string name, string type, bool isPrimitive, IdSplitter splitter, Tagger tagger, Location location ) : System