diff options
author | David Mitchell <davem@iabyn.com> | 2017-11-16 09:23:53 +0000 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2017-11-16 09:32:26 +0000 |
commit | 3f5e95437092ccddc2436cb7a9ec1cad9e1e8f5d (patch) | |
tree | 4ade4860d678092b40fe1d2e44626eaf2b1735f6 /perly.h | |
parent | e923f3dcea8f38db48b7b02079de0d1177b08d83 (diff) | |
download | perl-3f5e95437092ccddc2436cb7a9ec1cad9e1e8f5d.tar.gz |
expand code comment in perly.y
ASSIGNOP includes mutators like += as well as basic assignment
NPD
Diffstat (limited to 'perly.h')
-rw-r--r-- | perly.h | 12 |
1 files changed, 5 insertions, 7 deletions
@@ -1,17 +1,17 @@ /* -*- buffer-read-only: t -*- !!!!!!! DO NOT EDIT THIS FILE !!!!!!! - This file is built by ./regen_perly.pl from perly.y. + This file is built by regen_perly.pl from perly.y. Any changes made here will be lost! */ #define PERL_BISON_VERSION 30000 #ifdef PERL_CORE -/* A Bison parser, made by GNU Bison 3.0.4. */ +/* A Bison parser, made by GNU Bison 3.0.2. */ /* Bison interface for Yacc-like parsers in C - Copyright (C) 1984, 1989-1990, 2000-2015 Free Software Foundation, Inc. + Copyright (C) 1984, 1989-1990, 2000-2013 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -160,7 +160,7 @@ S_is_opval_token(int type) { #endif /* PERL_IN_TOKE_C */ #endif /* PERL_CORE */ #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED - +typedef union YYSTYPE YYSTYPE; union YYSTYPE { @@ -171,8 +171,6 @@ union YYSTYPE GV *gvval; }; - -typedef union YYSTYPE YYSTYPE; # define YYSTYPE_IS_TRIVIAL 1 # define YYSTYPE_IS_DECLARED 1 #endif @@ -183,6 +181,6 @@ int yyparse (void); /* Generated from: - * 4667736d3c31a5169bab73c89d70a27dbce5ea4fe7e3c332a236f8a210aafdc2 perly.y + * 78f9e1daf948a161b43e7457943b7d91cada7c92c8b941a1c1dbbc23c2c10aa8 perly.y * b6fae5748f9bef6db4740aa5e122b84ac5181852d42474d0ecad621fa4253306 regen_perly.pl * ex: set ro: */ |