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

Function GetSpecialCommandProcessor

tools/test.py:1553–1564  ·  view source on GitHub ↗
(value)

Source from the content-addressed store, hash-verified

1551 return path
1552
1553def GetSpecialCommandProcessor(value):
1554 if (not value) or (value.find('@') == -1):
1555 def ExpandCommand(args):
1556 return args
1557 return ExpandCommand
1558 else:
1559 prefix, _, suffix = value.partition('@')
1560 prefix = unquote(prefix).split()
1561 suffix = unquote(suffix).split()
1562 def ExpandCommand(args):
1563 return prefix + args + suffix
1564 return ExpandCommand
1565
1566def GetSuites(test_root):
1567 def IsSuite(path):

Callers 1

MainFunction · 0.85

Calls 3

findMethod · 0.65
partitionMethod · 0.45
splitMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…