forked from dotnet/corert
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add preliminary scaffolding (dotnet#5011)
- Loading branch information
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
src/System.Private.Interpreter/src/Internal/Runtime/Interpreter/MethodInterpreter.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); | ||
} | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
src/System.Private.Interpreter/src/System.Private.Interpreter.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |