mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
Compiler fixes. Updated project.json files. Removed *.lock.json files and updated gitignore to ignore them. Updated some Cosmos.Debug projects.
20 lines
548 B
C#
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
|
|
}
|
|
}
|
|
}
|