FeatherweightTypeInference/index.html

31 lines
930 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="index.css">
2021-11-14 23:27:59 +00:00
<title>Type-inference for Featherweight Java</title>
</head>
<body>
2021-11-14 23:27:59 +00:00
<h1>Type-inference for Featherweight Java</h1>
<div id="content">
<div id="left">
<textarea id="fj-input">
class Test extends Object{}
</textarea>
<!-- let rec recursive_monster = fun x ->
{ thing = x;
self = recursive_monster x } -->
</div>
<div id="right">
<div id="ast-output"></div>
</div>
</div>
<div id="bottom">
<div id="unify-output"></div>
</div>
<script type="text/javascript" src="target/scala-2.13/fj-typeinference-fastopt/main.js"></script>
<br/>
2021-11-14 23:27:59 +00:00
<p>Credit: the CSS style sheet of this page was shamelessly stolen from <a href="https://github.com/LPTK/simple-algebraic-subtyping">the Simple-sub demo page</a>.</p>
</body>
</html>