Example #1
0
 public Expressions.Expression Translate(AST.Expressions.IExpression e)
 {
     translated = null;
     e.Accept(this);
     Debug.Assert(translated != null);
     return(translated);
 }
Example #2
0
 public FieldType Translate(AST.FieldType original, String fieldName, AST.Expressions.IExpression collectionSize)
 {
     this.FieldName  = fieldName;
     translated_type = null;
     original.Accept(this);
     Debug.Assert(translated_type != null);
     return(translated_type);
 }