File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -216,7 +216,7 @@ pub struct SoftwareTask {
216
216
pub stmts : Vec < Stmt > ,
217
217
218
218
/// The task is declared externally
219
- pub external : bool ,
219
+ pub is_extern : bool ,
220
220
221
221
pub ( crate ) _extensible : ( ) ,
222
222
}
@@ -266,7 +266,7 @@ pub struct HardwareTask {
266
266
pub stmts : Vec < Stmt > ,
267
267
268
268
/// The task is declared externally
269
- pub external : bool ,
269
+ pub is_extern : bool ,
270
270
271
271
pub ( crate ) _extensible : ( ) ,
272
272
}
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ impl HardwareTask {
34
34
context,
35
35
locals : Local :: parse ( locals) ?,
36
36
stmts,
37
- external : false ,
37
+ is_extern : false ,
38
38
_extensible : ( ) ,
39
39
} ) ;
40
40
}
@@ -81,7 +81,7 @@ impl HardwareTask {
81
81
context,
82
82
locals : Map :: < Local > :: new ( ) ,
83
83
stmts : Vec :: < Stmt > :: new ( ) ,
84
- external : true ,
84
+ is_extern : true ,
85
85
_extensible : ( ) ,
86
86
} ) ;
87
87
}
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ impl SoftwareTask {
28
28
inputs,
29
29
locals : Local :: parse ( locals) ?,
30
30
stmts,
31
- external : false ,
31
+ is_extern : false ,
32
32
_extensible : ( ) ,
33
33
} ) ;
34
34
}
@@ -68,7 +68,7 @@ impl SoftwareTask {
68
68
inputs,
69
69
locals : Map :: < Local > :: new ( ) ,
70
70
stmts : Vec :: < Stmt > :: new ( ) ,
71
- external : true ,
71
+ is_extern : true ,
72
72
_extensible : ( ) ,
73
73
} ) ;
74
74
}
You can’t perform that action at this time.
0 commit comments