File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 88start_qldoc_re = re .compile (r'^\s*/\*\*' ) # Start of a QLDoc comment
99end_qldoc_re = re .compile (r'\*/\s*$' ) # End of a QLDoc comment
1010blank_qldoc_line_re = re .compile (r'^\s*\*\s*$' ) # A line in a QLDoc comment with only the '*'
11- instruction_class_re = re .compile (r'^class (?P<name>[A-aa -z0-9]+)Instruction\s' ) # Declaration of an `Instruction` class
12- opcode_base_class_re = re .compile (r'^abstract class (?P<name>[A-aa -z0-9]+)Opcode\s' ) # Declaration of an `Opcode` base class
13- opcode_class_re = re .compile (r'^ class (?P<name>[A-aa -z0-9]+)\s' ) # Declaration of an `Opcode` class
11+ instruction_class_re = re .compile (r'^class (?P<name>[A-Za -z0-9]+)Instruction\s' ) # Declaration of an `Instruction` class
12+ opcode_base_class_re = re .compile (r'^abstract class (?P<name>[A-Za -z0-9]+)Opcode\s' ) # Declaration of an `Opcode` base class
13+ opcode_class_re = re .compile (r'^ class (?P<name>[A-Za -z0-9]+)\s' ) # Declaration of an `Opcode` class
1414
1515script_dir = path .realpath (path .dirname (__file__ ))
1616instruction_path = path .realpath (path .join (script_dir , '../cpp/ql/src/semmle/code/cpp/ir/implementation/raw/Instruction.qll' ))
You can’t perform that action at this time.
0 commit comments