mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
19 lines
No EOL
563 B
C#
19 lines
No EOL
563 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Reflection;
|
|
|
|
namespace Indy.IL2CPU.Compiler
|
|
{
|
|
public class QueuedMethodInformation
|
|
{
|
|
public bool Processed;
|
|
public bool PreProcessed;
|
|
public int Index;
|
|
public MLDebugSymbol[] Instructions;
|
|
public readonly SortedList<string, object> Info = new SortedList<string, object>(StringComparer.InvariantCultureIgnoreCase);
|
|
public MethodBase Implementation;
|
|
public string FullName;
|
|
}
|
|
} |