diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-02-17 23:43:55 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-02-17 23:43:55 -0500 |
| commit | fbf39cd7e907f32824cc0bb763f38851b1726cfd (patch) | |
| tree | f9ef822ad1967a9d371936586ac13c890cb2cb50 /nextlang.c | |
| parent | 2345c8c5c93b8c18866f09310f8a9d9e35962823 (diff) | |
Various fixes, including for Null values
Diffstat (limited to 'nextlang.c')
| -rw-r--r-- | nextlang.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -56,9 +56,8 @@ int main(int argc, char *argv[]) bind_statement(env, stmt->ast); } - CORD fileinfo = CORD_asprintf("#line 0 %r\n", Str__quoted(f->filename, false)); CORD program = CORD_all( - fileinfo, + // CORD_asprintf("#line 0 %r\n", Str__quoted(f->filename, false)), "// Generated code:\n", env->code->imports, "\n", env->code->typedefs, "\n", |
