[Mono-bugs] [Bug 548127] New: btouch.exe --debug option does not work with get/set accessors

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Mon Oct 19 10:25:39 EDT 2009


http://bugzilla.novell.com/show_bug.cgi?id=548127


           Summary: btouch.exe --debug option does not work with get/set
                    accessors
    Classification: Mono
           Product: MonoTouch
           Version: unspecified
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Normal
          Priority: P5 - None
         Component: Tools
        AssignedTo: mono-bugs at lists.ximian.com
        ReportedBy: duane at wandless.net
         QAContact: mono-bugs at lists.ximian.com
          Found By: ---


In the cs file used as input to btouch.exe:
namespace Cocos2D
{
    [BaseType (typeof (NSObject))]  
    interface Director
    {
        [Static, Export ("sharedDirector")]  
        Director SharedDirector { get; } 

Generates this in the .g.cs file:        

public static Director SharedDirector {
            [Export ("sharedDirector")]
            Console.WriteLine ("In Director get_SharedDirector()");
            get {
                return (Director) Runtime.GetNSObject
(MonoTouch.ObjCRuntime.Messaging.IntPtr_objc_msgSend (objClass.Handle,
selSharedDirector.Handle));
            }

        }

Expected results:
would be nice if --debug could add within the get/set.

-- 
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.


More information about the mono-bugs mailing list