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 962003002: gn format: Have format sort sources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: unsigned numbers in test Created 5 years, 9 months 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/parse_tree_unittest.cc ('k') | no next file » | 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 55
56 NUM_TYPES 56 NUM_TYPES
57 }; 57 };
58 58
59 Token(); 59 Token();
60 Token(const Location& location, Type t, const base::StringPiece& v); 60 Token(const Location& location, Type t, const base::StringPiece& v);
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 LocationRange range() const { 66 LocationRange range() const {
66 return LocationRange( 67 return LocationRange(
67 location_, 68 location_,
68 Location(location_.file(), 69 Location(location_.file(),
69 location_.line_number(), 70 location_.line_number(),
70 location_.char_offset() + static_cast<int>(value_.size()), 71 location_.char_offset() + static_cast<int>(value_.size()),
71 location_.byte() + static_cast<int>(value_.size()))); 72 location_.byte() + static_cast<int>(value_.size())));
72 } 73 }
73 74
74 // Helper functions for comparing this token to something. 75 // Helper functions for comparing this token to something.
75 bool IsIdentifierEqualTo(const char* v) const; 76 bool IsIdentifierEqualTo(const char* v) const;
76 bool IsStringEqualTo(const char* v) const; 77 bool IsStringEqualTo(const char* v) const;
77 78
78 private: 79 private:
79 Type type_; 80 Type type_;
80 base::StringPiece value_; 81 base::StringPiece value_;
81 Location location_; 82 Location location_;
82 }; 83 };
83 84
84 #endif // TOOLS_GN_TOKEN_H_ 85 #endif // TOOLS_GN_TOKEN_H_
OLDNEW
« no previous file with comments | « tools/gn/parse_tree_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698