1 module introspection.location; 2 3 4 /// Stores information about symbol location in the source code 5 struct Location { 6 /// 7 string file; 8 9 /// 10 int line; 11 12 /// 13 int column; 14 }