(data: bytes, min_len: int = 5, max_items: int = 20000)
| 22 | import re |
| 23 | import shlex |
| 24 | import shutil |
| 25 | import struct |
| 26 | import subprocess |
| 27 | import sys |
| 28 | import tempfile |
| 29 | from pathlib import Path |
| 30 | from typing import Dict, List, Optional, Set, Tuple |
| 31 | |
| 32 | PROTOCOL_MAJOR = 1 |
| 33 | MODEL_VERSION = 4 |
| 34 | |
| 35 | VM_DATA = "vm_data" |
| 36 | ISOLATE_DATA = "isolate_data" |
| 37 | VM_INSTRUCTIONS = "vm_instructions" |
| 38 | ISOLATE_INSTRUCTIONS = "isolate_instructions" |
| 39 | |
| 40 | DOMAINS = ( |
| 41 | "libraries", |
| 42 | "classes", |
| 43 | "class_relationships", |
| 44 | "functions", |
no outgoing calls
no test coverage detected