コード例 #1
0
ファイル: rule_004.py プロジェクト: pkorpine/vhdl-style-guide
 def __init__(self):
     single_space_between_token_pairs.__init__(self,
                                               'concurrent',
                                               '004',
                                               lTokens,
                                               bMinimum=True)
     self.solution = 'Ensure a single space between target and assignment.'
コード例 #2
0
 def __init__(self):
     single_space_between_token_pairs.__init__(self, 'process', '007',
                                               lTokens)
     self.solution = 'Ensure a single space after the end keyword.'
コード例 #3
0
 def __init__(self):
     single_space_between_token_pairs.__init__(self, 'variable_assignment',
                                               '002', lTokens)
     self.solution = 'Ensure a single space after the :=.'
コード例 #4
0
ファイル: rule_009.py プロジェクト: imd1/vhdl-style-guide
 def __init__(self):
     single_space_between_token_pairs.__init__(self, 'package', '009',
                                               lTokens)
     self.solution = 'Single space between *end* and *package* keywords and package_simple_name.'
コード例 #5
0
ファイル: rule_002.py プロジェクト: imd1/vhdl-style-guide
 def __init__(self):
     single_space_between_token_pairs.__init__(self, 'package', '002',
                                               lTokens)
     self.solution = 'Ensure a single space between the *package* keyword and identifier and *is* keyword.'
コード例 #6
0
ファイル: rule_007.py プロジェクト: imd1/vhdl-style-guide
 def __init__(self):
     single_space_between_token_pairs.__init__(self, 'type', '007', lTokens)
     self.solution = 'Ensure only a single space after the *is* keyword.'
コード例 #7
0
 def __init__(self):
     single_space_between_token_pairs.__init__(self, 'generic', '003',
                                               lTokens)
     self.solution = 'Change spacing between "generic" and "(" to one space.'
コード例 #8
0
 def __init__(self):
     single_space_between_token_pairs.__init__(self, 'instantiation', '032',
                                               lTokens)
     self.solution = 'Ensure a single space exists between *component* and the component_name.'
コード例 #9
0
ファイル: rule_003.py プロジェクト: imd1/vhdl-style-guide
 def __init__(self):
     single_space_between_token_pairs.__init__(self, 'if', '003', lTokens)
     self.solution = 'Ensure only a single space exists between the *if* keyword and (.'
コード例 #10
0
ファイル: rule_006.py プロジェクト: pkorpine/vhdl-style-guide
 def __init__(self):
     single_space_between_token_pairs.__init__(self, 'generic_map', '006',
                                               lTokens)
     self.solution = 'Ensure a single space exists between "map" and (.'
コード例 #11
0
 def __init__(self):
     single_space_between_token_pairs.__init__(self, 'procedure', '101', lTokens)
     self.solution = 'Ensure a single space between the keywords in the closing part of a procedure specification.'
コード例 #12
0
 def __init__(self):
     single_space_between_token_pairs.__init__(self, 'if', '015', lTokens)
     self.solution = 'Ensure only a single space exists between the "end" and "if" keywords.'
コード例 #13
0
 def __init__(self):
     single_space_between_token_pairs.__init__(self, 'process', '014',
                                               lTokens)
     self.solution = 'Ensure a single space before the *is* keyword.'
コード例 #14
0
 def __init__(self):
     single_space_between_token_pairs.__init__(self, 'generate', '002',
                                               lTokens)
     self.solution = 'Ensure a single space between label and :.'
コード例 #15
0
 def __init__(self):
     single_space_between_token_pairs.__init__(self, 'instantiation', '018',
                                               lTokens)
     self.solution = 'Ensure a single space exists between "map" and (.'
コード例 #16
0
ファイル: rule_025.py プロジェクト: imd1/vhdl-style-guide
 def __init__(self):
     single_space_between_token_pairs.__init__(self, 'process', '025',
                                               lTokens)
     self.solution = 'Ensure a single space exists between the : and the *process* keyword.'
コード例 #17
0
ファイル: rule_100.py プロジェクト: imd1/vhdl-style-guide
 def __init__(self):
     single_space_between_token_pairs.__init__(self, 'function', '100',
                                               lTokens)
     self.solution = 'Ensure a single space between the keywords in the opening part of a function specification.'
コード例 #18
0
 def __init__(self):
     single_space_between_token_pairs.__init__(self, 'process', '024', lTokens)
     self.solution = 'Ensure a single space exists between process label and :.'
コード例 #19
0
 def __init__(self):
     single_space_between_token_pairs.__init__(self, 'type', '006', lTokens)
     self.solution = 'Ensure only a single space before the is keyword.'
コード例 #20
0
 def __init__(self):
     single_space_between_token_pairs.__init__(self, 'library', '002',
                                               lTokens)
     self.solution = 'Ensure a single space between the *library* keyword and the logical_name.'
コード例 #21
0
ファイル: rule_100.py プロジェクト: imd1/vhdl-style-guide
 def __init__(self):
     single_space_between_token_pairs.__init__(self, 'procedure_call',
                                               '100', lTokens)
     self.solution = 'Ensure a single space between the label, colon, *postponed* keyword and procedure_name.'
コード例 #22
0
 def __init__(self):
     single_space_between_token_pairs.__init__(self, 'block', '101',
                                               lTokens)
コード例 #23
0
 def __init__(self):
     single_space_between_token_pairs.__init__(self, 'package_body', '100',
                                               lTokens)
     self.solution = 'Ensure a single space between the package keyword and body keyword and identifier and is keyword.'
コード例 #24
0
 def __init__(self):
     single_space_between_token_pairs.__init__(self, 'generate', '008',
                                               lTokens)
     self.solution = 'Ensure there is only one space between the "end" and "generate" keywords.'
コード例 #25
0
 def __init__(self):
     single_space_between_token_pairs.__init__(self, 'library', '006',
                                               lTokens)
     self.solution = 'Ensure a single space between the *use* keyword and the selected_name.'
コード例 #26
0
 def __init__(self):
     single_space_between_token_pairs.__init__(self, 'generate', '013', lTokens)
     self.solution = 'Ensure there is only one space between the *generate* keyword and the label.'
コード例 #27
0
ファイル: rule_003.py プロジェクト: pkorpine/vhdl-style-guide
 def __init__(self):
     single_space_between_token_pairs.__init__(self, 'instantiation', '003',
                                               lTokens)
     self.solution = 'Ensure only one space before the :.'
コード例 #28
0
ファイル: rule_014.py プロジェクト: pkorpine/vhdl-style-guide
 def __init__(self):
     single_space_between_token_pairs.__init__(self, 'generate', '014', lTokens)
     self.solution = 'Ensure a single space exists after the label colon.'