You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
491 B
22 lines
491 B
10 years ago
|
#!/usr/bin/env python
|
||
|
#
|
||
|
# Copyright (c) 2013- Facebook. All rights reserved.
|
||
|
#
|
||
|
|
||
|
from __future__ import absolute_import
|
||
|
from __future__ import division
|
||
|
from __future__ import print_function
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
import logging
|
||
|
import sys
|
||
|
|
||
|
import inferlib
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
cmd_args = sys.argv[1:]
|
||
|
analysis = inferlib.Infer(inferlib.get_inferJ_args(cmd_args),
|
||
|
inferlib.get_javac_args(cmd_args))
|
||
|
stats = analysis.start()
|
||
|
|