Ejemplo n.º 1
0
 private void ResolveExprLiteralInt(Grammar.ASTNodeExprLiteralInt exprLiteralInt, ref int curSegment, Core.DataAccess output)
 {
     funct.AddInstruction(curSegment,
         Core.InstructionMoveLiteralInt.Of(
             exprLiteralInt.GetSpan(),
             output,
             Core.TypeStruct.Of(session.PrimitiveInt),
             System.Convert.ToInt64(exprLiteralInt.GetExcerpt())));
 }