Exemplo n.º 1
0
 def __init__(self):
     single_space_after_character_rule.__init__(self, 'generic', '006',
                                                'isGenericDeclaration',
                                                ':=')
     self.solution = 'Reduce number of spaces after the default assignment to 1.'
Exemplo n.º 2
0
 def __init__(self):
     single_space_after_character_rule.__init__(self, 'generic', '005',
                                                'isGenericDeclaration', ':')
     self.solution = 'Reduce number of spaces after the colon to 1.'
Exemplo n.º 3
0
 def __init__(self):
     single_space_after_character_rule.__init__(self, 'signal', '005',
                                                'isSignal', ':')
     self.solution = 'Ensure only a signal space after the colon.'
Exemplo n.º 4
0
 def __init__(self):
     single_space_after_character_rule.__init__(self, 'variable_assignment',
                                                '002',
                                                'isVariableAssignment',
                                                ':=')
     self.solution = 'Ensure a single space exists after the ":=" keyword.'
Exemplo n.º 5
0
 def __init__(self):
     single_space_after_character_rule.__init__(self, 'variable', '005',
                                                'isVariable', ':')
     self.solution = 'Ensure only a variable space after the colon.'
Exemplo n.º 6
0
 def __init__(self):
     single_space_after_character_rule.__init__(self, 'sequential', '002',
                                                'isSequential', '<=')
     self.solution = 'Ensure a single space exists after the "<=" keyword.'
Exemplo n.º 7
0
 def __init__(self):
     single_space_after_character_rule.__init__(self, 'process', '025',
                                                'isProcessLabel', ':')
     self.solution = 'Ensure a single space exists between the : and the "process" keyword.'
Exemplo n.º 8
0
 def __init__(self):
     single_space_after_character_rule.__init__(self, 'concurrent', '002',
                                                'isConcurrentBegin', '<=')
     self.solution = 'Remove all but one space after the <=.'
Exemplo n.º 9
0
 def __init__(self):
     single_space_after_character_rule.__init__(
         self, 'instantiation', '002', 'isInstantiationDeclaration', ':')
     self.solution = 'Ensure only one space after the :.'