@@ -54,18 +54,6 @@ module Net {
5454 FunctionOutput outp ;
5555
5656 MethodModels ( ) {
57- // signature: func (*Buffers).Read(p []byte) (n int, err error)
58- this .hasQualifiedName ( "net" , "Buffers" , "Read" ) and
59- ( inp .isReceiver ( ) and outp .isParameter ( 0 ) )
60- or
61- // signature: func (*Buffers).WriteTo(w io.Writer) (n int64, err error)
62- this .hasQualifiedName ( "net" , "Buffers" , "WriteTo" ) and
63- ( inp .isReceiver ( ) and outp .isParameter ( 0 ) )
64- or
65- // signature: func (*IPConn).ReadFrom(b []byte) (int, Addr, error)
66- this .hasQualifiedName ( "net" , "IPConn" , "ReadFrom" ) and
67- ( inp .isReceiver ( ) and outp .isParameter ( 0 ) )
68- or
6957 // signature: func (*IPConn).ReadFromIP(b []byte) (int, *IPAddr, error)
7058 this .hasQualifiedName ( "net" , "IPConn" , "ReadFromIP" ) and
7159 ( inp .isReceiver ( ) and outp .isParameter ( 0 ) )
@@ -86,18 +74,10 @@ module Net {
8674 this .hasQualifiedName ( "net" , "IPConn" , "WriteMsgIP" ) and
8775 ( inp .isParameter ( [ 0 , 1 ] ) and outp .isReceiver ( ) )
8876 or
89- // signature: func (*IPConn).WriteTo(b []byte, addr Addr) (int, error)
90- this .hasQualifiedName ( "net" , "IPConn" , "WriteTo" ) and
91- ( inp .isParameter ( 0 ) and outp .isReceiver ( ) )
92- or
9377 // signature: func (*IPConn).WriteToIP(b []byte, addr *IPAddr) (int, error)
9478 this .hasQualifiedName ( "net" , "IPConn" , "WriteToIP" ) and
9579 ( inp .isParameter ( 0 ) and outp .isReceiver ( ) )
9680 or
97- // signature: func (*TCPConn).ReadFrom(r io.Reader) (int64, error)
98- this .hasQualifiedName ( "net" , "TCPConn" , "ReadFrom" ) and
99- ( inp .isParameter ( 0 ) and outp .isReceiver ( ) )
100- or
10181 // signature: func (*TCPConn).SyscallConn() (syscall.RawConn, error)
10282 this .hasQualifiedName ( "net" , "TCPConn" , "SyscallConn" ) and
10383 (
@@ -122,10 +102,6 @@ module Net {
122102 inp .isResult ( 0 ) and outp .isReceiver ( )
123103 )
124104 or
125- // signature: func (*UDPConn).ReadFrom(b []byte) (int, Addr, error)
126- this .hasQualifiedName ( "net" , "UDPConn" , "ReadFrom" ) and
127- ( inp .isReceiver ( ) and outp .isParameter ( 0 ) )
128- or
129105 // signature: func (*UDPConn).ReadFromUDP(b []byte) (int, *UDPAddr, error)
130106 this .hasQualifiedName ( "net" , "UDPConn" , "ReadFromUDP" ) and
131107 ( inp .isReceiver ( ) and outp .isParameter ( 0 ) )
@@ -146,18 +122,10 @@ module Net {
146122 this .hasQualifiedName ( "net" , "UDPConn" , "WriteMsgUDP" ) and
147123 ( inp .isParameter ( [ 0 , 1 ] ) and outp .isReceiver ( ) )
148124 or
149- // signature: func (*UDPConn).WriteTo(b []byte, addr Addr) (int, error)
150- this .hasQualifiedName ( "net" , "UDPConn" , "WriteTo" ) and
151- ( inp .isParameter ( 0 ) and outp .isReceiver ( ) )
152- or
153125 // signature: func (*UDPConn).WriteToUDP(b []byte, addr *UDPAddr) (int, error)
154126 this .hasQualifiedName ( "net" , "UDPConn" , "WriteToUDP" ) and
155127 ( inp .isParameter ( 0 ) and outp .isReceiver ( ) )
156128 or
157- // signature: func (*UnixConn).ReadFrom(b []byte) (int, Addr, error)
158- this .hasQualifiedName ( "net" , "UnixConn" , "ReadFrom" ) and
159- ( inp .isReceiver ( ) and outp .isParameter ( 0 ) )
160- or
161129 // signature: func (*UnixConn).ReadFromUnix(b []byte) (int, *UnixAddr, error)
162130 this .hasQualifiedName ( "net" , "UnixConn" , "ReadFromUnix" ) and
163131 ( inp .isReceiver ( ) and outp .isParameter ( 0 ) )
@@ -178,10 +146,6 @@ module Net {
178146 this .hasQualifiedName ( "net" , "UnixConn" , "WriteMsgUnix" ) and
179147 ( inp .isParameter ( [ 0 , 1 ] ) and outp .isReceiver ( ) )
180148 or
181- // signature: func (*UnixConn).WriteTo(b []byte, addr Addr) (int, error)
182- this .hasQualifiedName ( "net" , "UnixConn" , "WriteTo" ) and
183- ( inp .isParameter ( 0 ) and outp .isReceiver ( ) )
184- or
185149 // signature: func (*UnixConn).WriteToUnix(b []byte, addr *UnixAddr) (int, error)
186150 this .hasQualifiedName ( "net" , "UnixConn" , "WriteToUnix" ) and
187151 ( inp .isParameter ( 0 ) and outp .isReceiver ( ) )
0 commit comments