@@ -196,14 +196,20 @@ def macro_name(self):
196
196
# Expression keywords
197
197
ExprKeyword ('As' , 'as' , serialization_code = 41 ),
198
198
ExprKeyword ('Any' , 'Any' , serialization_code = 42 ),
199
- ExprKeyword ('False' , 'false' , serialization_code = 43 ),
199
+ ExprKeyword ('False' , 'false' , requires_trailing_space = False ,
200
+ serialization_code = 43 ),
200
201
ExprKeyword ('Is' , 'is' , serialization_code = 44 ),
201
- ExprKeyword ('Nil' , 'nil' , serialization_code = 45 ),
202
+ ExprKeyword ('Nil' , 'nil' , requires_trailing_space = False ,
203
+ serialization_code = 45 ),
202
204
ExprKeyword ('Rethrows' , 'rethrows' , serialization_code = 46 ),
203
- ExprKeyword ('Super' , 'super' , serialization_code = 47 ),
204
- ExprKeyword ('Self' , 'self' , serialization_code = 48 ),
205
- ExprKeyword ('CapitalSelf' , 'Self' , serialization_code = 49 ),
206
- ExprKeyword ('True' , 'true' , serialization_code = 51 ),
205
+ ExprKeyword ('Super' , 'super' , requires_trailing_space = False ,
206
+ serialization_code = 47 ),
207
+ ExprKeyword ('Self' , 'self' , requires_trailing_space = False ,
208
+ serialization_code = 48 ),
209
+ ExprKeyword ('CapitalSelf' , 'Self' , requires_trailing_space = False ,
210
+ serialization_code = 49 ),
211
+ ExprKeyword ('True' , 'true' , requires_trailing_space = False ,
212
+ serialization_code = 51 ),
207
213
ExprKeyword ('Try' , 'try' , serialization_code = 52 ),
208
214
ExprKeyword ('Throws' , 'throws' , serialization_code = 53 ),
209
215
0 commit comments