Skip to content

Commit

Permalink
rename MethodInterpreter to MethodCallInterceptor (dotnet#5011)
Browse files Browse the repository at this point in the history
  • Loading branch information
tonerdo committed May 20, 2018
1 parent d386584 commit ccf01f5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

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

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

Expand Down

0 comments on commit ccf01f5

Please sign in to comment.