Googletest export

Update auto_mock to support C++17 nested namespaces

PiperOrigin-RevId: 318192214
This commit is contained in:
Abseil Team
2020-06-24 23:00:53 -04:00
committed by Mark Barolak
parent 849ed6b172
commit 05c4a036bb
2 changed files with 7 additions and 8 deletions

View File

@@ -1599,12 +1599,11 @@ class AstBuilder(object):
bases, templated_types, body, self.namespace_stack)
def handle_namespace(self):
token = self._GetNextToken()
# Support anonymous namespaces.
name = None
if token.token_type == tokenize.NAME:
name = token.name
token = self._GetNextToken()
name_tokens, token = self.GetName()
if name_tokens:
name = ''.join([t.name for t in name_tokens])
self.namespace_stack.append(name)
assert token.token_type == tokenize.SYNTAX, token
# Create an internal token that denotes when the namespace is complete.