示例#1
0
 def __init__(self):
     prefix_rule.__init__(self, 'generic', '020', 'isGenericDeclaration')
     self.prefixes = ['g_']
     self.solution = 'Generic'
示例#2
0
 def __init__(self):
     prefix_rule.__init__(self, 'type', '015', 'isTypeKeyword')
     self.prefixes = ['t_']
     self.solution = 'Type'
示例#3
0
 def __init__(self):
     prefix_rule.__init__(self, 'port', '011', 'isPortDeclaration')
     self.prefixes = ['i_', 'o_', 'io_']
     self.solution = 'Port'
示例#4
0
 def __init__(self):
     prefix_rule.__init__(self, 'package', '017', 'isPackageKeyword')
     self.prefixes = ['pkg_']
     self.solution = 'Package identifier'
示例#5
0
 def __init__(self):
     prefix_rule.__init__(self, 'constant', '015', 'isConstant')
     self.prefixes = ['c_']
     self.solution = 'Constant'
示例#6
0
 def __init__(self):
     prefix_rule.__init__(self, 'variable', '012', 'isVariable')
     self.prefixes = ['v_']
     self.solution = 'Variable'
示例#7
0
 def __init__(self):
     prefix_rule.__init__(self, 'signal', '008', 'isSignal')
     self.prefixes = ['s_']
     self.solution = 'Signal'
示例#8
0
 def __init__(self):
     prefix_rule.__init__(self, 'subtype', '004', 'isSubtypeKeyword')
     self.prefixes = ['st_']
     self.solution = 'Subtype'
示例#9
0
 def __init__(self):
     prefix_rule.__init__(self, 'process', '036', 'isProcessLabel')
     self.prefixes = ['proc_']
     self.solution = 'Process labels'