Inheritance: LiteralExpression
Example #1
0
 public override void VisitCharLiteral(CharLiteralExpression charLiteral)
 {
     ilGenerator.Emit(OpCodes.Ldc_I4, charLiteral.Value);
 }
Example #2
0
 public override void VisitCharLiteral(CharLiteralExpression charLiteral)
 {
     charLiteral.NodeType = typeManager.CharType;
 }
Example #3
0
File: node.cs Project: shugo/babel
 public virtual void VisitCharLiteral(CharLiteralExpression charLiteral)
 {
 }