1
0
mirror of https://github.com/stedolan/jq.git synced 2024-05-11 05:55:39 +00:00

Group logically related parser rule names

This commit is contained in:
David Tolnay
2015-08-13 22:39:31 -07:00
parent 0f419563ea
commit 7f87785002
2 changed files with 181 additions and 176 deletions

346
parser.c

File diff suppressed because it is too large Load Diff

View File

@ -111,9 +111,14 @@ struct lexer_param;
%precedence "catch"
%type <blk> Exp Term MkDict MkDictPair ExpD ElseBody QQString String
%type <blk> FuncDef FuncDefs Import Imports ImportWhat ImportFrom Param Params
%type <blk> Arg Args Module Pattern ArrayPats ObjPats ObjPat
%type <blk> Exp Term
%type <blk> MkDict MkDictPair ExpD
%type <blk> ElseBody
%type <blk> String QQString
%type <blk> FuncDef FuncDefs
%type <blk> Module Import Imports ImportWhat ImportFrom
%type <blk> Param Params Arg Args
%type <blk> Pattern ArrayPats ObjPats ObjPat
%type <literal> Keyword
%{
#include "lexer.h"