specifier-qualifier-list : [ Type-specifier | Type-qualifier ]+
Inheritance: ISyntaxTreeNode
Ejemplo n.º 1
0
 public static StructDecln Create(SpecQualList specQualList, ImmutableList<StructDeclr> structDeclrs) =>
     new StructDecln(specQualList, structDeclrs);
Ejemplo n.º 2
0
 public static TypeName Create(SpecQualList specQualList, Option<AbstractDeclr> abstractDeclr) =>
     new TypeName(specQualList, abstractDeclr.IsSome ? abstractDeclr.Value : AbstractDeclr.Empty);
Ejemplo n.º 3
0
 protected StructDecln(SpecQualList specQualList, ImmutableList<StructDeclr> structDeclrs) {
     this.SpecQualList = specQualList;
     this.StructDeclrs = structDeclrs;
 }
Ejemplo n.º 4
0
 public static SpecQualList Add(SpecQualList list, TypeQual typeQual) =>
 Create(list.TypeSpecs, list.TypeQuals.Add(typeQual));
Ejemplo n.º 5
0
 protected TypeName(SpecQualList specQualList, AbstractDeclr abstractDeclr) {
     this.SpecQualList = specQualList;
     this.AbstractDeclr = abstractDeclr;
 }
Ejemplo n.º 6
0
 public static SpecQualList Add(SpecQualList list, TypeQual typeQual) =>
     Create(list.TypeSpecs, list.TypeQuals.Add(typeQual));
Ejemplo n.º 7
0
 public static SpecQualList Add(SpecQualList list, TypeSpec typeSpec) =>
 Create(list.TypeSpecs.Add(typeSpec), list.TypeQuals);
Ejemplo n.º 8
0
 public static SpecQualList Add(SpecQualList list, TypeSpec typeSpec) =>
     Create(list.TypeSpecs.Add(typeSpec), list.TypeQuals);
Ejemplo n.º 9
0
 public static TypeName Create(SpecQualList specQualList, Option <AbstractDeclr> abstractDeclr) =>
 new TypeName(specQualList, abstractDeclr.IsSome ? abstractDeclr.Value : AbstractDeclr.Empty);
Ejemplo n.º 10
0
 protected TypeName(SpecQualList specQualList, AbstractDeclr abstractDeclr)
 {
     this.SpecQualList  = specQualList;
     this.AbstractDeclr = abstractDeclr;
 }
Ejemplo n.º 11
0
 public static StructDecln Create(SpecQualList specQualList, ImmutableList <StructDeclr> structDeclrs) =>
 new StructDecln(specQualList, structDeclrs);
Ejemplo n.º 12
0
 protected StructDecln(SpecQualList specQualList, ImmutableList <StructDeclr> structDeclrs)
 {
     this.SpecQualList = specQualList;
     this.StructDeclrs = structDeclrs;
 }