Giter Club home page Giter Club logo

neo-debugger-tools's Introduction

neo-debugger-tools

NEO debugger tools for NEO smart contracts.


Overview

A suite of development tools for NEO smart contracts.
Includes a cli disassembler and a GUI debugger. A helper library that helps loading .avm files and create and load .neomap files is also included, and can be used to create other dev tools.

(click picture to view video)

IntroductionVideo

How this works

  1. A modified NEO compiler to compile C#/Python/etc into an .avm file and, at same time, emit a .debug.json file.
  2. A debugger IDE will load the .avm and disassemble it into readable opcodes.
  3. The debugger IDE can also run or step through either the assembly code or the original source (if the .debug.json file is present in same directory as the .avm)
  4. The debugger will also emulate the smart contracts' API that interacts with the Blockchain (like Storage, Transactions, Blocks)

Setup

  1. Get this code and open the solution in Visual Studio.
  2. Compile the solution and find the compiled NEON.exe path (should be in $(SolutionPath)\NEO-Compiler\bin\Debug).
  3. Replace the path of your old NEON compiler to the new compiler path.
  4. When you compile a smart contract, it will accordingly use the debugger compiler and produce (next to the.avm) the map file which you need to step through the code.

Current Features

  • Supports any NEO .avm, regardless of the language / compiler used
  • Source viewer with syntax highlight powered by ScintillaNET
  • Run, step and set breakpoints in order to debug smart contracts
  • Toggle between source code and assembly code

Limitations

  • Debugging ASM, C# and Python only for now (see section below how to add new languages)
  • Windows only for now, using .NET Framework / Winforms / ScintillaNET
  • Smart contract source is limited to a single file for now
  • Not possible yet to inspect variable values
  • Some NEO syscalls / APIs not supported yet (work in progress)

Usage

Open the .avm file in the NEO-dbg GUI application. This will show either assembly code for the .avm or C# if a debug map file was found. Currently the only way to generate a .neomap file is to compile the smart contracts with the modified NeoN compiler included in this repository.

Shortcuts

Key Action Comments
F5 Executes the smart contract
F10 Steps through the smart contract
F12 Toggles between assembly and source code Only works when a .neomap file is available

Smart Contract Inputs

ABI files

A single smart contract can have different results and behaviours, depending on the inputs passed to it.

So, when debugging a contract, it is necessary to be able to know what methods are supported and specify the inputs for them.

Currently this is done via a .abi.json file that resides in the same folder as the debugger executable (should generated automatically by the compiler, but can also be hand-written if necessary).

This file should have the same name as the .avm file. So if your contract file is hello.avm, make sure the input file is called hello.abi.json.

Here's a example contract that takes a string and array of objects as argument.

using Neo.SmartContract.Framework;
using Neo.SmartContract.Framework.Services.Neo;
using System;
using System.Numerics;

namespace Example {
    public class Calculator : SmartContract {
        public static int Main(string operation, params object[] args) {
            int arg0 = (int)args[0];
            int arg1 = (int)args[1];

            if (operation == "add") { return arg0 + arg1; }
            if (operation == "sub") { return arg0 - arg1; }

            return -1;
        }
    }
}

And here's how the .abi.json would look for this contract.

{
    "hash":"0x8661a692f3fbd62973d64cf31ef0e9718425aad2",
    "entrypoint":"Main",
    "functions":
    [
        {
            "name":"Main",
            "parameters":
            [
                {
                    "name":"operation",
                    "type":"String"
                },
                {
                    "name":"args",
                    "type":"Array"
                }
            ],
            "returntype":"Any"
        },
    ],
    "events":
    [
    ]
}

In order to insert strings as inputs put quotes around them (eg: "hello").

For arrays separate each element with commas and put everything into brackets (eg: [2, 3, 5]). For byte arrays, you can also just insert a single hexadecimal string (eg: FF03DA22)

Test cases

When debugging a contract, it is also convenient to be able to specify a pre-defined set of test inputs. Currently this is supported via a .test.json file that resides in the same folder as the debugger executable.

This file should have the same name as the .avm file. So if your contract file is hello.avm, make sure the input file is called hello.test.json.

Here's a example of how to specify test cases.

{
	"cases": [
		{
			"name": "add(5,3)",
			"method": "Main",
			"params": ["add", [5, 3]]
		},
		{
			"name": "sub(7,2)",
			"method": "Main",
			"params": ["sub", [7, 2]]
		},
	]				
}

Storage Emulation

The debugger supports emulation of the Storage API, meaning Storage.Put and Storage.Get work fine when debugging.

The actual data is stored in a file with extension .store, in same folder as the .avm. If required to reset the smart contract storage, it's fine to delete this file.

In the latest version it is possible to view the storage contents using the Debug>Storage menu.

Storage Screenshot

Asset Transfer

The current version does support sending virtual NEO and GAS to the smart contract, emulating an asset transfer.

Supported Programming Languages

NEO smart contracts can be coded in many different languages, and in theory, this compiler already supports any language as long as a .neomap file exists in the same directory as the .avm file. However, in order to be able to debug an compiled .avm file, the compiler used must be able to emit those map files during compilation. The table below lists the current supported languages / compilers.

Language Compiler Comments
C# neon Only supported if using the neon version from this repository.
Python neo-boa

To add other languages it would be necessary to modify compilers to emit a .neomap. The .neomap file format is json and consists of a compiler section that includes info about the compiler used, files section including list of source code files used to generate the avm, an avm section including an MD5 hash of the compiled avm, plus an map section used to map start and end byte offsets to source code.

