Meta generated data working
This commit is contained in:
@@ -41,8 +41,8 @@ for i in meta.token_simple_expr:
|
||||
|
||||
first = "op_" + meta.pascal_to_snake(meta.token_simple_expr[0][0])
|
||||
last = "op_" + meta.pascal_to_snake(meta.token_simple_expr[-1][0])
|
||||
print(f"l->first_op = {first}")
|
||||
print(f"l->last_op = {last}")
|
||||
print(f"l->first_op = {first};")
|
||||
print(f"l->last_op = {last};")
|
||||
*/
|
||||
op_mul = l->intern("*"_s);
|
||||
op_div = l->intern("/"_s);
|
||||
@@ -68,8 +68,8 @@ op_decrement = l->intern("--"_s);
|
||||
op_increment = l->intern("++"_s);
|
||||
op_post_decrement = l->intern("--"_s);
|
||||
op_post_increment = l->intern("++"_s);
|
||||
l->first_op = op_mul
|
||||
l->last_op = op_post_increment
|
||||
l->first_op = op_mul;
|
||||
l->last_op = op_post_increment;
|
||||
/*END*/
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user