/// <summary>
        /// Pushes the new method.
        /// </summary>
        public void PushNewMethod(string name, params ParameterSyntax[] parameters)
        {
            var emitterMethodInfo = new EmitterMethodInfo()
            {
                Name = name
            };

            methods.Push(emitterMethodInfo);
        }
 /// <summary>
 /// Pushes the new method.
 /// </summary>
 public void PushNewMethod(string name, params ParameterSyntax[] parameters)
 {
     var emitterMethodInfo = new EmitterMethodInfo() { Name = name };
     methods.Push(emitterMethodInfo);
 }