1grammar t043synpred; 2options { 3 language = Python; 4} 5 6a: ((s+ P)=> s+ b)? E; 7b: P 'foo'; 8 9s: S; 10 11 12S: ' '; 13P: '+'; 14E: '>'; 15