public override void VisitVariableDeclarationExpression (VariableDeclarationExpression node) { var variable = node.Variable; WriteReference (variable.VariableType); WriteSpace (); Write (variable.Name); }
public virtual ICodeNode VisitVariableDeclarationExpression(VariableDeclarationExpression node) { return(node); }
public CatchClause (BlockStatement body, TypeReference type, VariableDeclarationExpression variable) { this.body = body; this.type = type; this.variable = variable; }
public override void VisitVariableDeclarationExpression (VariableDeclarationExpression node) { try { var variable = node.Variable; WriteReference(variable.VariableType); WriteSpace(); Write(variable.Name); } catch (Exception ex) { System.Diagnostics.Debug.WriteLine("in VisitVariableDeclarationExpression: " + ex.Message); } }
public CatchClause(BlockStatement body, TypeReference type, VariableDeclarationExpression variable) { this.body = body; this.type = type; this.variable = variable; }
public virtual void VisitVariableDeclarationExpression (VariableDeclarationExpression node) { }
public virtual void VisitVariableDeclarationExpression(VariableDeclarationExpression node) { }
public ForEachStatement (VariableDeclarationExpression variable, Expression expression, BlockStatement body) { this.variable = variable; this.expression = expression; this.body = body; }
public override void VisitVariableDeclarationExpression (VariableDeclarationExpression node) { var variable = node.Variable; WriteReference (variable.VariableType); WriteSpace (); Write (string.IsNullOrEmpty (node.Variable.Name)? ("V_" + node.Variable.Index) : node.Variable.Name); }
public override ICodeNode VisitVariableDeclarationExpression (VariableDeclarationExpression node) { TryDiscardVariable (node.Variable); return node; }
public ForEachStatement(VariableDeclarationExpression variable, Expression expression, BlockStatement body) { this.variable = variable; this.expression = expression; this.body = body; }