|
@@ -3016,6 +3016,7 @@ sub process {
|
|
|
$dstat !~ /^'X'$/ && # character constants
|
|
|
$dstat !~ /$exceptions/ &&
|
|
|
$dstat !~ /^\.$Ident\s*=/ && # .foo =
|
|
|
+ $dstat !~ /^(?:\#\s*$Ident|\#\s*$Constant)\s*$/ && # stringification #foo
|
|
|
$dstat !~ /^do\s*$Constant\s*while\s*$Constant;?$/ && # do {...} while (...); // do {...} while (...)
|
|
|
$dstat !~ /^for\s*$Constant$/ && # for (...)
|
|
|
$dstat !~ /^for\s*$Constant\s+(?:$Ident|-?$Constant)$/ && # for (...) bar()
|