rename node->filename to node->filename_index

This commit is contained in:
Yukihiro "Matz" Matsumoto
2013-09-20 06:09:41 +09:00
parent 58b1c0883b
commit 12183fa250
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ void mrbc_partial_hook(mrb_state *mrb, mrbc_context *c, int (*partial_hook)(stru
/* AST node structure */
typedef struct mrb_ast_node {
struct mrb_ast_node *car, *cdr;
uint16_t lineno, filename;
uint16_t lineno, filename_index;
} mrb_ast_node;
/* lexer states */