Example #1
0
 public Int(SourcePos SourcePos, BigInteger Value)
     : base(SourcePos)
 {
     this.Value = Value;
 }
Example #2
0
File: Token.cs Project: cakoose/cks
 public LitInt(SourcePos SourcePos, BigInteger Value)
     : base(SourcePos, Codes.LitInt)
 {
     this.Value = Value;
 }