/[svn]/linuxsampler/trunk/src/scriptvm/parser.y
ViewVC logotype

Diff of /linuxsampler/trunk/src/scriptvm/parser.y

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3591 by schoenebeck, Fri Aug 30 18:59:21 2019 UTC revision 3592 by schoenebeck, Mon Sep 2 09:40:44 2019 UTC
# Line 906  unary_expr: Line 906  unary_expr:
906      | functioncall  {      | functioncall  {
907          $$ = $1;          $$ = $1;
908      }      }
909        | '+' unary_expr  {
910            $$ = $2;
911        }
912      | '-' unary_expr  {      | '-' unary_expr  {
913          $$ = new Neg($2);          $$ = new Neg($2);
914      }      }

Legend:
Removed from v.3591  
changed lines
  Added in v.3592

  ViewVC Help
Powered by ViewVC