{
    "compiler": {
        "name": "neo-boa",
        "version": "0.1"
    },
    "files": [
        {
            "url": "D:\\MySmartContracts\\HelloWorld.py",
            "id": "1"
        }
    ],
    "avm": {
        "name": "AddTest",
        "hash": "c485df80dc0551162a344ed1617956e5"
    },
    "map": [
        {
            "start": 17,
            "end": 43,
            "file": 1,
            "line": 10
        },
        {
            "start": 44,
            "end": 61,
            "file": 1,
            "line": 11
        },
        {
            "start": 62,
            "end": 88,
            "file": 1,
            "line": 13
        },
        {
            "start": 89,
            "end": 100,
            "file": 1,
            "line": 14
        }
    ]
}

Developer Shell

A developer shell is also included and can be used to emulate and debug NEO smart contracts from the terminal.

The smart contract inputs should also be passed as a JSON string, same as in the debugger GUI.

If using Linux or OSX, Mono is required.

Inputs Screenshot

Unit testing

The NEO emulator library makes it easy to create your own unit tests for smart contracts.

Install

It's not necessary to download the debugger and the others tools if you just need Unit Testing.

In that case, just install the Neo.Emulator, which is available as a Nuget package.

PM> Install-Package Neo.Emulator

Example

using System.IO;
using LunarParser;
using Neo.Emulator;
using NUnit.Framework;

[TestFixture]
public class ContractTests
{
	private static NeoEmulator emulator; 

	// load the .avm file before tests run
	[OneTimeSetUp]
	public void Setup()
	{
		var path = TestContext.CurrentContext.TestDirectory.Replace("ICO-Unit-Tests", "ICO-Template");
		Directory.SetCurrentDirectory(path);
		var avmBytes = File.ReadAllBytes("ICOContract.avm");
		emulator = new NeoEmulator(avmBytes);
	}

	[Test]
	public void TestSymbol()
	{
		// create the inputs to be passed to the NEO smart contract
		var inputs = DataNode.CreateArray();
		inputs.AddValue("symbol");
		inputs.AddValue(null);

		// reset the Emulator then run it
		emulator.Reset();
		emulator.Run(inputs);

		// obtain the smart contract output
		var result = emulator.GetOutput();
		Assert.NotNull(result);

		// validate output
		var symbol = result.GetString();
		Assert.IsTrue(symbol.Equals("DEMO"));
	}
}   

Demo Project

In the folder ICO Template you can find an example of a complex .json input file.

Included is also a small project to demonstrate unit tests of the demo project.

Roadmap

  • Transactions emulation (In progress)
  • Debugger map generation for Java / Python / others

Credits and License

