Changes between Version 1 and Version 2 of Documentation/T3D/Log-Output/Warnings
- Timestamp:
- 05/08/11 19:27:45 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Documentation/T3D/Log-Output/Warnings
v1 v2 90 90 ==== Undocumented Parameters ==== 91 91 92 Formal parameters shall be described by means of the corresponding @param tags. If this is not the case and if ''' showUndocumentedParameters''' is enabled in the configuration profile, a warning will be thrown.92 Formal parameters shall be described by means of the corresponding @param tags. If this is not the case and if '''checkUndocumentedParameters''' is enabled in the configuration profile, a warning will be thrown. 93 93 94 94 '''Example''' … … 108 108 }}} 109 109 110 '''Note:''' There are more subtle details related to the (proper) documentation of formal parameters. In future considerations, these subtleties may be implemented more throroughly. 110 '''Note:''' There are more subtle details related to the (proper) documentation of formal parameters. In future considerations, these subtleties may be implemented more thoroughly. 111 112 ==== Required @desc Tags for Functions ==== 113 114 If enabled ('''checkFunctionDescTagsRequired''' configuration flag, disabled by default), this check will throw warnings if there are no @desc tags present for a function definition. 115 116 '''Example''' 117 {{{ 118 /* 119 * @param a Description of Parameter a 120 */ 121 function f1(integer a){ 122 ... 123 } 124 }}} 125 126 will result in 127 128 {{{ 129 testFile.ttcn: 31: WARNING: Code Documentation: Required @desc tag not missing 130 }}} 131 111 132 112 133 ==== Documented But Nonexistent Parameters ==== … … 133 154 ==== Cyclic Imports ==== 134 155 135 In ad ition to the pure documentation-related checks, there is currently also a cyclic imports check, which throws warnings if cyclic imports occur. This is of particular importance for the import view, since cyclic dependencies will be impossible to represent with the current presentation format. Cyclic imports shall also be detected by most compilers since there are a lot more problems associated with them. The warning contains the cyclic import and there is a separate warning for each module that is part of the cycle.156 In addition to the pure documentation-related checks, there is currently also a cyclic imports check, which throws warnings if cyclic imports occur. This is of particular importance for the import view, since cyclic dependencies will be impossible to represent with the current presentation format. Cyclic imports shall also be detected by most compilers since there are a lot more problems associated with them. The warning contains the cyclic import and there is a separate warning for each module that is part of the cycle. 136 157 137 158 '''Example'''