175 | /// Function Definition Table syntax:
176 | ///
177 | /// - FDT ::= FDTRow [;FDTRow]*
178 | /// - FDTRow ::= Input => Output | Output <= Input
179 | /// - Input ::= ParameterName: Value [, Input]*
180 | /// - Output ::= [ParameterName: Value]* {halt|stop|void|nothing|Value}
181 | /// - Value ::= true | false | null | notnull | canbenull
182 | ///
183 | /// If method has single input parameter, it's name could be omitted.
184 | /// Using halt (or void/nothing, which is the same)
185 | /// for method output means that the methos doesn't return normally.
186 | /// canbenull annotation is only applicable for output parameters.
187 | /// You can use multiple [ContractAnnotation] for each FDT row,
188 | /// or use single attribute with rows separated by semicolon.
189 | ///
190 | ///