polytronicgr / sharpkit

Automatically exported from code.google.com/p/sharpkit
0 stars 0 forks source link

[JsMethod ArgumentsPrefix and suffix generates unneeded spaces #341

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
    [JsType(JsMode.Global, Export=false)]
    class ExtJsContext
    {
        [JsMethod(ArgumentsPrefix = "\"", ArgumentsSuffix = "\".trim()", IgnoreGenericArguments = false)]
        public static void application<T>()
        {
        }
    }
    [JsType(JsMode.Prototype)]
    class MainApp
    {
        void foo()
        {
            ExtJsContext.application<MainApp>();
        }
    }

Original issue reported on code.google.com by DanelK...@gmail.com on 18 Dec 2013 at 8:54

GoogleCodeExporter commented 8 years ago

Original comment by DanelK...@gmail.com on 12 Feb 2014 at 12:01