1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>tools.analyzer AST Quickref</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: "Lucida Grande", "Trebuchet MS", "Bitstream Vera Sans", Verdana, Helvetica, sans-serif;
font-size: 13px;
line-height: 20px;
margin: 40px 80px;
}
main {
margin-left: 240px;
width: 680px;
}
dl {
display: flex;
flex-flow: row wrap;
}
dt:nth-of-type(odd), dd:nth-of-type(odd) {
background: #f5f5f5;
}
dt {
padding: 2px 0; width: 120px;
color:#191970;
}
dd { padding: 2px 0; width: 560px;}
.wide-keys dt { width: 160px; }
.wide-keys dd { width: 520px; }
code, dt { font-family: "Menlo"; }
code { color: rgb(160,40,160); }
.page-title {
font-size: 32px;
border-bottom: none;
margin-bottom: 2.75rem;
}
h1 {
border-bottom: 1px solid #ccc;
padding-bottom: 0.75em;
margin-bottom: 1.5rem;
}
h2 {
margin-bottom: 0.2rem;
position: relative;
padding-left: 20px;
margin-left: -20px;
}
h4 {
margin-bottom: 1rem;
}
h2 a {
color: #aaa;
font-size: 16px;
font-weight: normal;
margin-left: -20px;
position: absolute;
text-decoration: none;
vertical-align: middle;
visibility: hidden;
}
h2:hover a {
visibility: visible;
}
p {
margin-bottom: 1rem;
}
section {
/*border-bottom: 1px solid #ccc;*/
margin-bottom: 1rem;
padding-bottom: 1rem;
}
nav {
background: #f5f5f5;
font-size: 11px;
line-height: 17px;
padding: 0.5rem 1rem;
position: fixed;
width: 160px;
}
nav ul {
list-style: none;
margin-bottom: 1rem;
}
nav ul:last-child { margin-bottom: 0; }
</style>
</head>
<body>
<nav>
<strong>Nodes reference</strong>
<ul>
{nav}
</ul>
</nav>
<main>
<h1 class="page-title">tools.analyzer AST Quickref</h1>
<h1>Common AST fields</h1>
{common}
<h1>Nodes reference</h1>
{nodes}
</main>
</body>
</html>
|