diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-11-16 06:41:55 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-11-16 06:41:55 -0800 |
commit | dc84927c791873508f473f1d5679550882f86e91 (patch) | |
tree | a7143022cfe09d975c9984a9be7b9b2d7e2f55bc /parser.y | |
parent | cf0ac2826bc7dc06d3c63e956ec8922a358f4f80 (diff) | |
download | txr-dc84927c791873508f473f1d5679550882f86e91.tar.gz txr-dc84927c791873508f473f1d5679550882f86e91.tar.bz2 txr-dc84927c791873508f473f1d5679550882f86e91.zip |
Completion of fallback list implementation.
* lib.c (find_symbol): New function.
(symbol_present): Search the fallback list also to
determine whether the symbol is visible.
* lib.h (find_symbol): Declared.
* parser.y (sym_helper): Implement a new behavior for
qualified symbols. Interning new symbols is only allowed
for packages that have an empty fallback list.
* parser.c (get_visible_syms): New static function.
(find_matching_syms): Use get_visible_syms to get
the list of eligible symbols. This way the fallback list
of the package is included if it is the current package.
* share/txr/stdlib/package.tl (defpackage): Do not insert
a default (:use usr) if there is no :usr clause. Since
defpackage is very new, no need for backward compatibility;
the amount of code depending on this is likely zero.
* txr.1: Documented fallback list feature.
Diffstat (limited to 'parser.y')
-rw-r--r-- | parser.y | 18 |
1 files changed, 16 insertions, 2 deletions
@@ -1278,10 +1278,24 @@ static val sym_helper(parser_t *parser, wchar_t *lexeme, val meta_allowed) } else { val package = find_package(pkg_name); if (!package) { - yyerrorf(scnr, lit("~a:~a: package ~a not found"), pkg_name, sym_name, pkg_name, nao); + yyerrorf(scnr, lit("~a:~a: package ~a not found"), + pkg_name, sym_name, pkg_name, nao); return nil; } - sym = intern(sym_name, package); + + sym = find_symbol(sym_name, package); + + if (sym == zero) { + if (!package_fallback_list(package)) { + sym = intern(sym_name, package); + } else { + yyerrorf(scnr, lit("~a:~a: cannot intern symbol using qualified symbol syntax,"), + pkg_name, sym_name, nao); + yyerrorf(scnr, lit("~a:~a: because package ~a has a fallback list"), + pkg_name, sym_name, pkg_name, nao); + return nil; + } + } } } else { val sym_name = string(lexeme); |