/[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 3008 by schoenebeck, Tue Oct 11 18:25:12 2016 UTC revision 3034 by schoenebeck, Mon Oct 31 00:05:00 2016 UTC
# Line 298  statement: Line 298  statement:
298                          break;                          break;
299                      }                      }
300                  }                  }
301                  if (argsOK)                  if (argsOK) {
302                      $$ = context->vartable[name] = new IntArrayVariable(context, size, args);                      context->vartable[name] = new IntArrayVariable(context, size, args);
303                  else                      $$ = new NoOperation;
304                    } else
305                      $$ = new FunctionCall("nothing", new Args, NULL); // whatever                      $$ = new FunctionCall("nothing", new Args, NULL); // whatever
306              }              }
307          }          }
# Line 830  int InstrScript_tnamerr(char* yyres, con Line 831  int InstrScript_tnamerr(char* yyres, con
831                yyres[yyn] = '\0';                yyres[yyn] = '\0';
832              return yyn;              return yyn;
833            }            }
834    /*
835      do_not_strip_quotes: ;      do_not_strip_quotes: ;
836    */
837      }      }
838    
839    if (! yyres)    if (! yyres)

Legend:
Removed from v.3008  
changed lines
  Added in v.3034

  ViewVC Help
Powered by ViewVC