Created by Sérgio Flores (http://lunarlabs.pt/).

Credits also go to the NEO team(http://neo.org), as a large part of this work was based on their NEO compiler and NEO VM.

This project is released under the MIT license, see LICENSE.md for more details.

neo-debugger-tools's People

Contributors

belane avatar farukterzioglu avatar gubanotorious avatar hal0x2328 avatar jhepkema avatar lock9 avatar lschaertel avatar melanke avatar mwherman2000 avatar raymanyoung avatar relfos avatar skolevatykh avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

neo-debugger-tools's Issues

ICO-Template project: mscorlib.dll build error (with a fix/workaround)

I couldn't build from a fresh fork off of master. This was the build error in Visual Studio:

can't parese event type from:System.Action3<System.Byte[],System.Byte[],System.Numerics.BigInteger>.maybe it is System.Action which is defined in mscorlib.dll,copy this dll in.`

I'll post the fix/workaround in the next comment.

Michael Herman (Toronto)

[Request] Profiler: hooking into changes in the source line number when using F5

There, of course, are a couple issues with tracking against the correct source files and source file lines ...you're working on that already.

This issue is another related thing you can help me with: I only get actual source-level (by source statement) when I use F10 to single-step through the SC source code. (I'll log this as a Request)
When I use F5, all of the subsequent costs get logged against the last source line that you single stepped through because there are no more calls to ResolveLine() that I could hook into so that I could update the source line info in the Profile Context ....does this make sense?

Support for debugging smart contracts written in Java

Support for debugging Java smart contracts requires two things, one which is optional.

  • The NEOJ compiler needs to be modified to emit a .neomap file which will map byte ranges of .avm file into Java files / line numbers
  • Optionally, support for proper syntax highlighting should be added to the debugger GUI, issue #4

Get References call is failing

Need it to verify sender has sent GAS.

Code from ICO template:
Transaction tx = (Transaction)ExecutionEngine.ScriptContainer;
TransactionOutput[] reference = tx.GetReferences(); // Fails on this line

Using DEBUG (Send 5 NEO with a specific public key)

Add checksum/hash to neomap

The lines in neomap file will always match the lines using during compilation of the .avm.
If the source code is modified after it, the debugger will load the most recent source code, and thus, stepping/debugging will show wrong lines.

[Request] Integrate Event log "smartmessages" code from neo-gui developer into neo-debugger

Pointer to the code I added in neo-gui-developer: https://github.com/mwherman2000/neo-gui-developer/blob/master/neo-gui/UI/MainForm.cs#L1060-L1153

Pointer to the StackItemAsString() function in neo-debugger where the above code can be integrated: https://github.com/CityOfZion/neo-debugger-tools/blob/master/NEO-Emulator/Utils/StackItemUtils.cs#L11

This is what the messages look like in neo-gui-developer: https://github.com/mwherman2000/neo-windocs/blob/master/windocs/windocs-presentations/images/Transactions2Log.png

Best regards,
Michael Herman (Toronto)

NPCdApp smart contract won't compile with neo-debugger neon.exe

Compiles with the regular neon.exe

Source: https://github.com/mwherman2000/neo-persistibleclasses/blob/master/NPCdApp/NPCdApp.cs

NOTE: It does compile cleanly with the older version of the project I forked some time ago: https://github.com/mwherman2000/neo-debugger-tools

1>------ Build started: Project: NPCdApp, Configuration: Debug Any CPU ------
1>  NPCdApp -> D:\repos\neo-persistibleclasses\NPCdApp\bin\Debug\NPCdAPP.dll
1>  Neo.Compiler.MSIL console app v1.0.0.0 [DEBUGGER SUPPORT]
1>  Trying to compile D:\repos\neo-persistibleclasses\NPCdApp\bin\Debug\NPCdAPP.dll
1>EXEC : Convert error : System.NullReferenceException: Object reference not set to an instance of an object.
1>     at Neo.Compiler.MSIL.CctorSubVM.Parse(ILMethod from, NeoModule to)
1>     at Neo.Compiler.MSIL.ModuleConverter.Convert(ILModule _in)
1>     at Neo.Compiler.AVM.AVMCompiler.Execute(String filename, String filepdb, ILogger log)
1>  Press any key to continue . . . 
1>D:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin\Microsoft.Common.CurrentVersion.targets(5074,5): error MSB3073: The command "set PATH="D:\repos\neo-debugger-tools\NEO-Compiler\bin\Debug";%PATH%
1>D:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin\Microsoft.Common.CurrentVersion.targets(5074,5): error MSB3073: neon.exe D:\repos\neo-persistibleclasses\NPCdApp\bin\Debug\NPCdAPP.dll
1>D:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin\Microsoft.Common.CurrentVersion.targets(5074,5): error MSB3073: pause" exited with code -1.
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

Neomap is generated as empty

NEO-Compiler is now generating a neomap of 0KB for all projects (including ICO-Template)
This is not a problem when using the last commit on Jan 15,2018 (1bfe6db).

Note: I've confirmed that my shell is running the right version neo-debugger-tools/NEO-Compiler and that I'm compiling Debug (not Release)

Better exception handling

While debugging a smart contract, when an VM exception happens, a popup just appears saying "an exception happened".

It is necessary to detect exactly in what line / opcode it happened and jump to that line in the GUI.

Getting multiple errors trying to build project

Restoring NuGet packages...
To prevent NuGet from restoring packages during build, open the Visual Studio Options dialog, click on the Package Manager node and uncheck 'Allow NuGet to download missing packages during build.'
1>------ Build started: Project: NEO-Emulator, Configuration: Debug Any CPU ------
2>------ Build started: Project: NEO-IDE, Configuration: Debug Any CPU ------
2>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Ide\NEO-IDE.csproj : warning NU1701: Package 'Mono.Cecil 0.9.6.4' was restored using '.NETFramework,Version=v4.6.1' instead of the project target framework '.NETCoreApp,Version=v2.0'. This package may not be fully compatible with your project.
1>  NEO-Emulator -> C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Emulator\bin\Debug\NEO-Emulator.dll
3>------ Build started: Project: NEO-Compiler-Lib, Configuration: Debug Any CPU ------
4>------ Build started: Project: NEO-Debugger, Configuration: Debug Any CPU ------
5>------ Build started: Project: NEO-CLI-Disassembler, Configuration: Debug Any CPU ------
3>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler-Lib\NEO-Compiler-Lib.csproj : warning NU1701: Package 'Mono.Cecil 0.9.6.4' was restored using '.NETFramework,Version=v4.6.1' instead of the project target framework '.NETStandard,Version=v2.0'. This package may not be fully compatible with your project.
3>FuncExport.cs(71,50,71,66): warning CS0436: The type 'RIPEMD160Managed' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler-Lib\RIPEMD160Managed.cs' conflicts with the imported type 'RIPEMD160Managed' in 'NEO-Emulator, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler-Lib\RIPEMD160Managed.cs'.
3>MSIL\ILModule.cs(226,42,226,45): warning CS0168: The variable 'err' is declared but never used
3>MSIL\ILModule.cs(148,50,148,53): warning CS0168: The variable 'err' is declared but never used
3>MSIL\ILModule.cs(173,58,173,61): warning CS0168: The variable 'err' is declared but never used
3>MSIL\Converter.cs(160,42,160,45): warning CS0168: The variable 'err' is declared but never used
3>MSIL\Converter.cs(542,21,542,26): warning CS0162: Unreachable code detected
3>MSIL\Conv_Multi.cs(930,13,930,19): warning CS0162: Unreachable code detected
3>NEO-Compiler-Lib -> C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler-Lib\bin\Debug\netstandard2.0\NEO-Compiler-Lib.dll
3>Done building project "NEO-Compiler-Lib.csproj".
6>------ Build started: Project: NEO-Compiler, Configuration: Debug Any CPU ------
4>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Debugger\MainForm.Designer.cs(523,56,523,74): warning CS0169: The field 'MainForm.toolStripMenuItem1' is never used
4>  NEO-Debugger -> C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Debugger\bin\Debug\neod.exe
7>------ Build started: Project: ICO-Template, Configuration: Debug Any CPU ------
2>NEO-IDE -> C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Ide\Output\Site\netcoreapp2.0\neoide.dll
2>Done building project "NEO-IDE.csproj".
8>------ Build started: Project: NEO-DevShell, Configuration: Debug Any CPU ------
8>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-DevShell\Shell.cs(306,25,306,29): error CS1501: No overload for method 'Save' takes 1 arguments
8>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-DevShell\Shell.cs(308,17,308,32): error CS0120: An object reference is required for the non-static field, method, or property 'Blockchain.Save(string)'
8>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-DevShell\Shell.cs(212,50,212,55): error CS1503: Argument 1: cannot convert from 'byte[]' to 'Neo.Emulator.API.Blockchain'
8>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-DevShell\Shell.cs(220,29,220,33): error CS0117: 'Storage' does not contain a definition for 'Load'
8>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-DevShell\Shell.cs(221,52,221,71): error CS0120: An object reference is required for the non-static field, method, or property 'Storage.sizeInBytes'
8>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-DevShell\Shell.cs(221,81,221,96): error CS0120: An object reference is required for the non-static field, method, or property 'Storage.entries'
8>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-DevShell\Shell.cs(227,21,227,36): error CS0120: An object reference is required for the non-static field, method, or property 'Blockchain.Load(string)'
8>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-DevShell\Shell.cs(228,77,228,92): error CS0120: An object reference is required for the non-static field, method, or property 'Storage.entries'
8>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-DevShell\Shell.cs(164,35,164,50): error CS0120: An object reference is required for the non-static field, method, or property 'Storage.entries'
9>------ Build started: Project: ICO-Unit-Tests, Configuration: Debug Any CPU ------
9>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\ICO-Unit-Tests\ContractTests.cs(19,40,19,48): error CS1503: Argument 1: cannot convert from 'byte[]' to 'Neo.Emulator.API.Blockchain'
7>  ICO-Template -> C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\ICO-Template\bin\Debug\ICOContract.dll
7>  Start NeoContract converter, Source File: C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\ICO-Template\bin\Debug\ICOContract.dll
7>  Neo.Compiler.MSIL console app v2.0.3.1
7>CONVERTTASK : LoadModule error : System.Exception: can't parese event type from:System.Action`3<System.Byte[],System.Byte[],System.Numerics.BigInteger>.maybe it is System.Action<xxx> which is defined in mscorlib.dll,copy this dll in.
7>     at Neo.Compiler.MSIL.ILField..ctor(ILType type, FieldDefinition field)
7>     at Neo.Compiler.MSIL.ILType..ctor(ILModule module, TypeDefinition type)
7>     at Neo.Compiler.MSIL.ILModule.LoadModule(Stream dllStream, Stream pdbStream)
7>     at Neo.Compiler.Program.Main(String[] args)
5>  NEO-CLI-Disassembler -> C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-CLI-Disassembler\bin\Debug\neo_disasm.exe
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\CctorSubVM.cs(49,34,49,42): warning CS0436: The type 'ILMethod' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILMethod' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(67,34,67,42): warning CS0436: The type 'ILModule' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILModule' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(283,36,283,44): warning CS0436: The type 'ILMethod' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILMethod' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(399,33,399,41): warning CS0436: The type 'ILMethod' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILMethod' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(399,50,399,56): warning CS0436: The type 'OpCode' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'OpCode' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Common.cs(69,54,69,60): warning CS0436: The type 'OpCode' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'OpCode' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Common.cs(97,51,97,57): warning CS0436: The type 'OpCode' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'OpCode' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Common.cs(124,46,124,52): warning CS0436: The type 'OpCode' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'OpCode' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Common.cs(131,44,131,52): warning CS0436: The type 'ILMethod' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILMethod' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Common.cs(131,66,131,72): warning CS0436: The type 'OpCode' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'OpCode' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Common.cs(175,44,175,52): warning CS0436: The type 'ILMethod' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILMethod' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Common.cs(175,66,175,72): warning CS0436: The type 'OpCode' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'OpCode' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Common.cs(219,39,219,47): warning CS0436: The type 'ILMethod' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILMethod' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Common.cs(253,37,253,45): warning CS0436: The type 'ILMethod' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILMethod' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Common.cs(253,66,253,72): warning CS0436: The type 'OpCode' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'OpCode' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(12,36,12,44): warning CS0436: The type 'ILMethod' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILMethod' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(12,53,12,59): warning CS0436: The type 'OpCode' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'OpCode' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(59,36,59,44): warning CS0436: The type 'ILMethod' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILMethod' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(59,53,59,59): warning CS0436: The type 'OpCode' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'OpCode' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(71,37,71,45): warning CS0436: The type 'ILMethod' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILMethod' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(71,54,71,60): warning CS0436: The type 'OpCode' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'OpCode' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(90,40,90,48): warning CS0436: The type 'ILMethod' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILMethod' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(90,57,90,63): warning CS0436: The type 'OpCode' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'OpCode' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(113,36,113,44): warning CS0436: The type 'ILMethod' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILMethod' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(113,53,113,59): warning CS0436: The type 'OpCode' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'OpCode' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(169,36,169,42): warning CS0436: The type 'OpCode' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'OpCode' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(375,34,375,40): warning CS0436: The type 'OpCode' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'OpCode' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(785,36,785,44): warning CS0436: The type 'ILMethod' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILMethod' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(785,53,785,59): warning CS0436: The type 'OpCode' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'OpCode' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(933,37,933,43): warning CS0436: The type 'OpCode' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'OpCode' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(988,36,988,42): warning CS0436: The type 'OpCode' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'OpCode' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(1020,35,1020,43): warning CS0436: The type 'ILMethod' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILMethod' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(1020,52,1020,58): warning CS0436: The type 'OpCode' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'OpCode' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(1037,35,1037,41): warning CS0436: The type 'OpCode' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'OpCode' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(66,35,66,42): warning CS0436: The type 'ILField' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILField' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(66,27,66,35): warning CS0436: The type 'ILMethod' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILMethod' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(67,35,67,43): warning CS0436: The type 'ILMethod' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILMethod' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(68,23,68,31): warning CS0436: The type 'ILModule' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILModule' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(99,24,99,30): warning CS0436: The type 'ILType' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILType' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(14,35,14,41): warning CS0436: The type 'ILType' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILType' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(203,25,203,31): warning CS0436: The type 'ILType' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILType' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(542,16,542,22): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(266,38,266,44): warning CS0436: The type 'OpCode' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'OpCode' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(66,76,66,84): warning CS0436: The type 'ILMethod' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILMethod' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(562,22,562,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(563,22,563,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(564,22,564,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(565,22,565,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(566,22,566,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(567,22,567,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(568,22,568,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(569,22,569,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(571,22,571,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(572,22,572,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(573,22,573,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(574,22,574,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(575,22,575,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(576,22,576,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(577,22,577,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(578,22,578,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(579,22,579,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(580,22,580,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(581,22,581,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(582,22,582,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(583,22,583,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(584,22,584,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(585,22,585,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(586,22,586,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(587,22,587,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(588,22,588,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(589,22,589,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(590,22,590,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(595,22,595,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(596,22,596,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(597,22,597,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(598,22,598,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(599,22,599,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(600,22,600,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(605,22,605,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(606,22,606,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(607,22,607,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(608,22,608,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(609,22,609,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(610,22,610,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(615,22,615,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(616,22,616,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(617,22,617,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(618,22,618,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(619,22,619,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(625,22,625,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(629,22,629,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(633,22,633,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(637,22,637,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(641,22,641,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(645,22,645,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(649,22,649,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(653,22,653,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(657,22,657,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(661,22,661,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(665,22,665,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(669,22,669,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(673,22,673,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(677,22,677,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(681,22,681,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(686,22,686,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(691,22,691,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(694,22,694,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(695,22,695,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(696,22,696,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(697,22,697,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(703,22,703,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(704,22,704,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(709,22,709,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(714,22,714,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(719,22,719,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(724,22,724,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(730,22,730,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(731,22,731,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(732,22,732,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(733,22,733,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(738,22,738,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(750,22,750,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(755,22,755,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(760,22,760,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(761,22,761,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(762,22,762,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(763,22,763,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(764,22,764,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(765,22,765,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(766,22,766,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(767,22,767,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(768,22,768,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(769,22,769,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(770,22,770,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(771,22,771,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(775,22,775,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(266,85,266,91): warning CS0436: The type 'OpCode' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'OpCode' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(246,25,246,31): warning CS0436: The type 'OpCode' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'OpCode' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(246,40,246,46): warning CS0436: The type 'OpCode' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'OpCode' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(247,35,247,41): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(226,42,226,45): warning CS0168: The variable 'err' is declared but never used
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\CctorSubVM.cs(60,26,60,32): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\CctorSubVM.cs(63,26,63,32): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\CctorSubVM.cs(66,26,66,32): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\CctorSubVM.cs(69,26,69,32): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\CctorSubVM.cs(72,26,72,32): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\CctorSubVM.cs(75,26,75,32): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\CctorSubVM.cs(78,26,78,32): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\CctorSubVM.cs(81,26,81,32): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\CctorSubVM.cs(84,26,84,32): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\CctorSubVM.cs(87,26,87,32): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\CctorSubVM.cs(90,26,90,32): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\CctorSubVM.cs(93,26,93,32): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\CctorSubVM.cs(94,26,94,32): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\CctorSubVM.cs(97,26,97,32): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\CctorSubVM.cs(107,26,107,32): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\CctorSubVM.cs(114,26,114,32): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\CctorSubVM.cs(119,26,119,32): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\CctorSubVM.cs(124,26,124,32): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\CctorSubVM.cs(171,26,171,32): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(14,76,14,82): warning CS0436: The type 'ILType' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILType' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(160,42,160,45): warning CS0168: The variable 'err' is declared but never used
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(48,47,48,53): warning CS0436: The type 'ILType' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILType' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(53,56,53,62): warning CS0436: The type 'ILType' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILType' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(66,76,66,83): warning CS0436: The type 'ILField' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILField' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(67,78,67,86): warning CS0436: The type 'ILMethod' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILMethod' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(148,50,148,53): warning CS0168: The variable 'err' is declared but never used
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(173,58,173,61): warning CS0168: The variable 'err' is declared but never used
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(73,45,73,52): warning CS0436: The type 'ILField' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILField' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(79,38,79,46): warning CS0436: The type 'ILMethod' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILMethod' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs(85,38,85,46): warning CS0436: The type 'ILMethod' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'ILMethod' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(303,37,303,43): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(404,22,404,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(407,22,407,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(411,22,411,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(415,22,415,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(419,22,419,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(420,22,420,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(423,22,423,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(426,22,426,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(429,22,429,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(432,22,432,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(435,22,435,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(438,22,438,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(441,22,441,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(444,22,444,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(447,22,447,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(450,22,450,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(453,22,453,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(456,22,456,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(459,22,459,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(462,22,462,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(465,22,465,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(468,22,468,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(471,22,471,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(475,22,475,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(478,22,478,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(481,22,481,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(484,22,484,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(487,22,487,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(491,22,491,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(494,22,494,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(497,22,497,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(500,22,500,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(503,22,503,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(504,22,504,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(505,22,505,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(506,22,506,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(510,22,510,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(511,22,511,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(515,22,515,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(516,22,516,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(517,22,517,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(518,22,518,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(526,22,526,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(543,22,543,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(544,22,544,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(551,22,551,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(552,22,552,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(559,22,559,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(560,22,560,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(568,22,568,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(569,22,569,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(581,22,581,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(582,22,582,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(590,22,590,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(591,22,591,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(603,22,603,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(604,22,604,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(612,22,612,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(613,22,613,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(625,22,625,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(626,22,626,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(634,22,634,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(635,22,635,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(647,22,647,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(648,22,648,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(657,22,657,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(658,22,658,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(672,22,672,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(677,22,677,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(680,22,680,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(683,22,683,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(686,22,686,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(691,22,691,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(692,22,692,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(693,22,693,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(696,22,696,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(697,22,697,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(698,22,698,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(701,22,701,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(702,22,702,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(703,22,703,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(706,22,706,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(707,22,707,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(710,22,710,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(711,22,711,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(714,22,714,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(717,22,717,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(720,22,720,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(721,22,721,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(726,22,726,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(727,22,727,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(730,22,730,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(731,22,731,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(734,22,734,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(739,22,739,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(740,22,740,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(745,22,745,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(751,22,751,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(755,22,755,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(756,22,756,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(757,22,757,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(758,22,758,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(759,22,759,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(760,22,760,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(761,22,761,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(762,22,762,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(763,22,763,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(764,22,764,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(765,22,765,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(768,22,768,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(771,22,771,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(772,22,772,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(773,22,773,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(774,22,774,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(775,22,775,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(776,22,776,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(777,22,777,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(778,22,778,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(779,22,779,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(783,22,783,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(787,22,787,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(788,22,788,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(789,22,789,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(790,22,790,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(792,22,792,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(793,22,793,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(794,22,794,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(795,22,795,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(796,22,796,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(797,22,797,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(798,22,798,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(799,22,799,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(800,22,800,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(801,22,801,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(802,22,802,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(803,22,803,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(804,22,804,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(805,22,805,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(806,22,806,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(807,22,807,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(808,22,808,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(809,22,809,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(810,22,810,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(811,22,811,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(812,22,812,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(813,22,813,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(814,22,814,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(815,22,815,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(816,22,816,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(817,22,817,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(818,22,818,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(819,22,819,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(820,22,820,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(821,22,821,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(827,22,827,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(828,22,828,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(831,22,831,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(834,22,834,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(837,22,837,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(840,22,840,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(844,22,844,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(909,22,909,28): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Converter.cs(542,21,542,26): warning CS0162: Unreachable code detected
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Common.cs(136,24,136,30): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Common.cs(136,49,136,55): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Common.cs(144,29,144,35): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Common.cs(152,30,152,36): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Common.cs(160,30,160,36): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Common.cs(180,25,180,31): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Common.cs(180,50,180,56): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Common.cs(188,30,188,36): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Common.cs(196,30,196,36): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Common.cs(204,30,204,36): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(76,28,76,34): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(80,33,80,39): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(794,82,794,88): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(794,126,794,132): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(794,174,794,180): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(837,82,837,88): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(837,126,837,132): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(837,174,837,180): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(853,39,853,45): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(867,47,867,53): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(867,77,867,83): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(867,112,867,118): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(882,45,882,51): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(882,75,882,81): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(882,107,882,113): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(882,139,882,145): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(882,171,882,177): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(882,203,882,209): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(898,58,898,64): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(898,88,898,94): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(898,120,898,126): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(898,152,898,158): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(898,184,898,190): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(898,216,898,222): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(899,60,899,66): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(899,95,899,101): warning CS0436: The type 'CodeEx' in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs' conflicts with the imported type 'CodeEx' in 'NEO-Compiler-Lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Using the type defined in 'C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\ILModule.cs'.
6>C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\MSIL\Conv_Multi.cs(930,13,930,19): warning CS0162: Unreachable code detected
6>  NEO-Compiler -> C:\Users\Neo\Documents\GitHub\a-neo-debugger-tools\NEO-Compiler\bin\Debug\neon.exe
========== Build: 6 succeeded, 3 failed, 0 up-to-date, 0 skipped ==========

Emulation of Storage API

Practically every Smart Contract will require making usage of the Storage API.

This should be emulated as a Dictionary that can be persisted to disk, ideally stored in .json format.

The debugger should have the option to clear all data in the storage for a contract.

[REQUEST] Display the current call stack

Once it is possible to determine the current method name (see #71), the ProfilerContext can be used to to implement a push down call stack for the display in the "stacks" section of the debugger.

Visualize GAS costs

After a smart contract finishes it should be possible to see how much GAS that execution would spent.
Or even better, see the GAS usage increase as we execute the contract step by step.

This requires keeping a counter and calculating a cost for each opcode executed in the VM.

No map file generated while building with Neo.Compiler.MSIL console app v1.0.0.0 [DEBUGGER SUPPORT]

Hello,

I have compiled the neo-debugger neo compiler tool and compiled with it a smart contract, .debug.json file generated but no .map file generated:

Here is the output of the compiler:

1>------ Rebuild All started: Project: NeoContract2, Configuration: Release Any CPU ------
1> NeoContract2 -> D:\NEO\TestProjects\NeoContract2\NeoContract2\bin\Release\NeoContract2.dll
1> Start NeoContract converter, Source File: D:\NEO\TestProjects\NeoContract2\NeoContract2\bin\Release\NeoContract2.dll
1> Neo.Compiler.MSIL console app v1.0.0.0 [DEBUGGER SUPPORT]
1> Find entrypoint:System.Int32 NeoContract2.Contract2::Main(System.String,System.Object[])
1> convert succ
1> gen abi succ
1> gen debug map succ
1> write:NeoContract2.avm
1> write:NeoContract2.abi.json
1> write:NeoContract2.debug.json
1> SUCC
========== Rebuild All: 1 succeeded, 0 failed, 0 skipped ==========

Please tell me why ?

Can anyone upload already compiled neo-debugger-tools for Windows 10 ?

Kind Regards.

Support for custom syntax highlighting per language

Currently the debugger setups up by default C# syntax highlighting in ScintillaNET.

Since that step is mostly just passing a list of keywords to Scintilla, it would be easy to make the keywords depend on the extension of the source code file.

This could be as simple as having a different keyword list for every language supported by NEO (eg: Java, Python) and then have a C# dictionary to map extensions to those lists.

Add suport for virtual blockchains

Should be possible to create mini virtual blockchains for aiding with debugging of NEO smart contracts.
The blockchains should be stored as a .json file

File format for .neomap

Currently .neomap files are just comma separated values in text format.

This makes it quite easy to generated in the compilers, however later on we might need to add more info, and since we'll need cooperation of several NEO compilers (C#, Java, Python and more), we might be a good idea to decide on a proper format already.

The NEO team seems to favour .json format (it is used in lots of places from the NEO RPC protocol to the wallets config files) so I would go with that.

One possible format could be something like this:

{"debug":{
		"compiler": "neon.exe",
		"files": [
			{ "id": 1, "url": "C:\Code\NEO\MyContracts\Test.cs"}
		],
		"map": 	[	
			{
				"start": 0,
				"end": 20,
				"line": 49,
				"file": 1
			}
		]
	}	
}

Handling VM exceptions

The current version of the debugger is not able to show any useful info once a smart contract causes a VM exception.

There are two main improvements to do:

  1. Add at least line numbers / instruction pointers to the exception error message (or make the debugger jump to the proper line)

  2. Modify the VM a bit so that it is possible to discern from different types of VM FAULTs

Add proper support to CheckWitness / VerifySignature

CheckWitness and VerifySignature should be possible to implement more or less straightforwardly. For the former, you must add a fake calling wallet address (and at some later point you could go on add wallet data)

[REQUEST] Auto Reload: When Visual Studio recompiles a .avm that is ...

...already loaded in the debugger, NEO Debugger should notify the user and offer to automatically reload the .avm file. File system change notifications can be used to trigger this.

The current behavior is that Visual Studio happily recompiles the .avm file but the user doesn't realize they are using an out of date copy.

Support for multiple source-code files

When loading a .neomap file the current version of the debugger just takes the first source code found in the map and loads that.

While this should be enough for most users, it's possible someone would want to split their smart contract in multiple files (eg: C# partial classes).

There are different ways to support this in the debugger:

a) Load all source files found in .neomap into a single string, and adjust the lines for each accordlying.

b) Add support for tabs, and put each file on its own tab. This would also let the opcode asm sit on its own tab.

Latest update broke CheckWitness() again, also broke TransactionOutput value sums

Loading private key yields Invoker Address AehieVzYk9zajxsUqM3vwXj2YtVPucZ1Xt, yet when running the contract through the debugger, I'm trying to get the Transaction sender (which should be the same as the invoker address, right?) through the following code:

Transaction tx = (Transaction)ExecutionEngine.ScriptContainer;
TransactionOutput reference = tx.GetReferences()[0];
byte[] user = reference.ScriptHash;
Runtime.Notify(user);

which prints AcVGyEnmw3fJ9FAEKtstAEppXNsgVMhUwh (and keeps changing at every re-run), which is of course different than the invoker address and causes CheckWitness(user) to fail. This was broken a week ago, fixed some days ago, and re-broken again 2 days ago with the latest update to neo-debugger-tools.

Additionally, a transfer of 9 GAS to the contract is summed up by this block of code which used to work just fine up until now:

private static ulong GetGasGiven()
        {
            Transaction tx = (Transaction)ExecutionEngine.ScriptContainer;
            TransactionOutput reference = tx.GetReferences()[0];
            TransactionOutput[] outputs = tx.GetOutputs();
            ulong value = 0;
            foreach (TransactionOutput output in outputs)
            {
                Runtime.Notify(output.ScriptHash);
                Runtime.Notify(GetReceiver());
                if (output.ScriptHash == ExecutionEngine.ExecutingScriptHash && output.AssetId == GAS_ASSET_ID)
                {
                    value += (ulong)output.Value;
                }
            }
            Runtime.Notify(value);
            return value;
        }

The loop runs twice, one time the hashes are the same, the second they aren't. The result is the value is counted up to 900000000, which I don't know if is a problem with typing or something else.

This loop used to run only once, for transactions sent through the debugger's Asset Transfer function. And it counted the value to a simple 9, which was correct.

LoadModule Error:System.BadImageFormatException when trying to compile with the provided Neo debugging compiler

Heya,

I'm trying to compile my simple Smart Contract .cs file with the provided compiler, so it generates a .neomap file. After much work, I've managed to publish the compiler and produce a neon.exe. When I feed it the .cs file though, it stops with the following exception:

./neon C:\NeoDeveloping\TestSolution\TestProject\Contract1.cs
Neo.Compiler.MSIL console app v1.0.0.0 [DEBUGGER SUPPORT]
LoadModule Error:System.BadImageFormatException: Format of the executable (.exe) or library (.dll) is invalid.
   at Mono.Cecil.PE.ImageReader.ReadImage()
   at Mono.Cecil.PE.ImageReader.ReadImageFrom(Stream stream)
   at Mono.Cecil.ModuleDefinition.ReadModule(Stream stream, ReaderParameters parameters)
   at Neo.Compiler.MSIL.ILModule.LoadModule(Stream dllStream, Stream pdbStream)
   at Neo.Compiler.Program.Main(String[] args)

Not Implemented Exception for Storage Methods

On Windows 10,

Getting:
System.NotImplementedException: The method or operation is not implemented.

Occurs when trying to load Storage in the UI.
Also, all my smart contracts fail when they get to a Storage Put or Get call. Might be a coincidence

************** Exception Text **************
System.NotImplementedException: The method or operation is not implemented.
at Neo.Debugger.StorageForm.StorageForm_Load(Object sender, EventArgs e)
at System.Windows.Forms.Form.OnLoad(EventArgs e)
at System.Windows.Forms.Form.OnCreateControl()
at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
at System.Windows.Forms.Control.CreateControl()
at System.Windows.Forms.Control.WmShowWindow(Message& m)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.Form.WmShowWindow(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)

Using "...".ToScriptHash() will fail compiling.

Owner = "...".ToScriptHash(); can not bu build with "NEO-Compiler".

Exception;
System.NullReferenceException: Object reference not set to an instance of an object.

    public class ICO_Template : Framework.SmartContract
    {
        public static readonly byte[] Owner = "...".ToScriptHash();
        public static void Main() { }
    }

Doesn't look like the debugger is putting the arguments on the stack properly at the start

Try SC below with the following with arguments and single-step through the debugger with F10 keeping your eye on the stack:

operation: Hello (no quotes)
args [1,2]

using Neo.SmartContract.Framework;
using Neo.SmartContract.Framework.Services.Neo;

namespace ReturnOperation1
{
    public class ReturnOperation1 : SmartContract
    {
        public static string Main(string operation, object[] args)
        {
            string message = operation + " world";
            Runtime.Log(message);
            Runtime.Notify(operation, message);
            return message;
        }
    }
}

Debugger crashes exiting `public static void Main() functions`

Debugger crashes exiting public static void Main() functions. I think the void return may be the issue. This is the most common use case because this is what is in the template used by Visual Studio to create new NeoContract projects.

Here's an example: https://github.com/mwherman2000/neo-npcc/blob/master/neo-npcc/VoidMain1/Contract1.cs

Here's a screen shot of the exception: https://raw.githubusercontent.com/mwherman2000/neo-npcc/master/neo-npcc/VoidMain1/neo-debugger-exception.png

ExecutionEngine.ExecutingScriptHash returns different scripthash than TransactionOutput.scriptHash, when it should be the same.

After the latest update, CheckWitness() started failing.

I'm trying to check whether the contract invoker is indeed the same guy as the sender of the transaction.
My code:

Transaction tx = (Transaction)ExecutionEngine.ScriptContainer;
TransactionOutput reference = tx.GetReferences()[0];
Runtime.Notify(reference.ScriptHash);
Runtime.Notify(ExecutionEngine.ExecutingScriptHash);
byte[] sender = reference.ScriptHash;
//First, let's check the witness against the caller of the contract. If the caller isn't the invoker, we don't continue.
if (!Runtime.CheckWitness(sender))
{
     return 0x1;
}
/* Do more stuff once we know that the invoker is the sender... */

This indeed used to work fine before today's update, regarding TransactionOutput.scriptHash being the wrong size. Since today, it started failing.

Output:

AcEWLeYYuaJLEMJ1tsoPaGkwDTSMeWwzse
Aacgm8JpuLzaSssRMZozxE2jNxPLAKkoXi

These used to be the same.

Emulation of Transaction API

It is necessary to emulate the Transactions API, so that contracts can be debugged even without deploying them to test net.

`NPC.dApps.NeoDraw.Small` failure in neo-debugger

This is urgent because it's blocking my MS submission ...and it took awhile to figure it out. :-) Please :-)

I have a large C# smart contract ...many partial classes across many .cs source files. My SC/dApp started to fail in neo-debugger. When I comment out just one of the source files by changing it's name to .txt instead of .cs, the SC runs fine in the debugger with the arguments:

"add"
"user"
[10, 20]

and pressing F5.

If I change the file's name from .txt to .cs, the SC fails to run to a successful completion. It stops here: https://github.com/mwherman2000/neo-npcc/blob/master/neo-npcc/NPC.dApps.NeoDraw.Small/Contract1.cs#L26

The "commented out file" is this one: https://github.com/mwherman2000/neo-npcc/blob/master/neo-npcc/NPC.dApps.NeoDraw.Small/UserCredentialsL4CollectibleExt2.cs ("uncommented out")

The project is called NPC.dApps.NeoDraw.Small and can be found here: https://github.com/mwherman2000/neo-npcc/tree/master/neo-npcc/NPC.dApps.NeoDraw.Small

Maybe a compiler bug? ...I don't know. Are there any size limitations? ...fixed length tables in the compiler or debugger? ...just ideas

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.