Esempio n. 1
0
		public GrapeCatchClause(GrapeSimpleType exceptionType, GrapeIdentifier variableIdentifier, GrapeList<GrapeStatement> statements): base(statements) {
			this.exceptionType = exceptionType;
			exceptionVariable = GrapeVariable.Create(exceptionType, variableIdentifier);
		}
		public GrapeVariableStatement(GrapeVariable variable) {
			this.variable = variable;
		}
		public GrapeForEachStatement(GrapeVariable iteratorVariable, GrapeExpression valueExpression, GrapeList<GrapeStatement> statements): base(statements) {
			this.iteratorVariable = iteratorVariable;
			this.valueExpression = valueExpression;
		}