public ApexProperty(string text, ApexType type13, List <Modifier> modifierList14, List <IApexNode> propertyDeclaration16) { Ident = text; _type13 = type13; Modifiers = modifierList14; _propertyDeclaration16 = propertyDeclaration16; }
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; }
public ApexFieldList(ApexType type9, List <Modifier> modifierList10, List <ApexField> variableDeclaratorList11) { _type9 = type9; _variableDeclaratorList11 = variableDeclaratorList11; Modifiers = modifierList10; }
public LocalVariableDeclaration(ApexType type, List <ApexField> variableDeclaratorList) { _type = type; _variableDeclaratorList = variableDeclaratorList; }
public SignatureParam(ApexType type53, ApexField variableDeclaratorId54) { // TODO: Complete member initialization this.type53 = type53; this.variableDeclaratorId54 = variableDeclaratorId54; }