You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
413 B
22 lines
413 B
#pragma once
|
|
|
|
|
|
namespace dev {
|
|
namespace solidity {
|
|
|
|
// Representation of an interval of source positions.
|
|
struct Location {
|
|
Location(int b, int e) : beg_pos(b), end_pos(e) { }
|
|
Location() : beg_pos(0), end_pos(0) { }
|
|
|
|
bool IsValid() const {
|
|
return beg_pos >= 0 && end_pos >= beg_pos;
|
|
}
|
|
|
|
static Location invalid() { return Location(-1, -1); }
|
|
|
|
int beg_pos;
|
|
int end_pos;
|
|
};
|
|
|
|
} }
|
|
|