Example #1
0
File: class.cs Project: shugo/babel
 public IncludeClause(TypeSpecifier typeSpecifier,
                      IncludeModifier modifier,
                      NodeList featureModifierList,
                      Location location)
     : base(location)
 {
     this.typeSpecifier = typeSpecifier;
     this.modifier = modifier;
     this.featureModifierList = featureModifierList;
 }
Example #2
0
File: class.cs Project: shugo/babel
 public FeatureModifier(string name,
                        string newName,
                        IncludeModifier newModifier,
                        Location location)
     : base(location)
 {
     this.name = name;
     this.newName = newName;
     this.newModifier = newModifier;
 }