Exemple #1
0
        public void InstanceMethodDeclaration()
        {
            string               program  = TestUtil.PackageMemberParse("public class A extends java.lang.Object {public int hashCode(){return 0;} }");
            string               expected = TestUtil.NamespaceMemberParse("public class A : java.lang.Object {public override int GetHashCode(){return 0;} }");
            CompilationUnit      cu       = TestUtil.ParseProgram(program);
            NamespaceDeclaration ns       = (NamespaceDeclaration)cu.Children[0];
            TypeDeclaration      type     = (TypeDeclaration)ns.Children[0];
            MethodDeclaration    method   = (MethodDeclaration)type.Children[0];

            AstUtil.AddModifierTo(method, Modifiers.Override);
            VisitCompilationUnit(cu, null);

            TestUtil.CodeEqual(expected, TestUtil.GenerateCode(cu));
        }
Exemple #2
0
        public void LibrariyInheritedInstanceMethod()
        {
            string program  = TestUtil.GetInput();
            string expected = TestUtil.GetExpected();

            CompilationUnit cu           = TestUtil.ParseProgram(program);
            TypesVisitor    typesVisitor = new TypesVisitor();

            typesVisitor.CodeBase = CodeBase;
            typesVisitor.VisitCompilationUnit(cu, null);

            NamespaceDeclaration ns     = (NamespaceDeclaration)cu.Children[0];
            TypeDeclaration      type   = (TypeDeclaration)ns.Children[1];
            MethodDeclaration    method = (MethodDeclaration)type.Children[0];

            AstUtil.AddModifierTo(method, Modifiers.Override);

            VisitCompilationUnit(cu, null);
            TestUtil.CodeEqual(expected, TestUtil.GenerateCode(cu));
        }