summaryrefslogtreecommitdiffstats
path: root/dimension
diff options
context:
space:
mode:
Diffstat (limited to 'dimension')
-rw-r--r--dimension/common.rules8
-rw-r--r--dimension/parse.c9
2 files changed, 8 insertions, 9 deletions
diff --git a/dimension/common.rules b/dimension/common.rules
index 9383d4b..a987c69 100644
--- a/dimension/common.rules
+++ b/dimension/common.rules
@@ -22,14 +22,8 @@
/* Fundamental language elements */
IDENTIFIER: "identifier" {
- const char *id = $1;
- dmnsn_astnode *symbol = dmnsn_find_symbol(symtable, id);
- while (symbol && symbol->type == DMNSN_AST_IDENTIFIER) {
- id = symbol->ptr;
- symbol = dmnsn_find_symbol(symtable, id);
- }
$$ = dmnsn_new_astleaf(DMNSN_AST_IDENTIFIER, @$);
- $$.ptr = dmnsn_strdup(id);
+ $$.ptr = dmnsn_strdup($1);
dmnsn_free($1);
}
;
diff --git a/dimension/parse.c b/dimension/parse.c
index 74075a7..6651d41 100644
--- a/dimension/parse.c
+++ b/dimension/parse.c
@@ -131,8 +131,13 @@ dmnsn_find_symbol(dmnsn_symbol_table *symtable, const char *id)
DMNSN_ARRAY_FOREACH_REVERSE (dmnsn_dictionary **, dict, symtable) {
symbol = dmnsn_dictionary_at(*dict, id);
- if (symbol)
- break;
+ if (symbol) {
+ if (symbol->type == DMNSN_AST_IDENTIFIER) {
+ id = symbol->ptr;
+ } else {
+ break;
+ }
+ }
}
return symbol;