summaryrefslogtreecommitdiffstats
path: root/client-compiler
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-09-05 21:14:27 +0300
committerArtur Signell <artur@vaadin.com>2012-09-09 11:23:35 +0300
commitc14a2cea8dcbeb02442d1888101d4b22cd2d6e6e (patch)
tree31998a5f97f3a3e999cba2ea890875c9b09b6191 /client-compiler
parentf871b85e3175177461ac5d06a68734f5ec7b94a2 (diff)
downloadvaadin-framework-c14a2cea8dcbeb02442d1888101d4b22cd2d6e6e.tar.gz
vaadin-framework-c14a2cea8dcbeb02442d1888101d4b22cd2d6e6e.zip
Added missing dependencies (#9299)
Diffstat (limited to 'client-compiler')
-rw-r--r--client-compiler/ivy.xml2
1 files changed, 2 insertions, 0 deletions
diff --git a/client-compiler/ivy.xml b/client-compiler/ivy.xml
index eadf68e1c3..3e8b46d77b 100644
--- a/client-compiler/ivy.xml
+++ b/client-compiler/ivy.xml
@@ -27,6 +27,8 @@
rev="${vaadin.version}" conf="build" />
<dependency org="commons-collections" name="commons-collections"
rev="3.1" conf="build,ide -> default" />
+ <dependency org="ant" name="ant"
+ rev="1.6.5" conf="build,ide -> default" />
</dependencies>
olor: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
aspect Aspect {

    public A.new() {    // CE L5 
       super();
       System.out.println("ITD A()");
    }

    public void A.bar() {  // CE L10
       System.out.println("ITD bar");
   }
    
    public int A.x;  // CE L14

}

class A {

    void foo() {
        A a = new A(); 
        bar(); 
    }

    private int x;
    
    private A() {
        super();
        System.out.println("private A()");
    }

    private void bar() {
        System.out.println("private bar");
    }

}

public class PR64069 { 

    static public void main(String[] args) {
        new A().foo();
    }
}