Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(61)

Side by Side Diff: tools/gn/token.h

Issue 1525183002: tools/gn: rename char_offset to column_number (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix indentation Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/gn/string_utils.cc ('k') | tools/gn/tokenizer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef TOOLS_GN_TOKEN_H_ 5 #ifndef TOOLS_GN_TOKEN_H_
6 #define TOOLS_GN_TOKEN_H_ 6 #define TOOLS_GN_TOKEN_H_
7 7
8 #include "base/strings/string_piece.h" 8 #include "base/strings/string_piece.h"
9 #include "tools/gn/location.h" 9 #include "tools/gn/location.h"
10 10
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 61
62 Type type() const { return type_; } 62 Type type() const { return type_; }
63 const base::StringPiece& value() const { return value_; } 63 const base::StringPiece& value() const { return value_; }
64 const Location& location() const { return location_; } 64 const Location& location() const { return location_; }
65 void set_location(Location location) { location_ = location; } 65 void set_location(Location location) { location_ = location; }
66 LocationRange range() const { 66 LocationRange range() const {
67 return LocationRange( 67 return LocationRange(
68 location_, 68 location_,
69 Location(location_.file(), 69 Location(location_.file(),
70 location_.line_number(), 70 location_.line_number(),
71 location_.char_offset() + static_cast<int>(value_.size()), 71 location_.column_number() + static_cast<int>(value_.size()),
72 location_.byte() + static_cast<int>(value_.size()))); 72 location_.byte() + static_cast<int>(value_.size())));
73 } 73 }
74 74
75 // Helper functions for comparing this token to something. 75 // Helper functions for comparing this token to something.
76 bool IsIdentifierEqualTo(const char* v) const; 76 bool IsIdentifierEqualTo(const char* v) const;
77 bool IsStringEqualTo(const char* v) const; 77 bool IsStringEqualTo(const char* v) const;
78 78
79 private: 79 private:
80 Type type_; 80 Type type_;
81 base::StringPiece value_; 81 base::StringPiece value_;
82 Location location_; 82 Location location_;
83 }; 83 };
84 84
85 #endif // TOOLS_GN_TOKEN_H_ 85 #endif // TOOLS_GN_TOKEN_H_
OLDNEW
« no previous file with comments | « tools/gn/string_utils.cc ('k') | tools/gn/tokenizer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698