2021-10-26 01:41:05 +02:00
<!DOCTYPE html>
< html >
< head >
< meta charset = "UTF-8" >
2021-11-16 17:11:24 +01:00
< link rel = "stylesheet" type = "text/css" href = "index.css" >
< link rel = "stylesheet" type = "text/css" href = "default.min.css" >
2021-11-15 00:27:59 +01:00
< title > Type-inference for Featherweight Java< / title >
2021-10-26 01:41:05 +02:00
< / head >
< body >
2021-11-15 00:27:59 +01:00
< h1 > Type-inference for Featherweight Java< / h1 >
2021-10-26 01:41:05 +02:00
< div id = "content" >
< div id = "left" >
< textarea id = "fj-input" >
class Test extends Object{}
< / textarea >
< / div >
< div id = "right" >
2021-11-16 17:11:24 +01:00
< pre > < div id = "ast-output" > < / div > < / pre >
2021-10-26 01:41:05 +02:00
< / div >
< / div >
2021-11-16 17:11:24 +01:00
< script type = "text/javascript" src = "highlight.min.js" > < / script >
2022-03-17 02:52:05 +01:00
< script type = "text/javascript" src = "target/scala-2.13/fj-typeinference-opt/main.js" > < / script >
2021-10-26 01:41:05 +02:00
< br / >
2021-12-01 16:58:27 +01: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-26 01:41:05 +02:00
< / body >
< / html >