put_info=>[COMPILED_CODE,STATISTICS,WARNINGS],output_format=>JSON,warnings=>VERBOSE);
diag('testing multiple output_info settings with json as output format and warnings set to VERBOSE');
ok($ret=~m/"
STATISTICS => 'statistics',
TEXT => 'text',
JSON => 'json',
XML => 'xml',
CLOSURE_COMPILER_SERVICE=>'https://clos
utput_info = qw(COMPILED_CODE WARNINGS ERRORS STATISTICS);
my @output_format = qw(TEXT JSON XML);
my @warning_level = qw(QUIET DEFAULT VERBOSE);
require Exporter;
our @ISA = qw(Export
e output in XML format with the information set with your output_info settings.
- JSON
return the output in JSON format with the information set with your output_info settings.
See L<http://code
STATISTICS eq 'statistics','STATISTICS imported');
ok(TEXT eq 'text','TEXT imported');
ok(JSON eq 'json','JSON imported');
ok(XML eq 'xml','XML imported');
ok(QUIET eq 'QUIET','QUIET imported');
ok(DE