Simple inspect tool using CodeInspector from the test library.
Change-Id: Ie977bda0018a9f304608a55d13047a2aaa90626b
diff --git a/tools/inspect.py b/tools/inspect.py
new file mode 100755
index 0000000..6d655da
--- /dev/null
+++ b/tools/inspect.py
@@ -0,0 +1,10 @@
+#!/usr/bin/env python
+# Copyright (c) 2018, the R8 project authors. Please see the AUTHORS file
+# for details. All rights reserved. Use of this source code is governed by a
+# BSD-style license that can be found in the LICENSE file.
+
+import sys
+import toolhelper
+
+if __name__ == '__main__':
+ sys.exit(toolhelper.run_in_tests('com.android.tools.r8.utils.codeinspector.Main', sys.argv[1:]))