String support

This commit is contained in:
gingerBill
2016-08-05 00:54:05 +01:00
parent 19aea1f198
commit 2aaef48c5c
16 changed files with 737 additions and 246 deletions

View File

@@ -2063,10 +2063,7 @@ void parse_file(Parser *p, AstFile *f) {
} else {
if (node->kind == AstNode_ImportDecl) {
auto *id = &node->ImportDecl;
String file = id->filepath.string;
String file_str = {};
if (file.text[0] == '"')
file_str = make_string(file.text+1, file.len-2);
String file_str = id->filepath.string;
char ext[] = ".odin";
isize ext_len = gb_size_of(ext)-1;