Skip to content

Commit

Permalink
rename MethodCallInterceptor to InterpreterCallInterceptor (dotnet#5011)
Browse files Browse the repository at this point in the history
  • Loading branch information
tonerdo committed May 21, 2018
1 parent 855056e commit dcb70d3
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 MethodCallInterceptor : CallInterceptor.CallInterceptor
public class InterpreterCallInterceptor : CallInterceptor.CallInterceptor
{
protected MethodCallInterceptor(bool nativeToManaged) : base(nativeToManaged) { }
protected InterpreterCallInterceptor(bool nativeToManaged) : base(nativeToManaged) { }

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

Expand Down

0 comments on commit dcb70d3

Please sign in to comment.