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 8
8
start_qldoc_re = re .compile (r'^\s*/\*\*' ) # Start of a QLDoc comment
9
9
end_qldoc_re = re .compile (r'\*/\s*$' ) # End of a QLDoc comment
10
10
blank_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
14
14
15
15
script_dir = path .realpath (path .dirname (__file__ ))
16
16
instruction_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