예제 #1
0
파일: VPrimitive.cs 프로젝트: cakoose/cks
 public Int(SourcePos SourcePos, BigInteger Value)
     : base(SourcePos)
 {
     this.Value = Value;
 }
예제 #2
0
파일: Token.cs 프로젝트: cakoose/cks
 public LitInt(SourcePos SourcePos, BigInteger Value)
     : base(SourcePos, Codes.LitInt)
 {
     this.Value = Value;
 }