Compiler Option: -w
 
Set minimum warning level.

Syntax

-w < level >

Parameters

level
The warning level. 0 | 1 | all | pedantic | param | escape | next

Description

The -w compiler option set minimum warning level. The default is -w 0

leveldescription
0shows all compiler warnings
1hide compiler warnings
allshows all compiler warnings
paramshow extra syntax warnings for BYVAL/BYREF parameter modes only
escapeshow extra syntax warnings for escape sequences only
pedanticshow param and escape syntax warnings
nextshow extra syntax warnings for NEXT statement only


See also