Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 0.6
-
Fix Version/s: 0.7
-
Component/s: #develop addin
-
Labels:None
-
Number of attachments :
Description
C# to boo converter misses a comma after the first parameter to an attribute:
[System.Web.Services.Protocols.SoapRpcMethodAttribute('urn:GoogleSearchAction'RequestNamespace: 'urn:GoogleSearch', ResponseNamespace: 'urn:GoogleSearch')]
and doesn't move returntype attributes to after the return type of a method:
[return: System.Xml.Serialization.SoapElementAttribute('return'DataType: 'base64Binary')]
(returntype attributes don't compile in boo anyway, however, because of SRE bug)
To reproduce, on windows command line type "wsdl http://api.google.com/GoogleSearch.wsdl".
Then convert the C# file that was generated to boo and see the attributes (note though, even after correcting errors, this file apparently won't run in boo for other unrelated reasons).