[examples] c like expressions example

This commit is contained in:
Allen Webster
2021-10-09 22:07:52 -07:00
parent ac9f415180
commit 126fab22df
8 changed files with 305 additions and 20 deletions
+5 -1
View File
@@ -790,7 +790,11 @@ typedef struct MD_Expr MD_Expr;
struct MD_Expr
{
struct MD_Expr *parent;
struct MD_Expr *left;
union
{
struct MD_Expr *left;
struct MD_Expr *unary_operand;
};
struct MD_Expr *right;
MD_ExprOpr *op;
MD_Node *md_node;