Skip to content

Restructure grammar rule for defaultValue and term

Yiyao Chen requested to merge develop into master

Renamed list to termList

Changed

term
 : Variable
 | constantTerm
 | list
 ;

to

term
 : Variable
 | constant
 | termList
 ;

Changed

defaultValue
 : '=' constant
 | '=' constantList
 ;

to

defaultValue
 : '=' constantTerm
 ;
Edited by Yiyao Chen

Merge request reports