Exemplo n.º 1
0
 public Int(SourcePos SourcePos, BigInteger Value)
     : base(SourcePos)
 {
     this.Value = Value;
 }
Exemplo n.º 2
0
Arquivo: Token.cs Projeto: cakoose/cks
 public LitInt(SourcePos SourcePos, BigInteger Value)
     : base(SourcePos, Codes.LitInt)
 {
     this.Value = Value;
 }