diff options
Diffstat (limited to 'dimension/parse.h')
-rw-r--r-- | dimension/parse.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dimension/parse.h b/dimension/parse.h index d4420fa..2dd31be 100644 --- a/dimension/parse.h +++ b/dimension/parse.h @@ -42,6 +42,10 @@ struct dmnsn_astnode { /* Generic data pointer */ void *ptr; + + /* File name, and line and column numbers from source code */ + char *filename; + unsigned int line, col; }; /* The workhorse */ |