Uses of 'FIXME' tags

objectscriptQuality release 
3.1.1
Id 
OS0097
Rule type 
Code Smell
Severity 

Info

Info
SQALE characteristic 
  • Reliability
    • Reliability compliance
Tags 
maintainability, reliability, suspicious
Remediation function 
Constant/issue
Remediation cost 
1h

FIXME tags are commonly used to mark places where a bug is suspected, but which the developer wants to deal with later.

Sometimes the developer will not have the time or will simply forget to get back to that tag.

This rule is meant to track those tags and to ensure that they do not go unnoticed.

Non-compliant code

class c1
{
method m()
{
    #dim x = 2  //FIXME value x
    w x,!
}
}