rutile/compiler/location.h
2025-01-12 18:20:42 -03:00

11 lines
130 B
C

#ifndef _location_h_
#define _location_h_
#include "pre.h"
typedef struct {
Str source;
i64 line, column;
} Location;
#endif