Boo.Lang.Compiler.Steps.EmitAssembly.OnIntegerLiteralExpression C# (CSharp) Метод

OnIntegerLiteralExpression() публичный Метод

public OnIntegerLiteralExpression ( IntegerLiteralExpression node ) : void
node Boo.Lang.Compiler.Ast.IntegerLiteralExpression
Результат void
        public override void OnIntegerLiteralExpression(IntegerLiteralExpression node)
        {
            IType type = node.ExpressionType ?? TypeSystemServices.IntType;
            EmitLoadLiteral(type, node.Value);
            PushType(type);
        }
EmitAssembly