ABB.Swum.Nodes.FieldDeclarationNode.AssignStructuralInformation C# (CSharp) Method

AssignStructuralInformation() public method

Assigns the attributes of this field related to its structure within the program.
public AssignStructuralInformation ( IdSplitter splitter, Tagger tagger ) : void
splitter IdSplitter An IdSplitter to split the words of identifiers.
tagger Tagger A part-of-speech tagger
return void
        public void AssignStructuralInformation(IdSplitter splitter, Tagger tagger) {
            this.Type = new TypeNode(Context.IdType, Context.IdTypeIsPrimitive, splitter, tagger);
            this.DeclaringClass = new TypeNode(Context.DeclaringClass, false, splitter, tagger);
        }
    }