diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-03-19 23:29:32 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-03-19 23:29:32 -0400 |
| commit | a47bd2d569e24b74bbb925b934bc835b4eea4de9 (patch) | |
| tree | e692a68f65b428aef889b9992473b0a7c1bc9314 /ast.c | |
| parent | 80ea0f85079eaac027b930b7d54df46e2039e7c3 (diff) | |
Improvements to module imports
Diffstat (limited to 'ast.c')
| -rw-r--r-- | ast.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -141,7 +141,7 @@ CORD ast_to_cord(ast_t *ast) T(Index, "(indexed=%r, index=%r)", ast_to_cord(data.indexed), ast_to_cord(data.index)) T(FieldAccess, "(fielded=%r, field=%s)", ast_to_cord(data.fielded), data.field) T(DocTest, "(expr=%r, output=%r)", ast_to_cord(data.expr), Text__quoted(data.output, true)) - T(Use, "(%r)", Text__quoted(data.path, true)) + T(Use, "(%r)", Text__quoted(data.raw_path, true)) T(LinkerDirective, "(%r)", Text__quoted(data.directive, true)) T(InlineCCode, "(%r)", Text__quoted(data.code, true)) #undef T |
