X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=JSDOC%2FPackerRun.vala;h=f14999727d6b7f26d7bb136d8ba2a19b7b1a7caf;hb=55f8d00207a54cf3c1939cae097c2691cb8cf93c;hp=ac062636a976e152873c83c57197594ced519eb7;hpb=4697b68203ff9a192cf3a0c627c71acddd716a42;p=gnome.introspection-doc-generator diff --git a/JSDOC/PackerRun.vala b/JSDOC/PackerRun.vala index ac06263..f149997 100644 --- a/JSDOC/PackerRun.vala +++ b/JSDOC/PackerRun.vala @@ -15,22 +15,23 @@ namespace JSDOC public static string opt_debug_target = ""; public static string opt_tmpdir = ""; - + [CCode (array_length = false, array_null_terminated = true)] private static string[]? opt_files = null; + [CCode (array_length = false, array_null_terminated = true)] private static string[]? opt_files_from = null; public static bool opt_debug = false; - + public static bool opt_keep_whitespace = false; const OptionEntry[] options = { { "jsfile", 'f', 0, OptionArg.FILENAME_ARRAY, ref opt_files ,"add a file to compile", null }, - // { "target", 't', 0, OptionArg.STRING, ref opt_target, "Target File to write (eg. roojs.js)", null }, - // { "debug-target", 'T', 0, OptionArg.STRING, ref opt_debug_target, "Target File to write debug code (eg. roojs-debug.js)", null }, - // { "tmpdir", 'm', 0, OptionArg.STRING, ref opt_tmpdir, "Temporary Directory to use", null }, + { "target", 't', 0, OptionArg.STRING, ref opt_target, "Target File to write (eg. roojs.js)", null }, + { "debug-target", 'T', 0, OptionArg.STRING, ref opt_debug_target, "Target File to write debug code (eg. roojs-debug.js)", null }, + { "tmpdir", 'm', 0, OptionArg.STRING, ref opt_tmpdir, "Temporary Directory to use", null }, -// { "index-files", 'i', 0, OptionArg.FILENAME_ARRAY, ref opt_files_from ,"files that contain listing of files to compile", null }, - + { "index-files", 'i', 0, OptionArg.FILENAME_ARRAY, ref opt_files_from ,"files that contain listing of files to compile", null }, + { "keep-whitespace", 'w', 0, OptionArg.NONE, ref opt_keep_whitespace, "Keep whitespace", null }, { "debug", 0, 0, OptionArg.NONE, ref opt_debug, "Show debug messages", null }, // fixme -- keepwhite.. cleanup @@ -90,8 +91,11 @@ namespace JSDOC // now run the Packer... var p = new Packer(opt_target, opt_debug_target); + p.whitespace = !opt_keep_whitespace; + + if (opt_files != null) { - GLib.debug("Adding File %s", string.join(", ",opt_files)); + foreach (string f in opt_files) { GLib.debug("Adding File %s", f); p.loadFile(f);