Skip to content

Version 1.2.1: 'WS' has been replaced by '[SP]'.

Compare
Choose a tag to compare
@walter-weinmann walter-weinmann released this 03 Oct 09:29
· 104 commits to master since this release

Release Date: 03.10.2016 - Grammar as of 02.10.2016

Grammar changes

  • WS has been replaced by [SP].
  • Union
New: Union = ((U,N,I,O,N), SP, (A,L,L), [SP], SingleQuery)
           | ((U,N,I,O,N), [SP], SingleQuery)
           ;

Old: Union = ((U,N,I,O,N), SP, (A,L,L), SingleQuery)
           | ((U,N,I,O,N), SingleQuery)
           ;
  • Atom
New: Atom = ...
          | ((C,O,U,N,T), [SP], '(', [SP], '*', [SP], ')')
          ...

Old: Atom = ...
          | ((C,O,U,N,T), '(', '*', ')')
          ...
  • FunctionInvocation
New: FunctionInvocation = FunctionName, [SP], '(', [SP], [(D,I,S,T,I,N,C,T), [SP]], [Expression, [SP], { ',', [SP], Expression, [SP] }], ')' ;

Old: FunctionInvocation = FunctionName, WS, '(', WS, [(D,I,S,T,I,N,C,T), WS], [Expression, { ',', WS, Expression }, WS], ')' ;
  • WS
New: n/a

Old: WS = { whitespace } ;