Implement constants

This commit is contained in:
2024-12-29 22:28:53 +01:00
parent 20949c7829
commit c558c3d6b4
7 changed files with 85 additions and 29 deletions

View File

@ -1,4 +1,5 @@
#include "elna/gcc/elna-diagnostic.h"
#include "elna/gcc/elna-tree.h"
namespace elna
{
@ -23,6 +24,10 @@ namespace gcc
{
return "Boolean";
}
else if (type == enumeral_node)
{
return "Enum";
}
else
{
return "<<unknown-type>>";