Changeset 7b4121 in git for Singular/grammar.y


Ignore:
Timestamp:
Jul 14, 1999, 3:16:20 PM (24 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'ec94ef7a30b928574c0c3daf41f6804dff5f6b69')
Children:
d7d8ab37cebd1ad365c356c62b7e36ea81c94024
Parents:
ff67107dcced00eea462fd735d62e6e426cb314b
Message:
* hannes: optimisations, GMG's requests, update of Tsts (part 1), bug_13


git-svn-id: file:///usr/local/Singular/svn/trunk@3269 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/grammar.y

    rff6710 r7b4121  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: grammar.y,v 1.62 1999-07-09 14:58:24 Singular Exp $ */
     4/* $Id: grammar.y,v 1.63 1999-07-14 13:16:00 Singular Exp $ */
    55/*
    66* ABSTRACT: SINGULAR shell grammatik
     
    236236%token <i> CMD_3
    237237%token <i> CMD_12
     238%token <i> CMD_13
    238239%token <i> CMD_23
    239240%token <i> CMD_123
     
    615616            if(iiExprArith1(&$$,&$3,$1)) YYERROR;
    616617          }
     618        | CMD_13 '(' expr ')'
     619          {
     620            if(iiExprArith1(&$$,&$3,$1)) YYERROR;
     621          }
    617622        | CMD_12 '(' expr ',' expr ')'
    618623          {
     
    626631          {
    627632            if(iiExprArith2(&$$,&$3,$1,&$5,TRUE)) YYERROR;
     633          }
     634        | CMD_13 '(' expr ',' expr ',' expr ')'
     635          {
     636            if(iiExprArith3(&$$,$1,&$3,&$5,&$7)) YYERROR;
    628637          }
    629638        | CMD_123 '(' expr ',' expr ',' expr ')'
Note: See TracChangeset for help on using the changeset viewer.