19 lines
183 B
C
19 lines
183 B
C
|
|
#include "kind.h"
|
|
|
|
struct position;
|
|
|
|
struct token
|
|
{
|
|
enum token_kind kind;
|
|
|
|
struct string* text;
|
|
|
|
struct position *start, *end;
|
|
|
|
unsigned refcount;
|
|
};
|
|
|
|
|
|
|
|
|