File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -286,7 +286,7 @@ export class Parser {
286286 alias ?: string ;
287287 useContextVariables = false ;
288288
289- constructor ( ) { }
289+ constructor ( ) { }
290290
291291 static start ( ) {
292292 return new Parser ( ) ;
@@ -1118,7 +1118,8 @@ export class Parser {
11181118 if ( rem ) {
11191119 const mask = - 1 >>> ( 32 - rem ) ;
11201120 ctx . pushCode (
1121- `${ parser . varName } = (${ val } & 0x${ mask . toString ( 16 ) } ) << ${ length - rem
1121+ `${ parser . varName } = (${ val } & 0x${ mask . toString ( 16 ) } ) << ${
1122+ length - rem
11221123 } ;`,
11231124 ) ;
11241125 length -= rem ;
@@ -1130,7 +1131,8 @@ export class Parser {
11301131 const mask = - 1 >>> ( 32 - length ) ;
11311132
11321133 ctx . pushCode (
1133- `${ parser . varName } ${ length < ( parser . options . length as number ) ? "|=" : "="
1134+ `${ parser . varName } ${
1135+ length < ( parser . options . length as number ) ? "|=" : "="
11341136 } ${ val } >> ${ offset } & 0x${ mask . toString ( 16 ) } ;`,
11351137 ) ;
11361138
You can’t perform that action at this time.
0 commit comments