Add function recognition

This commit is contained in:
Valk Richard Li
2019-08-11 23:16:40 +08:00
committed by GitHub
parent 98dde4b53b
commit e4b4086984
3 changed files with 94 additions and 13 deletions
+2 -1
View File
@@ -74,7 +74,8 @@ class func_stack
while(temp->next)
{
temp=temp->next;
std::cout<<"function: "<<temp->func_name<<std::endl;
std::cout<<"function: "<<temp->func_name;
temp->func_statement.print_info();
}
return;
}