identifiers' name changed

This commit is contained in:
Valk Richard Li
2021-02-12 23:48:51 +08:00
parent b5514fd269
commit 7329c70492
5 changed files with 273 additions and 272 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ bool nasal_import::check_import(nasal_ast& node)
return false;
if(ref_vec[1].get_type()!=ast_call_func)
return false;
if(ref_vec[1].get_children().size()!=1 || ref_vec[1].get_children()[0].get_type()!=ast_string)
if(ref_vec[1].get_children().size()!=1 || ref_vec[1].get_children()[0].get_type()!=ast_str)
return false;
return true;
}