Chromium Code Reviews| Index: tools/gn/location.h |
| diff --git a/tools/gn/location.h b/tools/gn/location.h |
| index 44d1a6fe68f614112bf1d57993cc8af8bb92755c..d1c875016dbf315e1eb42d2802dfe32bf6179d96 100644 |
| --- a/tools/gn/location.h |
| +++ b/tools/gn/location.h |
| @@ -19,6 +19,7 @@ class Location { |
| int line_number() const { return line_number_; } |
| int column_number() const { return column_number_; } |
| int byte() const { return byte_; } |
| + bool is_null() const; |
|
brettw
2016/04/21 20:33:36
As per style guide, hacker_case function names sho
agrieve
2016/04/22 00:16:31
Done.
|
| bool operator==(const Location& other) const; |
| bool operator!=(const Location& other) const; |
| @@ -45,6 +46,7 @@ class LocationRange { |
| const Location& begin() const { return begin_; } |
| const Location& end() const { return end_; } |
| + bool is_null() const; |
|
brettw
2016/04/21 20:33:36
Ditto.
agrieve
2016/04/22 00:16:31
Done.
|
| LocationRange Union(const LocationRange& other) const; |