2021-10-25 23:41:05 +00:00
<!DOCTYPE html>
< html >
< head >
< meta charset = "UTF-8" >
2021-11-16 16:11:24 +00:00
< link rel = "stylesheet" type = "text/css" href = "index.css" >
< link rel = "stylesheet" type = "text/css" href = "default.min.css" >
2021-11-14 23:27:59 +00:00
< title > Type-inference for Featherweight Java< / title >
2021-10-25 23:41:05 +00:00
< / head >
< body >
2021-11-14 23:27:59 +00:00
< h1 > Type-inference for Featherweight Java< / h1 >
2021-10-25 23:41:05 +00:00
< div id = "content" >
< div id = "left" >
< textarea id = "fj-input" >
class Test extends Object{}
< / textarea >
< / div >
< div id = "right" >
2021-11-16 16:11:24 +00:00
< pre > < div id = "ast-output" > < / div > < / pre >
2021-10-25 23:41:05 +00:00
< / div >
< / div >
2021-11-16 16:11:24 +00:00
< script type = "text/javascript" src = "highlight.min.js" > < / script >
2022-03-17 01:52:05 +00:00
< script type = "text/javascript" src = "target/scala-2.13/fj-typeinference-opt/main.js" > < / script >
2021-10-25 23:41:05 +00:00
< br / >
2021-12-01 15:58:27 +00:00
< p > Credit: the layout of this page was shamelessly stolen from < a href = "https://github.com/LPTK/simple-algebraic-subtyping" > the Simple-sub demo page< / a > .< / p >
2021-10-25 23:41:05 +00:00
< / body >
< / html >