diff options
author | Troy Holsapple <troy.holsapple@gmail.com> | 2018-02-08 06:06:00 (GMT) |
---|---|---|
committer | Troy Holsapple <troy.holsapple@gmail.com> | 2018-02-08 06:06:00 (GMT) |
commit | c8510504ddf3bd9e486fdce076bdf5dba62d18bb (patch) | |
tree | ffdf7a37e88e36216955c70f209afacdb3b506e9 /googlemock/scripts/generator | |
parent | a3c73ed28d7995b18d48027aee740ad827fcc157 (diff) | |
download | googletest-c8510504ddf3bd9e486fdce076bdf5dba62d18bb.zip googletest-c8510504ddf3bd9e486fdce076bdf5dba62d18bb.tar.gz googletest-c8510504ddf3bd9e486fdce076bdf5dba62d18bb.tar.bz2 |
Fixed typosrefs/pull/1446/head
Diffstat (limited to 'googlemock/scripts/generator')
-rwxr-xr-x | googlemock/scripts/generator/cpp/ast.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/googlemock/scripts/generator/cpp/ast.py b/googlemock/scripts/generator/cpp/ast.py index 11cbe91..cce3272 100755 --- a/googlemock/scripts/generator/cpp/ast.py +++ b/googlemock/scripts/generator/cpp/ast.py @@ -338,7 +338,7 @@ class Class(_GenericDeclaration): # TODO(nnorwitz): handle namespaces, etc. if self.bases: for token_list in self.bases: - # TODO(nnorwitz): bases are tokens, do name comparision. + # TODO(nnorwitz): bases are tokens, do name comparison. for token in token_list: if token.name == node.name: return True @@ -381,7 +381,7 @@ class Function(_GenericDeclaration): def Requires(self, node): if self.parameters: - # TODO(nnorwitz): parameters are tokens, do name comparision. + # TODO(nnorwitz): parameters are tokens, do name comparison. for p in self.parameters: if p.name == node.name: return True @@ -858,7 +858,7 @@ class AstBuilder(object): last_token = self._GetNextToken() return tokens, last_token - # TODO(nnorwitz): remove _IgnoreUpTo() it shouldn't be necesary. + # TODO(nnorwitz): remove _IgnoreUpTo() it shouldn't be necessary. def _IgnoreUpTo(self, token_type, token): unused_tokens = self._GetTokensUpTo(token_type, token) |