MCPcopy Create free account
hub / github.com/PyMesh/PyMesh / ParseInParens

Function ParseInParens

tests/external/gmock-1.7.0/gtest/scripts/pump.py:282–287  ·  view source on GitHub ↗
(pos)

Source from the content-addressed store, hash-verified

280
281def ParseExpTokenInParens(lines, pos):
282 def ParseInParens(pos):
283 pos = Skip(lines, pos, OPTIONAL_WHITE_SPACES_REGEX)
284 pos = Skip(lines, pos, r'\(')
285 pos = Parse(pos)
286 pos = Skip(lines, pos, r'\)')
287 return pos
288
289 def Parse(pos):
290 pos = SkipUntil(lines, pos, r'\(|\)', ')')

Callers 1

ParseExpTokenInParensFunction · 0.85

Calls 2

SkipFunction · 0.85
ParseFunction · 0.85

Tested by

no test coverage detected