MCPcopy Index your code
hub / github.com/nodejs/node / ProcessThirdPartyHeadersOption

Function ProcessThirdPartyHeadersOption

tools/cpplint.py:1090–1096  ·  view source on GitHub ↗

Sets the regex pattern for third-party headers.

(val)

Source from the content-addressed store, hash-verified

1088
1089
1090def ProcessThirdPartyHeadersOption(val):
1091 """Sets the regex pattern for third-party headers."""
1092 global _third_party_headers_pattern
1093 try:
1094 _third_party_headers_pattern = re.compile(val)
1095 except re.error:
1096 PrintUsage(f"Invalid third_party_headers pattern: {val}")
1097
1098
1099def IsHeaderExtension(file_extension):

Callers 2

ProcessConfigOverridesFunction · 0.85
ParseArgumentsFunction · 0.85

Calls 2

PrintUsageFunction · 0.70
compileMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…