Beispiel #1
0
		public MainView()
		{
			InitializeComponent();
			
			context = new AssemblyAnalyzer();
			this.DataContext = context;
		}
Beispiel #2
0
		public ILAnalyzer(AssemblyDefinition[] assemblies, AssemblyAnalyzer mappings)
		{
			if (assemblies == null)
				throw new ArgumentNullException("assemblies");
			this.assemblies = assemblies;
			this.mappings = mappings;
		}
Beispiel #3
0
		public MainView()
		{
			InitializeComponent();
			
			context = new AssemblyAnalyzer();
			this.DataContext = context;
			fileNames = new List<string>();
		}
Beispiel #4
0
 public ILAnalyzer(AssemblyDefinition[] assemblies, AssemblyAnalyzer mappings)
 {
     if (assemblies == null)
     {
         throw new ArgumentNullException("assemblies");
     }
     this.assemblies = assemblies;
     this.mappings   = mappings;
 }
Beispiel #5
0
			public AnalysisTypeVisitor(AssemblyAnalyzer context, NodeBase node)
			{
				this.context = context;
				this.node = node;
			}
 public AnalysisTypeVisitor(AssemblyAnalyzer context, NodeBase node)
 {
     this.context = context;
     this.node    = node;
 }