We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91ee20b commit 09c27fcCopy full SHA for 09c27fc
ugbc/src/ugbc.y
@@ -4393,6 +4393,10 @@ exponential_less:
4393
$$ = variable_temporary( _environment, VT_BYTE, "(note)" )->name;
4394
variable_store( _environment, $$, $2 );
4395
}
4396
+ | filesize OP const_expr_string CP {
4397
+ $$ = variable_temporary( _environment, VT_WORD, "(size)" )->name;
4398
+ variable_store( _environment, $$, file_size( _environment, $3 ) );
4399
+ }
4400
| IF OP const_expr OP_COMMA const_expr OP_COMMA const_expr CP {
4401
$$ = variable_temporary( _environment, ((struct _Environment *)_environment)->defaultVariableType, "(if)" )->name;
4402
if ( $3 ) {
0 commit comments