Jint.ExecutionVisitor.OnDeserialization C# (CSharp) Method

OnDeserialization() public method

public OnDeserialization ( object sender ) : void
sender object
return void
        public void OnDeserialization(object sender)
        {
            /*
            this.methodInvoker = new CachedMethodInvoker(this);
            this.propertyGetter = new CachedReflectionPropertyGetter(methodInvoker);
            this.constructorInvoker = new CachedConstructorInvoker(methodInvoker);

            this.fieldGetter = new CachedReflectionFieldGetter(methodInvoker);
            */
            this.typeResolver = new CachedTypeResolver();
        }