JSDOC/PackerRun.vala
[gnome.introspection-doc-generator] / JSDOC / PackerRun.vala
index a5106b5..bbd4a42 100644 (file)
@@ -16,6 +16,17 @@ namespace JSDOC
 
        class PackerRun : Application  
        {
+               public static string opt_target = "";
+               public static string opt_debug_target = "";
+               public static string opt_tmpdir = "";
+               
+               
+               private static string[]? opt_files = null;
+               private static string[]? opt_files_from = null;
+               public static bool opt_debug = false;
+               
+
+               
                const OptionEntry[] options = {
                
                        { "jsfile", 'f', 0, OptionArg.FILENAME_ARRAY, ref opt_files ,"add a file to compile", null },
@@ -30,16 +41,7 @@ namespace JSDOC
                        
                        { null }
                };
-               public static string opt_target = "";
-               public static string opt_debug_target = "";
-               public static string opt_tmpdir = "";
-               
                
-               private static string[]? opt_files = null;
-               private static string[]? opt_files_from = null;
-               public static bool opt_debug = false;
-               
-
 
        
                public PackerRun (string[] args)