File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -708,7 +708,7 @@ module.exports = grammar({
708
708
$ . function_type ,
709
709
$ . _type_identifier ,
710
710
$ . macro_invocation ,
711
- $ . empty_type ,
711
+ $ . never_type ,
712
712
$ . dynamic_type ,
713
713
$ . bounded_type ,
714
714
alias ( choice ( ...primitiveTypes ) , $ . primitive_type ) ,
@@ -843,7 +843,7 @@ module.exports = grammar({
843
843
field ( 'type' , $ . _type ) ,
844
844
) ,
845
845
846
- empty_type : _ => '!' ,
846
+ never_type : _ => '!' ,
847
847
848
848
abstract_type : $ => seq (
849
849
'impl' ,
Original file line number Diff line number Diff line change @@ -278,7 +278,7 @@ fn aborts() -> ! {
278
278
(function_item
279
279
(identifier)
280
280
(parameters)
281
- (empty_type )
281
+ (never_type )
282
282
(block)))
283
283
284
284
================================================================================
You can’t perform that action at this time.
0 commit comments