Chromium Code Reviews| Index: tools/gn/token.h |
| diff --git a/tools/gn/token.h b/tools/gn/token.h |
| index 81a9b4a5f3e3921bce956e9e21e11c4ff959e7dc..eb6b10e5e2e57edb708e7c622de8d7004937923c 100644 |
| --- a/tools/gn/token.h |
| +++ b/tools/gn/token.h |
| @@ -75,6 +75,8 @@ class Token { |
| bool IsIdentifierEqualTo(const char* v) const; |
| bool IsStringEqualTo(const char* v) const; |
| + void set_location(Location location) { location_ = location; } |
|
brettw
2015/02/27 22:27:27
Seems like this should go next to location()
scottmg
2015/02/27 23:17:44
Done.
|
| + |
| private: |
| Type type_; |
| base::StringPiece value_; |