3333cdd18d
Getting rid of the |trackLineAndColumn| simplifies the code generator (by unifying two paths in the code). The |line| and |column| functions currently always compute all the position info from scratch, which is horribly ineffective. This will be improved in later commit(s).
39 lines
1.1 KiB
HTML
39 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>PEG.js Benchmark Suite</title>
|
|
<link rel="stylesheet" href="index.css">
|
|
</head>
|
|
<body>
|
|
<h1>PEG.js Benchmark Suite</h1>
|
|
|
|
<div id="options">
|
|
<label for="run-count">Run each test</label>
|
|
<input type="text" id="run-count" value="10"> times
|
|
<input type="checkbox" id="cache">
|
|
<label for="cache">Use results cache</label>
|
|
<input type="button" id="run" value="Run">
|
|
</div>
|
|
|
|
<table id="results-table">
|
|
<tr class="columns">
|
|
<th>Test</th>
|
|
<th>Input Size</th>
|
|
<th>Average Parse Time</th>
|
|
<th>Average Parse Speed</th>
|
|
</tr>
|
|
<tr>
|
|
<td class="no-results" colspan="4">No results available yet.</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<script src="../browser/peg-0.7.0.js"></script>
|
|
<script src="vendor/jquery/jquery.js"></script>
|
|
<script src="vendor/jquery.scrollto/jquery.scrollTo.js"></script>
|
|
<script src="benchmarks.js"></script>
|
|
<script src="runner.js"></script>
|
|
<script src="index.js"></script>
|
|
</body>
|
|
</html>
|