tests/TreeBuilder.vala
[app.Builder.js] / tests / TreeBuilder.vala
index bac2a17..5158141 100644 (file)
@@ -48,9 +48,21 @@ public class TreeBuilder : Vala.CodeVisitor {
                //      return context;
                //}
 
-               var source_file = new Vala.SourceFile (context, 
-                               Vala.SourceFileType.SOURCE, 
-                               "/home/alan/gitlive/app.Builder.js/tests/TreeBuilder.vala");
+               var source_file = new Vala.SourceFile (
+                       context, 
+                       Vala.SourceFileType.SOURCE, 
+                       "stdin.vala",
+                       "void atest() { 
+                           var a= 100;
+                           a++;
+                       }"
+                    );
+               //context.add_source_file (testcode);
+
+               
+               // source_file = new Vala.SourceFile (context, 
+                //               Vala.SourceFileType.SOURCE, 
+                //              "/home/alan/gitlive/app.Builder.js/tests/TreeBuilder.vala");
 
                //if (source_package == null) {
                //source_package = register_package (new Package (settings.pkg_name, false, null));
@@ -59,7 +71,9 @@ public class TreeBuilder : Vala.CodeVisitor {
                //register_source_file (source_package, source_file);
 
                context.add_external_package ("glib-2.0");
-               
+               context.add_external_package ("gobject-2.0");
+               context.add_external_package ("libvala-0.24");
+               //context.add_external_package ("posix");
                //if (context.profile == Vala.Profile.GOBJECT) {
                        // import the GLib namespace by default (namespace of backend-specific standard library)
                        var ns_ref = new Vala.UsingDirective (new Vala.UnresolvedSymbol (null, "GLib", null));
@@ -85,8 +99,10 @@ public class TreeBuilder : Vala.CodeVisitor {
                // check context:
                context.check ();
                if (context.report.get_errors () > 0) {
+                       print("check got errors");
                        return context;
                }
+               print("ALL OK?\n");
                return context;
        }
 //