mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 21:17:03 +00:00
20 lines
427 B
Plaintext
Executable File
20 lines
427 B
Plaintext
Executable File
#!/usr/bin/env objj
|
|
|
|
@import <Foundation/Foundation.j>
|
|
|
|
@import "../lib/cappuccino/cib-analysis-tools.j"
|
|
|
|
var FILE = require("file");
|
|
|
|
CPLogRegister(CPLogPrint);
|
|
|
|
function main(args)
|
|
{
|
|
args.slice(1).forEach(function(path) {
|
|
var classes = findCibClassDependencies(FILE.absolute(path));
|
|
|
|
print(path+":");
|
|
classes.sort().forEach(function(className) { print(" + " + className) });
|
|
});
|
|
}
|