Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
phorward committed Feb 21, 2023
1 parent eceea07 commit 9aa1364
Show file tree
Hide file tree
Showing 2 changed files with 81 additions and 81 deletions.
10 changes: 5 additions & 5 deletions src/build.c
Original file line number Diff line number Diff line change
Expand Up @@ -1188,13 +1188,13 @@ void build_code( PARSER* parser )
int_to_str( sym->type ), TRUE,
GEN_WILD_PREFIX "datatype",
int_to_str( sym->vtype ? sym->vtype->id : 0 ), TRUE,
GEN_WILD_PREFIX "is-terminal",
sym->type > 0 ? gen->truedef : gen->falsedef, TRUE,
GEN_WILD_PREFIX "is-lexem",
GEN_WILD_PREFIX "terminal",
sym->type > 0 ? gen->truedef : gen->falsedef, FALSE,
GEN_WILD_PREFIX "lexem",
sym->lexem ? gen->truedef : gen->falsedef, FALSE,
GEN_WILD_PREFIX "is-whitespace",
GEN_WILD_PREFIX "whitespace",
sym->whitespace ? gen->truedef : gen->falsedef, FALSE,
GEN_WILD_PREFIX "is-greedy",
GEN_WILD_PREFIX "greedy",
sym->greedy ? gen->truedef : gen->falsedef, FALSE,

(char*)NULL ), TRUE );
Expand Down
Loading

0 comments on commit 9aa1364

Please sign in to comment.