Exemplo n.º 1
0
        public static string Format(Argument argument)
        {
            var f = new WebIDLFormatter();

            f.Visit(argument);
            return(f._sb.ToString());
        }
Exemplo n.º 2
0
        public static string FormatSignature(InterfaceMember member)
        {
            var f = new WebIDLFormatter();

            f.Visit(member, signatureOnly: true);
            return(f._sb.ToString());
        }
Exemplo n.º 3
0
        public static string Format(ExceptionMember member)
        {
            var f = new WebIDLFormatter();

            f.Visit(member);
            return(f._sb.ToString());
        }
Exemplo n.º 4
0
        public static string Format(WebIDLType type)
        {
            var f = new WebIDLFormatter();

            f.Visit(type);
            return(f._sb.ToString());
        }
Exemplo n.º 5
0
        public static string Format(ExtendedAttribute attribute)
        {
            var f = new WebIDLFormatter();

            f.Visit(attribute);
            return(f._sb.ToString());
        }
Exemplo n.º 6
0
        public static string Format(Definitions definitions)
        {
            var f = new WebIDLFormatter();

            f.Visit(definitions);
            return(f._sb.ToString());
        }
Exemplo n.º 7
0
 public static string FormatSignature(InterfaceMember member)
 {
     var f = new WebIDLFormatter();
     f.Visit(member, signatureOnly: true);
     return f._sb.ToString();
 }
Exemplo n.º 8
0
 public static string Format(Argument argument)
 {
     var f = new WebIDLFormatter();
     f.Visit(argument);
     return f._sb.ToString();
 }
Exemplo n.º 9
0
 public static string Format(ExceptionMember member)
 {
     var f = new WebIDLFormatter();
     f.Visit(member);
     return f._sb.ToString();
 }
Exemplo n.º 10
0
 public static string Format(ExtendedAttribute attribute)
 {
     var f = new WebIDLFormatter();
     f.Visit(attribute);
     return f._sb.ToString();
 }
Exemplo n.º 11
0
 public static string Format(WebIDLType type)
 {
     var f = new WebIDLFormatter();
     f.Visit(type);
     return f._sb.ToString();
 }
Exemplo n.º 12
0
 public static string Format(Definitions definitions)
 {
     var f = new WebIDLFormatter();
     f.Visit(definitions);
     return f._sb.ToString();
 }