Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

implement ternary #117

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 39 additions & 4 deletions tinyexpr.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ typedef double (*te_fun2)(double, double);

enum {
TOK_NULL = TE_CLOSURE7+1, TOK_ERROR, TOK_END, TOK_SEP,
TOK_OPEN, TOK_CLOSE, TOK_NUMBER, TOK_VARIABLE, TOK_INFIX
TOK_OPEN, TOK_CLOSE, TOK_NUMBER, TOK_VARIABLE, TOK_INFIX,
TOK_TERNARY_COND, TOK_TERNARY_ELSE
};


Expand Down Expand Up @@ -234,6 +235,7 @@ static double mul(double a, double b) {return a * b;}
static double divide(double a, double b) {return a / b;}
static double negate(double a) {return -a;}
static double comma(double a, double b) {(void)a; return b;}
static double ternary(double a, double b, double c) {return a == 0 ? b : c;}


void next_token(state *s) {
Expand Down Expand Up @@ -293,6 +295,8 @@ void next_token(state *s) {
case '%': s->type = TOK_INFIX; s->function = fmod; break;
case '(': s->type = TOK_OPEN; break;
case ')': s->type = TOK_CLOSE; break;
case '?': s->type = TOK_TERNARY_COND; break;
case ':':s->type = TOK_TERNARY_ELSE; break;
case ',': s->type = TOK_SEP; break;
case ' ': case '\t': case '\n': case '\r': break;
default: s->type = TOK_ERROR; break;
Expand Down Expand Up @@ -567,15 +571,46 @@ static te_expr *expr(state *s) {
return ret;
}

static te_expr *pack_ternary(state *s)
{
/* <ternary> = <expr> {"?" <expr> ":" <expr>} */

static te_expr *list(state *s) {
/* <list> = <expr> {"," <expr>} */
te_expr *ret = expr(s);
CHECK_NULL(ret);

while (s->type == TOK_TERNARY_COND)
{
next_token(s);
te_expr *true_expr = expr(s);

if (s->type == TOK_TERNARY_ELSE)
{
next_token(s);
te_expr *false_expr = expr(s);

ret = NEW_EXPR(TE_FUNCTION3, ret, true_expr, false_expr);
CHECK_NULL(ret, te_free(false_expr), te_free(true_expr));

ret->function = ternary;
}
else
{
CHECK_NULL(ret, te_free(ret), te_free(true_expr));
return NULL;
Comment on lines +598 to +599
Copy link
Author

@Sercurio Sercurio Sep 11, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think there I better should use TOK_ERROR

}
}

return ret;
}

static te_expr *list(state *s) {
/* <list> = <ternary> {"," <ternary>} */
te_expr *ret = pack_ternary(s);
CHECK_NULL(ret);

while (s->type == TOK_SEP) {
next_token(s);
te_expr *e = expr(s);
te_expr *e = pack_ternary(s);
CHECK_NULL(e, te_free(ret));

te_expr *prev = ret;
Expand Down
2 changes: 1 addition & 1 deletion tinyexpr.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ enum {
TE_CLOSURE0 = 16, TE_CLOSURE1, TE_CLOSURE2, TE_CLOSURE3,
TE_CLOSURE4, TE_CLOSURE5, TE_CLOSURE6, TE_CLOSURE7,

TE_FLAG_PURE = 32
TE_FLAG_PURE = 32,
};

typedef struct te_variable {
Expand Down