JSDOC/TokenReader.js
[gnome.introspection-doc-generator] / JSDOC / PackerRun.vala
index 87f9d39..71bf5ea 100644 (file)
@@ -2,6 +2,17 @@
 /** 
   the application
   -- in theory this code  can be used as a library... but this is the standard command line version...
+  
+  
+  valac  --vapidir=/usr/share/vala/vapi 
+     --vapidir=/usr/share/vala/vapi 
+    --vapidir=/usr/share/vala-0.30/vapi 
+        --thread  -g  
+      JSDOC/Lang.vala JSDOC/TextStream.vala JSDOC/TokenReader.vala JSDOC/Token.vala JSDOC/TokenStream.vala JSDOC/Packer.vala 
+      JSDOC/Collapse.vala JSDOC/ScopeParser.vala JSDOC/Scope.vala JSDOC/Identifier.vala JSDOC/CompressWhite.vala 
+       JSDOC/PackerRun.vala --pkg glib-2.0 --pkg gee-1.0 --pkg gio-2.0 --pkg posix -o /tmp/jspack --target-glib=2.32  -X -lm
+
+  
 */
 
 namespace JSDOC
@@ -20,7 +31,7 @@ namespace JSDOC
                [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 = {
@@ -31,7 +42,7 @@ namespace JSDOC
                        { "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 },                 
+                       { "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 
                        
@@ -91,6 +102,9 @@ namespace JSDOC
                        
                        // now run the Packer...
                        var p = new Packer(opt_target, opt_debug_target);
+                       p.keepWhite = opt_keep_whitespace;
+                       
+                       
                        if (opt_files != null) {
                         
                                foreach (string f in opt_files) {