Visit() private method

private Visit ( Generator.Argument argument ) : void
argument Generator.Argument
return void
Beispiel #1
0
        public static string Format(Argument argument)
        {
            var f = new WebIDLFormatter();

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

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

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

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

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

            f.Visit(definitions);
            return(f._sb.ToString());
        }
 public static string FormatSignature(InterfaceMember member)
 {
     var f = new WebIDLFormatter();
     f.Visit(member, signatureOnly: true);
     return f._sb.ToString();
 }
 public static string Format(Argument argument)
 {
     var f = new WebIDLFormatter();
     f.Visit(argument);
     return f._sb.ToString();
 }
 public static string Format(ExceptionMember member)
 {
     var f = new WebIDLFormatter();
     f.Visit(member);
     return f._sb.ToString();
 }
 public static string Format(ExtendedAttribute attribute)
 {
     var f = new WebIDLFormatter();
     f.Visit(attribute);
     return f._sb.ToString();
 }
 public static string Format(WebIDLType type)
 {
     var f = new WebIDLFormatter();
     f.Visit(type);
     return f._sb.ToString();
 }
 public static string Format(Definitions definitions)
 {
     var f = new WebIDLFormatter();
     f.Visit(definitions);
     return f._sb.ToString();
 }