Skip to content

Commit

Permalink
add preliminary scaffolding (dotnet#5011)
Browse files Browse the repository at this point in the history
  • Loading branch information
tonerdo committed May 20, 2018
1 parent 52570eb commit d386584
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
using Internal.Runtime.CallConverter;
using Internal.Runtime.CallInterceptor;

namespace Internal.Runtime.Interpreter
{
public class MethodInterpreter : CallInterceptor.CallInterceptor
{
protected MethodInterpreter(bool nativeToManaged) : base(nativeToManaged) { }

public override LocalVariableType[] ArgumentAndReturnTypes => throw new System.NotImplementedException();

public override CallingConvention CallingConvention => throw new System.NotImplementedException();

public override LocalVariableType[] LocalVariableTypes => throw new System.NotImplementedException();

public override void ThunkExecute(ref CallInterceptorArgs callInterceptorArgs)
{
throw new System.NotImplementedException();
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
<PropertyGroup>
<AssemblyName>System.Private.Interpreter</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<OutputType>Library</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<EcmaMetadataSupport>true</EcmaMetadataSupport>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\System.Private.CoreLib\src\System.Private.CoreLib.csproj">
<Aliases>global,System_Private_CoreLib</Aliases>
</ProjectReference>
<ProjectReference Include="..\..\System.Private.TypeLoader\src\System.Private.TypeLoader.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Include="Internal\Runtime\Interpreter\MethodInterpreter.cs" />
</ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>

0 comments on commit d386584

Please sign in to comment.