Cosmos/source/Cosmos.Debug.Symbols/MethodBodyBlockExtensions.cs
José Pedro 3db5ce43bb Compiler fixes.
Compiler fixes.
Updated project.json files.
Removed *.lock.json files and updated gitignore to ignore them.
Updated some Cosmos.Debug projects.
2017-01-08 14:54:29 +00:00

20 lines
548 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Reflection.Metadata;
using System.Text;
using System.Threading.Tasks;
namespace Cosmos.Debug.Symbols
{
public static class MethodBodyBlockExtensions
{
public static IList<LocalVariableInfo> GetLocalVariablesInfo(this MethodBodyBlock aThis)
{
throw new Exception("NetCore Fix Me");
//TODO: If DebugSymbolReader.GetLocalVariablesInfo(MethodBodyBlock) is not used, remove it
}
}
}