File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6881,9 +6881,9 @@ impl Compiler {
68816881 self ,
68826882 Instruction :: Resume {
68836883 context: if is_await {
6884- u32 :: from ( bytecode:: ResumeType :: AfterAwait )
6884+ bytecode:: ResumeType :: AfterAwait
68856885 } else {
6886- u32 :: from ( bytecode:: ResumeType :: AfterYieldFrom )
6886+ bytecode:: ResumeType :: AfterYieldFrom
68876887 }
68886888 }
68896889 ) ;
@@ -7055,7 +7055,7 @@ impl Compiler {
70557055 emit ! (
70567056 self ,
70577057 Instruction :: Resume {
7058- context: u32 :: from ( bytecode:: ResumeType :: AfterYield )
7058+ context: bytecode:: ResumeType :: AfterYield
70597059 }
70607060 ) ;
70617061 }
@@ -7277,7 +7277,7 @@ impl Compiler {
72777277 emit ! (
72787278 compiler,
72797279 Instruction :: Resume {
7280- context: u32 :: from ( bytecode:: ResumeType :: AfterYield )
7280+ context: bytecode:: ResumeType :: AfterYield
72817281 }
72827282 ) ;
72837283 emit ! ( compiler, Instruction :: PopTop ) ;
You can’t perform that action at this time.
0 commit comments