Home | History | Annotate | Download | only in src

Lines Matching defs:Location

283   struct Location {
284 Location(int b, int e) : beg_pos(b), end_pos(e) { }
285 Location() : beg_pos(0), end_pos(0) { }
290 // Returns the location information for the current token
292 Location location() const { return current_.location; }
293 Location peek_location() const { return next_.location; }
376 Location location;