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 @@ -48,9 +48,7 @@ function transform(
48
48
break
49
49
case 'variable type mismatch' :
50
50
console . error ( `${ error . type } at ${ JSON . stringify ( error . location ) } ` )
51
- console . error (
52
- `Actual Type: ${ error . actualType } `
53
- )
51
+ console . error ( `Actual Type: ${ error . actualType } ` )
54
52
break
55
53
case 'expression no statement' :
56
54
case 'procedure not found' :
@@ -116,7 +114,9 @@ const argv = yargs
116
114
117
115
// Function to process files based on the provided glob pattern
118
116
function processFiles ( globPattern : string ) {
119
- glob . glob ( globPattern ) . then ( files => files . forEach ( file => transformFile ( file ) ) )
117
+ glob
118
+ . glob ( globPattern )
119
+ . then ( ( files ) => files . forEach ( ( file ) => transformFile ( file ) ) )
120
120
}
121
121
122
122
// Define the transform function for a file
You can’t perform that action at this time.
0 commit comments