Lines Matching full:construct
1286 A formal grammar is a mathematical construct. To define the language
1378 semantic value of the whole construct from the semantic values of its
1685 This is another example of using GLR to parse an unambiguous construct,
1807 syntactic construct. Bison provides a mechanism for handling these
1955 The grammar rules define how to construct each nonterminal symbol
2106 that the rule is going to construct. Assigning a value to `$$' is the
2819 The Bison construct `%type' is used for declaring nonterminal
3746 same construct is defined using "right recursion":
3874 components matched by the rule with the construct `$N', which stands
3877 of symbols can be accessed with the named references construct `$NAME'
3906 references construct.
4018 advance, so you must use the `$<...>N' construct to specify a data type
4029 STATEMENT. To parse this construct, we must put VARIABLE into the
4298 In addition, the named references construct `@NAME' and `@[NAME]'
4301 construct.
7140 the smallest parser tables Bison can currently construct, so
7152 LALR can be a quick way to construct parser tables in order
7740 declaration construct itself by a complicated syntactic structure--the
7781 special construct `hex (HEX-EXPR)'. After the keyword `hex' comes an
7827 to abort the parsing of one construct and resume in some larger
7828 construct. For example, in C-like languages, a typical error recovery
7840 construct, this error rule will apply, and then the action for the
7858 If this rule acts within the `hex' construct, it is not going to
7859 abort that construct (since it applies to an inner level of parentheses
7860 within the construct). Therefore, it should not clear the flag: the
7861 rest of the `hex' construct should be parsed with the flag still in
7865 `hex' construct or might not, depending on circumstances? There is no
7866 way you can write the action to determine whether a `hex' construct is
10523 to construct a tree that does represent the structure it has recovered;
10752 -- Construct: /* ... */
10753 -- Construct: // ...
11204 A language construct that is (in general) grammatically divisible;
11236 Language construct
11282 A grammar symbol standing for a grammatical construct that can be
11284 words, a construct that is not a token. *Note Symbols::.