예제 #1
0
 public AstModifiedStatement(Source src, AstStatementModifier modifier, AstStatement statement)
     : base(src)
 {
     Modifier  = modifier;
     Statement = statement;
 }
예제 #2
0
 public TokenAttribute(string value, AstUnaryType unaryType, AstStatementModifier statementModifier)
 {
     Value             = value;
     UnaryType         = unaryType;
     StatementModifier = statementModifier;
 }