]> granicus.if.org Git - jq/commitdiff
Address comments on PR #950 950/head
authorDavid Tolnay <dtolnay@gmail.com>
Wed, 16 Sep 2015 17:48:50 +0000 (10:48 -0700)
committerDavid Tolnay <dtolnay@gmail.com>
Wed, 16 Sep 2015 17:48:50 +0000 (10:48 -0700)
src/parser.c
src/parser.y

index 50d345683d4972978b346eff4d05675d8aefa87e..61990f341f99f942264d54d6e14bf66e78e417a1 100644 (file)
@@ -3373,7 +3373,7 @@ yyreduce:
   case 126:
 #line 813 "src/parser.y" /* yacc.c:1646  */
     {
-  FAIL((yyloc), "May need parentheses around object key");
+  FAIL((yyloc), "May need parentheses around object key expression");
   (yyval.blk) = (yyvsp[0].blk);
 }
 #line 3380 "src/parser.c" /* yacc.c:1646  */
@@ -3619,7 +3619,7 @@ yyreduce:
   case 157:
 #line 910 "src/parser.y" /* yacc.c:1646  */
     {
-  FAIL((yyloc), "May need parentheses around object key");
+  FAIL((yyloc), "May need parentheses around object key expression");
   (yyval.blk) = (yyvsp[0].blk);
   }
 #line 3626 "src/parser.c" /* yacc.c:1646  */
index ddc0eb05d4d7b073eb9b1d56bc74cddfbc0c6574..5d22fca04a6de24fda1a7e91ab694688291b1b15 100644 (file)
@@ -811,7 +811,7 @@ String ':' Pattern {
   $$ = gen_object_matcher($2, $5);
 } |
 error ':' Pattern {
-  FAIL(@$, "May need parentheses around object key");
+  FAIL(@$, "May need parentheses around object key expression");
   $$ = $3;
 }
 
@@ -908,7 +908,7 @@ IDENT ':' ExpD {
   $$ = gen_dictpair($2, $5);
   }
 | error ':' ExpD {
-  FAIL(@$, "May need parentheses around object key");
+  FAIL(@$, "May need parentheses around object key expression");
   $$ = $3;
   }
 %%