예제 #1
0
 void Visitor.Visit(TypeDouble type)
 {
 }
예제 #2
0
 void Visitor.Visit(TypeDouble type)
 {
     Type = Zeze.Serialize.ByteBuffer.DOUBLE;
 }
예제 #3
0
 public void Visit(TypeDouble type)
 {
     //text = "(int)System.BitConverter.DoubleToInt64Bits(" + varname + ")";
     throw new NotImplementedException();
 }
예제 #4
0
 void Visitor.Visit(TypeDouble type)
 {
     ChangeVariableCollectorName = "Zeze.Transaction.ChangeVariableCollectorChanged()";
 }
예제 #5
0
파일: Construct.cs 프로젝트: e2wugui/zeze
 public void Visit(TypeDouble type)
 {
     Initial();
 }
예제 #6
0
 void Visitor.Visit(TypeDouble type)
 {
     Name = "Zeze.ByteBuffer.DOUBLE";
 }
예제 #7
0
 public void Visit(TypeDouble type)
 {
     WriteLogValue(type);
 }
예제 #8
0
파일: Compare.cs 프로젝트: e2wugui/zeze
 public void Visit(TypeDouble type)
 {
     text = variable.NamePrivate + ".CompareTo(" + another + "." + variable.NamePrivate + ")";
 }
예제 #9
0
파일: Default.cs 프로젝트: e2wugui/zeze
 void Visitor.Visit(TypeDouble type)
 {
     SetDefaultValue("0");
 }
예제 #10
0
파일: Define.cs 프로젝트: e2wugui/zeze
 public void Visit(TypeDouble type)
 {
     DefineStack(type);
 }
예제 #11
0
 public void Visit(TypeDouble type)
 {
     name = "number";
 }
예제 #12
0
파일: TypeName.cs 프로젝트: e2wugui/zeze
 public void Visit(TypeDouble type)
 {
     name = "double";
 }
예제 #13
0
파일: Tostring.cs 프로젝트: e2wugui/zeze
 void Visitor.Visit(TypeDouble type)
 {
     sw.WriteLine(prefix + $"sb.Append(new string(' ', level * 4)).Append(\"{var}\").Append(\"=\").Append({var}).Append(\"{sep}\").Append(Environment.NewLine);");
 }