コード例 #1
0
 public override void VisitChar(ASTChar n)
 {
     _gen.Emit(OpCodes.Ldc_I4_S, n.Val);
     _lastWalkedType = typeof(char);
 }
コード例 #2
0
ファイル: ThirdPass.cs プロジェクト: goric/cflat
 public override void VisitChar(ASTChar n)
 {
     n.CFlatType = _lastSeenType = new TypeChar();
 }