Example #1
0
 public UsingNode(IdentifierNode identifier)
 {
     this.identifier = identifier;
 }
Example #2
0
 public IdentifierTypeNode(IdentifierNode typeIdentifier) : this()
 {
     this.identifier = typeIdentifier;
 }
Example #3
0
 public ConstructorNode(IdentifierNode identifier, EncapsulationNode encapsulation, Token modifier)
 {
     this.identifier    = identifier;
     this.encapsulation = encapsulation;
     this.modifier      = modifier;
 }
Example #4
0
 public TypeDeclarationNode()
 {
     this.encapsulation_modifier = new EncapsulationNode();
     this.identifier             = new IdentifierNode();
 }
Example #5
0
 public void AddBase(IdentifierNode identifier)
 {
     this.inherit.Add(identifier);
 }
Example #6
0
 public InterfaceNode(IdentifierNode identifier, List <IdentifierNode> inherit, List <MethodNode> methods) : this()
 {
     this.inherit    = inherit;
     this.methods    = methods;
     this.identifier = identifier;
 }
Example #7
0
 public FieldNode(TypeDeclarationNode type, IdentifierNode identifier, EncapsulationNode encapsulation, Token modifier, VariableInitializer assignment) : this(type, identifier, encapsulation, modifier)
 {
     this.assignment = assignment;
 }