Exemple #1
0
 public ApexProperty(string text, ApexType type13, List <Modifier> modifierList14, List <IApexNode> propertyDeclaration16)
 {
     Ident     = text;
     _type13   = type13;
     Modifiers = modifierList14;
     _propertyDeclaration16 = propertyDeclaration16;
 }
Exemple #2
0
 public ForEachStatement(ApexType type50, string p, IApexNode expression52, IApexNode foreachStatementInner)
 {
     // TODO: Complete member initialization
     this.type50                = type50;
     this.p                     = p;
     this.expression52          = expression52;
     this.foreachStatementInner = foreachStatementInner;
 }
Exemple #3
0
 public ApexFieldList(ApexType type9, List <Modifier> modifierList10, List <ApexField> variableDeclaratorList11)
 {
     _type9 = type9;
     _variableDeclaratorList11 = variableDeclaratorList11;
     Modifiers = modifierList10;
 }
Exemple #4
0
 public LocalVariableDeclaration(ApexType type, List <ApexField> variableDeclaratorList)
 {
     _type = type;
     _variableDeclaratorList = variableDeclaratorList;
 }
Exemple #5
0
 public SignatureParam(ApexType type53, ApexField variableDeclaratorId54)
 {
     // TODO: Complete member initialization
     this.type53 = type53;
     this.variableDeclaratorId54 = variableDeclaratorId54;
 }