예제 #1
0
파일: Int.cs 프로젝트: phisiart/C-Compiler
 public TokenInt(Int64 val, IntSuffix suffix, String raw) {
     this.Val = val;
     this.Suffix = suffix;
     this.Raw = raw;
 }
예제 #2
0
파일: Int.cs 프로젝트: sunny597/C-Compiler
 public TokenInt(Int64 val, IntSuffix suffix, String raw)
 {
     this.Val    = val;
     this.Suffix = suffix;
     this.Raw    = raw;
 }