public virtual bool VisitImaginaryLiteral(ImaginaryLiteral stmt) { if (!VisitExpr(stmt)) { return(false); } return(true); }
public bool VisitImaginaryLiteral(ImaginaryLiteral stmt) { throw new NotImplementedException(); }
public CodeExpression VisitImaginary(ImaginaryLiteral im) { m.EnsureImport("System.Numerics"); return(m.Prim(new Complex(0, im.NumericValue))); }
public void VisitImaginaryLiteral(ImaginaryLiteral im) { throw new NotImplementedException(); }
public DataType VisitImaginary(ImaginaryLiteral c) { return(DataType.Complex); }
public CodeExpression VisitImaginary(ImaginaryLiteral im) { throw new NotSupportedException(); }