return jshint;
}
private void check( IFile file ) throws CoreException {
Text code = readContent( file );
ProblemHandler handler = new MarkerHandler( new MarkerAdapter( file ), code );
try {
checker.check( code, handler );
} catch( CoreExceptionWrapper wrapper ) {
throw (CoreException)wrapper.getCause();
} catch( RuntimeException exception ) {