From dcb70d308005dd76d8c7e0c0de107af51e229273 Mon Sep 17 00:00:00 2001 From: Toni Solarin-Sodara Date: Tue, 22 May 2018 00:00:13 +0100 Subject: [PATCH] rename MethodCallInterceptor to InterpreterCallInterceptor (#5011) --- ...MethodCallInterceptor.cs => InterpreterCallInterceptor.cs} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename src/System.Private.Interpreter/src/Internal/Runtime/Interpreter/{MethodCallInterceptor.cs => InterpreterCallInterceptor.cs} (78%) diff --git a/src/System.Private.Interpreter/src/Internal/Runtime/Interpreter/MethodCallInterceptor.cs b/src/System.Private.Interpreter/src/Internal/Runtime/Interpreter/InterpreterCallInterceptor.cs similarity index 78% rename from src/System.Private.Interpreter/src/Internal/Runtime/Interpreter/MethodCallInterceptor.cs rename to src/System.Private.Interpreter/src/Internal/Runtime/Interpreter/InterpreterCallInterceptor.cs index 258f00daa36..15100b477a8 100644 --- a/src/System.Private.Interpreter/src/Internal/Runtime/Interpreter/MethodCallInterceptor.cs +++ b/src/System.Private.Interpreter/src/Internal/Runtime/Interpreter/InterpreterCallInterceptor.cs @@ -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();