C# Class AST.StructDecln

struct-declaration : specifier-qualifier-list struct-declarator-list ';' struct-declarator-list : struct-declarator [ ',' struct-declarator ]* struct-declarator : declarator | [declarator]? ':' constant-expression
Inheritance: ISyntaxTreeNode
显示文件 Open project: phisiart/C-Compiler

Public Methods

Method Description
Create ( SpecQualList specQualList, ImmutableList structDeclrs ) : StructDecln

Protected Methods

Method Description
StructDecln ( SpecQualList specQualList, ImmutableList structDeclrs ) : System

Private Methods

Method Description
GetMemberDeclns ( Env env ) : ExprType>>>.ISemantReturn

Method Details

Create() public static method

public static Create ( SpecQualList specQualList, ImmutableList structDeclrs ) : StructDecln
specQualList SpecQualList
structDeclrs ImmutableList
return StructDecln

StructDecln() protected method

protected StructDecln ( SpecQualList specQualList, ImmutableList structDeclrs ) : System
specQualList SpecQualList
structDeclrs ImmutableList
return System