forked from jasder/antlr
print file names if > 1 file
This commit is contained in:
parent
3f26d42d53
commit
8c8752a7b2
|
@ -172,6 +172,9 @@ public class TestRig {
|
|||
r = new InputStreamReader(is);
|
||||
}
|
||||
|
||||
if ( inputFiles.size()>1 ) {
|
||||
System.err.println(inputFile);
|
||||
}
|
||||
try {
|
||||
ANTLRInputStream input = new ANTLRInputStream(r);
|
||||
lexer.setInputStream(input);
|
||||
|
|
Loading…
Reference in New Issue