# Typeinference for Featherweight Java ## Getting started [Try it here](https://janulrich.github.io/FeatherweightTypeInference/) ## Building ```sbt fullLinkJS``` ### Input Examples ``` class Identity extends Object{ id(a){ return a; } } ``` ``` class Overloading extends Object{ m(a, b){return a;} m(a,b){return b;} } class TestOverloading extends Object{ test(a){ return new Overloading().m(this,a); } } ``` ``` class List extends Object{ A head; List tail; add( a){ return new List(a, this); } get(){ return this.head; } } class PrincipleType extends Object { function(a){ return a.add(this).get(); } } ```